From 99957a825f077248560b8232465b61d1c2416cfc Mon Sep 17 00:00:00 2001 From: Clifford Wolf Date: Sat, 8 Jun 2013 12:17:30 +0200 Subject: Added -all and -max options to sat_solve --- passes/sat/sat_solve.cc | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) (limited to 'passes') diff --git a/passes/sat/sat_solve.cc b/passes/sat/sat_solve.cc index 27d327c9..a7605b44 100644 --- a/passes/sat/sat_solve.cc +++ b/passes/sat/sat_solve.cc @@ -116,6 +116,13 @@ struct SatSolvePass : public Pass { log("This command solves a SAT problem defined over the currently selected circuit\n"); log("and additional constraints passed as parameters.\n"); log("\n"); + log(" -all\n"); + log(" show all solutions to the problem (this can grow exponentially, use\n"); + log(" -max instead to get solutions)\n"); + log("\n"); + log(" -max \n"); + log(" like -all, but limit number of solutions to \n"); + log("\n"); log(" -set \n"); log(" set the specified signal to the specified value.\n"); log("\n"); @@ -128,11 +135,20 @@ struct SatSolvePass : public Pass { { std::vector> sets; std::vector shows; + int loopcount = 0; log_header("Executing SAT_SOLVE pass (solving SAT problems in the circuit).\n"); size_t argidx; for (argidx = 1; argidx < args.size(); argidx++) { + if (args[argidx] == "-all") { + loopcount = -1; + continue; + } + if (args[argidx] == "-max" && argidx+1 < args.size()) { + loopcount = atoi(args[++argidx].c_str()); + continue; + } if (args[argidx] == "-set" && argidx+2 < args.size()) { std::string lhs = args[++argidx].c_str(); std::string rhs = args[++argidx].c_str(); @@ -247,23 +263,28 @@ struct SatSolvePass : public Pass { modelExpressions.push_back(vec[0]); } +rerun_solver: log("Solving problem with %d variables and %d clauses..\n", ez.numCnfVariables(), ez.numCnfClauses()); if (ez.solve(modelExpressions, modelValues)) { log("SAT solving finished - model found:\n\n"); + int modelIdx = 0; int maxModelName = 10; int maxModelWidth = 10; + modelSig.optimize(); for (auto &c : modelSig.chunks) if (c.wire != NULL) { maxModelName = std::max(maxModelName, int(c.wire->name.size())); maxModelWidth = std::max(maxModelWidth, c.width); } + const char *hline = "--------------------------------------------------------"; log(" %-*s %10s %10s %*s\n", maxModelName+10, "Signal Name", "Dec", "Hex", maxModelWidth+5, "Bin"); log(" %*.*s %10.10s %10.10s %*.*s\n", maxModelName+10, maxModelName+10, hline, hline, hline, maxModelWidth+5, maxModelWidth+5, hline); + for (auto &c : modelSig.chunks) { if (c.wire == NULL) continue; @@ -276,6 +297,16 @@ struct SatSolvePass : public Pass { log(" %-*s %10s %10s %*s\n", maxModelName+10, log_signal(c), "--", "--", maxModelWidth+5, value.as_string().c_str()); modelIdx += c.width; } + + if (loopcount != 0) { + log("\n"); + std::vector clause; + for (size_t i = 0; i < modelExpressions.size(); i++) + clause.push_back(modelValues.at(i) ? ez.NOT(modelExpressions.at(i)) : modelExpressions.at(i)); + ez.assume(ez.expression(ezSAT::OpOr, clause)); + loopcount--; + goto rerun_solver; + } } else log("SAT solving finished - no model found.\n"); -- cgit v1.2.3