3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 09:35:32 +00:00

update doc

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2022-12-11 10:16:17 -08:00
parent a9f52b0069
commit f7269bb60a
6 changed files with 13 additions and 13 deletions

View file

@ -179,7 +179,7 @@ public:
void collect_param_descrs(param_descrs & r) override {
insert_max_memory(r);
insert_max_steps(r);
r.insert("max_inflation", CPK_UINT, "(default: infinity) multiplicative factor of initial term size.");
r.insert("max_inflation", CPK_UINT, "(default: infinity) multiplicative factor of initial term size.", "4294967295");
}
void operator()(goal_ref const & in, goal_ref_buffer & result) override {

View file

@ -611,8 +611,8 @@ void ctx_simplify_tactic::updt_params(params_ref const & p) {
void ctx_simplify_tactic::get_param_descrs(param_descrs & r) {
insert_max_memory(r);
insert_max_steps(r);
r.insert("max_depth", CPK_UINT, "(default: 1024) maximum term depth.");
r.insert("propagate_eq", CPK_BOOL, "(default: false) enable equality propagation from bounds.");
r.insert("max_depth", CPK_UINT, "maximum term depth.", "1024");
r.insert("propagate_eq", CPK_BOOL, "enable equality propagation from bounds.", "false");
}
void ctx_simplify_tactic::operator()(goal_ref const & in,

View file

@ -230,7 +230,7 @@ public:
void collect_param_descrs(param_descrs & r) override {
th_rewriter::get_param_descrs(r);
r.insert("max_rounds", CPK_UINT, "(default: 4) maximum number of rounds.");
r.insert("max_rounds", CPK_UINT, "maximum number of rounds.", "4");
}
void operator()(goal_ref const & in, goal_ref_buffer & result) override {