-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path6.4.3.1.component_ref_nesting.cellml
More file actions
37 lines (37 loc) · 1.24 KB
/
6.4.3.1.component_ref_nesting.cellml
File metadata and controls
37 lines (37 loc) · 1.24 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
25
26
27
28
29
30
31
32
33
34
35
36
37
<?xml version="1.0" encoding="UTF-8"?>
<!-- CellML Test Suite. https://github.com/MichaelClerx/cellml-validation -->
<!-- CellML 1.0, 6.4.3.1: Component_ref elements can be nested -->
<model name="component_ref_nesting"
xmlns="http://www.cellml.org/cellml/1.0#">
<component name="A" />
<component name="AA" />
<component name="AAA" />
<component name="AAAA" />
<component name="AAAB" />
<component name="AB" />
<component name="ABA" />
<component name="ABAA" />
<component name="ABB" />
<component name="ABBA">
<variable name="dancing_queen" initial_value="0" units="dimensionless" />
</component>
<group>
<relationship_ref relationship="encapsulation" />
<component_ref component="A" >
<component_ref component="AA" >
<component_ref component="AAA" >
<component_ref component="AAAA" />
<component_ref component="AAAB" />
</component_ref>
</component_ref>
<component_ref component="AB" >
<component_ref component="ABA" >
<component_ref component="ABAA" />
</component_ref>
<component_ref component="ABB" >
<component_ref component="ABBA" />
</component_ref>
</component_ref>
</component_ref>
</group>
</model>