mirror of
https://github.com/Z3Prover/z3
synced 2025-06-27 00:18:45 +00:00
adding in-processing
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
fb84ba8c34
commit
c3d29e75ef
9 changed files with 484 additions and 106 deletions
|
@ -32,6 +32,13 @@ namespace sat {
|
|||
void model_converter::reset() {
|
||||
m_entries.finalize();
|
||||
}
|
||||
|
||||
model_converter& model_converter::operator=(model_converter const& other) {
|
||||
reset();
|
||||
m_entries.append(other.m_entries);
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
||||
void model_converter::operator()(model & m) const {
|
||||
vector<entry>::const_iterator begin = m_entries.begin();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue