3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-17 08:42:15 +00:00

add pb to local search

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2017-06-28 20:29:13 -07:00
parent 5c83dfee06
commit 085c18a92a
2 changed files with 72 additions and 41 deletions

View file

@ -107,6 +107,8 @@ namespace sat {
void push(literal l) { m_literals.push_back(l); ++m_size; }
unsigned size() const { return m_size; }
literal const& operator[](unsigned idx) const { return m_literals[idx]; }
literal const* begin() const { return m_literals.begin(); }
literal const* end() const { return m_literals.end(); }
};
local_search_config m_config;