summaryrefslogtreecommitdiff
path: root/Test/hofs/Simple.dfy
diff options
context:
space:
mode:
authorGravatar Dan Rosén <danr@chalmers.se>2014-08-11 14:57:27 -0700
committerGravatar Dan Rosén <danr@chalmers.se>2014-08-11 14:57:27 -0700
commit4cbe4583b329a39dee2b4b456758cafbe7e2fa79 (patch)
tree6bb2377f06036fd41d939d168365d4e47cc7a327 /Test/hofs/Simple.dfy
parentc377658acba5472b6d0c1e1452ce4c4c8f1fc28e (diff)
Add higher-order-functions and some other goodies
* The reads clause now needs to be self framing. * The requires clause now needs to be framed by the reads clause. * There are one-shot lambdas, with a single arrow, but they will probably be removed. * There is a {:heapQuantifier} attribute to quantifiers, but they will probably be removed. * Add smart handling of type variables * Add < and > for datatype & type parameter
Diffstat (limited to 'Test/hofs/Simple.dfy')
-rw-r--r--Test/hofs/Simple.dfy90
1 files changed, 90 insertions, 0 deletions
diff --git a/Test/hofs/Simple.dfy b/Test/hofs/Simple.dfy
new file mode 100644
index 00000000..4bb58078
--- /dev/null
+++ b/Test/hofs/Simple.dfy
@@ -0,0 +1,90 @@
+// RUN: %dafny /compile:0 "%s" > "%t"
+// RUN: %diff "%s.expect" "%t"
+
+function method MkId<A>() : A -> A {
+ x => x
+}
+
+function method IntId() : int -> int {
+ y => y
+}
+
+function method DivZero() : int -> int
+{
+ z => 5 / z // div by zero
+}
+
+function method DivZeroWithReq() : int -> int
+{
+ (z) requires z != 0 => 5 / z
+}
+
+function method DivZero2() : (int, int) -> int {
+ (x, y) requires y != 0 => x / y
+}
+
+function method DivZero3() : int -> int {
+ z => z / 0 // div by zero
+}
+
+function method Shadow() : int -> real -> real {
+ x => x => x
+}
+
+method Reqs() {
+ var fn := (u) requires u => u;
+ print fn(true);
+ print fn(false); // precond violation
+}
+
+method Main() {
+ var id := IntId();
+ print id(5);
+ var polyid : int -> int := MkId();
+ print polyid(5);
+ assert id(2) == polyid(2);
+ assert id(3) != 4 && 5 != polyid(6);
+ var divvy := DivZero2();
+ print divvy(2,5);
+ print divvy(2,0); // precond violation
+}
+
+function method succ(x : int) : int
+ requires x > 0;
+{
+ x + 1
+}
+
+method Main2() {
+ var suc := succ;
+ assert suc(3) == succ(3);
+ assert suc(-1) == 0; // precond violation
+}
+
+function method Id<A>(x : A) : A {
+ x
+}
+
+
+method Main3() {
+ var id := Id;
+ assert id(3) == 3;
+ assert forall x :: (Id(id))(x) == (y => y)(x);
+ assert forall x :: (Id(id))(x) == (y => y)(2); // should fail
+}
+
+
+function P(f: A -> B, x : A): B
+ reads (f.reads)(x);
+ requires (f.requires)(x);
+{
+ f(x)
+}
+
+function Q(f: U -> V, x : U): V
+ reads (f.reads)(x); // would be nice to be able to write P.reads(f,x)
+ requires (f.requires)(x);
+{
+ P(f,x)
+}
+