// RUN: %dafny /compile:0 /print:"%t.print" /dprint:"%t.dprint" "%s" > "%t" // RUN: %diff "%s.expect" "%t" // ----- Stream codatatype Stream = Nil | Cons(head: int, tail: Stream) function append(M: Stream, N: Stream): Stream { match M case Nil => N case Cons(t, M') => Cons(t, append(M', N)) } function zeros(): Stream { Cons(0, zeros()) } function ones(): Stream { Cons(1, ones()) } copredicate atmost(a: Stream, b: Stream) { match a case Nil => true case Cons(h,t) => b.Cons? && h <= b.head && atmost(t, b.tail) } colemma {:induction false} Theorem0() ensures atmost(zeros(), ones()); { // the following shows two equivalent ways to getting essentially the // co-inductive hypothesis if (*) { Theorem0#[_k-1](); } else { Theorem0(); } } ghost method Theorem0_Manual() ensures atmost(zeros(), ones()); { forall k: nat { Theorem0_Lemma(k); } } datatype Natural = Zero | Succ(Natural) colemma {:induction false} Theorem0_TerminationFailure_ExplicitDecreases(y: Natural) ensures atmost(zeros(), ones()); decreases y; { match (y) { case Succ(x) => // this is just to show that the decreases clause does kick in Theorem0_TerminationFailure_ExplicitDecreases#[_k](x); case Zero => Theorem0_TerminationFailure_ExplicitDecreases#[_k](y); // error: failure to terminate } Theorem0_TerminationFailure_ExplicitDecreases#[_k-1](y); } colemma {:induction false} Theorem0_TerminationFailure_DefaultDecreases(y: Natural) ensures atmost(zeros(), ones()); { match (y) { case Succ(yy) => // this is just to show that the decreases clause does kick in Theorem0_TerminationFailure_DefaultDecreases#[_k](yy); case Zero => Theorem0_TerminationFailure_DefaultDecreases#[_k](y); // error: failure to terminate } Theorem0_TerminationFailure_DefaultDecreases#[_k-1](y); } ghost method {:induction true} Theorem0_Lemma(k: nat) ensures atmost#[k](zeros(), ones()); { } colemma {:induction false} Theorem1() ensures append(zeros(), ones()) == zeros(); { Theorem1(); } codatatype IList = ICons(head: int, tail: IList) function UpIList(n: int): IList { ICons(n, UpIList(n+1)) } copredicate Pos(s: IList) { s.head > 0 && Pos(s.tail) } colemma {:induction false} Theorem2(n: int) requires 1 <= n; ensures Pos(UpIList(n)); { Theorem2(n+1); } colemma {:induction false} Theorem2_NotAProof(n: int) requires 1 <= n; ensures Pos(UpIList(n)); { // error: this is not a proof (without automatic induction) } codatatype TList = TCons(head: T, tail: TList) function Next(t: T): T function FF(h: T): TList { TCons(h, FF(Next(h))) } function GG(h: T): TList { TCons(h, GG(Next(h))) } colemma {:induction false} Compare(h: T) ensures FF(h) == GG(h); { assert FF(h).head == GG(h).head; Compare(Next(h)); if { case true => assert FF(h).tail == GG(h).tail; // error: full equality is not known here case true => assert FF(h) ==#[_k] GG(h); // yes, this is the postcondition to be proved, and it is known to hold case true => assert FF(h).tail ==#[_k] GG(h).tail; // error: only _k-1 equality of the tails is known here case true => assert FF(h).tail ==#[_k - 1] GG(h).tail; // yes, follows from call to Compare case true => } } colemma {:induction false} BadTheorem(s: IList) ensures false; { // error: postcondition violation BadTheorem(s.tail); } // --------------------------------- // Make sure recursive calls get checked for termination module Recursion { colemma X() { Y(); } colemma Y() { X(); } colemma G(x: int) ensures x < 100; { // error: postcondition violation (when _k == 0) H(x); } colemma H(x: int) ensures x < 100; { // error: postcondition violation (when _k == 0) G(x); } colemma A(x: int) { B(x); } colemma B(x: int) { A#[10](x); // error: this is a recursive call, and the termination metric may not be going down } colemma A'(x: int) { B'(x); } colemma B'(x: int) { if (10 < _k) { A'#[10](x); } } colemma A''(x: int) { B''(x); } colemma B''(x: int) { if (0 < x) { A''#[_k](x-1); } } } module PrefixEquality { codatatype Stream = Cons(head: T, Stream) colemma Test0(s: Stream, t: Stream) requires s.head == t.head { calc { s; ==#[_k-1] t; // error: this step might not hold ==#[if 2 <= _k then _k-2 else _k-1] s; // error: this step might not hold ==#[0] t; } } colemma Test1(s: Stream, t: Stream) requires s == t { calc { s; ==#[_k-1] t; ==#[_k-2] // error: prefix-equality limit must be at least 0 s; ==#[0] t; } } }