Commit e1a12af0 authored by Paul's avatar Paul
Browse files

Remove printout

parent a4fb3d04
......@@ -9,7 +9,6 @@ void simple_test()
auto one = p.add_literal(1);
auto two = p.add_literal(2);
p.add_instruction(sum_op{}, one, two);
std::cout << std::distance(p.begin(), p.validate()) << std::endl;
EXPECT(bool{p.validate() == p.end()});
auto result = p.eval({});
EXPECT(result == migraph::literal{3});
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment