summaryrefslogtreecommitdiff
path: root/src/prop/cryptominisat/Solver/StateSaver.h
blob: 3450a2364a8f73ed7c599980f5867808ebd3a299 (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
/***********************************************************************************
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/>.
**************************************************************************************************/

#ifndef STATESAVER__H
#define STATESAVER__H

#include "Solver.h"

namespace CMSat {

class StateSaver
{
    public:
        StateSaver(Solver& _solver);
        void restore();

    private:
        Solver& solver;
        Heap<Solver::VarOrderLt> backup_order_heap;
        vector<char> backup_polarities;
        vec<uint32_t> backup_activity;
        uint32_t backup_var_inc;
        RestartType backup_restartType;
        double backup_random_var_freq;
        uint64_t backup_propagations;
};

}

#endif //STATESAVER__H
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback