diff options
author | Jason Koenig <unknown> | 2012-06-13 11:54:11 -0700 |
---|---|---|
committer | Jason Koenig <unknown> | 2012-06-13 11:54:11 -0700 |
commit | ce71139e213adff4fc890c419dec87036a7328ab (patch) | |
tree | 41100750f9cd5a9f650b2245bea1bcd8a8898e04 /Test/dafny0/runtest.bat | |
parent | 6a2d1e99fe29fa6558a5b5186b174c9041069d6c (diff) |
Dafny: liberalized equality to work when the types could possibly be the same
(i.e. a != b is allowed when a: array<int> and b: array<T>)
Diffstat (limited to 'Test/dafny0/runtest.bat')
-rw-r--r-- | Test/dafny0/runtest.bat | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Test/dafny0/runtest.bat b/Test/dafny0/runtest.bat index e4c134f6..0da7fe3e 100644 --- a/Test/dafny0/runtest.bat +++ b/Test/dafny0/runtest.bat @@ -22,7 +22,7 @@ for %%f in (TypeTests.dfy NatTypes.dfy SmallTests.dfy Definedness.dfy LoopModifies.dfy Refinement.dfy RefinementErrors.dfy
ReturnErrors.dfy ReturnTests.dfy ChainingDisjointTests.dfy
CallStmtTests.dfy MultiSets.dfy PredExpr.dfy LetExpr.dfy
- Predicates.dfy Skeletons.dfy Maps.dfy) do (
+ Predicates.dfy Skeletons.dfy Maps.dfy LiberalEquality.dfy) do (
echo.
echo -------------------- %%f --------------------
%DAFNY_EXE% /compile:0 /print:out.bpl.tmp /dprint:out.dfy.tmp %* %%f
|