3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-15 15:25:26 +00:00

duality fix plus mbqi option

This commit is contained in:
Ken McMillan 2014-03-04 18:38:08 -08:00
parent 19dbd02e13
commit 83a774ac79
5 changed files with 25 additions and 2 deletions

View file

@ -182,6 +182,7 @@ namespace Duality {
void set(char const * param, char const * value) { m_config.set(param,value); }
void set(char const * param, bool value) { m_config.set(param,value); }
void set(char const * param, int value) { m_config.set(param,value); }
config &get_config() {return m_config;}
symbol str_symbol(char const * s);
symbol int_symbol(int n);