mirror of
https://github.com/Z3Prover/z3
synced 2025-05-04 14:25:46 +00:00
remove unused random seed parameter on cmd_context
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
9847675095
commit
e2a9cb80e2
3 changed files with 2 additions and 14 deletions
|
@ -185,7 +185,6 @@ protected:
|
|||
bool m_interactive_mode;
|
||||
bool m_global_decls;
|
||||
bool m_print_success;
|
||||
unsigned m_random_seed;
|
||||
bool m_produce_unsat_cores;
|
||||
bool m_produce_unsat_assumptions;
|
||||
bool m_produce_assignments;
|
||||
|
@ -337,8 +336,6 @@ public:
|
|||
void print_unsupported(symbol const & s, int line, int pos) { print_unsupported_msg(); print_unsupported_info(s, line, pos); }
|
||||
bool global_decls() const { return m_global_decls; }
|
||||
void set_global_decls(bool flag) { SASSERT(!has_manager()); m_global_decls = flag; }
|
||||
unsigned random_seed() const { return m_random_seed; }
|
||||
void set_random_seed(unsigned s) { m_random_seed = s; }
|
||||
bool produce_models() const;
|
||||
bool produce_proofs() const;
|
||||
bool produce_unsat_cores() const;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue