-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathAbbrevsScript.sml
56 lines (46 loc) · 1.29 KB
/
AbbrevsScript.sml
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
(**
This file contains some type abbreviations, to ease writing.
**)
open realTheory realLib sptreeTheory
open MachineTypeTheory
open preambleFloVer
val _ = new_theory "Abbrevs";
(**
For the moment we need only one interval type in HOL, since we do not have the
problem of computability as we have it in Coq
**)
Type interval = “:real#real”
Definition IVlo_def:
IVlo (iv:interval) = FST iv
End
Definition IVhi_def:
IVhi (iv:interval) = SND iv
End
(**
Later we will argue about program preconditions.
Define a precondition to be a function mapping numbers (resp. variables) to intervals.
**)
Type precond = “:num->interval”
(**
Abbreviation for the type of a variable environment, which should be a partial function
**)
Type env = “:num -> real option”
(**
The empty environment must return NONE for every variable
**)
Definition emptyEnv_def:
emptyEnv (x:num) = NONE
End
(**
Define environment update function as abbreviation, for variable environments
**)
Definition updEnv_def:
updEnv (x:num) (v:real) (E:env) (y:num) :real option =
if y = x then SOME v else E y
End
Definition noDivzero_def:
noDivzero (a:real) (b:real) = (a < &0 \/ &0 < b)
End
val _ = export_rewrites ["IVlo_def", "IVhi_def",
"emptyEnv_def", "updEnv_def"]
val _ = export_theory();