mirror of
https://github.com/Z3Prover/z3
synced 2025-08-03 01:40:22 +00:00
add API for setting variable activity
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
e4c6dcd84c
commit
89bf2d4368
22 changed files with 125 additions and 1 deletions
|
@ -203,6 +203,10 @@ namespace smt {
|
|||
return m_context.get_trail();
|
||||
}
|
||||
|
||||
void set_activity(expr* lit, double activity) override {
|
||||
m_context.set_activity(lit, activity);
|
||||
}
|
||||
|
||||
struct scoped_minimize_core {
|
||||
smt_solver& s;
|
||||
expr_ref_vector m_assumptions;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue