https://github.com/TakehideSoh/SAF
Tip revision: d26cc9f94a4f79c046ee0cdd3a127a44f7b443b6 authored by TakehideSoh on 23 June 2023, 07:02:26 UTC
Merge pull request #2 from TakehideSoh/dev
Merge pull request #2 from TakehideSoh/dev
Tip revision: d26cc9f
phases.hpp
#ifndef _phases_hpp_INCLUDED
#define _phases_hpp_INCLUDED
namespace CaDiCaL {
struct Phases {
vector<signed char> best; // The current largest trail phase.
vector<signed char> forced; // Forced through 'phase'.
vector<signed char> min; // The current minimum unsatisfied phase.
vector<signed char> prev; // Previous during local search.
vector<signed char> saved; // The actual saved phase.
vector<signed char> target; // The current target phase.
};
}
#endif
