mirror of
https://github.com/Z3Prover/z3
synced 2025-10-09 17:31:57 +00:00
fixes
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
d15c0e396e
commit
5d08ebdffd
5 changed files with 10 additions and 7 deletions
|
@ -2316,6 +2316,10 @@ namespace nlsat {
|
|||
m_imp->m_simplify_cores = f;
|
||||
}
|
||||
|
||||
void explain::set_linear_project(bool f) {
|
||||
m_imp->m_linear_project = f;
|
||||
}
|
||||
|
||||
void explain::set_full_dimensional(bool f) {
|
||||
m_imp->m_full_dimensional = f;
|
||||
}
|
||||
|
@ -2336,10 +2340,6 @@ namespace nlsat {
|
|||
(*m_imp)(n, ls, result);
|
||||
}
|
||||
|
||||
void explain::linear_project(unsigned n, literal const* ls, scoped_literal_vector& result) {
|
||||
m_imp->linear_project(n, ls, result);
|
||||
}
|
||||
|
||||
void explain::project(var x, unsigned n, literal const * ls, scoped_literal_vector & result) {
|
||||
m_imp->project(x, n, ls, result);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue