aboutsummaryrefslogtreecommitdiff
path: root/Concat.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Concat.hs')
-rw-r--r--Concat.hs16
1 files changed, 0 insertions, 16 deletions
diff --git a/Concat.hs b/Concat.hs
deleted file mode 100644
index 18d0f5d..0000000
--- a/Concat.hs
+++ /dev/null
@@ -1,16 +0,0 @@
-import System.Environment( getArgs )
-import Text.Printf
-import Library.Parse
-import Library.ProofGraph
-import Library.WriteProof
-
-
-
-main = do
- args <- getArgs
- x <- getLines $ args!!0
- y <- getLines $ args!!1
- let list = x ++ y
- graph = doGraphGen (map (stripReturn) list)
- trace = doWriteProof graph
- output trace