|
cprover
|
#include <satcheck_picosat.h>
Inheritance diagram for satcheck_picosatt:
Collaboration diagram for satcheck_picosatt:Public Member Functions | |
| satcheck_picosatt () | |
| ~satcheck_picosatt () | |
| virtual const std::string | solver_text () |
| virtual resultt | prop_solve () |
| virtual tvt | l_get (literalt a) const |
| virtual void | lcnf (const bvt &bv) |
| virtual void | set_assignment (literalt a, bool value) |
| virtual bool | is_in_conflict (literalt a) const |
| Returns true if an assumption is in the final conflict. More... | |
| virtual void | set_assumptions (const bvt &_assumptions) |
| virtual bool | has_set_assumptions () const |
| virtual bool | has_is_in_conflict () const |
Public Member Functions inherited from cnf_solvert | |
| cnf_solvert () | |
| virtual size_t | no_clauses () const override |
Public Member Functions inherited from cnft | |
| cnft () | |
| virtual | ~cnft () |
| virtual literalt | land (literalt a, literalt b) override |
| virtual literalt | lor (literalt a, literalt b) override |
| virtual literalt | land (const bvt &bv) override |
| Tseitin encoding of conjunction between multiple literals. More... | |
| virtual literalt | lor (const bvt &bv) override |
| Tseitin encoding of disjunction between multiple literals. More... | |
| virtual literalt | lxor (const bvt &bv) override |
| Tseitin encoding of XOR between multiple literals. More... | |
| virtual literalt | lxor (literalt a, literalt b) override |
| virtual literalt | lnand (literalt a, literalt b) override |
| virtual literalt | lnor (literalt a, literalt b) override |
| virtual literalt | lequal (literalt a, literalt b) override |
| virtual literalt | limplies (literalt a, literalt b) override |
| virtual literalt | lselect (literalt a, literalt b, literalt c) override |
| virtual literalt | new_variable () override |
| Generate a new variable and return it as a literal. More... | |
| virtual size_t | no_variables () const override |
| virtual void | set_no_variables (size_t no) |
| void | gate_and (literalt a, literalt b, literalt o) |
| Tseitin encoding of conjunction of two literals. More... | |
| void | gate_or (literalt a, literalt b, literalt o) |
| Tseitin encoding of disjunction of two literals. More... | |
| void | gate_xor (literalt a, literalt b, literalt o) |
| Tseitin encoding of XOR of two literals. More... | |
| void | gate_nand (literalt a, literalt b, literalt o) |
| Tseitin encoding of NAND of two literals. More... | |
| void | gate_nor (literalt a, literalt b, literalt o) |
| Tseitin encoding of NOR of two literals. More... | |
| void | gate_equal (literalt a, literalt b, literalt o) |
| Tseitin encoding of equality between two literals. More... | |
| void | gate_implies (literalt a, literalt b, literalt o) |
| Tseitin encoding of implication between two literals. More... | |
Public Member Functions inherited from propt | |
| propt () | |
| virtual | ~propt () |
| virtual void | set_equal (literalt a, literalt b) |
| asserts a==b in the propositional formula More... | |
| virtual void | l_set_to (literalt a, bool value) |
| void | l_set_to_true (literalt a) |
| void | l_set_to_false (literalt a) |
| void | lcnf (literalt l0, literalt l1) |
| void | lcnf (literalt l0, literalt l1, literalt l2) |
| void | lcnf (literalt l0, literalt l1, literalt l2, literalt l3) |
| virtual bool | has_set_to () const |
| virtual bool | cnf_handled_well () const |
| virtual void | set_variable_name (literalt, const irep_idt &) |
| bvt | new_variables (std::size_t width) |
| generates a bitvector of given width with new variables More... | |
| virtual void | set_frozen (literalt) |
| virtual void | set_time_limit_seconds (uint32_t) |
Protected Attributes | |
| bvt | assumptions |
Protected Attributes inherited from cnf_solvert | |
| statust | status |
| size_t | clause_counter |
Protected Attributes inherited from cnft | |
| size_t | _no_variables |
Protected Attributes inherited from propt | |
| bvt | lcnf_bv |
Private Attributes | |
| PicoSAT * | picosat |
Additional Inherited Members | |
Public Types inherited from propt | |
| enum | resultt { resultt::P_SATISFIABLE, resultt::P_UNSATISFIABLE, resultt::P_ERROR } |
Static Public Member Functions inherited from cnft | |
| static bvt | eliminate_duplicates (const bvt &) |
| eliminate duplicates from given vector of literals More... | |
Protected Types inherited from cnf_solvert | |
| enum | statust { statust::INIT, statust::SAT, statust::UNSAT, statust::ERROR } |
Protected Member Functions inherited from cnft | |
| bool | process_clause (const bvt &bv, bvt &dest) |
| filter 'true' from clause, eliminate duplicates, recognise trivially satisfied clauses More... | |
Static Protected Member Functions inherited from cnft | |
| static bool | is_all (const bvt &bv, literalt l) |
Definition at line 18 of file satcheck_picosat.h.
| satcheck_picosatt::satcheck_picosatt | ( | ) |
Definition at line 110 of file satcheck_picosat.cpp.
| satcheck_picosatt::~satcheck_picosatt | ( | ) |
Definition at line 115 of file satcheck_picosat.cpp.
|
inlinevirtual |
Reimplemented from propt.
Definition at line 34 of file satcheck_picosat.h.
|
inlinevirtual |
Reimplemented from propt.
Definition at line 33 of file satcheck_picosat.h.
|
virtual |
Returns true if an assumption is in the final conflict.
Note that only literals that are assumptions (see set_assumptions) may be queried.
Implements propt.
Definition at line 120 of file satcheck_picosat.cpp.
Implements propt.
Definition at line 25 of file satcheck_picosat.cpp.
|
virtual |
Implements propt.
Definition at line 51 of file satcheck_picosat.cpp.
|
virtual |
Implements propt.
Definition at line 68 of file satcheck_picosat.cpp.
|
virtual |
Implements propt.
Definition at line 105 of file satcheck_picosat.cpp.
|
virtual |
Reimplemented from propt.
Definition at line 127 of file satcheck_picosat.cpp.
|
virtual |
Implements propt.
Definition at line 46 of file satcheck_picosat.cpp.
|
protected |
Definition at line 37 of file satcheck_picosat.h.
|
private |
Definition at line 40 of file satcheck_picosat.h.