summaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
authorJulian Blake Kongslie2022-11-01 10:08:59 -0700
committerJulian Blake Kongslie2022-11-01 10:08:59 -0700
commit62517a8004419591dd031faebb7a9a4827bc002a (patch)
tree14d9b6dae5474fd5d42b78da12b3974a2bcd0584 /main.cpp
parentImplemented the remaining instructions required for echo_optimal. (diff)
downloadbiggolf-62517a8004419591dd031faebb7a9a4827bc002a.tar.xz
Support writing a trace at the end of execution.
Diffstat (limited to '')
-rw-r--r--main.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/main.cpp b/main.cpp
index 62926a5..1f1b6de 100644
--- a/main.cpp
+++ b/main.cpp
@@ -76,5 +76,8 @@ int main(int argc, const char *argv[]) {
76 checker.execute(); 76 checker.execute();
77 } 77 }
78 78
79 std::ofstream fh("trace.evt");
80 system.write_evt(fh);
81
79 return 0; 82 return 0;
80} 83}