Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add option to ignore models during solving #215

Merged
merged 5 commits into from
Aug 13, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add documentation for ignore-models option
  • Loading branch information
sankalpgambhir committed Aug 9, 2024
commit 0351bcb44e2bf60cae9a8ead1bb4ef700eea5879
1 change: 1 addition & 0 deletions src/main/scala/inox/Main.scala
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ trait MainHelpers {
solvers.optAssumeChecked -> Description(Solvers, "Assume that all impure expression have been checked"),
solvers.optNoSimplifications -> Description(Solvers, "Disable selector/quantifier simplifications in solvers"),
solvers.optCheckModels -> Description(Solvers, "Double-check counter-examples with evaluator"),
solvers.optIgnoreModels -> Description(Solvers, s"Do not request models from solvers.\nOverrides and disables ${optCheckModels.name} and ${unrolling.optFeelingLucky.name}."),
solvers.optSilentErrors -> Description(Solvers, "Fail silently into UNKNOWN when encountering an error"),
solvers.unrolling.optUnrollBound -> Description(Solvers, "Maximum number of unroll steps to perform"),
solvers.unrolling.optUnrollFactor -> Description(Solvers, "Number of unrollings to perform between each interaction with the SMT solver"),
Expand Down