-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path4.2.3_2.4.mathml_numbers_integer_base.cellml
More file actions
30 lines (30 loc) · 1.09 KB
/
4.2.3_2.4.mathml_numbers_integer_base.cellml
File metadata and controls
30 lines (30 loc) · 1.09 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
<?xml version="1.0" encoding="UTF-8"?>
<!-- CellML Test Suite. https://github.com/MichaelClerx/cellml-validation -->
<!-- CellML 1.0, 4.2.3: The MathML "CellML subset"
Numbers: Integers with a base attribute -->
<model name="mathml_numbers_integer_base"
xmlns="http://www.cellml.org/cellml/1.0#"
xmlns:cellml="http://www.cellml.org/cellml/1.0#">
<component name="A">
<variable name="integer_base_10" units="dimensionless" />
<variable name="integer_base_2" units="dimensionless" />
<variable name="integer_base_16" units="dimensionless" />
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply>
<eq/>
<ci>integer_base_10</ci>
<cn cellml:units="dimensionless" type="integer" base="10">9</cn>
</apply>
<apply>
<eq/>
<ci>integer_base_2</ci>
<cn cellml:units="dimensionless" type="integer" base="2">11011</cn>
</apply>
<apply>
<eq/>
<ci>integer_base_16</ci>
<cn cellml:units="dimensionless" type="integer" base="16">123DEF</cn>
</apply>
</math>
</component>
</model>