diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-02-19 18:25:09 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-02-19 18:25:09 -0800 |
commit | 7ec3e3b41eb404dbca4943d87ff14838e1177469 (patch) | |
tree | ccfdba16d179b755e4a5301e372770e1cfacce14 /cpp | |
parent | f2818edc5fba19885f1ba1fa48754af2e5abfceb (diff) | |
download | mu-7ec3e3b41eb404dbca4943d87ff14838e1177469.tar.gz |
795
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/.traces/and | 23 | ||||
-rw-r--r-- | cpp/.traces/not | 14 | ||||
-rw-r--r-- | cpp/.traces/or | 23 |
3 files changed, 60 insertions, 0 deletions
diff --git a/cpp/.traces/and b/cpp/.traces/and new file mode 100644 index 00000000..61fe4a64 --- /dev/null +++ b/cpp/.traces/and @@ -0,0 +1,23 @@ +parse/0: instruction: 1 +parse/0: ingredient: {name: "1", type: 0} +parse/0: product: {name: "1", type: 1} +parse/0: instruction: 1 +parse/0: ingredient: {name: "0", type: 0} +parse/0: product: {name: "2", type: 1} +parse/0: instruction: 7 +parse/0: ingredient: {name: "1", type: 1} +parse/0: ingredient: {name: "2", type: 1} +parse/0: product: {name: "3", type: 1} +run/0: instruction 0 +run/0: ingredient 0 is 1 +mem/0: storing in location 1 +run/0: instruction 1 +run/0: ingredient 0 is 0 +mem/0: storing in location 2 +run/0: instruction 2 +run/0: ingredient 0 is 1 +mem/0: location 1 is 1 +run/0: ingredient 1 is 2 +mem/0: location 2 is 0 +run/0: product 0 is 0 +mem/0: storing in location 3 diff --git a/cpp/.traces/not b/cpp/.traces/not new file mode 100644 index 00000000..69459c1b --- /dev/null +++ b/cpp/.traces/not @@ -0,0 +1,14 @@ +parse/0: instruction: 1 +parse/0: ingredient: {name: "1", type: 0} +parse/0: product: {name: "1", type: 1} +parse/0: instruction: 9 +parse/0: ingredient: {name: "1", type: 1} +parse/0: product: {name: "2", type: 1} +run/0: instruction 0 +run/0: ingredient 0 is 1 +mem/0: storing in location 1 +run/0: instruction 1 +run/0: ingredient 0 is 1 +mem/0: location 1 is 1 +run/0: product 0 is 0 +mem/0: storing in location 2 diff --git a/cpp/.traces/or b/cpp/.traces/or new file mode 100644 index 00000000..73c46b6d --- /dev/null +++ b/cpp/.traces/or @@ -0,0 +1,23 @@ +parse/0: instruction: 1 +parse/0: ingredient: {name: "1", type: 0} +parse/0: product: {name: "1", type: 1} +parse/0: instruction: 1 +parse/0: ingredient: {name: "0", type: 0} +parse/0: product: {name: "2", type: 1} +parse/0: instruction: 8 +parse/0: ingredient: {name: "1", type: 1} +parse/0: ingredient: {name: "2", type: 1} +parse/0: product: {name: "3", type: 1} +run/0: instruction 0 +run/0: ingredient 0 is 1 +mem/0: storing in location 1 +run/0: instruction 1 +run/0: ingredient 0 is 0 +mem/0: storing in location 2 +run/0: instruction 2 +run/0: ingredient 0 is 1 +mem/0: location 1 is 1 +run/0: ingredient 1 is 2 +mem/0: location 2 is 0 +run/0: product 0 is 1 +mem/0: storing in location 3 |