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-10 15:52:38 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-07-10 15:52:38 -0700
commit885315fe8858f8a4963eaf6f1f8a778d961aedd3 (patch)
tree0d2cb28655f7c2bb96801d65b3a9d27aef4b903e /020run.cc
parent2337793f5566ed73ac12c68393e8f66ccd939b05 (diff)
downloadmu-885315fe8858f8a4963eaf6f1f8a778d961aedd3.tar.gz
1751 - sluggishness fixed
Ah, I was indeed double-rendering, but somehow it was still hard to see
the problem past that preliminary diagnosis.

Still two failing tests to fix.
Diffstat (limited to '020run.cc')
-rw-r--r--020run.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/020run.cc b/020run.cc
index 8a37c828..60a5c116 100644
--- a/020run.cc
+++ b/020run.cc
@@ -217,7 +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
+//?   if (size_of(x) != SIZE(data)) cerr << size_of(x) << " vs " << SIZE(data) << '\n'; //? 2
   return size_of(x) != SIZE(data);
 }