Skip to content

Commit 2526d99

Browse files
committed
Update README.md
1 parent 515c45c commit 2526d99

File tree

12 files changed

+0
-44
lines changed

12 files changed

+0
-44
lines changed

candle/set-theory/README.md

-3
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,3 @@ Specification of (roughly) Zermelo's set theory.
1313
Two main definitions:
1414
is_set_theory (mem : 'U -> 'U -> bool), and
1515
is_model (mem, indset, ch)
16-
17-
[zfc](zfc):
18-
An old formalisation of set theory

compiler/backend/README.md

-3
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@ This directory contains the ARMv8-specific part of the compiler backend.
1717
This directory contains proofs for the ASL-derived ARMv8-specific part of the
1818
compiler backend.
1919

20-
[backendComputeLib.sml](backendComputeLib.sml):
21-
A compset for evaluating the compiler backend inside the logic of HOL.
22-
2320
[backendScript.sml](backendScript.sml):
2421
Composes all of the compiler phases within the compiler backend into
2522
a single compile function which is connected (in ../compilerScript.sml)

compiler/backend/ag32/README.md

-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
This directory contains the Silver-specific part of the compiler
22
backend and associated proofs.
33

4-
[ag32_compileLib.sml](ag32_compileLib.sml):
5-
Provides a compset for the ag32-specific parts of the backend
6-
74
[ag32_configScript.sml](ag32_configScript.sml):
85
Define the compiler configuration for ag32
96

compiler/backend/arm7/README.md

-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
This directory contains the ARMv7-specific part of the compiler backend.
22

3-
[arm7_compileLib.sml](arm7_compileLib.sml):
4-
Provides a compset for the ARMv7-specific parts of the backend
5-
63
[arm7_configScript.sml](arm7_configScript.sml):
74
Define the compiler configuration for ARMv7
85

compiler/backend/arm8/README.md

-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
This directory contains the ARMv8-specific part of the compiler backend.
22

3-
[arm8_compileLib.sml](arm8_compileLib.sml):
4-
Provides a compset for the ARMv8-specific parts of the backend
5-
63
[arm8_configScript.sml](arm8_configScript.sml):
74
Define the compiler configuration for ARMv8
85

compiler/backend/mips/README.md

-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@ This directory contains the mips-specific part of the compiler backend.
33
[export_mipsScript.sml](export_mipsScript.sml):
44
Define the format of the compiler-generated .S file for MIPS
55

6-
[mips_compileLib.sml](mips_compileLib.sml):
7-
Provides a compset for the MIPS-specific parts of the backend
8-
96
[mips_configScript.sml](mips_configScript.sml):
107
Define the compiler configuration for MIPS
118

compiler/backend/riscv/README.md

-3
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,5 @@ Define the format of the compiler-generated .S file for RISC-V
66
[proofs](proofs):
77
This directory contains the RISC-V-specific proofs.
88

9-
[riscv_compileLib.sml](riscv_compileLib.sml):
10-
Provides an eval for the RISC-V-specific parts of the backend
11-
129
[riscv_configScript.sml](riscv_configScript.sml):
1310
Define the compiler configuration for RISC-V

compiler/backend/x64/README.md

-3
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,5 @@ Define the format of the compiler-generated .S file for x64
66
[proofs](proofs):
77
This directory contains the x64-specific proofs.
88

9-
[x64_compileLib.sml](x64_compileLib.sml):
10-
Provides an eval for the x64-specific parts of the backend
11-
129
[x64_configScript.sml](x64_configScript.sml):
1310
Define the compiler configuration for x64

examples/README.md

-10
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,12 @@ found in their own top-level directories.
66
[array_searchProgScript.sml](array_searchProgScript.sml):
77
An example based on searching an array.
88

9-
[bot](bot):
10-
Formalization of the FFI and proofs for the VeriPhy pipeline.
11-
129
[catProgScript.sml](catProgScript.sml):
1310
cat program example: concatenate and print lines from files.
1411

1512
[compilation](compilation):
1613
Compilation of the CakeML examples to different architectures.
1714

18-
[cost](cost):
19-
Preliminary data-cost examples
20-
2115
[deflate](deflate):
2216
Scripts relevant to the formalisation of the DEFLATE algorithm
2317

@@ -36,10 +30,6 @@ Examples on the topic of doubling a number.
3630
[echoProgScript.sml](echoProgScript.sml):
3731
echo program example: print the command line arguments.
3832

39-
[eval](eval):
40-
A simple example of using eval, to help work out the development of the
41-
bootstrapped compiler supporting eval.
42-
4333
[filterProgScript.sml](filterProgScript.sml):
4434
Filter case study from CASE.
4535

examples/opentheory/README.md

-4
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@ Implementation of an OpenTheory reader based on the Candle kernel.
44
This directory contains the script that does in-logic compilation of
55
the OpenTheory article checker.
66

7-
[monadIO](monadIO):
8-
This directory contains a version of the OpenTheory article checker
9-
where the I/O part is built using the monadic translator.
10-
117
[prettyScript.sml](prettyScript.sml):
128
A pretty printer producing mlstring app_lists.
139
Based on the pretty printer from "ML from the working programmer".

pancake/README.md

-3
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@ Simplification of arithmetic in crepLang.
1717
[crep_to_loopScript.sml](crep_to_loopScript.sml):
1818
Compilation from crepLang to panLang.
1919

20-
[examples](examples):
21-
A few examples of timeLang programs
22-
2320
[ffi](ffi):
2421
FFI for Pancake
2522

pancake/proofs/README.md

-3
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,3 @@ composing semantics correctness from pan to target
3333

3434
[pan_to_wordProofScript.sml](pan_to_wordProofScript.sml):
3535
Correctness proof for combined pan_to_word compilation.
36-
37-
[time](time):
38-
Proof files for compiling TimeLang.

0 commit comments

Comments
 (0)