@@ -3,5 +3,58 @@ Examples of verified programs built using CakeML infrastructure.
3
3
Larger examples (like the CakeML compiler and Candle theorem prover) can be
4
4
found in their own top-level directories.
5
5
6
+ [ catProgScript.sml] ( catProgScript.sml ) :
7
+ cat program example: concatenate and print lines from files.
8
+
6
9
[ compilation] ( compilation ) :
7
10
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.
0 commit comments