diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-03-13 13:12:49 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-03-13 13:12:49 +0100 |
commit | 34e54cda5b45fb96cd44597622c3cba00e410265 (patch) | |
tree | 6b0383da4a43706e3af18682dc2c1b71a09f7281 | |
parent | 7a1ac1120351d5cf0de2c9173fb7353795b0137e (diff) | |
download | yosys-34e54cda5b45fb96cd44597622c3cba00e410265.tar.gz yosys-34e54cda5b45fb96cd44597622c3cba00e410265.tar.bz2 yosys-34e54cda5b45fb96cd44597622c3cba00e410265.zip |
Small improvement in SAT log messages
-rw-r--r-- | passes/sat/sat.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/passes/sat/sat.cc b/passes/sat/sat.cc index d18a220d3..87bff4c48 100644 --- a/passes/sat/sat.cc +++ b/passes/sat/sat.cc @@ -214,7 +214,7 @@ struct SatHelper log_cmd_error("Set expression with different lhs and rhs sizes: %s (%s, %d bits) vs. %s (%s, %d bits)\n", s.first.c_str(), log_signal(lhs), lhs.width, s.second.c_str(), log_signal(rhs), rhs.width); - log("Import set-constraint for timestep: %s = %s\n", log_signal(lhs), log_signal(rhs)); + log("Import set-constraint for this timestep: %s = %s\n", log_signal(lhs), log_signal(rhs)); big_lhs.remove2(lhs, &big_rhs); big_lhs.append(lhs); big_rhs.append(rhs); @@ -228,7 +228,7 @@ struct SatHelper log_cmd_error("Failed to parse lhs set expression `%s'.\n", s.c_str()); show_signal_pool.add(sigmap(lhs)); - log("Import unset-constraint for timestep: %s\n", log_signal(lhs)); + log("Import unset-constraint for this timestep: %s\n", log_signal(lhs)); big_lhs.remove2(lhs, &big_rhs); } @@ -291,7 +291,7 @@ struct SatHelper for (int t = 0; t < 3; t++) for (auto &sig : sets_def_undef[t]) { - log("Import %s constraint for timestep: %s\n", t == 0 ? "def" : t == 1 ? "any_undef" : "all_undef", log_signal(sig)); + log("Import %s constraint for this timestep: %s\n", t == 0 ? "def" : t == 1 ? "any_undef" : "all_undef", log_signal(sig)); std::vector<int> undef_sig = satgen.importUndefSigSpec(sig, timestep); if (t == 0) ez.assume(ez.NOT(ez.expression(ezSAT::OpOr, undef_sig))); |