-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTimestamp.ec
204 lines (144 loc) · 2.64 KB
/
Timestamp.ec
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
require import Int Bool SmtMap Distr FSet.
abstract theory RepoType.
type d. (* type of entries *)
type o. (* type of entries *)
type r. (* receipt *)
module type TS = {
proc init(seed : int) : unit
proc clock() : int
proc put(x : o) : r
proc getE(t : int) : d option
proc get() : (int, d) fmap
}.
end RepoType.
abstract theory Repo.
type d.
op tdistr : int distr.
module TsU = {
var r : (int, d) fmap (* "timestamped" values *)
var t : int (* current time *)
var i : int (* initial time *)
proc init(seed : int) = {
i <- seed;
t <- i;
r <- empty<:int, d>;
}
proc clock() = {
return t;
}
proc put(x : d) = {
t <- t + 1;
r <- r.[t <- x];
return t;
}
proc getE(t : int) = {
return r.[t];
}
proc get() = {
return TsU.r;
}
}.
module Ts = {
var r : (int, d) fmap
var t : int
proc init(seed : int) = {
t <- 0;
r <- empty<:int, d>;
}
proc clock() = {
return t;
}
proc put(x : d) = {
t <- t + 1;
r <- r.[t <- x];
return t;
}
proc getE(t : int) = {
return r.[t];
}
proc get() = {
return r;
}
}.
end Repo.
abstract theory RepoSet.
type d.
op tdistr : int distr.
clone export Repo as R with type d <- d fset,
op tdistr <- tdistr.
module type BLT_Adv_Set = {
proc react(ri : d fset) : d fset
}.
module TsU_Set (A : BLT_Adv_Set) = {
proc init(seed : int) = {
TsU.init(seed);
}
proc clock() = {
var t;
t <@ TsU.clock();
return t;
}
proc put(x : d fset) = {
var t, r;
r <@ A.react(x);
t <@ TsU.put(r);
return t;
}
proc getE(t : int) = {
var r;
r <@ TsU.getE(t);
return r;
}
proc get() = {
return TsU.r;
}
}.
module TsU_1 = {
var r : (int, d fset) fmap
var t : int
var i : int
proc init(seed : int) = {
i <- seed;
t <- i;
r <- empty<:int, d fset>;
}
proc clock() = {
return t;
}
proc put(x : d fset) = {
t <- t + 1;
r <- r.[t <- x];
return t;
}
proc getE(t : int) = {
return r.[t];
}
proc get() = {
return r;
}
}.
module TsU_Set_1 (A : BLT_Adv_Set) = {
proc init(seed : int) = {
TsU_1.init(seed);
}
proc clock() = {
var t;
t <@ TsU_1.clock();
return t;
}
proc put(x : d fset) = {
var t, r;
r <@ A.react(x);
t <@ TsU_1.put(r);
return t;
}
proc getE(t : int) = {
var r;
r <@ TsU_1.getE(t);
return r;
}
proc get() = {
return TsU_1.r;
}
}.
end RepoSet.