summaryrefslogtreecommitdiff
path: root/src/prop/cryptominisat/Solver/SolverConf.cpp
blob: e7a5cfafa27c48fdbf9eddad218f29c4edeb41dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/*****************************************************************************
CryptoMiniSat -- Copyright (c) 2009 Mate Soos

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see <http://www.gnu.org/licenses/>.
******************************************************************************/

#include "SolverConf.h"
#include <limits>

using namespace CMSat;

SolverConf::SolverConf() :
        random_var_freq(0.001)
        , clause_decay (1 / 0.999)
        , restart_first(100)
        , restart_inc(1.5)
        , learntsize_factor((double)1/(double)3)

        , expensive_ccmin  (true)
        , polarity_mode    (polarity_auto)
        , verbosity        (0)
        , restrictPickBranch(0)

        //Simplification
        , simpBurstSConf(NUM_CONFL_BURST_SEARCH)
        , simpStartMult(SIMPLIFY_MULTIPLIER)
        , simpStartMMult(SIMPLIFY_MULTIPLIER_MULTIPLIER)

        , doPerformPreSimp (true)
        , failedLitMultiplier(2.0)

        //optimisations to do
        , doFindXors       (true)
        , doFindEqLits     (true)
        , doRegFindEqLits  (true)
        , doReplace        (true)
        , doConglXors      (true)
        , doHeuleProcess   (true)
        , doSchedSimp      (true)
        , doSatELite       (true)
        , doXorSubsumption (true)
        , doHyperBinRes    (true)
        , doBlockedClause  (false)
        , doVarElim        (true)
        , doSubsume1       (true)
        , doClausVivif     (true)
        , doSortWatched    (true)
        , doMinimLearntMore(true)
        , doMinimLMoreRecur(true)
        , doFailedLit      (true)
        , doRemUselessBins (true)
        , doSubsWBins      (true)
        , doSubsWNonExistBins(true)
        , doRemUselessLBins(true)
        #ifdef ENABLE_UNWIND_GLUE
        , doMaxGlueDel     (false)
        #endif //ENABLE_UNWIND_GLUE
        , doPrintAvgBranch (false)
        , doCacheOTFSSR    (true)
        , doCacheOTFSSRSet (true)
        , doExtendedSCC    (false)
        , doCalcReach      (true)
        , doBXor           (true)
        , doOTFSubsume     (true)
        , maxConfl         (std::numeric_limits<uint64_t>::max())
        , isPlain          (false)

        , maxRestarts      (std::numeric_limits<uint32_t>::max())
        , needToDumpLearnts(false)
        , needToDumpOrig   (false)
        , maxDumpLearntsSize(std::numeric_limits<uint32_t>::max())
        , libraryUsage     (true)
        , greedyUnbound    (false)
        #ifdef ENABLE_UNWIND_GLUE
        , maxGlue          (DEFAULT_MAX_GLUE)
        #endif //ENABLE_UNWIND_GLUE
        , fixRestartType   (auto_restart)
        , origSeed(0)
{
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback