summaryrefslogtreecommitdiff
path: root/passes/sat
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2013-06-09 14:01:50 +0200
committerClifford Wolf <clifford@clifford.at>2013-06-09 14:01:50 +0200
commitb7ba90910dfc06d89bf45b6ead9e40e9bf985fe1 (patch)
tree9621581b14d985a86aa1c867760e48fde7723880 /passes/sat
parent0efde137752bc359630bf999be2c4b367870c54d (diff)
Fixed handling of $_XOR_ in SAT generator
Diffstat (limited to 'passes/sat')
-rw-r--r--passes/sat/sat_solve.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/passes/sat/sat_solve.cc b/passes/sat/sat_solve.cc
index 8e82e4ec..362efb2d 100644
--- a/passes/sat/sat_solve.cc
+++ b/passes/sat/sat_solve.cc
@@ -423,7 +423,9 @@ rerun_solver:
value.bits.push_back(modelValues.at(info.offset+i) ? RTLIL::State::S1 : RTLIL::State::S0);
if (info.timestep != last_timestep) {
- const char *hline = "--------------------------------------------------------";
+ const char *hline = "---------------------------------------------------------------------------------------------------"
+ "---------------------------------------------------------------------------------------------------"
+ "---------------------------------------------------------------------------------------------------";
if (last_timestep == -2) {
log(seq_len > 0 ? " Time " : " ");
log("%-*s %10s %10s %*s\n", maxModelName+10, "Signal Name", "Dec", "Hex", maxModelWidth+5, "Bin");