3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 17:15:31 +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

@ -314,19 +314,19 @@ void param_descrs::display_markdown(std::ostream & out, bool smt2_style, bool in
}
void insert_max_memory(param_descrs & r) {
r.insert("max_memory", CPK_UINT, "(default: infty) maximum amount of memory in megabytes.");
r.insert("max_memory", CPK_UINT, "(default: infty) maximum amount of memory in megabytes.", "4294967295");
}
void insert_max_steps(param_descrs & r) {
r.insert("max_steps", CPK_UINT, "(default: infty) maximum number of steps.");
r.insert("max_steps", CPK_UINT, "(default: infty) maximum number of steps.", "4294967295");
}
void insert_produce_models(param_descrs & r) {
r.insert("produce_models", CPK_BOOL, "(default: false) model generation.");
r.insert("produce_models", CPK_BOOL, "model generation.", "false");
}
void insert_produce_proofs(param_descrs & r) {
r.insert("produce_proofs", CPK_BOOL, "(default: false) proof generation.");
r.insert("produce_proofs", CPK_BOOL, "proof generation.", "false");
}
void insert_timeout(param_descrs & r) {