From 2ef4400dfeae13d02165a551551c5e4b1d399470 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Mon, 28 Dec 2015 11:10:18 -0800 Subject: 2552 --- 059shape_shifting_recipe.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to '059shape_shifting_recipe.cc') 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'; } } -- cgit 1.4.1-2-gfad0 value='c987d88e83e758106eff992a78964a0c78519acb'/>
path: root/tests/functionaltests/test_receipts.h
blob: bead28a9864b01bdf97312365e72395479503234 (plain) (blame)
1
2
3