You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: Src/PCompiler/PCommandLine/Options/PCheckerOptions.cs
+1-15
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ public PCheckerOptions()
31
31
basicOptions.AddPositionalArgument("path","Path to the compiled file to check for correctness (*.dll)."+
32
32
" If this option is not passed, the compiler searches for a *.dll file in the current folder").IsRequired=false;
33
33
varmodes=basicOptions.AddArgument("mode","md","Checker mode to use. Can be bugfinding or pex. If this option is not passed, bugfinding mode is used as default");
// " --mode bugfinding : for bug finding through stratified random search\n" +
27
-
// " --mode verification : for verification through exhaustive symbolic exploration\n" +
28
-
// " --mode coverage : for achieving state-space coverage through exhaustive explicit-state search\n" +
29
27
// " --mode pobserve : for runtime monitoring of P specs against implementation logs"
30
28
);
31
29
@@ -39,7 +37,7 @@ internal PCompilerOptions()
39
37
pfilesGroup.AddArgument("outdir","o","Dump output to directory (absolute or relative path)");
40
38
41
39
varmodes=Parser.AddArgument("mode","md","Compilation mode to use. Can be bugfinding, pex, pobserve, or stately. If this option is not passed, bugfinding mode is used as default");
0 commit comments