summaryrefslogtreecommitdiff
path: root/src/compiler.sig
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-07-17 12:40:21 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-07-17 12:40:21 -0400
commitd4639a7ab7971b2eea4951ec26062471bfec88d9 (patch)
treebf34083095099811f29010bde33b95fd1697b7ae /src/compiler.sig
parent1527e77c3c2c99fbb9fb832250a6cc00c06d70b0 (diff)
Proper topological sorting in untangle
Diffstat (limited to 'src/compiler.sig')
-rw-r--r--src/compiler.sig4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/compiler.sig b/src/compiler.sig
index b77b635c..aca352f7 100644
--- a/src/compiler.sig
+++ b/src/compiler.sig
@@ -47,6 +47,7 @@ signature COMPILER = sig
val reduce : job -> Core.file option
val shake : job -> Core.file option
val monoize : job -> Mono.file option
+ val mono_opt' : job -> Mono.file option
val untangle : job -> Mono.file option
val mono_opt : job -> Mono.file option
val cjrize : job -> Cjr.file option
@@ -60,8 +61,9 @@ signature COMPILER = sig
val testReduce : job -> unit
val testShake : job -> unit
val testMonoize : job -> unit
- val testMono_opt : job -> unit
+ val testMono_opt' : job -> unit
val testUntangle : job -> unit
+ val testMono_opt : job -> unit
val testCjrize : job -> unit
end