49 lines
2.0 KiB
C++
Executable File
49 lines
2.0 KiB
C++
Executable File
/***********************************************************************************
|
|
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 "StateSaver.h"
|
|
|
|
StateSaver::StateSaver(Solver& _solver) :
|
|
solver(_solver)
|
|
, backup_order_heap(Solver::VarOrderLt(solver.activity))
|
|
{
|
|
//Saving Solver state
|
|
backup_var_inc = solver.var_inc;
|
|
backup_activity.growTo(solver.activity.size());
|
|
std::copy(solver.activity.getData(), solver.activity.getDataEnd(), backup_activity.getData());
|
|
backup_order_heap = solver.order_heap;
|
|
backup_polarities = solver.polarity;
|
|
backup_restartType = solver.restartType;
|
|
backup_random_var_freq = solver.random_var_freq;
|
|
backup_propagations = solver.propagations;
|
|
}
|
|
|
|
void StateSaver::restore()
|
|
{
|
|
//Restore Solver state
|
|
solver.var_inc = backup_var_inc;
|
|
std::copy(backup_activity.getData(), backup_activity.getDataEnd(), solver.activity.getData());
|
|
solver.order_heap = backup_order_heap;
|
|
solver.polarity = backup_polarities;
|
|
solver.restartType = backup_restartType;
|
|
solver.random_var_freq = backup_random_var_freq;
|
|
|
|
//Finally, clear the order_heap from variables set/non-decisionned
|
|
solver.order_heap.filter(Solver::VarFilter(solver));
|
|
solver.propagations = backup_propagations;
|
|
}
|