blob: 8c0a08e8f93d479c319ec75982a14365d88bd969 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
// RUN: %dafny /ironDafny /compile:3 /print:"%t.print" /dprint:"%t.dprint" "%s" > "%t"
// RUN: %diff "%s.expect" "%t"
include "Queue.dfyi"
module LIFO exclusively refines Queue {
type Item = int
method Init() returns (q: Queue) {
q := [];
}
method Push(item: Item, q: Queue) returns (q': Queue) {
return [item] + q;
}
method Pop(q: Queue) returns (item: Item, q': Queue)
ensures item == q[0]
{
item := q[0];
q' := q[1..];
}
}
module MainImpl refines MainSpec {
import Q = LIFO
method Main()
{
var q := Q.Init();
q := Q.Push(0, q);
q := Q.Push(1, q);
q := Q.Push(2, q);
var n: int;
n, q := Q.Pop(q);
print n, "\n";
n, q := Q.Pop(q);
print n, "\n";
n, q := Q.Pop(q);
print n, "\n";
}
}
|