Skip to content

Commit

Permalink
reHC*, be more verbose by default.
Browse files Browse the repository at this point in the history
  • Loading branch information
yp committed Jun 9, 2011
1 parent e223c11 commit 13fdf61
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
13 changes: 13 additions & 0 deletions CMakeOptions.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,17 @@ if (INTEGRATE_SAT_SOLVER)
OFF
)

## ####################
##
## Specific options for the solvers
##
## ####################

## Solver: CryptoMiniSat

### Uncomment the following to (try to) lower the memory usage
### (speed will be affected)
# add_definitions("-DTRY_LOW_MEMORY_USAGE")


endif()
5 changes: 4 additions & 1 deletion include/cms_sat_solver_interface.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,15 @@ class SAT_solver_iface_t
:_solver(new Solver()), _solved(false), _sat(false)
{
SolverConf& conf= _solver->conf;
conf.verbosity= 1;
conf.verbosity= 3;
conf.doFindXors= false;
conf.doFindEqLits= false;
conf.doRegFindEqLits= false;
conf.libraryUsage= true;
conf.restrictPickBranch= 0;
#ifdef TRY_LOW_MEMORY_USAGE
conf.doSatELite= false;
#endif
};

~SAT_solver_iface_t() {
Expand Down

0 comments on commit 13fdf61

Please sign in to comment.