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
var.hpp
#ifndef _var_hpp_INCLUDED
#define _var_hpp_INCLUDED
namespace CaDiCaL {
struct Clause;
// This structure captures data associated with an assigned variable.
struct Var {
// Note that none of these members is valid unless the variable is
// assigned. During unassigning a variable we do not reset it.
int level; // decision level
int trail; // trail height at assignment
Clause * reason; // implication graph edge during search
};
}
#endif
