Skip to content

Commit

Permalink
Fixing output for exhaustive tuning
Browse files Browse the repository at this point in the history
  • Loading branch information
khuck committed Apr 26, 2024
1 parent 1447ff0 commit f5f8582
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/apex/exhaustive.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ void Exhaustive::evaluate(double new_cost) {
best_cost = new_cost;
std::cout << "New best! " << new_cost << " k: " << k;
for (auto& v : vars) { v.second.save_best(); }
for (auto& v : vars) { std::cout << ", index: " << v.second.current_index; }
for (auto& v : vars) { std::cout << ", value: " << v.second.toString(); }
std::cout << std::endl;
}
cost = new_cost;
Expand Down

0 comments on commit f5f8582

Please sign in to comment.