-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path3.4.3.1.variable_with_interfaces.cellml
More file actions
24 lines (24 loc) · 1.57 KB
/
3.4.3.1.variable_with_interfaces.cellml
File metadata and controls
24 lines (24 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="UTF-8"?>
<!-- CellML Test Suite. https://github.com/MichaelClerx/cellml-validation -->
<!-- CellML 1.0, 3.4.3.1: A variable can have a public and a private interface -->
<model name="variable_with_interfaces"
xmlns="http://www.cellml.org/cellml/1.0#">
<component name="A">
<!-- in/in isn't allowed -->
<variable name="a" public_interface="in" private_interface="out" units="dimensionless" />
<variable name="b" public_interface="in" private_interface="none" units="dimensionless" />
<variable name="c" public_interface="in" units="dimensionless" />
<variable name="d" public_interface="out" private_interface="in" units="dimensionless" />
<variable name="e" public_interface="out" private_interface="out" units="dimensionless" />
<variable name="f" public_interface="out" private_interface="none" units="dimensionless" />
<variable name="g" public_interface="out" units="dimensionless" />
<variable name="h" public_interface="none" private_interface="in" units="dimensionless" />
<variable name="i" public_interface="none" private_interface="out" units="dimensionless" />
<variable name="j" public_interface="none" private_interface="none" units="dimensionless" />
<variable name="k" public_interface="none" units="dimensionless" />
<variable name="l" private_interface="in" units="dimensionless" />
<variable name="m" private_interface="out" units="dimensionless" />
<variable name="n" private_interface="none" units="dimensionless" />
<variable name="o" units="dimensionless" />
</component>
</model>