forked from MichaelClerx/cellml-validation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path4.4.2.ci_non_local_aunt.cellml
More file actions
31 lines (31 loc) · 946 Bytes
/
4.4.2.ci_non_local_aunt.cellml
File metadata and controls
31 lines (31 loc) · 946 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?xml version="1.0" encoding="UTF-8"?>
<!-- CellML Test Suite. https://github.com/MichaelClerx/cellml-validation -->
<!-- CellML 1.0, 4.4.2: <ci> must refer to a local variable -->
<model name="ci_non_local_aunt"
xmlns="http://www.cellml.org/cellml/1.0#"
xmlns:cellml="http://www.cellml.org/cellml/1.0#">
<component name="A" />
<component name="AA">
<variable name="x" units="dimensionless" />
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply>
<eq/>
<ci>x</ci>
<apply>
<plus />
<cn cellml:units="dimensionless">1</cn>
<ci>y</ci>
</apply>
</apply>
</math>
</component>
<component name="B">
<variable name="y" units="dimensionless" />
</component>
<group>
<relationship_ref relationship="encapsulation" />
<component_ref component="A">
<component_ref component="AA" />
</component_ref>
</group>
</model>