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:
parent
a9f52b0069
commit
f7269bb60a
6 changed files with 13 additions and 13 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue