-
Notifications
You must be signed in to change notification settings - Fork 1
/
math_rules_tests.xml
163 lines (153 loc) · 4.6 KB
/
math_rules_tests.xml
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<project name="math_rules_tests" basedir="." default="suite"
xmlns:a="antlib:ise.antelope.tasks">
<target name="test7.0">
<!-- test additive identity -->
<a:math result="a" datatype="int">
<a:op op="+">
<a:num value="4"/>
<a:num value="0"/>
</a:op>
</a:math>
<a:assert name="a" value="4" message="failed additive identity test"/>
</target>
<target name="test7.1">
<!-- test commutivity of addition -->
<a:math result="a" datatype="int">
<a:op op="+">
<a:num value="4"/>
<a:num value="2"/>
</a:op>
</a:math>
<a:math result="b" datatype="int">
<a:op op="+">
<a:num value="2"/>
<a:num value="4"/>
</a:op>
</a:math>
<a:assert name="a" value="${b}" message="failed commutivity of addition test"/>
</target>
<target name="test7.2">
<!-- test associative principle of addition -->
<a:math result="a" datatype="int">
<a:op op="+">
<a:num value="2"/>
<a:op op="+">
<a:num value="4"/>
<a:num value="2"/>
</a:op>
</a:op>
</a:math>
<a:math result="b" datatype="int">
<a:op op="+">
<a:op op="+">
<a:num value="2"/>
<a:num value="4"/>
</a:op>
<a:num value="2"/>
</a:op>
</a:math>
<a:assert name="a" value="${b}" message="failed associativity test"/>
</target>
<target name="test8.0">
<!-- test multiplicative identity -->
<a:math result="a" datatype="int">
<a:op op="*">
<a:num value="4"/>
<a:num value="1"/>
</a:op>
</a:math>
<a:assert name="a" value="4" message="failed multiplicative identity test"/>
</target>
<target name="test8.1">
<!-- test commutivity of multiplication -->
<a:math result="a" datatype="int">
<a:op op="*">
<a:num value="4"/>
<a:num value="21"/>
</a:op>
</a:math>
<a:math result="b" datatype="int">
<a:op op="*">
<a:num value="21"/>
<a:num value="4"/>
</a:op>
</a:math>
<a:assert name="a" value="${b}" message="failed commutivity of multiplication test"/>
</target>
<target name="test8.2">
<!-- test associative principle of multiplication -->
<a:math result="a" datatype="int">
<a:op op="*">
<a:num value="2"/>
<a:op op="*">
<a:num value="4"/>
<a:num value="2"/>
</a:op>
</a:op>
</a:math>
<a:math result="b" datatype="int">
<a:op op="*">
<a:op op="*">
<a:num value="4"/>
<a:num value="2"/>
</a:op>
<a:num value="2"/>
</a:op>
</a:math>
<a:assert name="a" value="${b}" message="failed associative principle of multiplication test"/>
</target>
<target name="test8.3">
<!-- test distributive principle of multiplication -->
<a:math result="a" datatype="int">
<a:op op="*">
<a:num value="3"/>
<a:op op="+">
<a:num value="4"/>
<a:num value="2"/>
</a:op>
</a:op>
</a:math>
<a:math result="b" datatype="int">
<a:op op="+">
<a:op op="*">
<a:num value="4"/>
<a:num value="3"/>
</a:op>
<a:op op="*">
<a:num value="2"/>
<a:num value="3"/>
</a:op>
</a:op>
</a:math>
<a:assert name="a" value="${b}" message="failed distributive principle of multiplication test"/>
</target>
<target name="test9">
<!-- the triangle inequality: abs(a + b) <= abs(a) + abs(b) -->
<a:math result="lhs">
<a:op op="abs">
<a:op op="+">
<a:num value="4"/>
<a:num value="-6"/>
</a:op>
</a:op>
</a:math>
<a:math result="rhs">
<a:op op="+">
<a:op op="abs">
<a:num value="4"/>
</a:op>
<a:op op="abs">
<a:num value="-6"/>
</a:op>
</a:op>
</a:math>
<a:assert message="failed triangle inequality">
<a:bool>
<a:or>
<a:islessthan arg1="${lhs}" arg2="${rhs}"/>
<a:equals arg1="${lhs}" arg2="${rhs}"/>
</a:or>
</a:bool>
</a:assert>
</target>
</project>