about summary refs log tree commit diff stats
path: root/cpp/.traces/lesser_or_equal2
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-03-16 22:52:04 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-03-16 22:52:04 -0700
commita4ef18b194a24710847be59554e51a1fd618228d (patch)
tree2c717ae73346922b4ecdc2ac108ed0cb73da1d79 /cpp/.traces/lesser_or_equal2
parent100157d1a83ccb02d82af21c5767ecda3d7cb1c2 (diff)
downloadmu-a4ef18b194a24710847be59554e51a1fd618228d.tar.gz
940 - c++: some changes to instruction model
Diffstat (limited to 'cpp/.traces/lesser_or_equal2')
-rw-r--r--cpp/.traces/lesser_or_equal214
1 files changed, 7 insertions, 7 deletions
diff --git a/cpp/.traces/lesser_or_equal2 b/cpp/.traces/lesser_or_equal2
index 02874d2f..1beafca9 100644
--- a/cpp/.traces/lesser_or_equal2
+++ b/cpp/.traces/lesser_or_equal2
@@ -1,13 +1,13 @@
 parse/0: instruction: 1
-parse/0:   ingredient: {name: "33", type: 0}
-parse/0:   product: {name: "1", type: 1}
+parse/0:   ingredient: {name: "33", value: 33, type: 0, properties: [33: literal]}
+parse/0:   product: {name: "1", value: 1, type: 1, properties: [1: integer]}
 parse/0: instruction: 1
-parse/0:   ingredient: {name: "33", type: 0}
-parse/0:   product: {name: "2", type: 1}
+parse/0:   ingredient: {name: "33", value: 33, type: 0, properties: [33: literal]}
+parse/0:   product: {name: "2", value: 2, type: 1, properties: [2: integer]}
 parse/0: instruction: 17
-parse/0:   ingredient: {name: "1", type: 1}
-parse/0:   ingredient: {name: "2", type: 1}
-parse/0:   product: {name: "3", type: 1}
+parse/0:   ingredient: {name: "1", value: 1, type: 1, properties: [1: integer]}
+parse/0:   ingredient: {name: "2", value: 2, type: 1, properties: [2: integer]}
+parse/0:   product: {name: "3", value: 3, type: 1, properties: [3: integer]}
 run/0: instruction main/0
 run/0: ingredient 0 is 33
 mem/0: storing in location 1
559f7287599a981a3b38a82b741f57d50e85c4'>^
b291f85b ^

ab9e2eae ^

b291f85b ^


ab9e2eae ^
57699011 ^

916ae8f5 ^
f608504a ^
db5c9550 ^

f608504a ^

db5c9550 ^
f608504a ^







db5c9550 ^
f608504a ^







7e9c6925 ^

db5c9550 ^
f608504a ^






db5c9550 ^
f608504a ^














916ae8f5 ^
916ae8f5 ^


f7051fad ^
916ae8f5 ^



f1a3be1c ^


db5c9550 ^
916ae8f5 ^
c82d0176 ^
3ba63579 ^
6cc46216 ^

3076bab4 ^
6cc46216 ^
916ae8f5 ^
db5c9550 ^
916ae8f5 ^


e853b94e ^
7da71d03 ^
e853b94e ^
916ae8f5 ^





f608504a ^

3c435756 ^
f608504a ^

db5c9550 ^
6cc46216 ^





6f5d7864 ^
6cc46216 ^





57699011 ^
6cc46216 ^
a4559f72 ^
db5c9550 ^
a4559f72 ^


f7051fad ^
a4559f72 ^



f1a3be1c ^


db5c9550 ^
a4559f72 ^
c82d0176 ^
3ba63579 ^
79f4349c ^

3076bab4 ^
79f4349c ^
a4559f72 ^










ab9e2eae ^

a4559f72 ^
6f5d7864 ^
a4559f72 ^
a4559f72 ^

57699011 ^
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
164
165
166
167
168
169
170