{-# OPTIONS_HADDOCK ignore-exports #-}
module Ast2Tree
( ast2tree )
where
import Lambda2Ast
import Utils
ast2tree :: AST -> [Char]
ast2tree ast = "digraph G {\n" ++ (ast2tree' 0 ast) ++ "}\n"
ast2tree' :: Int -> AST -> [Char]
ast2tree' n ast
| elem (name ast) binop = binary2tree n ast
| elem (name ast) unop = unary2tree n ast
| otherwise = leaf2tree n ast
where binop = ["lambda", "apply", "pi"]
unop = ["first", "second", "succ"]
binary2tree :: Int -> AST -> [Char]
binary2tree n ast = let sizeLeft = size (left ast)
toLeft = "\t" ++ (show n) ++ " -> " ++ (show (n+1)) ++ ";\n"
toRight = "\t" ++ (show n) ++ " ->" ++ (show (n + 1 + sizeLeft)) ++ ";\n"
node = printNode n ast
leftNode = ast2tree' (n+1) (left ast)
rightNode = ast2tree' (n + 1 + sizeLeft) (right ast)
in toLeft ++ toRight ++ node ++ leftNode ++ rightNode
unary2tree :: Int -> AST -> [Char]
unary2tree n ast = toNext ++ node ++ next
where toNext = "\t" ++ (show n) ++ " -> " ++ (show (n+1)) ++ ";\n"
node = printNode n ast
next = ast2tree' (n+1) (below ast)
leaf2tree :: Int -> AST -> [Char]
leaf2tree n ast = printNode n ast
printNode :: Int -> AST -> [Char]
printNode n ast = "\t" ++ (show n) ++ " [label=\"" ++ (ltype ast) ++ "\"];\n"