about summary refs log tree commit diff stats
path: root/059shape_shifting_recipe.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-12-28 11:10:18 -0800
committerKartik K. Agaram <vc@akkartik.com>2015-12-28 11:10:18 -0800
commit2ef4400dfeae13d02165a551551c5e4b1d399470 (patch)
tree41be07cdd963aae14a8f478e39f0c333c66f00b8 /059shape_shifting_recipe.cc
parentba625111dcad86a0e1cbb54eccc1af6a37ad8cec (diff)
downloadmu-2ef4400dfeae13d02165a551551c5e4b1d399470.tar.gz
2552
Diffstat (limited to '059shape_shifting_recipe.cc')
-rw-r--r--059shape_shifting_recipe.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/059shape_shifting_recipe.cc b/059shape_shifting_recipe.cc
index 38abf76f..1edaf32b 100644
--- a/059shape_shifting_recipe.cc
+++ b/059shape_shifting_recipe.cc
@@ -74,21 +74,21 @@ if (best_score == -1) {
   if (exemplar) {
 //?     cerr << "specializing " << inst.name << '\n';
     trace(9992, "transform") << "found variant to specialize: " << exemplar << ' ' << get(Recipe, exemplar).name << end();
-    LOG << "found variant to specialize: " << exemplar << ' ' << header(get(Recipe, exemplar)) << '\n';
+//?     LOG << "found variant to specialize: " << exemplar << ' ' << header(get(Recipe, exemplar)) << '\n';
     recipe_ordinal new_recipe_ordinal = new_variant(exemplar, inst, caller_recipe);
     variants.push_back(new_recipe_ordinal);
     // perform all transforms on the new specialization
     const string& new_name = get(Recipe, variants.back()).name;
     trace(9992, "transform") << "transforming new specialization: " << new_name << end();
-    LOG << "transforming new specialization: " << header(get(Recipe, variants.back())) << '\n';
+//?     LOG << "transforming new specialization: " << header(get(Recipe, variants.back())) << '\n';
     for (long long int t = 0; t < SIZE(Transform); ++t) {
       (*Transform.at(t))(new_recipe_ordinal);
     }
     get(Recipe, new_recipe_ordinal).transformed_until = SIZE(Transform)-1;
-    LOG << "replacing " << inst.name << " with " << get(Recipe, variants.back()).name << '\n';
+//?     LOG << "replacing " << inst.name << " with " << get(Recipe, variants.back()).name << '\n';
     inst.name = get(Recipe, variants.back()).name;
     trace(9992, "transform") << "new specialization: " << inst.name << end();
-    LOG << "new specialization: " << inst.name << '\n';
+//?     LOG << "new specialization: " << inst.name << '\n';
   }
 }