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

Remove duplicated default value doc #1502

Merged
merged 1 commit into from
Feb 27, 2024
Merged
Changes from all commits
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
4 changes: 1 addition & 3 deletions core/src/main/scala/stainless/MainHelpers.scala
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,7 @@ trait MainHelpers extends inox.MainHelpers { self =>
verification.optVCCache -> Description(Verification, "Enable caching of verification conditions"),
verification.optCoq -> Description(Verification, "Transform the program into a Coq program, and let Coq generate subgoals automatically"),
verification.optAdmitAll -> Description(Verification, "Admit all obligations when translated into a coq program"),
verification.optStrictArithmetic -> Description(Verification,
s"Check arithmetic operations for unintended behavior and overflows (default: true)"),
verification.optStrictArithmetic -> Description(Verification, "Check arithmetic operations for unintended behavior and overflows"),
verification.optAdmitVCs -> Description(Verification, "Admit all verification conditions"),
verification.optSimplifier -> Description(Verification, "Select which simplifier to use for VC simplification\n" +
"Available:\n" +
Expand Down Expand Up @@ -277,4 +276,3 @@ trait MainHelpers extends inox.MainHelpers { self =>
JsonUtils.writeFile(new File(file), json)
}
}