forked from CakeML/cakeml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
matrixDeterminantProgCompScript.sml
107 lines (100 loc) · 2.87 KB
/
matrixDeterminantProgCompScript.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
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
(*
Auto-generated by Daisy (https://gitlab.mpi-sws.org/AVA/daisy
*)
(* INCLUDES, do not change those *)
open exampleLib;
val _ = new_theory "matrixDeterminantProgComp";
val _ = translation_extends "cfSupport";
Definition theAST_pre_def:
theAST_pre = \ (x:(string, string) id).
if x = Short "a" then (((-10)/(1), (10)/(1)):real#real)
else if x = Short "b" then (((-10)/(1), (10)/(1)):real#real)
else if x = Short "c" then (((-10)/(1), (10)/(1)):real#real)
else if x = Short "d" then (((-10)/(1), (10)/(1)):real#real)
else if x = Short "e" then (((-10)/(1), (10)/(1)):real#real)
else if x = Short "f" then (((-10)/(1), (10)/(1)):real#real)
else if x = Short "g" then (((-10)/(1), (10)/(1)):real#real)
else if x = Short "h" then (((-10)/(1), (10)/(1)):real#real)
else if x = Short "i" then (((-10)/(1), (10)/(1)):real#real)
else (0,0)
End
Definition theAST_def:
theAST =
[ Dlet unknown_loc (Pvar "matrixDeterminant")
(Fun "a"(Fun "b"(Fun "c"(Fun "d"(Fun "e"(Fun "f"(Fun "g"(Fun "h"(Fun "i"
(FpOptimise Opt
(App (FP_bop FP_Sub)
[
(App (FP_bop FP_Add)
[
(App (FP_bop FP_Add)
[
(App (FP_bop FP_Mul)
[
(App (FP_bop FP_Mul)
[
Var (Short "a");
Var (Short "e")
]);
Var (Short "i")
]);
(App (FP_bop FP_Mul)
[
(App (FP_bop FP_Mul)
[
Var (Short "b");
Var (Short "f")
]);
Var (Short "g")
])
]);
(App (FP_bop FP_Mul)
[
(App (FP_bop FP_Mul)
[
Var (Short "c");
Var (Short "d")
]);
Var (Short "h")
])
]);
(App (FP_bop FP_Add)
[
(App (FP_bop FP_Add)
[
(App (FP_bop FP_Mul)
[
(App (FP_bop FP_Mul)
[
Var (Short "c");
Var (Short "e")
]);
Var (Short "g")
]);
(App (FP_bop FP_Mul)
[
(App (FP_bop FP_Mul)
[
Var (Short "b");
Var (Short "d")
]);
Var (Short "i")
])
]);
(App (FP_bop FP_Mul)
[
(App (FP_bop FP_Mul)
[
Var (Short "a");
Var (Short "f")
]);
Var (Short "h")
])
])
])))))))))))]
End
Definition theErrBound_def:
theErrBound = inv (2 pow (5))
End
val x = define_benchmark theAST_def theAST_pre_def true;
val _ = export_theory()