mirror of
https://github.com/Z3Prover/z3
synced 2025-08-02 01:13:18 +00:00
#7468 - add option (get-info :parameters) to display solver parameters that were updated globally and distinct from defaults
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
62126fd6e2
commit
c2b7b58c78
8 changed files with 62 additions and 6 deletions
|
@ -1902,6 +1902,11 @@ void cmd_context::display_model(model_ref& mdl) {
|
|||
}
|
||||
}
|
||||
|
||||
void cmd_context::display_parameters(std::ostream& out) {
|
||||
if (m_solver)
|
||||
m_solver->display_parameters(out);
|
||||
}
|
||||
|
||||
void cmd_context::add_declared_functions(model& mdl) {
|
||||
model_params p;
|
||||
if (!p.user_functions())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue