diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2017-03-01 20:29:09 -0800 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2017-03-01 20:29:09 -0800 |
commit | 7747d89c905a85c8ab6c03e987ad9747032d919d (patch) | |
tree | 289534dacefeba50ea6387e170e9d5362fe58bdf /src/sat/bsat | |
parent | bd9b7d64e1131f45699a5a4b20b4bf44795da857 (diff) | |
download | abc-7747d89c905a85c8ab6c03e987ad9747032d919d.tar.gz abc-7747d89c905a85c8ab6c03e987ad9747032d919d.tar.bz2 abc-7747d89c905a85c8ab6c03e987ad9747032d919d.zip |
Adding alternative generalization procedure.
Diffstat (limited to 'src/sat/bsat')
-rw-r--r-- | src/sat/bsat/satSolver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sat/bsat/satSolver.c b/src/sat/bsat/satSolver.c index 3d24161e..47fba5e3 100644 --- a/src/sat/bsat/satSolver.c +++ b/src/sat/bsat/satSolver.c @@ -2178,7 +2178,7 @@ int sat_solver_minimize_assumptions( sat_solver* s, int * pLits, int nLits, int if ( nLits == 1 ) { // since the problem is UNSAT, we will try to solve it without assuming the last literal - // the result is UNSAT, the last literal can be dropped; otherwise, it is needed + // if the result is UNSAT, the last literal can be dropped; otherwise, it is needed int status = l_False; int Temp = s->nConfLimit; s->nConfLimit = nConfLimit; |