Skip to content

Commit 316e3ab

Browse files
author
Rustan Leino
committed
Adjust back (from the recent change in version number printing) the last line of verifier output
1 parent 0dfdacd commit 316e3ab

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Source/Dafny/DafnyOptions.cs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public class DafnyOptions : Bpl.CommandLineOptions
1212
private ErrorReporter errorReporter;
1313

1414
public DafnyOptions(ErrorReporter errorReporter = null)
15-
: base("Dafny", "Dafny") {
15+
: base("Dafny", "Dafny program verifier") {
1616
this.errorReporter = errorReporter;
1717
SetZ3ExecutableName();
1818
}
@@ -26,6 +26,11 @@ public override string VersionNumber {
2626
;
2727
}
2828
}
29+
public override string Version {
30+
get {
31+
return ToolName + VersionSuffix;
32+
}
33+
}
2934
public override string VersionSuffix {
3035
get {
3136
return " " + VersionNumber + " technical preview 0";

0 commit comments

Comments
 (0)