source: vis_dev/sharpSAT/src/src_sharpSAT/Basics.cpp @ 9

Last change on this file since 9 was 9, checked in by cecile, 13 years ago

add sharpSat

File size: 623 bytes
Line 
1#include "Basics.h"
2
3
4bool CSolverConf::analyzeConflicts = true;
5bool CSolverConf::doNonChronBackTracking = true;
6
7bool CSolverConf::allowComponentCaching = true;
8bool CSolverConf::allowImplicitBCP = true;
9
10bool CSolverConf::allowPreProcessing = true;
11
12bool CSolverConf::quietMode = false;
13
14unsigned int CSolverConf::secsTimeBound = 10000000;   
15
16unsigned int CSolverConf::maxCacheSize = 0;   
17bool CSolverConf::count = true;
18
19char TriValuetoChar(TriValue v){
20     switch(v){
21      case W: return '1';
22      case F: return '0';
23      case X: return '.';     
24     };
25     return '.';
26    }
27   
Note: See TracBrowser for help on using the repository browser.