3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-07 18:05:21 +00:00

do not echo dimacs while parsing

This commit is contained in:
Daniel Selsam 2019-01-31 16:45:01 -08:00
parent 7fa9768c36
commit cca280ac47

View file

@ -188,7 +188,6 @@ extern "C" {
// DIMACS files start with "p cnf" and number of variables/clauses.
// This is not legal SMT syntax, so use the DIMACS parser.
static bool is_dimacs_string(Z3_string c_str) {
std::cout << c_str << "\n";
return c_str[0] == 'p' && c_str[1] == ' ' && c_str[2] == 'c';
}