diff options
Diffstat (limited to 'impl/Expression.hpp')
-rw-r--r-- | impl/Expression.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/impl/Expression.hpp b/impl/Expression.hpp index 913bf7a..5cf82d4 100644 --- a/impl/Expression.hpp +++ b/impl/Expression.hpp @@ -1,7 +1,7 @@ #ifndef EXPRESSION_HPP #define EXPRESSION_HPP -//#include <pair> +#include <iostream> #include "VariableAssignment.hpp" #include "Operator.hpp" @@ -50,7 +50,7 @@ struct MaxExpression : public Expression<T> { if (value > best.first) best = std::pair<T, unsigned int>(value, i); } - std::cout << "Best strategy: (" << best.first << ", " << best.second << ")" << std::endl; + std::cerr << "Best strategy: (" << best.first << ", " << best.second << ")" << std::endl; return best; } private: |