3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-10-07 08:21:56 +00:00

preparing for more efficient asymmetric branching

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2017-11-29 17:16:15 -08:00
parent 7e56d05dcf
commit a4dc68766d
11 changed files with 47 additions and 27 deletions

View file

@ -575,8 +575,8 @@ namespace sat {
}
void decay_activity() {
m_activity_inc *= 11;
m_activity_inc /= 10;
m_activity_inc *= m_config.m_variable_decay;
m_activity_inc /= 100;
}
private: