Skip to content

Commit 5da2ab8

Browse files
committed
Work on READMEs in examples for #71
1 parent 7b851e1 commit 5da2ab8

13 files changed

+96
-2
lines changed

examples/Holmakefile

+4-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,10 @@ TARGETS = $(patsubst %.sml,%.uo,$(TARGETS0))
77
all: $(TARGETS)
88
.PHONY: all
99

10-
README.md: readmePrefix ../developers/readme_gen
11-
../developers/readme_gen
10+
README_SOURCES = $(wildcard *Script.sml)
11+
DIRS = $(wildcard */)
12+
README.md: ../developers/readme_gen readmePrefix $(patsubst %,%readmePrefix,$(DIRS)) $(README_SOURCES)
13+
../developers/readme_gen $(README_SOURCES)
1214
all: README.md
1315

1416
ifdef POLY

examples/README.md

+53
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,58 @@ Examples of verified programs built using CakeML infrastructure.
33
Larger examples (like the CakeML compiler and Candle theorem prover) can be
44
found in their own top-level directories.
55

6+
[catProgScript.sml](catProgScript.sml):
7+
cat program example: concatenate and print lines from files.
8+
69
[compilation](compilation):
710
Theories for compiling the examples in the logic
11+
12+
[diffProgScript.sml](diffProgScript.sml):
13+
diff example: find a patch representing the difference between two files.
14+
15+
[diffScript.sml](diffScript.sml):
16+
Implementation and verification of diff and patch algorithms
17+
18+
[echoProgScript.sml](echoProgScript.sml):
19+
echo program example: print the command line arguments.
20+
21+
[grepProgScript.sml](grepProgScript.sml):
22+
grep example: search for file lines matching a regular expression.
23+
24+
[helloErrProgScript.sml](helloErrProgScript.sml):
25+
Hello World on standard error.
26+
27+
[helloProgScript.sml](helloProgScript.sml):
28+
Hello World example, printing to standard output.
29+
30+
[insertSortProgScript.sml](insertSortProgScript.sml):
31+
In-place insertion sort on a polymorphic array.
32+
33+
[iocatProgScript.sml](iocatProgScript.sml):
34+
Faster cat: process 2048 chars at a time.
35+
36+
[lcsScript.sml](lcsScript.sml):
37+
Verification of longest common subsequence algorithms.
38+
39+
[patchProgScript.sml](patchProgScript.sml):
40+
patch example: apply a patch to a file.
41+
42+
[queueProgScript.sml](queueProgScript.sml):
43+
An example of a queue data structure implemented using CakeML arrays, verified
44+
using CF.
45+
46+
[quicksortProgScript.sml](quicksortProgScript.sml):
47+
In-place quick sort on a polymorphic array.
48+
49+
[sortProgScript.sml](sortProgScript.sml):
50+
Program to sort the lines in a file, built on top of the quick sort example.
51+
52+
[splitwordsScript.sml](splitwordsScript.sml):
53+
A high-level specification of words and frequencies
54+
55+
[stackProgScript.sml](stackProgScript.sml):
56+
An example of a stack data structure implemented using CakeML arrays, verified
57+
using CF.
58+
59+
[wordcountProgScript.sml](wordcountProgScript.sml):
60+
Simple wordcount program, to demonstrate use of CF.

examples/catProgScript.sml

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
(*
2+
cat program example: concatenate and print lines from files.
3+
4+
Simple version that operates one character at a time.
5+
*)
16
open preamble basis
27

38
val _ = new_theory "catProg"

examples/diffProgScript.sml

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
(*
2+
diff example: find a patch representing the difference between two files.
3+
*)
14
open preamble basis
25
charsetTheory lcsTheory diffTheory
36

examples/echoProgScript.sml

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
(*
2+
echo program example: print the command line arguments.
3+
*)
14
open preamble basis
25

36
val _ = new_theory "echoProg";

examples/grepProgScript.sml

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
(*
2+
grep example: search for file lines matching a regular expression.
3+
*)
14
open preamble basis
25
charsetTheory regexpTheory regexp_parserTheory regexp_compilerTheory
36

examples/helloErrProgScript.sml

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
(*
2+
Hello World on standard error.
3+
*)
14
open preamble basis
25

36
val _ = new_theory "helloErrProg"

examples/helloProgScript.sml

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
(*
2+
Hello World example, printing to standard output.
3+
*)
14
open preamble basis
25

36
val _ = new_theory "helloProg"

examples/insertSortProgScript.sml

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
(*
2+
In-place insertion sort on a polymorphic array.
3+
*)
14
open preamble semanticPrimitivesTheory
25
ml_translatorTheory ml_translatorLib ml_progLib cfLib
36
basisFunctionsLib ArrayProofTheory

examples/iocatProgScript.sml

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
(*
2+
Faster cat: process 2048 chars at a time.
3+
*)
14
open preamble basis
25

36
val _ = new_theory "iocatProg"

examples/patchProgScript.sml

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
(*
2+
patch example: apply a patch to a file.
3+
*)
14
open preamble basis
25
charsetTheory diffTheory
36

examples/quicksortProgScript.sml

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
(*
2+
In-place quick sort on a polymorphic array.
3+
*)
14
open preamble semanticPrimitivesTheory
25
open ml_translatorTheory ml_translatorLib ml_progLib cfLib basisFunctionsLib
36
open basisProgTheory ArrayProofTheory
@@ -6,6 +9,8 @@ val _ = new_theory "quicksortProg";
69

710
val _ = translation_extends"basisProg";
811

12+
(* TODO: move *)
13+
914
val list_rel_perm_help = Q.prove (
1015
`!l1 l2.
1116
PERM l1 l2
@@ -143,6 +148,8 @@ val length_gt1 = Q.store_thm ("length_gt1",
143148
Cases_on `t` >>
144149
fs []);
145150

151+
(* -- *)
152+
146153
fun basis_st () = get_ml_prog_state ()
147154

148155
val partition = process_topdecs `

examples/sortProgScript.sml

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
(*
2+
Program to sort the lines in a file, built on top of the quick sort example.
3+
*)
14
open preamble basis quicksortProgTheory
25

36
val _ = new_theory "sortProg";

0 commit comments

Comments
 (0)