summaryrefslogtreecommitdiff
path: root/WriteProofMain.hs
blob: 565aad2e32659fe8ede4de3d84c3dd58ed8a9ba9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import System( getArgs )
import Text.Printf
import Parse
import ProofGraph
import WriteProof



main = do
    args <- getArgs
    list <- getLines (head args)
    let graph = doGraphGen (map (stripReturn) list)
        trace = doWriteProof graph
    output trace