-
Notifications
You must be signed in to change notification settings - Fork 147
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #117 from JstnMcBrd/dafny
Add Dafny implementation
- Loading branch information
Showing
3 changed files
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,6 +42,7 @@ C++ | |
C# | ||
CSS | ||
CUDA | ||
Dafny | ||
Dart | ||
Elixir | ||
Elm | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
predicate is_prime(number: int) | ||
{ | ||
false | ||
} | ||
|
||
// Because Dafny is a formal verification language, assertions to prove correctness | ||
// are necessary for the program to have any meaning. | ||
method {:test} test() | ||
{ | ||
assert forall n :: n in [4, 6, 8, 9, 10] ==> !is_prime(n); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
predicate is_prime(n:int){false} | ||
method{:test}test(){assert forall n::n in [4,6,8,9,10] ==> !is_prime(n);} |