Skip to content
Closed
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
2 changes: 2 additions & 0 deletions Source/ExecutionEngine/CommandLineOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1343,6 +1343,7 @@ protected override bool ParseOption(string name, CommandLineParseState ps)
ps.CheckBooleanFlag("silent", x => Verbosity = CoreOptions.VerbosityLevel.Silent) ||
ps.CheckBooleanFlag("traceTimes", x => TraceTimes = x) ||
ps.CheckBooleanFlag("tracePOs", x => TraceProofObligations = x) ||
ps.CheckBooleanFlag("forceErrors", x => ForceBplErrors = x) ||
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let us rename the flag to forceBplErrors to match the name of the internal field. Otherwise, I am happy to accept this PR.

ps.CheckBooleanFlag("noResolve", x => NoResolve = x) ||
ps.CheckBooleanFlag("noTypecheck", x => NoTypecheck = x) ||
ps.CheckBooleanFlag("overlookTypeErrors", x => OverlookBoogieTypeErrors = x) ||
Expand Down Expand Up @@ -1868,6 +1869,7 @@ print Boogie program after it has been instrumented with
/traceTimes output timing information at certain points in the pipeline
/tracePOs output information about the number of proof obligations
(also included in the /trace output)
/forceErrors show boogie errors even if {:msg ...} attribute is present
/break launch and break into debugger

---- Civl options ----------------------------------------------------------
Expand Down