about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-03-19 11:49:55 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-03-19 11:49:55 -0700
commitd97bafd318567c0f4ae7c80234ecde6cf7658b1c (patch)
tree8af00722f0e02f8e7a18c6e2fb4c31282600f2dc
parentfda4f09181db880dc5199d191161d75d8b9ad2b4 (diff)
downloadmu-d97bafd318567c0f4ae7c80234ecde6cf7658b1c.tar.gz
2796
-rw-r--r--012transform.cc5
1 files changed, 0 insertions, 5 deletions
diff --git a/012transform.cc b/012transform.cc
index 4b441f86..a416c20a 100644
--- a/012transform.cc
+++ b/012transform.cc
@@ -44,15 +44,11 @@ void transform_all() {
 //?     cerr << "transform " << t << '\n';
     for (map<recipe_ordinal, recipe>::iterator p = Recipe.begin(); p != Recipe.end(); ++p) {
       recipe& r = p->second;
-//?       cerr << "000 " << r.name << ' ' << SIZE(r.steps) << '\n';
       if (r.steps.empty()) continue;
-//?       cerr << "001 " << r.name << '\n';
       if (r.transformed_until != t-1) continue;
-//?       cerr << "002 " << r.name << '\n';
       // End Transform Checks
       (*Transform.at(t))(/*recipe_ordinal*/p->first);
       r.transformed_until = t;
-//?       cerr << "009 after transform " << t << ": " << to_string(r) << '\n';
     }
   }
 //?   cerr << "wrapping up transform\n";
@@ -62,7 +58,6 @@ void transform_all() {
 
 void parse_int_reagents() {
   trace(9991, "transform") << "--- parsing any uninitialized reagents as integers" << end();
-//?   cerr << "--- parsing any uninitialized reagents as integers" << '\n';
   for (map<recipe_ordinal, recipe>::iterator p = Recipe.begin(); p != Recipe.end(); ++p) {
     recipe& r = p->second;
     if (r.steps.empty()) continue;