Skip to content

Commit 1a60ad7

Browse files
committed
improve error output
1 parent 1095215 commit 1a60ad7

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/evaluator.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,9 +122,6 @@ std::pair<status_t, steps_t> Evaluator::check(const Program &p,
122122
out = mem.get(Program::OUTPUT_CELL);
123123
}
124124
} catch (const std::exception &e) {
125-
if (settings.print_as_b_file) {
126-
std::cout << std::string(e.what()) << std::endl;
127-
}
128125
result.first = ((int64_t)i >= num_terminating_terms) ? status_t::WARNING
129126
: status_t::ERROR;
130127
return result;

0 commit comments

Comments
 (0)