ABC: A System for Sequential Synthesis and Verification
 
Loading...
Searching...
No Matches
phases.hpp
Go to the documentation of this file.
1#ifndef _phases_hpp_INCLUDED
2#define _phases_hpp_INCLUDED
3
4#include "global.h"
5
7
8namespace CaDiCaL {
9
10struct Phases {
11
12 vector<signed char> best; // The current largest trail phase.
13 vector<signed char> forced; // Forced through 'phase'.
14 vector<signed char> min; // The current minimum unsatisfied phase.
15 vector<signed char> prev; // Previous during local search.
16 vector<signed char> saved; // The actual saved phase.
17 vector<signed char> target; // The current target phase.
18};
19
20} // namespace CaDiCaL
21
23
24#endif
#define ABC_NAMESPACE_CXX_HEADER_START
#define ABC_NAMESPACE_CXX_HEADER_END
vector< signed char > saved
Definition phases.hpp:16
vector< signed char > target
Definition phases.hpp:17
vector< signed char > best
Definition phases.hpp:12
vector< signed char > min
Definition phases.hpp:14
vector< signed char > prev
Definition phases.hpp:15
vector< signed char > forced
Definition phases.hpp:13