mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
enable logging nla lemmas
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
2a4f0e785b
commit
bebcd94703
5 changed files with 37 additions and 0 deletions
|
@ -25,6 +25,12 @@ namespace bv {
|
|||
|
||||
class sls_fixed;
|
||||
|
||||
class sls_eval_plugin {
|
||||
public:
|
||||
virtual ~sls_eval_plugin() {}
|
||||
|
||||
};
|
||||
|
||||
class sls_eval {
|
||||
struct config {
|
||||
unsigned m_prob_randomize_extract = 50;
|
||||
|
@ -40,6 +46,8 @@ namespace bv {
|
|||
random_gen m_rand;
|
||||
config m_config;
|
||||
|
||||
scoped_ptr_vector<sls_eval_plugin> m_plugins;
|
||||
|
||||
|
||||
|
||||
scoped_ptr_vector<sls_valuation> m_values; // expr-id -> bv valuation
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue