Last change
on this file since 2731 was
2601,
checked in by sacerdot, 8 years ago
|
Extraction to ocaml is now working, with a couple of bugs left.
One limitation is that it is not possible to have two files with the
same name in different directories. Therefore this commit renames files
to avoid this situation.
The extracted directory contains:
- a snapshot of the .ml(i) files extracted from CerCo? by running
ocamlc.opt -extract_ocaml compiler.ma
The files have been patched by hand to implement all strings and
fix the bugs.
- a file PROBLEMS that describes the remaining problems, i.e. bugs
and axioms to be implemented
To obtain the compiler, run ocamlbuild compiler.byte.
At the moment it fails because of the three remaining axioms.
|
File size:
968 bytes
|
Line | |
---|
1 | open Preamble |
---|
2 | |
---|
3 | open Hints_declaration |
---|
4 | |
---|
5 | open Core_notation |
---|
6 | |
---|
7 | open Pts |
---|
8 | |
---|
9 | open Logic |
---|
10 | |
---|
11 | open Types |
---|
12 | |
---|
13 | type order = |
---|
14 | | Order_lt |
---|
15 | | Order_eq |
---|
16 | | Order_gt |
---|
17 | |
---|
18 | val order_rect_Type4 : 'a1 -> 'a1 -> 'a1 -> order -> 'a1 |
---|
19 | |
---|
20 | val order_rect_Type5 : 'a1 -> 'a1 -> 'a1 -> order -> 'a1 |
---|
21 | |
---|
22 | val order_rect_Type3 : 'a1 -> 'a1 -> 'a1 -> order -> 'a1 |
---|
23 | |
---|
24 | val order_rect_Type2 : 'a1 -> 'a1 -> 'a1 -> order -> 'a1 |
---|
25 | |
---|
26 | val order_rect_Type1 : 'a1 -> 'a1 -> 'a1 -> order -> 'a1 |
---|
27 | |
---|
28 | val order_rect_Type0 : 'a1 -> 'a1 -> 'a1 -> order -> 'a1 |
---|
29 | |
---|
30 | val order_inv_rect_Type4 : |
---|
31 | order -> (__ -> 'a1) -> (__ -> 'a1) -> (__ -> 'a1) -> 'a1 |
---|
32 | |
---|
33 | val order_inv_rect_Type3 : |
---|
34 | order -> (__ -> 'a1) -> (__ -> 'a1) -> (__ -> 'a1) -> 'a1 |
---|
35 | |
---|
36 | val order_inv_rect_Type2 : |
---|
37 | order -> (__ -> 'a1) -> (__ -> 'a1) -> (__ -> 'a1) -> 'a1 |
---|
38 | |
---|
39 | val order_inv_rect_Type1 : |
---|
40 | order -> (__ -> 'a1) -> (__ -> 'a1) -> (__ -> 'a1) -> 'a1 |
---|
41 | |
---|
42 | val order_inv_rect_Type0 : |
---|
43 | order -> (__ -> 'a1) -> (__ -> 'a1) -> (__ -> 'a1) -> 'a1 |
---|
44 | |
---|
45 | val order_discr : order -> order -> __ |
---|
46 | |
---|
Note: See
TracBrowser
for help on using the repository browser.