about summary refs log tree commit diff stats
path: root/020run.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-07-08 14:47:12 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-07-08 14:47:12 -0700
commit9fdda88b2ef9306128e0cbf6027f5a839ae3210c (patch)
tree80c5f695267ac7e16c7f0c695f2648f911e3e25d /020run.cc
parent2e8c5d39157d1178ad453c86d94d4e1830d8dfe6 (diff)
downloadmu-9fdda88b2ef9306128e0cbf6027f5a839ae3210c.tar.gz
1724 - first stab at printing interactive results
Diffstat (limited to '020run.cc')
-rw-r--r--020run.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/020run.cc b/020run.cc
index 44f8667b..8a37c828 100644
--- a/020run.cc
+++ b/020run.cc
@@ -217,6 +217,7 @@ long long int size_of(const vector<type_ordinal>& types) {
 }
 
 bool size_mismatch(const reagent& x, const vector<double>& data) {
+//?   if (size_of(x) != SIZE(data)) cerr << SIZE(data) << '\n'; //? 1
   return size_of(x) != SIZE(data);
 }