15.23/5.79 YES 17.72/6.54 proof of /export/starexec/sandbox/benchmark/theBenchmark.hs 17.72/6.54 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 17.72/6.54 17.72/6.54 17.72/6.54 H-Termination with start terms of the given HASKELL could be proven: 17.72/6.54 17.72/6.54 (0) HASKELL 17.72/6.54 (1) LR [EQUIVALENT, 0 ms] 17.72/6.54 (2) HASKELL 17.72/6.54 (3) CR [EQUIVALENT, 0 ms] 17.72/6.54 (4) HASKELL 17.72/6.54 (5) IFR [EQUIVALENT, 0 ms] 17.72/6.54 (6) HASKELL 17.72/6.54 (7) BR [EQUIVALENT, 14 ms] 17.72/6.54 (8) HASKELL 17.72/6.54 (9) COR [EQUIVALENT, 0 ms] 17.72/6.54 (10) HASKELL 17.72/6.54 (11) NumRed [SOUND, 0 ms] 17.72/6.54 (12) HASKELL 17.72/6.54 (13) Narrow [SOUND, 0 ms] 17.72/6.54 (14) AND 17.72/6.54 (15) QDP 17.72/6.54 (16) QDPSizeChangeProof [EQUIVALENT, 0 ms] 17.72/6.54 (17) YES 17.72/6.54 (18) QDP 17.72/6.54 (19) QDPSizeChangeProof [EQUIVALENT, 0 ms] 17.72/6.54 (20) YES 17.72/6.54 (21) QDP 17.72/6.54 (22) QDPSizeChangeProof [EQUIVALENT, 0 ms] 17.72/6.54 (23) YES 17.72/6.54 (24) QDP 17.72/6.54 (25) QDPSizeChangeProof [EQUIVALENT, 0 ms] 17.72/6.54 (26) YES 17.72/6.54 (27) QDP 17.72/6.54 (28) QDPSizeChangeProof [EQUIVALENT, 0 ms] 17.72/6.54 (29) YES 17.72/6.54 (30) QDP 17.72/6.54 (31) QDPSizeChangeProof [EQUIVALENT, 0 ms] 17.72/6.54 (32) YES 17.72/6.54 17.72/6.54 17.72/6.54 ---------------------------------------- 17.72/6.55 17.72/6.55 (0) 17.72/6.55 Obligation: 17.72/6.55 mainModule Main 17.72/6.55 module Maybe where { 17.72/6.55 import qualified List; 17.72/6.55 import qualified Main; 17.72/6.55 import qualified Prelude; 17.72/6.55 listToMaybe :: [a] -> Maybe a; 17.72/6.55 listToMaybe [] = Nothing; 17.72/6.55 listToMaybe (a : _) = Just a; 17.72/6.55 17.72/6.55 } 17.72/6.55 module List where { 17.72/6.55 import qualified Main; 17.72/6.55 import qualified Maybe; 17.72/6.55 import qualified Prelude; 17.72/6.55 elemIndex :: Eq a => a -> [a] -> Maybe Int; 17.72/6.55 elemIndex x = findIndex (== x); 17.72/6.55 17.72/6.55 findIndex :: (a -> Bool) -> [a] -> Maybe Int; 17.72/6.55 findIndex p = Maybe.listToMaybe . findIndices p; 17.72/6.55 17.72/6.55 findIndices :: (a -> Bool) -> [a] -> [Int]; 17.72/6.55 findIndices p xs = concatMap (\vv1 ->case vv1 of { 17.72/6.55 (x,i)-> if p x then i : [] else []; 17.72/6.55 _-> []; 17.72/6.55 } ) (zip xs (enumFrom 0)); 17.72/6.55 17.72/6.55 } 17.72/6.55 module Main where { 17.72/6.55 import qualified List; 17.72/6.55 import qualified Maybe; 17.72/6.55 import qualified Prelude; 17.72/6.55 } 17.72/6.55 17.72/6.55 ---------------------------------------- 17.72/6.55 17.72/6.55 (1) LR (EQUIVALENT) 17.72/6.55 Lambda Reductions: 17.72/6.55 The following Lambda expression 17.72/6.55 "\ab->(a,b)" 17.72/6.55 is transformed to 17.72/6.55 "zip0 a b = (a,b); 17.72/6.55 " 17.72/6.55 The following Lambda expression 17.72/6.55 "\vv1->case vv1 of { 17.72/6.55 (x,i) -> if p x then i : [] else []; 17.72/6.55 _ -> []} 17.72/6.55 " 17.72/6.55 is transformed to 17.72/6.55 "findIndices0 p vv1 = case vv1 of { 17.72/6.55 (x,i) -> if p x then i : [] else []; 17.72/6.55 _ -> []} 17.72/6.55 ; 17.72/6.55 " 17.72/6.55 17.72/6.55 ---------------------------------------- 17.72/6.55 17.72/6.55 (2) 17.72/6.55 Obligation: 17.72/6.55 mainModule Main 17.72/6.55 module Maybe where { 17.72/6.55 import qualified List; 17.72/6.55 import qualified Main; 17.72/6.55 import qualified Prelude; 17.72/6.55 listToMaybe :: [a] -> Maybe a; 17.72/6.55 listToMaybe [] = Nothing; 17.72/6.55 listToMaybe (a : _) = Just a; 17.72/6.55 17.72/6.55 } 17.72/6.55 module List where { 17.72/6.55 import qualified Main; 17.72/6.55 import qualified Maybe; 17.72/6.55 import qualified Prelude; 17.72/6.55 elemIndex :: Eq a => a -> [a] -> Maybe Int; 17.72/6.55 elemIndex x = findIndex (== x); 17.72/6.55 17.72/6.55 findIndex :: (a -> Bool) -> [a] -> Maybe Int; 17.72/6.55 findIndex p = Maybe.listToMaybe . findIndices p; 17.72/6.55 17.72/6.55 findIndices :: (a -> Bool) -> [a] -> [Int]; 17.72/6.55 findIndices p xs = concatMap (findIndices0 p) (zip xs (enumFrom 0)); 17.72/6.55 17.72/6.55 findIndices0 p vv1 = case vv1 of { 17.72/6.55 (x,i)-> if p x then i : [] else []; 17.72/6.55 _-> []; 17.72/6.55 } ; 17.72/6.55 17.72/6.55 } 17.72/6.55 module Main where { 17.72/6.55 import qualified List; 17.72/6.55 import qualified Maybe; 17.72/6.55 import qualified Prelude; 17.72/6.55 } 17.72/6.55 17.72/6.55 ---------------------------------------- 17.72/6.55 17.72/6.55 (3) CR (EQUIVALENT) 17.72/6.55 Case Reductions: 17.72/6.55 The following Case expression 17.72/6.55 "case vv1 of { 17.72/6.55 (x,i) -> if p x then i : [] else []; 17.72/6.55 _ -> []} 17.72/6.55 " 17.72/6.55 is transformed to 17.72/6.55 "findIndices00 p (x,i) = if p x then i : [] else []; 17.72/6.55 findIndices00 p _ = []; 17.72/6.55 " 17.72/6.55 17.72/6.55 ---------------------------------------- 17.72/6.55 17.72/6.55 (4) 17.72/6.55 Obligation: 17.72/6.55 mainModule Main 17.72/6.55 module Maybe where { 17.72/6.55 import qualified List; 17.72/6.55 import qualified Main; 17.72/6.55 import qualified Prelude; 17.72/6.55 listToMaybe :: [a] -> Maybe a; 17.72/6.55 listToMaybe [] = Nothing; 17.72/6.55 listToMaybe (a : _) = Just a; 17.72/6.55 17.72/6.55 } 17.72/6.55 module List where { 17.72/6.55 import qualified Main; 17.72/6.55 import qualified Maybe; 17.72/6.55 import qualified Prelude; 17.72/6.55 elemIndex :: Eq a => a -> [a] -> Maybe Int; 17.72/6.55 elemIndex x = findIndex (== x); 17.72/6.55 17.72/6.55 findIndex :: (a -> Bool) -> [a] -> Maybe Int; 17.72/6.55 findIndex p = Maybe.listToMaybe . findIndices p; 17.72/6.55 17.72/6.55 findIndices :: (a -> Bool) -> [a] -> [Int]; 17.72/6.55 findIndices p xs = concatMap (findIndices0 p) (zip xs (enumFrom 0)); 17.72/6.55 17.72/6.55 findIndices0 p vv1 = findIndices00 p vv1; 17.72/6.55 17.72/6.55 findIndices00 p (x,i) = if p x then i : [] else []; 17.72/6.55 findIndices00 p _ = []; 17.72/6.55 17.72/6.55 } 17.72/6.55 module Main where { 17.72/6.55 import qualified List; 17.72/6.55 import qualified Maybe; 17.72/6.55 import qualified Prelude; 17.72/6.55 } 17.72/6.55 17.72/6.55 ---------------------------------------- 17.72/6.55 17.72/6.55 (5) IFR (EQUIVALENT) 17.72/6.55 If Reductions: 17.72/6.55 The following If expression 17.72/6.55 "if p x then i : [] else []" 17.72/6.55 is transformed to 17.72/6.55 "findIndices000 i True = i : []; 17.72/6.55 findIndices000 i False = []; 17.72/6.55 " 17.72/6.55 17.72/6.55 ---------------------------------------- 17.72/6.55 17.72/6.55 (6) 17.72/6.55 Obligation: 17.72/6.55 mainModule Main 17.72/6.55 module Maybe where { 17.72/6.55 import qualified List; 17.72/6.55 import qualified Main; 17.72/6.55 import qualified Prelude; 17.72/6.55 listToMaybe :: [a] -> Maybe a; 17.72/6.55 listToMaybe [] = Nothing; 17.72/6.55 listToMaybe (a : _) = Just a; 17.72/6.55 17.72/6.55 } 17.72/6.55 module List where { 17.72/6.55 import qualified Main; 17.72/6.55 import qualified Maybe; 17.72/6.55 import qualified Prelude; 17.72/6.55 elemIndex :: Eq a => a -> [a] -> Maybe Int; 17.72/6.55 elemIndex x = findIndex (== x); 17.72/6.55 17.72/6.55 findIndex :: (a -> Bool) -> [a] -> Maybe Int; 17.72/6.55 findIndex p = Maybe.listToMaybe . findIndices p; 17.72/6.55 17.72/6.55 findIndices :: (a -> Bool) -> [a] -> [Int]; 17.72/6.55 findIndices p xs = concatMap (findIndices0 p) (zip xs (enumFrom 0)); 17.72/6.55 17.72/6.55 findIndices0 p vv1 = findIndices00 p vv1; 17.72/6.55 17.72/6.55 findIndices00 p (x,i) = findIndices000 i (p x); 17.72/6.55 findIndices00 p _ = []; 17.72/6.55 17.72/6.55 findIndices000 i True = i : []; 17.72/6.55 findIndices000 i False = []; 17.72/6.55 17.72/6.55 } 17.72/6.55 module Main where { 17.72/6.55 import qualified List; 17.72/6.55 import qualified Maybe; 17.72/6.55 import qualified Prelude; 17.72/6.55 } 17.72/6.55 17.72/6.55 ---------------------------------------- 17.72/6.55 17.72/6.55 (7) BR (EQUIVALENT) 17.72/6.55 Replaced joker patterns by fresh variables and removed binding patterns. 17.72/6.55 ---------------------------------------- 17.72/6.55 17.72/6.55 (8) 17.72/6.55 Obligation: 17.72/6.55 mainModule Main 17.72/6.55 module Maybe where { 17.72/6.55 import qualified List; 17.72/6.55 import qualified Main; 17.72/6.55 import qualified Prelude; 17.72/6.55 listToMaybe :: [a] -> Maybe a; 17.72/6.55 listToMaybe [] = Nothing; 17.72/6.55 listToMaybe (a : xz) = Just a; 17.72/6.55 17.72/6.55 } 17.72/6.55 module List where { 17.72/6.55 import qualified Main; 17.72/6.55 import qualified Maybe; 17.72/6.55 import qualified Prelude; 17.72/6.55 elemIndex :: Eq a => a -> [a] -> Maybe Int; 17.72/6.55 elemIndex x = findIndex (== x); 17.72/6.55 17.72/6.55 findIndex :: (a -> Bool) -> [a] -> Maybe Int; 17.72/6.55 findIndex p = Maybe.listToMaybe . findIndices p; 17.72/6.55 17.72/6.55 findIndices :: (a -> Bool) -> [a] -> [Int]; 17.72/6.55 findIndices p xs = concatMap (findIndices0 p) (zip xs (enumFrom 0)); 17.72/6.55 17.72/6.55 findIndices0 p vv1 = findIndices00 p vv1; 17.72/6.55 17.72/6.55 findIndices00 p (x,i) = findIndices000 i (p x); 17.72/6.55 findIndices00 p yu = []; 17.72/6.55 17.72/6.55 findIndices000 i True = i : []; 17.72/6.55 findIndices000 i False = []; 17.72/6.55 17.72/6.55 } 17.72/6.55 module Main where { 17.72/6.55 import qualified List; 17.72/6.55 import qualified Maybe; 17.72/6.55 import qualified Prelude; 17.72/6.55 } 17.72/6.55 17.72/6.55 ---------------------------------------- 17.72/6.55 17.72/6.55 (9) COR (EQUIVALENT) 17.72/6.55 Cond Reductions: 17.72/6.55 The following Function with conditions 17.72/6.55 "undefined |Falseundefined; 17.72/6.55 " 17.72/6.55 is transformed to 17.72/6.55 "undefined = undefined1; 17.72/6.55 " 17.72/6.55 "undefined0 True = undefined; 17.72/6.55 " 17.72/6.55 "undefined1 = undefined0 False; 17.72/6.55 " 17.72/6.55 17.72/6.55 ---------------------------------------- 17.72/6.55 17.72/6.55 (10) 17.72/6.55 Obligation: 17.72/6.55 mainModule Main 17.72/6.55 module Maybe where { 17.72/6.55 import qualified List; 17.72/6.55 import qualified Main; 17.72/6.55 import qualified Prelude; 17.72/6.55 listToMaybe :: [a] -> Maybe a; 17.72/6.55 listToMaybe [] = Nothing; 17.72/6.55 listToMaybe (a : xz) = Just a; 17.72/6.55 17.72/6.55 } 17.72/6.55 module List where { 17.72/6.55 import qualified Main; 17.72/6.55 import qualified Maybe; 17.72/6.55 import qualified Prelude; 17.72/6.55 elemIndex :: Eq a => a -> [a] -> Maybe Int; 17.72/6.55 elemIndex x = findIndex (== x); 17.72/6.55 17.72/6.55 findIndex :: (a -> Bool) -> [a] -> Maybe Int; 17.72/6.55 findIndex p = Maybe.listToMaybe . findIndices p; 17.72/6.55 17.72/6.55 findIndices :: (a -> Bool) -> [a] -> [Int]; 17.72/6.55 findIndices p xs = concatMap (findIndices0 p) (zip xs (enumFrom 0)); 17.72/6.55 17.72/6.55 findIndices0 p vv1 = findIndices00 p vv1; 17.72/6.55 17.72/6.55 findIndices00 p (x,i) = findIndices000 i (p x); 17.72/6.55 findIndices00 p yu = []; 17.72/6.55 17.72/6.55 findIndices000 i True = i : []; 17.72/6.55 findIndices000 i False = []; 17.72/6.55 17.72/6.55 } 17.72/6.55 module Main where { 17.72/6.55 import qualified List; 17.72/6.55 import qualified Maybe; 17.72/6.55 import qualified Prelude; 17.72/6.55 } 17.72/6.55 17.72/6.55 ---------------------------------------- 17.72/6.55 17.72/6.55 (11) NumRed (SOUND) 17.72/6.55 Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. 17.72/6.55 ---------------------------------------- 17.72/6.55 17.72/6.55 (12) 17.72/6.55 Obligation: 17.72/6.55 mainModule Main 17.72/6.55 module Maybe where { 17.72/6.55 import qualified List; 17.72/6.55 import qualified Main; 17.72/6.55 import qualified Prelude; 17.72/6.55 listToMaybe :: [a] -> Maybe a; 17.72/6.55 listToMaybe [] = Nothing; 17.72/6.55 listToMaybe (a : xz) = Just a; 17.72/6.55 17.72/6.55 } 17.72/6.55 module List where { 17.72/6.55 import qualified Main; 17.72/6.55 import qualified Maybe; 17.72/6.55 import qualified Prelude; 17.72/6.55 elemIndex :: Eq a => a -> [a] -> Maybe Int; 17.72/6.55 elemIndex x = findIndex (== x); 17.72/6.55 17.72/6.55 findIndex :: (a -> Bool) -> [a] -> Maybe Int; 17.72/6.55 findIndex p = Maybe.listToMaybe . findIndices p; 17.72/6.55 17.72/6.55 findIndices :: (a -> Bool) -> [a] -> [Int]; 17.72/6.55 findIndices p xs = concatMap (findIndices0 p) (zip xs (enumFrom (Pos Zero))); 17.72/6.55 17.72/6.55 findIndices0 p vv1 = findIndices00 p vv1; 17.72/6.55 17.72/6.55 findIndices00 p (x,i) = findIndices000 i (p x); 17.72/6.55 findIndices00 p yu = []; 17.72/6.55 17.72/6.55 findIndices000 i True = i : []; 17.72/6.55 findIndices000 i False = []; 17.72/6.55 17.72/6.55 } 17.72/6.55 module Main where { 17.72/6.55 import qualified List; 17.72/6.55 import qualified Maybe; 17.72/6.55 import qualified Prelude; 17.72/6.55 } 17.72/6.55 17.72/6.55 ---------------------------------------- 17.72/6.55 17.72/6.55 (13) Narrow (SOUND) 17.72/6.55 Haskell To QDPs 17.72/6.55 17.72/6.55 digraph dp_graph { 17.72/6.55 node [outthreshold=100, inthreshold=100];1[label="List.elemIndex",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 17.72/6.55 3[label="List.elemIndex yv3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 17.72/6.55 4[label="List.elemIndex yv3 yv4",fontsize=16,color="black",shape="triangle"];4 -> 5[label="",style="solid", color="black", weight=3]; 17.72/6.55 5[label="List.findIndex (yv3 ==) yv4",fontsize=16,color="black",shape="box"];5 -> 6[label="",style="solid", color="black", weight=3]; 17.72/6.55 6[label="Maybe.listToMaybe . List.findIndices (yv3 ==)",fontsize=16,color="black",shape="box"];6 -> 7[label="",style="solid", color="black", weight=3]; 17.72/6.55 7[label="Maybe.listToMaybe (List.findIndices (yv3 ==) yv4)",fontsize=16,color="black",shape="box"];7 -> 8[label="",style="solid", color="black", weight=3]; 17.72/6.55 8[label="Maybe.listToMaybe (concatMap (List.findIndices0 (yv3 ==)) (zip yv4 (enumFrom (Pos Zero))))",fontsize=16,color="black",shape="box"];8 -> 9[label="",style="solid", color="black", weight=3]; 17.72/6.55 9[label="Maybe.listToMaybe (concat . map (List.findIndices0 (yv3 ==)))",fontsize=16,color="black",shape="box"];9 -> 10[label="",style="solid", color="black", weight=3]; 17.72/6.55 10[label="Maybe.listToMaybe (concat (map (List.findIndices0 (yv3 ==)) (zip yv4 (enumFrom (Pos Zero)))))",fontsize=16,color="black",shape="box"];10 -> 11[label="",style="solid", color="black", weight=3]; 17.72/6.55 11[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (yv3 ==)) (zip yv4 (enumFrom (Pos Zero)))))",fontsize=16,color="black",shape="box"];11 -> 12[label="",style="solid", color="black", weight=3]; 17.72/6.55 12[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (yv3 ==)) (zipWith zip0 yv4 (enumFrom (Pos Zero)))))",fontsize=16,color="burlywood",shape="box"];1982[label="yv4/yv40 : yv41",fontsize=10,color="white",style="solid",shape="box"];12 -> 1982[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 1982 -> 13[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1983[label="yv4/[]",fontsize=10,color="white",style="solid",shape="box"];12 -> 1983[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 1983 -> 14[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 13[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (yv3 ==)) (zipWith zip0 (yv40 : yv41) (enumFrom (Pos Zero)))))",fontsize=16,color="black",shape="box"];13 -> 15[label="",style="solid", color="black", weight=3]; 17.72/6.55 14[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (yv3 ==)) (zipWith zip0 [] (enumFrom (Pos Zero)))))",fontsize=16,color="black",shape="box"];14 -> 16[label="",style="solid", color="black", weight=3]; 17.72/6.55 15[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (yv3 ==)) (zipWith zip0 (yv40 : yv41) (numericEnumFrom (Pos Zero)))))",fontsize=16,color="black",shape="box"];15 -> 17[label="",style="solid", color="black", weight=3]; 17.72/6.55 16[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (yv3 ==)) []))",fontsize=16,color="black",shape="triangle"];16 -> 18[label="",style="solid", color="black", weight=3]; 17.72/6.55 17[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (yv3 ==)) (zipWith zip0 (yv40 : yv41) (Pos Zero : (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))))",fontsize=16,color="black",shape="box"];17 -> 19[label="",style="solid", color="black", weight=3]; 17.72/6.55 18[label="Maybe.listToMaybe (foldr (++) [] [])",fontsize=16,color="black",shape="box"];18 -> 20[label="",style="solid", color="black", weight=3]; 17.72/6.55 19[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (yv3 ==)) (zip0 yv40 (Pos Zero) : zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];19 -> 21[label="",style="solid", color="black", weight=3]; 17.72/6.55 20[label="Maybe.listToMaybe []",fontsize=16,color="black",shape="box"];20 -> 22[label="",style="solid", color="black", weight=3]; 17.72/6.55 21[label="Maybe.listToMaybe (foldr (++) [] (List.findIndices0 (yv3 ==) (zip0 yv40 (Pos Zero)) : map (List.findIndices0 (yv3 ==)) (zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];21 -> 23[label="",style="solid", color="black", weight=3]; 17.72/6.55 22[label="Nothing",fontsize=16,color="green",shape="box"];23[label="Maybe.listToMaybe ((++) List.findIndices0 (yv3 ==) (zip0 yv40 (Pos Zero)) foldr (++) [] (map (List.findIndices0 (yv3 ==)) (zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];23 -> 24[label="",style="solid", color="black", weight=3]; 17.72/6.55 24[label="Maybe.listToMaybe ((++) List.findIndices00 (yv3 ==) (zip0 yv40 (Pos Zero)) foldr (++) [] (map (List.findIndices0 (yv3 ==)) (zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];24 -> 25[label="",style="solid", color="black", weight=3]; 17.72/6.55 25[label="Maybe.listToMaybe ((++) List.findIndices00 (yv3 ==) (yv40,Pos Zero) foldr (++) [] (map (List.findIndices0 (yv3 ==)) (zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];25 -> 26[label="",style="solid", color="black", weight=3]; 17.72/6.55 26[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos Zero) (yv3 == yv40) foldr (++) [] (map (List.findIndices0 (yv3 ==)) (zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="burlywood",shape="box"];1984[label="yv3/yv30 : yv31",fontsize=10,color="white",style="solid",shape="box"];26 -> 1984[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 1984 -> 27[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1985[label="yv3/[]",fontsize=10,color="white",style="solid",shape="box"];26 -> 1985[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 1985 -> 28[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 27[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos Zero) (yv30 : yv31 == yv40) foldr (++) [] (map (List.findIndices0 (yv30 : yv31 ==)) (zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="burlywood",shape="box"];1986[label="yv40/yv400 : yv401",fontsize=10,color="white",style="solid",shape="box"];27 -> 1986[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 1986 -> 29[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1987[label="yv40/[]",fontsize=10,color="white",style="solid",shape="box"];27 -> 1987[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 1987 -> 30[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 28[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos Zero) ([] == yv40) foldr (++) [] (map (List.findIndices0 ([] ==)) (zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="burlywood",shape="box"];1988[label="yv40/yv400 : yv401",fontsize=10,color="white",style="solid",shape="box"];28 -> 1988[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 1988 -> 31[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1989[label="yv40/[]",fontsize=10,color="white",style="solid",shape="box"];28 -> 1989[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 1989 -> 32[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 29[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos Zero) (yv30 : yv31 == yv400 : yv401) foldr (++) [] (map (List.findIndices0 (yv30 : yv31 ==)) (zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];29 -> 33[label="",style="solid", color="black", weight=3]; 17.72/6.55 30[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos Zero) (yv30 : yv31 == []) foldr (++) [] (map (List.findIndices0 (yv30 : yv31 ==)) (zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];30 -> 34[label="",style="solid", color="black", weight=3]; 17.72/6.55 31[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos Zero) ([] == yv400 : yv401) foldr (++) [] (map (List.findIndices0 ([] ==)) (zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];31 -> 35[label="",style="solid", color="black", weight=3]; 17.72/6.55 32[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos Zero) ([] == []) foldr (++) [] (map (List.findIndices0 ([] ==)) (zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];32 -> 36[label="",style="solid", color="black", weight=3]; 17.72/6.55 33 -> 1086[label="",style="dashed", color="red", weight=0]; 17.72/6.55 33[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos Zero) (yv30 == yv400 && yv31 == yv401) foldr (++) [] (map (List.findIndices0 (yv30 : yv31 ==)) (zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="magenta"];33 -> 1087[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 33 -> 1088[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 33 -> 1089[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 33 -> 1090[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 33 -> 1091[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 34 -> 1086[label="",style="dashed", color="red", weight=0]; 17.72/6.55 34[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos Zero) False foldr (++) [] (map (List.findIndices0 (yv30 : yv31 ==)) (zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="magenta"];34 -> 1092[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 34 -> 1093[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 34 -> 1094[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 34 -> 1095[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 34 -> 1096[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 35 -> 1073[label="",style="dashed", color="red", weight=0]; 17.72/6.55 35[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos Zero) False foldr (++) [] (map (List.findIndices0 ([] ==)) (zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="magenta"];35 -> 1074[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 35 -> 1075[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 35 -> 1076[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 36 -> 1073[label="",style="dashed", color="red", weight=0]; 17.72/6.55 36[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos Zero) True foldr (++) [] (map (List.findIndices0 ([] ==)) (zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="magenta"];36 -> 1077[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 36 -> 1078[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 36 -> 1079[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1087[label="yv31",fontsize=16,color="green",shape="box"];1088[label="yv30",fontsize=16,color="green",shape="box"];1089[label="Zero",fontsize=16,color="green",shape="box"];1090 -> 1304[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1090[label="yv30 == yv400 && yv31 == yv401",fontsize=16,color="magenta"];1090 -> 1305[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1090 -> 1306[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1091[label="yv41",fontsize=16,color="green",shape="box"];1086[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos yv37) yv40 foldr (++) [] (map (List.findIndices0 (yv14 : yv12 ==)) (zipWith zip0 yv1511 (numericEnumFrom $! Pos yv37 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="burlywood",shape="triangle"];1990[label="yv40/False",fontsize=10,color="white",style="solid",shape="box"];1086 -> 1990[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 1990 -> 1105[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1991[label="yv40/True",fontsize=10,color="white",style="solid",shape="box"];1086 -> 1991[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 1991 -> 1106[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1092[label="yv31",fontsize=16,color="green",shape="box"];1093[label="yv30",fontsize=16,color="green",shape="box"];1094[label="Zero",fontsize=16,color="green",shape="box"];1095[label="False",fontsize=16,color="green",shape="box"];1096[label="yv41",fontsize=16,color="green",shape="box"];1074[label="False",fontsize=16,color="green",shape="box"];1075[label="Zero",fontsize=16,color="green",shape="box"];1076[label="yv41",fontsize=16,color="green",shape="box"];1073[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos yv35) yv39 foldr (++) [] (map (List.findIndices0 ([] ==)) (zipWith zip0 yv4111 (numericEnumFrom $! Pos yv35 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="burlywood",shape="triangle"];1992[label="yv39/False",fontsize=10,color="white",style="solid",shape="box"];1073 -> 1992[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 1992 -> 1081[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1993[label="yv39/True",fontsize=10,color="white",style="solid",shape="box"];1073 -> 1993[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 1993 -> 1082[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1077[label="True",fontsize=16,color="green",shape="box"];1078[label="Zero",fontsize=16,color="green",shape="box"];1079[label="yv41",fontsize=16,color="green",shape="box"];1305[label="yv31 == yv401",fontsize=16,color="burlywood",shape="triangle"];1994[label="yv31/yv310 : yv311",fontsize=10,color="white",style="solid",shape="box"];1305 -> 1994[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 1994 -> 1309[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1995[label="yv31/[]",fontsize=10,color="white",style="solid",shape="box"];1305 -> 1995[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 1995 -> 1310[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1306[label="yv30 == yv400",fontsize=16,color="blue",shape="box"];1996[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1306 -> 1996[label="",style="solid", color="blue", weight=9]; 17.72/6.55 1996 -> 1311[label="",style="solid", color="blue", weight=3]; 17.72/6.55 1997[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1306 -> 1997[label="",style="solid", color="blue", weight=9]; 17.72/6.55 1997 -> 1312[label="",style="solid", color="blue", weight=3]; 17.72/6.55 1998[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1306 -> 1998[label="",style="solid", color="blue", weight=9]; 17.72/6.55 1998 -> 1313[label="",style="solid", color="blue", weight=3]; 17.72/6.55 1999[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1306 -> 1999[label="",style="solid", color="blue", weight=9]; 17.72/6.55 1999 -> 1314[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2000[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1306 -> 2000[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2000 -> 1315[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2001[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1306 -> 2001[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2001 -> 1316[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2002[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1306 -> 2002[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2002 -> 1317[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2003[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1306 -> 2003[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2003 -> 1318[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2004[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1306 -> 2004[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2004 -> 1319[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2005[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1306 -> 2005[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2005 -> 1320[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2006[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1306 -> 2006[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2006 -> 1321[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2007[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1306 -> 2007[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2007 -> 1322[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2008[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1306 -> 2008[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2008 -> 1323[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2009[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1306 -> 2009[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2009 -> 1324[label="",style="solid", color="blue", weight=3]; 17.72/6.55 1304[label="yv52 && yv53",fontsize=16,color="burlywood",shape="triangle"];2010[label="yv52/False",fontsize=10,color="white",style="solid",shape="box"];1304 -> 2010[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2010 -> 1325[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 2011[label="yv52/True",fontsize=10,color="white",style="solid",shape="box"];1304 -> 2011[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2011 -> 1326[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1105[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos yv37) False foldr (++) [] (map (List.findIndices0 (yv14 : yv12 ==)) (zipWith zip0 yv1511 (numericEnumFrom $! Pos yv37 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1105 -> 1125[label="",style="solid", color="black", weight=3]; 17.72/6.55 1106[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos yv37) True foldr (++) [] (map (List.findIndices0 (yv14 : yv12 ==)) (zipWith zip0 yv1511 (numericEnumFrom $! Pos yv37 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1106 -> 1126[label="",style="solid", color="black", weight=3]; 17.72/6.55 1081[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos yv35) False foldr (++) [] (map (List.findIndices0 ([] ==)) (zipWith zip0 yv4111 (numericEnumFrom $! Pos yv35 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1081 -> 1084[label="",style="solid", color="black", weight=3]; 17.72/6.55 1082[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos yv35) True foldr (++) [] (map (List.findIndices0 ([] ==)) (zipWith zip0 yv4111 (numericEnumFrom $! Pos yv35 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1082 -> 1085[label="",style="solid", color="black", weight=3]; 17.72/6.55 1309[label="yv310 : yv311 == yv401",fontsize=16,color="burlywood",shape="box"];2012[label="yv401/yv4010 : yv4011",fontsize=10,color="white",style="solid",shape="box"];1309 -> 2012[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2012 -> 1330[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 2013[label="yv401/[]",fontsize=10,color="white",style="solid",shape="box"];1309 -> 2013[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2013 -> 1331[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1310[label="[] == yv401",fontsize=16,color="burlywood",shape="box"];2014[label="yv401/yv4010 : yv4011",fontsize=10,color="white",style="solid",shape="box"];1310 -> 2014[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2014 -> 1332[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 2015[label="yv401/[]",fontsize=10,color="white",style="solid",shape="box"];1310 -> 2015[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2015 -> 1333[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1311[label="yv30 == yv400",fontsize=16,color="burlywood",shape="triangle"];2016[label="yv30/()",fontsize=10,color="white",style="solid",shape="box"];1311 -> 2016[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2016 -> 1334[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1312[label="yv30 == yv400",fontsize=16,color="black",shape="triangle"];1312 -> 1335[label="",style="solid", color="black", weight=3]; 17.72/6.55 1313[label="yv30 == yv400",fontsize=16,color="burlywood",shape="triangle"];2017[label="yv30/False",fontsize=10,color="white",style="solid",shape="box"];1313 -> 2017[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2017 -> 1336[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 2018[label="yv30/True",fontsize=10,color="white",style="solid",shape="box"];1313 -> 2018[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2018 -> 1337[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1314[label="yv30 == yv400",fontsize=16,color="black",shape="triangle"];1314 -> 1338[label="",style="solid", color="black", weight=3]; 17.72/6.55 1315[label="yv30 == yv400",fontsize=16,color="black",shape="triangle"];1315 -> 1339[label="",style="solid", color="black", weight=3]; 17.72/6.55 1316[label="yv30 == yv400",fontsize=16,color="black",shape="triangle"];1316 -> 1340[label="",style="solid", color="black", weight=3]; 17.72/6.55 1317[label="yv30 == yv400",fontsize=16,color="burlywood",shape="triangle"];2019[label="yv30/(yv300,yv301,yv302)",fontsize=10,color="white",style="solid",shape="box"];1317 -> 2019[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2019 -> 1341[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1318[label="yv30 == yv400",fontsize=16,color="burlywood",shape="triangle"];2020[label="yv30/(yv300,yv301)",fontsize=10,color="white",style="solid",shape="box"];1318 -> 2020[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2020 -> 1342[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1319[label="yv30 == yv400",fontsize=16,color="burlywood",shape="triangle"];2021[label="yv30/yv300 :% yv301",fontsize=10,color="white",style="solid",shape="box"];1319 -> 2021[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2021 -> 1343[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1320[label="yv30 == yv400",fontsize=16,color="burlywood",shape="triangle"];2022[label="yv30/Integer yv300",fontsize=10,color="white",style="solid",shape="box"];1320 -> 2022[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2022 -> 1344[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1321 -> 1305[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1321[label="yv30 == yv400",fontsize=16,color="magenta"];1321 -> 1345[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1321 -> 1346[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1322[label="yv30 == yv400",fontsize=16,color="burlywood",shape="triangle"];2023[label="yv30/LT",fontsize=10,color="white",style="solid",shape="box"];1322 -> 2023[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2023 -> 1347[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 2024[label="yv30/EQ",fontsize=10,color="white",style="solid",shape="box"];1322 -> 2024[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2024 -> 1348[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 2025[label="yv30/GT",fontsize=10,color="white",style="solid",shape="box"];1322 -> 2025[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2025 -> 1349[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1323[label="yv30 == yv400",fontsize=16,color="burlywood",shape="triangle"];2026[label="yv30/Left yv300",fontsize=10,color="white",style="solid",shape="box"];1323 -> 2026[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2026 -> 1350[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 2027[label="yv30/Right yv300",fontsize=10,color="white",style="solid",shape="box"];1323 -> 2027[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2027 -> 1351[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1324[label="yv30 == yv400",fontsize=16,color="burlywood",shape="triangle"];2028[label="yv30/Nothing",fontsize=10,color="white",style="solid",shape="box"];1324 -> 2028[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2028 -> 1352[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 2029[label="yv30/Just yv300",fontsize=10,color="white",style="solid",shape="box"];1324 -> 2029[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2029 -> 1353[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1325[label="False && yv53",fontsize=16,color="black",shape="box"];1325 -> 1354[label="",style="solid", color="black", weight=3]; 17.72/6.55 1326[label="True && yv53",fontsize=16,color="black",shape="box"];1326 -> 1355[label="",style="solid", color="black", weight=3]; 17.72/6.55 1125[label="Maybe.listToMaybe ((++) [] foldr (++) [] (map (List.findIndices0 (yv14 : yv12 ==)) (zipWith zip0 yv1511 (numericEnumFrom $! Pos yv37 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1125 -> 1152[label="",style="solid", color="black", weight=3]; 17.72/6.55 1126[label="Maybe.listToMaybe ((++) (Pos yv37 : []) foldr (++) [] (map (List.findIndices0 (yv14 : yv12 ==)) (zipWith zip0 yv1511 (numericEnumFrom $! Pos yv37 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1126 -> 1153[label="",style="solid", color="black", weight=3]; 17.72/6.55 1084[label="Maybe.listToMaybe ((++) [] foldr (++) [] (map (List.findIndices0 ([] ==)) (zipWith zip0 yv4111 (numericEnumFrom $! Pos yv35 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1084 -> 1123[label="",style="solid", color="black", weight=3]; 17.72/6.55 1085[label="Maybe.listToMaybe ((++) (Pos yv35 : []) foldr (++) [] (map (List.findIndices0 ([] ==)) (zipWith zip0 yv4111 (numericEnumFrom $! Pos yv35 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1085 -> 1124[label="",style="solid", color="black", weight=3]; 17.72/6.55 1330[label="yv310 : yv311 == yv4010 : yv4011",fontsize=16,color="black",shape="box"];1330 -> 1358[label="",style="solid", color="black", weight=3]; 17.72/6.55 1331[label="yv310 : yv311 == []",fontsize=16,color="black",shape="box"];1331 -> 1359[label="",style="solid", color="black", weight=3]; 17.72/6.55 1332[label="[] == yv4010 : yv4011",fontsize=16,color="black",shape="box"];1332 -> 1360[label="",style="solid", color="black", weight=3]; 17.72/6.55 1333[label="[] == []",fontsize=16,color="black",shape="box"];1333 -> 1361[label="",style="solid", color="black", weight=3]; 17.72/6.55 1334[label="() == yv400",fontsize=16,color="burlywood",shape="box"];2030[label="yv400/()",fontsize=10,color="white",style="solid",shape="box"];1334 -> 2030[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2030 -> 1362[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1335[label="primEqFloat yv30 yv400",fontsize=16,color="burlywood",shape="box"];2031[label="yv30/Float yv300 yv301",fontsize=10,color="white",style="solid",shape="box"];1335 -> 2031[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2031 -> 1363[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1336[label="False == yv400",fontsize=16,color="burlywood",shape="box"];2032[label="yv400/False",fontsize=10,color="white",style="solid",shape="box"];1336 -> 2032[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2032 -> 1364[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 2033[label="yv400/True",fontsize=10,color="white",style="solid",shape="box"];1336 -> 2033[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2033 -> 1365[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1337[label="True == yv400",fontsize=16,color="burlywood",shape="box"];2034[label="yv400/False",fontsize=10,color="white",style="solid",shape="box"];1337 -> 2034[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2034 -> 1366[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 2035[label="yv400/True",fontsize=10,color="white",style="solid",shape="box"];1337 -> 2035[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2035 -> 1367[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1338[label="primEqDouble yv30 yv400",fontsize=16,color="burlywood",shape="box"];2036[label="yv30/Double yv300 yv301",fontsize=10,color="white",style="solid",shape="box"];1338 -> 2036[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2036 -> 1368[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1339[label="primEqInt yv30 yv400",fontsize=16,color="burlywood",shape="triangle"];2037[label="yv30/Pos yv300",fontsize=10,color="white",style="solid",shape="box"];1339 -> 2037[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2037 -> 1369[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 2038[label="yv30/Neg yv300",fontsize=10,color="white",style="solid",shape="box"];1339 -> 2038[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2038 -> 1370[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1340[label="primEqChar yv30 yv400",fontsize=16,color="burlywood",shape="box"];2039[label="yv30/Char yv300",fontsize=10,color="white",style="solid",shape="box"];1340 -> 2039[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2039 -> 1371[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1341[label="(yv300,yv301,yv302) == yv400",fontsize=16,color="burlywood",shape="box"];2040[label="yv400/(yv4000,yv4001,yv4002)",fontsize=10,color="white",style="solid",shape="box"];1341 -> 2040[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2040 -> 1372[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1342[label="(yv300,yv301) == yv400",fontsize=16,color="burlywood",shape="box"];2041[label="yv400/(yv4000,yv4001)",fontsize=10,color="white",style="solid",shape="box"];1342 -> 2041[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2041 -> 1373[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1343[label="yv300 :% yv301 == yv400",fontsize=16,color="burlywood",shape="box"];2042[label="yv400/yv4000 :% yv4001",fontsize=10,color="white",style="solid",shape="box"];1343 -> 2042[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2042 -> 1374[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1344[label="Integer yv300 == yv400",fontsize=16,color="burlywood",shape="box"];2043[label="yv400/Integer yv4000",fontsize=10,color="white",style="solid",shape="box"];1344 -> 2043[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2043 -> 1375[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1345[label="yv400",fontsize=16,color="green",shape="box"];1346[label="yv30",fontsize=16,color="green",shape="box"];1347[label="LT == yv400",fontsize=16,color="burlywood",shape="box"];2044[label="yv400/LT",fontsize=10,color="white",style="solid",shape="box"];1347 -> 2044[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2044 -> 1376[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 2045[label="yv400/EQ",fontsize=10,color="white",style="solid",shape="box"];1347 -> 2045[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2045 -> 1377[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 2046[label="yv400/GT",fontsize=10,color="white",style="solid",shape="box"];1347 -> 2046[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2046 -> 1378[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1348[label="EQ == yv400",fontsize=16,color="burlywood",shape="box"];2047[label="yv400/LT",fontsize=10,color="white",style="solid",shape="box"];1348 -> 2047[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2047 -> 1379[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 2048[label="yv400/EQ",fontsize=10,color="white",style="solid",shape="box"];1348 -> 2048[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2048 -> 1380[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 2049[label="yv400/GT",fontsize=10,color="white",style="solid",shape="box"];1348 -> 2049[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2049 -> 1381[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1349[label="GT == yv400",fontsize=16,color="burlywood",shape="box"];2050[label="yv400/LT",fontsize=10,color="white",style="solid",shape="box"];1349 -> 2050[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2050 -> 1382[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 2051[label="yv400/EQ",fontsize=10,color="white",style="solid",shape="box"];1349 -> 2051[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2051 -> 1383[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 2052[label="yv400/GT",fontsize=10,color="white",style="solid",shape="box"];1349 -> 2052[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2052 -> 1384[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1350[label="Left yv300 == yv400",fontsize=16,color="burlywood",shape="box"];2053[label="yv400/Left yv4000",fontsize=10,color="white",style="solid",shape="box"];1350 -> 2053[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2053 -> 1385[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 2054[label="yv400/Right yv4000",fontsize=10,color="white",style="solid",shape="box"];1350 -> 2054[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2054 -> 1386[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1351[label="Right yv300 == yv400",fontsize=16,color="burlywood",shape="box"];2055[label="yv400/Left yv4000",fontsize=10,color="white",style="solid",shape="box"];1351 -> 2055[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2055 -> 1387[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 2056[label="yv400/Right yv4000",fontsize=10,color="white",style="solid",shape="box"];1351 -> 2056[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2056 -> 1388[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1352[label="Nothing == yv400",fontsize=16,color="burlywood",shape="box"];2057[label="yv400/Nothing",fontsize=10,color="white",style="solid",shape="box"];1352 -> 2057[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2057 -> 1389[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 2058[label="yv400/Just yv4000",fontsize=10,color="white",style="solid",shape="box"];1352 -> 2058[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2058 -> 1390[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1353[label="Just yv300 == yv400",fontsize=16,color="burlywood",shape="box"];2059[label="yv400/Nothing",fontsize=10,color="white",style="solid",shape="box"];1353 -> 2059[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2059 -> 1391[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 2060[label="yv400/Just yv4000",fontsize=10,color="white",style="solid",shape="box"];1353 -> 2060[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2060 -> 1392[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1354[label="False",fontsize=16,color="green",shape="box"];1355[label="yv53",fontsize=16,color="green",shape="box"];1152[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (yv14 : yv12 ==)) (zipWith zip0 yv1511 (numericEnumFrom $! Pos yv37 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="burlywood",shape="box"];2061[label="yv1511/yv15110 : yv15111",fontsize=10,color="white",style="solid",shape="box"];1152 -> 2061[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2061 -> 1205[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 2062[label="yv1511/[]",fontsize=10,color="white",style="solid",shape="box"];1152 -> 2062[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2062 -> 1206[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1153[label="Maybe.listToMaybe (Pos yv37 : [] ++ foldr (++) [] (map (List.findIndices0 (yv14 : yv12 ==)) (zipWith zip0 yv1511 (numericEnumFrom $! Pos yv37 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1153 -> 1207[label="",style="solid", color="black", weight=3]; 17.72/6.55 1123[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 ([] ==)) (zipWith zip0 yv4111 (numericEnumFrom $! Pos yv35 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="burlywood",shape="box"];2063[label="yv4111/yv41110 : yv41111",fontsize=10,color="white",style="solid",shape="box"];1123 -> 2063[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2063 -> 1149[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 2064[label="yv4111/[]",fontsize=10,color="white",style="solid",shape="box"];1123 -> 2064[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2064 -> 1150[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1124[label="Maybe.listToMaybe (Pos yv35 : [] ++ foldr (++) [] (map (List.findIndices0 ([] ==)) (zipWith zip0 yv4111 (numericEnumFrom $! Pos yv35 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1124 -> 1151[label="",style="solid", color="black", weight=3]; 17.72/6.55 1358 -> 1304[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1358[label="yv310 == yv4010 && yv311 == yv4011",fontsize=16,color="magenta"];1358 -> 1395[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1358 -> 1396[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1359[label="False",fontsize=16,color="green",shape="box"];1360[label="False",fontsize=16,color="green",shape="box"];1361[label="True",fontsize=16,color="green",shape="box"];1362[label="() == ()",fontsize=16,color="black",shape="box"];1362 -> 1397[label="",style="solid", color="black", weight=3]; 17.72/6.55 1363[label="primEqFloat (Float yv300 yv301) yv400",fontsize=16,color="burlywood",shape="box"];2065[label="yv400/Float yv4000 yv4001",fontsize=10,color="white",style="solid",shape="box"];1363 -> 2065[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2065 -> 1398[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1364[label="False == False",fontsize=16,color="black",shape="box"];1364 -> 1399[label="",style="solid", color="black", weight=3]; 17.72/6.55 1365[label="False == True",fontsize=16,color="black",shape="box"];1365 -> 1400[label="",style="solid", color="black", weight=3]; 17.72/6.55 1366[label="True == False",fontsize=16,color="black",shape="box"];1366 -> 1401[label="",style="solid", color="black", weight=3]; 17.72/6.55 1367[label="True == True",fontsize=16,color="black",shape="box"];1367 -> 1402[label="",style="solid", color="black", weight=3]; 17.72/6.55 1368[label="primEqDouble (Double yv300 yv301) yv400",fontsize=16,color="burlywood",shape="box"];2066[label="yv400/Double yv4000 yv4001",fontsize=10,color="white",style="solid",shape="box"];1368 -> 2066[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2066 -> 1403[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1369[label="primEqInt (Pos yv300) yv400",fontsize=16,color="burlywood",shape="box"];2067[label="yv300/Succ yv3000",fontsize=10,color="white",style="solid",shape="box"];1369 -> 2067[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2067 -> 1404[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 2068[label="yv300/Zero",fontsize=10,color="white",style="solid",shape="box"];1369 -> 2068[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2068 -> 1405[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1370[label="primEqInt (Neg yv300) yv400",fontsize=16,color="burlywood",shape="box"];2069[label="yv300/Succ yv3000",fontsize=10,color="white",style="solid",shape="box"];1370 -> 2069[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2069 -> 1406[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 2070[label="yv300/Zero",fontsize=10,color="white",style="solid",shape="box"];1370 -> 2070[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2070 -> 1407[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1371[label="primEqChar (Char yv300) yv400",fontsize=16,color="burlywood",shape="box"];2071[label="yv400/Char yv4000",fontsize=10,color="white",style="solid",shape="box"];1371 -> 2071[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2071 -> 1408[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1372[label="(yv300,yv301,yv302) == (yv4000,yv4001,yv4002)",fontsize=16,color="black",shape="box"];1372 -> 1409[label="",style="solid", color="black", weight=3]; 17.72/6.55 1373[label="(yv300,yv301) == (yv4000,yv4001)",fontsize=16,color="black",shape="box"];1373 -> 1410[label="",style="solid", color="black", weight=3]; 17.72/6.55 1374[label="yv300 :% yv301 == yv4000 :% yv4001",fontsize=16,color="black",shape="box"];1374 -> 1411[label="",style="solid", color="black", weight=3]; 17.72/6.55 1375[label="Integer yv300 == Integer yv4000",fontsize=16,color="black",shape="box"];1375 -> 1412[label="",style="solid", color="black", weight=3]; 17.72/6.55 1376[label="LT == LT",fontsize=16,color="black",shape="box"];1376 -> 1413[label="",style="solid", color="black", weight=3]; 17.72/6.55 1377[label="LT == EQ",fontsize=16,color="black",shape="box"];1377 -> 1414[label="",style="solid", color="black", weight=3]; 17.72/6.55 1378[label="LT == GT",fontsize=16,color="black",shape="box"];1378 -> 1415[label="",style="solid", color="black", weight=3]; 17.72/6.55 1379[label="EQ == LT",fontsize=16,color="black",shape="box"];1379 -> 1416[label="",style="solid", color="black", weight=3]; 17.72/6.55 1380[label="EQ == EQ",fontsize=16,color="black",shape="box"];1380 -> 1417[label="",style="solid", color="black", weight=3]; 17.72/6.55 1381[label="EQ == GT",fontsize=16,color="black",shape="box"];1381 -> 1418[label="",style="solid", color="black", weight=3]; 17.72/6.55 1382[label="GT == LT",fontsize=16,color="black",shape="box"];1382 -> 1419[label="",style="solid", color="black", weight=3]; 17.72/6.55 1383[label="GT == EQ",fontsize=16,color="black",shape="box"];1383 -> 1420[label="",style="solid", color="black", weight=3]; 17.72/6.55 1384[label="GT == GT",fontsize=16,color="black",shape="box"];1384 -> 1421[label="",style="solid", color="black", weight=3]; 17.72/6.55 1385[label="Left yv300 == Left yv4000",fontsize=16,color="black",shape="box"];1385 -> 1422[label="",style="solid", color="black", weight=3]; 17.72/6.55 1386[label="Left yv300 == Right yv4000",fontsize=16,color="black",shape="box"];1386 -> 1423[label="",style="solid", color="black", weight=3]; 17.72/6.55 1387[label="Right yv300 == Left yv4000",fontsize=16,color="black",shape="box"];1387 -> 1424[label="",style="solid", color="black", weight=3]; 17.72/6.55 1388[label="Right yv300 == Right yv4000",fontsize=16,color="black",shape="box"];1388 -> 1425[label="",style="solid", color="black", weight=3]; 17.72/6.55 1389[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];1389 -> 1426[label="",style="solid", color="black", weight=3]; 17.72/6.55 1390[label="Nothing == Just yv4000",fontsize=16,color="black",shape="box"];1390 -> 1427[label="",style="solid", color="black", weight=3]; 17.72/6.55 1391[label="Just yv300 == Nothing",fontsize=16,color="black",shape="box"];1391 -> 1428[label="",style="solid", color="black", weight=3]; 17.72/6.55 1392[label="Just yv300 == Just yv4000",fontsize=16,color="black",shape="box"];1392 -> 1429[label="",style="solid", color="black", weight=3]; 17.72/6.55 1205[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (yv14 : yv12 ==)) (zipWith zip0 (yv15110 : yv15111) (numericEnumFrom $! Pos yv37 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1205 -> 1275[label="",style="solid", color="black", weight=3]; 17.72/6.55 1206[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (yv14 : yv12 ==)) (zipWith zip0 [] (numericEnumFrom $! Pos yv37 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1206 -> 1276[label="",style="solid", color="black", weight=3]; 17.72/6.55 1207[label="Just (Pos yv37)",fontsize=16,color="green",shape="box"];1149[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 ([] ==)) (zipWith zip0 (yv41110 : yv41111) (numericEnumFrom $! Pos yv35 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1149 -> 1203[label="",style="solid", color="black", weight=3]; 17.72/6.55 1150[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 ([] ==)) (zipWith zip0 [] (numericEnumFrom $! Pos yv35 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1150 -> 1204[label="",style="solid", color="black", weight=3]; 17.72/6.55 1151[label="Just (Pos yv35)",fontsize=16,color="green",shape="box"];1395 -> 1305[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1395[label="yv311 == yv4011",fontsize=16,color="magenta"];1395 -> 1432[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1395 -> 1433[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1396[label="yv310 == yv4010",fontsize=16,color="blue",shape="box"];2072[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1396 -> 2072[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2072 -> 1434[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2073[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1396 -> 2073[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2073 -> 1435[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2074[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1396 -> 2074[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2074 -> 1436[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2075[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1396 -> 2075[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2075 -> 1437[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2076[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1396 -> 2076[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2076 -> 1438[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2077[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1396 -> 2077[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2077 -> 1439[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2078[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1396 -> 2078[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2078 -> 1440[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2079[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1396 -> 2079[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2079 -> 1441[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2080[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1396 -> 2080[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2080 -> 1442[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2081[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1396 -> 2081[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2081 -> 1443[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2082[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1396 -> 2082[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2082 -> 1444[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2083[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1396 -> 2083[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2083 -> 1445[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2084[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1396 -> 2084[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2084 -> 1446[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2085[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1396 -> 2085[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2085 -> 1447[label="",style="solid", color="blue", weight=3]; 17.72/6.55 1397[label="True",fontsize=16,color="green",shape="box"];1398[label="primEqFloat (Float yv300 yv301) (Float yv4000 yv4001)",fontsize=16,color="black",shape="box"];1398 -> 1448[label="",style="solid", color="black", weight=3]; 17.72/6.55 1399[label="True",fontsize=16,color="green",shape="box"];1400[label="False",fontsize=16,color="green",shape="box"];1401[label="False",fontsize=16,color="green",shape="box"];1402[label="True",fontsize=16,color="green",shape="box"];1403[label="primEqDouble (Double yv300 yv301) (Double yv4000 yv4001)",fontsize=16,color="black",shape="box"];1403 -> 1449[label="",style="solid", color="black", weight=3]; 17.72/6.55 1404[label="primEqInt (Pos (Succ yv3000)) yv400",fontsize=16,color="burlywood",shape="box"];2086[label="yv400/Pos yv4000",fontsize=10,color="white",style="solid",shape="box"];1404 -> 2086[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2086 -> 1450[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 2087[label="yv400/Neg yv4000",fontsize=10,color="white",style="solid",shape="box"];1404 -> 2087[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2087 -> 1451[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1405[label="primEqInt (Pos Zero) yv400",fontsize=16,color="burlywood",shape="box"];2088[label="yv400/Pos yv4000",fontsize=10,color="white",style="solid",shape="box"];1405 -> 2088[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2088 -> 1452[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 2089[label="yv400/Neg yv4000",fontsize=10,color="white",style="solid",shape="box"];1405 -> 2089[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2089 -> 1453[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1406[label="primEqInt (Neg (Succ yv3000)) yv400",fontsize=16,color="burlywood",shape="box"];2090[label="yv400/Pos yv4000",fontsize=10,color="white",style="solid",shape="box"];1406 -> 2090[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2090 -> 1454[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 2091[label="yv400/Neg yv4000",fontsize=10,color="white",style="solid",shape="box"];1406 -> 2091[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2091 -> 1455[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1407[label="primEqInt (Neg Zero) yv400",fontsize=16,color="burlywood",shape="box"];2092[label="yv400/Pos yv4000",fontsize=10,color="white",style="solid",shape="box"];1407 -> 2092[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2092 -> 1456[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 2093[label="yv400/Neg yv4000",fontsize=10,color="white",style="solid",shape="box"];1407 -> 2093[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2093 -> 1457[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1408[label="primEqChar (Char yv300) (Char yv4000)",fontsize=16,color="black",shape="box"];1408 -> 1458[label="",style="solid", color="black", weight=3]; 17.72/6.55 1409 -> 1304[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1409[label="yv300 == yv4000 && yv301 == yv4001 && yv302 == yv4002",fontsize=16,color="magenta"];1409 -> 1459[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1409 -> 1460[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1410 -> 1304[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1410[label="yv300 == yv4000 && yv301 == yv4001",fontsize=16,color="magenta"];1410 -> 1461[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1410 -> 1462[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1411 -> 1304[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1411[label="yv300 == yv4000 && yv301 == yv4001",fontsize=16,color="magenta"];1411 -> 1463[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1411 -> 1464[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1412 -> 1339[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1412[label="primEqInt yv300 yv4000",fontsize=16,color="magenta"];1412 -> 1465[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1412 -> 1466[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1413[label="True",fontsize=16,color="green",shape="box"];1414[label="False",fontsize=16,color="green",shape="box"];1415[label="False",fontsize=16,color="green",shape="box"];1416[label="False",fontsize=16,color="green",shape="box"];1417[label="True",fontsize=16,color="green",shape="box"];1418[label="False",fontsize=16,color="green",shape="box"];1419[label="False",fontsize=16,color="green",shape="box"];1420[label="False",fontsize=16,color="green",shape="box"];1421[label="True",fontsize=16,color="green",shape="box"];1422[label="yv300 == yv4000",fontsize=16,color="blue",shape="box"];2094[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1422 -> 2094[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2094 -> 1467[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2095[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1422 -> 2095[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2095 -> 1468[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2096[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1422 -> 2096[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2096 -> 1469[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2097[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1422 -> 2097[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2097 -> 1470[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2098[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1422 -> 2098[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2098 -> 1471[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2099[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1422 -> 2099[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2099 -> 1472[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2100[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1422 -> 2100[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2100 -> 1473[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2101[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1422 -> 2101[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2101 -> 1474[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2102[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1422 -> 2102[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2102 -> 1475[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2103[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1422 -> 2103[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2103 -> 1476[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2104[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1422 -> 2104[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2104 -> 1477[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2105[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1422 -> 2105[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2105 -> 1478[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2106[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1422 -> 2106[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2106 -> 1479[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2107[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1422 -> 2107[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2107 -> 1480[label="",style="solid", color="blue", weight=3]; 17.72/6.55 1423[label="False",fontsize=16,color="green",shape="box"];1424[label="False",fontsize=16,color="green",shape="box"];1425[label="yv300 == yv4000",fontsize=16,color="blue",shape="box"];2108[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1425 -> 2108[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2108 -> 1481[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2109[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1425 -> 2109[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2109 -> 1482[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2110[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1425 -> 2110[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2110 -> 1483[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2111[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1425 -> 2111[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2111 -> 1484[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2112[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1425 -> 2112[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2112 -> 1485[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2113[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1425 -> 2113[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2113 -> 1486[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2114[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1425 -> 2114[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2114 -> 1487[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2115[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1425 -> 2115[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2115 -> 1488[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2116[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1425 -> 2116[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2116 -> 1489[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2117[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1425 -> 2117[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2117 -> 1490[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2118[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1425 -> 2118[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2118 -> 1491[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2119[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1425 -> 2119[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2119 -> 1492[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2120[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1425 -> 2120[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2120 -> 1493[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2121[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1425 -> 2121[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2121 -> 1494[label="",style="solid", color="blue", weight=3]; 17.72/6.55 1426[label="True",fontsize=16,color="green",shape="box"];1427[label="False",fontsize=16,color="green",shape="box"];1428[label="False",fontsize=16,color="green",shape="box"];1429[label="yv300 == yv4000",fontsize=16,color="blue",shape="box"];2122[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1429 -> 2122[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2122 -> 1495[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2123[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1429 -> 2123[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2123 -> 1496[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2124[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1429 -> 2124[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2124 -> 1497[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2125[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1429 -> 2125[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2125 -> 1498[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2126[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1429 -> 2126[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2126 -> 1499[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2127[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1429 -> 2127[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2127 -> 1500[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2128[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1429 -> 2128[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2128 -> 1501[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2129[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1429 -> 2129[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2129 -> 1502[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2130[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1429 -> 2130[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2130 -> 1503[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2131[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1429 -> 2131[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2131 -> 1504[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2132[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1429 -> 2132[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2132 -> 1505[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2133[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1429 -> 2133[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2133 -> 1506[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2134[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1429 -> 2134[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2134 -> 1507[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2135[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1429 -> 2135[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2135 -> 1508[label="",style="solid", color="blue", weight=3]; 17.72/6.55 1275[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (yv14 : yv12 ==)) (zipWith zip0 (yv15110 : yv15111) (Pos yv37 + fromInt (Pos (Succ Zero)) `seq` numericEnumFrom (Pos yv37 + fromInt (Pos (Succ Zero)))))))",fontsize=16,color="black",shape="box"];1275 -> 1327[label="",style="solid", color="black", weight=3]; 17.72/6.55 1276 -> 16[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1276[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (yv14 : yv12 ==)) []))",fontsize=16,color="magenta"];1276 -> 1328[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1203[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 ([] ==)) (zipWith zip0 (yv41110 : yv41111) (Pos yv35 + fromInt (Pos (Succ Zero)) `seq` numericEnumFrom (Pos yv35 + fromInt (Pos (Succ Zero)))))))",fontsize=16,color="black",shape="box"];1203 -> 1273[label="",style="solid", color="black", weight=3]; 17.72/6.55 1204 -> 16[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1204[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 ([] ==)) []))",fontsize=16,color="magenta"];1204 -> 1274[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1432[label="yv4011",fontsize=16,color="green",shape="box"];1433[label="yv311",fontsize=16,color="green",shape="box"];1434 -> 1311[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1434[label="yv310 == yv4010",fontsize=16,color="magenta"];1434 -> 1511[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1434 -> 1512[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1435 -> 1312[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1435[label="yv310 == yv4010",fontsize=16,color="magenta"];1435 -> 1513[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1435 -> 1514[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1436 -> 1313[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1436[label="yv310 == yv4010",fontsize=16,color="magenta"];1436 -> 1515[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1436 -> 1516[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1437 -> 1314[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1437[label="yv310 == yv4010",fontsize=16,color="magenta"];1437 -> 1517[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1437 -> 1518[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1438 -> 1315[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1438[label="yv310 == yv4010",fontsize=16,color="magenta"];1438 -> 1519[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1438 -> 1520[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1439 -> 1316[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1439[label="yv310 == yv4010",fontsize=16,color="magenta"];1439 -> 1521[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1439 -> 1522[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1440 -> 1317[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1440[label="yv310 == yv4010",fontsize=16,color="magenta"];1440 -> 1523[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1440 -> 1524[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1441 -> 1318[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1441[label="yv310 == yv4010",fontsize=16,color="magenta"];1441 -> 1525[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1441 -> 1526[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1442 -> 1319[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1442[label="yv310 == yv4010",fontsize=16,color="magenta"];1442 -> 1527[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1442 -> 1528[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1443 -> 1320[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1443[label="yv310 == yv4010",fontsize=16,color="magenta"];1443 -> 1529[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1443 -> 1530[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1444 -> 1305[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1444[label="yv310 == yv4010",fontsize=16,color="magenta"];1444 -> 1531[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1444 -> 1532[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1445 -> 1322[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1445[label="yv310 == yv4010",fontsize=16,color="magenta"];1445 -> 1533[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1445 -> 1534[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1446 -> 1323[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1446[label="yv310 == yv4010",fontsize=16,color="magenta"];1446 -> 1535[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1446 -> 1536[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1447 -> 1324[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1447[label="yv310 == yv4010",fontsize=16,color="magenta"];1447 -> 1537[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1447 -> 1538[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1448 -> 1315[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1448[label="yv300 * yv4001 == yv301 * yv4000",fontsize=16,color="magenta"];1448 -> 1539[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1448 -> 1540[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1449 -> 1315[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1449[label="yv300 * yv4001 == yv301 * yv4000",fontsize=16,color="magenta"];1449 -> 1541[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1449 -> 1542[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1450[label="primEqInt (Pos (Succ yv3000)) (Pos yv4000)",fontsize=16,color="burlywood",shape="box"];2136[label="yv4000/Succ yv40000",fontsize=10,color="white",style="solid",shape="box"];1450 -> 2136[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2136 -> 1543[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 2137[label="yv4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1450 -> 2137[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2137 -> 1544[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1451[label="primEqInt (Pos (Succ yv3000)) (Neg yv4000)",fontsize=16,color="black",shape="box"];1451 -> 1545[label="",style="solid", color="black", weight=3]; 17.72/6.55 1452[label="primEqInt (Pos Zero) (Pos yv4000)",fontsize=16,color="burlywood",shape="box"];2138[label="yv4000/Succ yv40000",fontsize=10,color="white",style="solid",shape="box"];1452 -> 2138[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2138 -> 1546[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 2139[label="yv4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1452 -> 2139[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2139 -> 1547[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1453[label="primEqInt (Pos Zero) (Neg yv4000)",fontsize=16,color="burlywood",shape="box"];2140[label="yv4000/Succ yv40000",fontsize=10,color="white",style="solid",shape="box"];1453 -> 2140[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2140 -> 1548[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 2141[label="yv4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1453 -> 2141[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2141 -> 1549[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1454[label="primEqInt (Neg (Succ yv3000)) (Pos yv4000)",fontsize=16,color="black",shape="box"];1454 -> 1550[label="",style="solid", color="black", weight=3]; 17.72/6.55 1455[label="primEqInt (Neg (Succ yv3000)) (Neg yv4000)",fontsize=16,color="burlywood",shape="box"];2142[label="yv4000/Succ yv40000",fontsize=10,color="white",style="solid",shape="box"];1455 -> 2142[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2142 -> 1551[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 2143[label="yv4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1455 -> 2143[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2143 -> 1552[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1456[label="primEqInt (Neg Zero) (Pos yv4000)",fontsize=16,color="burlywood",shape="box"];2144[label="yv4000/Succ yv40000",fontsize=10,color="white",style="solid",shape="box"];1456 -> 2144[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2144 -> 1553[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 2145[label="yv4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1456 -> 2145[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2145 -> 1554[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1457[label="primEqInt (Neg Zero) (Neg yv4000)",fontsize=16,color="burlywood",shape="box"];2146[label="yv4000/Succ yv40000",fontsize=10,color="white",style="solid",shape="box"];1457 -> 2146[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2146 -> 1555[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 2147[label="yv4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1457 -> 2147[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2147 -> 1556[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1458[label="primEqNat yv300 yv4000",fontsize=16,color="burlywood",shape="triangle"];2148[label="yv300/Succ yv3000",fontsize=10,color="white",style="solid",shape="box"];1458 -> 2148[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2148 -> 1557[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 2149[label="yv300/Zero",fontsize=10,color="white",style="solid",shape="box"];1458 -> 2149[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2149 -> 1558[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1459 -> 1304[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1459[label="yv301 == yv4001 && yv302 == yv4002",fontsize=16,color="magenta"];1459 -> 1559[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1459 -> 1560[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1460[label="yv300 == yv4000",fontsize=16,color="blue",shape="box"];2150[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1460 -> 2150[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2150 -> 1561[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2151[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1460 -> 2151[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2151 -> 1562[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2152[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1460 -> 2152[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2152 -> 1563[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2153[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1460 -> 2153[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2153 -> 1564[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2154[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1460 -> 2154[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2154 -> 1565[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2155[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1460 -> 2155[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2155 -> 1566[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2156[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1460 -> 2156[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2156 -> 1567[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2157[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1460 -> 2157[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2157 -> 1568[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2158[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1460 -> 2158[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2158 -> 1569[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2159[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1460 -> 2159[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2159 -> 1570[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2160[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1460 -> 2160[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2160 -> 1571[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2161[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1460 -> 2161[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2161 -> 1572[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2162[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1460 -> 2162[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2162 -> 1573[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2163[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1460 -> 2163[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2163 -> 1574[label="",style="solid", color="blue", weight=3]; 17.72/6.55 1461[label="yv301 == yv4001",fontsize=16,color="blue",shape="box"];2164[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1461 -> 2164[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2164 -> 1575[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2165[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1461 -> 2165[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2165 -> 1576[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2166[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1461 -> 2166[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2166 -> 1577[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2167[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1461 -> 2167[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2167 -> 1578[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2168[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1461 -> 2168[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2168 -> 1579[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2169[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1461 -> 2169[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2169 -> 1580[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2170[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1461 -> 2170[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2170 -> 1581[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2171[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1461 -> 2171[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2171 -> 1582[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2172[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1461 -> 2172[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2172 -> 1583[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2173[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1461 -> 2173[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2173 -> 1584[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2174[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1461 -> 2174[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2174 -> 1585[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2175[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1461 -> 2175[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2175 -> 1586[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2176[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1461 -> 2176[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2176 -> 1587[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2177[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1461 -> 2177[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2177 -> 1588[label="",style="solid", color="blue", weight=3]; 17.72/6.55 1462[label="yv300 == yv4000",fontsize=16,color="blue",shape="box"];2178[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1462 -> 2178[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2178 -> 1589[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2179[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1462 -> 2179[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2179 -> 1590[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2180[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1462 -> 2180[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2180 -> 1591[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2181[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1462 -> 2181[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2181 -> 1592[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2182[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1462 -> 2182[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2182 -> 1593[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2183[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1462 -> 2183[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2183 -> 1594[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2184[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1462 -> 2184[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2184 -> 1595[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2185[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1462 -> 2185[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2185 -> 1596[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2186[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1462 -> 2186[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2186 -> 1597[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2187[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1462 -> 2187[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2187 -> 1598[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2188[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1462 -> 2188[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2188 -> 1599[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2189[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1462 -> 2189[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2189 -> 1600[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2190[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1462 -> 2190[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2190 -> 1601[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2191[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1462 -> 2191[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2191 -> 1602[label="",style="solid", color="blue", weight=3]; 17.72/6.55 1463[label="yv301 == yv4001",fontsize=16,color="blue",shape="box"];2192[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1463 -> 2192[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2192 -> 1603[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2193[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1463 -> 2193[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2193 -> 1604[label="",style="solid", color="blue", weight=3]; 17.72/6.55 1464[label="yv300 == yv4000",fontsize=16,color="blue",shape="box"];2194[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1464 -> 2194[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2194 -> 1605[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2195[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1464 -> 2195[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2195 -> 1606[label="",style="solid", color="blue", weight=3]; 17.72/6.55 1465[label="yv4000",fontsize=16,color="green",shape="box"];1466[label="yv300",fontsize=16,color="green",shape="box"];1467 -> 1311[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1467[label="yv300 == yv4000",fontsize=16,color="magenta"];1467 -> 1607[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1467 -> 1608[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1468 -> 1312[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1468[label="yv300 == yv4000",fontsize=16,color="magenta"];1468 -> 1609[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1468 -> 1610[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1469 -> 1313[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1469[label="yv300 == yv4000",fontsize=16,color="magenta"];1469 -> 1611[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1469 -> 1612[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1470 -> 1314[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1470[label="yv300 == yv4000",fontsize=16,color="magenta"];1470 -> 1613[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1470 -> 1614[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1471 -> 1315[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1471[label="yv300 == yv4000",fontsize=16,color="magenta"];1471 -> 1615[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1471 -> 1616[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1472 -> 1316[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1472[label="yv300 == yv4000",fontsize=16,color="magenta"];1472 -> 1617[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1472 -> 1618[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1473 -> 1317[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1473[label="yv300 == yv4000",fontsize=16,color="magenta"];1473 -> 1619[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1473 -> 1620[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1474 -> 1318[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1474[label="yv300 == yv4000",fontsize=16,color="magenta"];1474 -> 1621[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1474 -> 1622[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1475 -> 1319[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1475[label="yv300 == yv4000",fontsize=16,color="magenta"];1475 -> 1623[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1475 -> 1624[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1476 -> 1320[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1476[label="yv300 == yv4000",fontsize=16,color="magenta"];1476 -> 1625[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1476 -> 1626[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1477 -> 1305[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1477[label="yv300 == yv4000",fontsize=16,color="magenta"];1477 -> 1627[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1477 -> 1628[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1478 -> 1322[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1478[label="yv300 == yv4000",fontsize=16,color="magenta"];1478 -> 1629[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1478 -> 1630[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1479 -> 1323[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1479[label="yv300 == yv4000",fontsize=16,color="magenta"];1479 -> 1631[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1479 -> 1632[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1480 -> 1324[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1480[label="yv300 == yv4000",fontsize=16,color="magenta"];1480 -> 1633[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1480 -> 1634[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1481 -> 1311[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1481[label="yv300 == yv4000",fontsize=16,color="magenta"];1481 -> 1635[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1481 -> 1636[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1482 -> 1312[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1482[label="yv300 == yv4000",fontsize=16,color="magenta"];1482 -> 1637[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1482 -> 1638[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1483 -> 1313[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1483[label="yv300 == yv4000",fontsize=16,color="magenta"];1483 -> 1639[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1483 -> 1640[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1484 -> 1314[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1484[label="yv300 == yv4000",fontsize=16,color="magenta"];1484 -> 1641[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1484 -> 1642[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1485 -> 1315[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1485[label="yv300 == yv4000",fontsize=16,color="magenta"];1485 -> 1643[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1485 -> 1644[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1486 -> 1316[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1486[label="yv300 == yv4000",fontsize=16,color="magenta"];1486 -> 1645[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1486 -> 1646[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1487 -> 1317[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1487[label="yv300 == yv4000",fontsize=16,color="magenta"];1487 -> 1647[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1487 -> 1648[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1488 -> 1318[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1488[label="yv300 == yv4000",fontsize=16,color="magenta"];1488 -> 1649[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1488 -> 1650[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1489 -> 1319[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1489[label="yv300 == yv4000",fontsize=16,color="magenta"];1489 -> 1651[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1489 -> 1652[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1490 -> 1320[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1490[label="yv300 == yv4000",fontsize=16,color="magenta"];1490 -> 1653[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1490 -> 1654[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1491 -> 1305[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1491[label="yv300 == yv4000",fontsize=16,color="magenta"];1491 -> 1655[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1491 -> 1656[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1492 -> 1322[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1492[label="yv300 == yv4000",fontsize=16,color="magenta"];1492 -> 1657[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1492 -> 1658[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1493 -> 1323[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1493[label="yv300 == yv4000",fontsize=16,color="magenta"];1493 -> 1659[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1493 -> 1660[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1494 -> 1324[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1494[label="yv300 == yv4000",fontsize=16,color="magenta"];1494 -> 1661[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1494 -> 1662[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1495 -> 1311[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1495[label="yv300 == yv4000",fontsize=16,color="magenta"];1495 -> 1663[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1495 -> 1664[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1496 -> 1312[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1496[label="yv300 == yv4000",fontsize=16,color="magenta"];1496 -> 1665[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1496 -> 1666[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1497 -> 1313[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1497[label="yv300 == yv4000",fontsize=16,color="magenta"];1497 -> 1667[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1497 -> 1668[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1498 -> 1314[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1498[label="yv300 == yv4000",fontsize=16,color="magenta"];1498 -> 1669[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1498 -> 1670[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1499 -> 1315[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1499[label="yv300 == yv4000",fontsize=16,color="magenta"];1499 -> 1671[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1499 -> 1672[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1500 -> 1316[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1500[label="yv300 == yv4000",fontsize=16,color="magenta"];1500 -> 1673[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1500 -> 1674[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1501 -> 1317[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1501[label="yv300 == yv4000",fontsize=16,color="magenta"];1501 -> 1675[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1501 -> 1676[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1502 -> 1318[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1502[label="yv300 == yv4000",fontsize=16,color="magenta"];1502 -> 1677[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1502 -> 1678[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1503 -> 1319[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1503[label="yv300 == yv4000",fontsize=16,color="magenta"];1503 -> 1679[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1503 -> 1680[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1504 -> 1320[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1504[label="yv300 == yv4000",fontsize=16,color="magenta"];1504 -> 1681[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1504 -> 1682[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1505 -> 1305[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1505[label="yv300 == yv4000",fontsize=16,color="magenta"];1505 -> 1683[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1505 -> 1684[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1506 -> 1322[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1506[label="yv300 == yv4000",fontsize=16,color="magenta"];1506 -> 1685[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1506 -> 1686[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1507 -> 1323[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1507[label="yv300 == yv4000",fontsize=16,color="magenta"];1507 -> 1687[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1507 -> 1688[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1508 -> 1324[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1508[label="yv300 == yv4000",fontsize=16,color="magenta"];1508 -> 1689[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1508 -> 1690[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1327[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (yv14 : yv12 ==)) (zipWith zip0 (yv15110 : yv15111) (enforceWHNF (WHNF (Pos yv37 + fromInt (Pos (Succ Zero)))) (numericEnumFrom (Pos yv37 + fromInt (Pos (Succ Zero))))))))",fontsize=16,color="black",shape="box"];1327 -> 1356[label="",style="solid", color="black", weight=3]; 17.72/6.55 1328[label="yv14 : yv12",fontsize=16,color="green",shape="box"];1273[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 ([] ==)) (zipWith zip0 (yv41110 : yv41111) (enforceWHNF (WHNF (Pos yv35 + fromInt (Pos (Succ Zero)))) (numericEnumFrom (Pos yv35 + fromInt (Pos (Succ Zero))))))))",fontsize=16,color="black",shape="box"];1273 -> 1329[label="",style="solid", color="black", weight=3]; 17.72/6.55 1274[label="[]",fontsize=16,color="green",shape="box"];1511[label="yv4010",fontsize=16,color="green",shape="box"];1512[label="yv310",fontsize=16,color="green",shape="box"];1513[label="yv4010",fontsize=16,color="green",shape="box"];1514[label="yv310",fontsize=16,color="green",shape="box"];1515[label="yv4010",fontsize=16,color="green",shape="box"];1516[label="yv310",fontsize=16,color="green",shape="box"];1517[label="yv4010",fontsize=16,color="green",shape="box"];1518[label="yv310",fontsize=16,color="green",shape="box"];1519[label="yv4010",fontsize=16,color="green",shape="box"];1520[label="yv310",fontsize=16,color="green",shape="box"];1521[label="yv4010",fontsize=16,color="green",shape="box"];1522[label="yv310",fontsize=16,color="green",shape="box"];1523[label="yv4010",fontsize=16,color="green",shape="box"];1524[label="yv310",fontsize=16,color="green",shape="box"];1525[label="yv4010",fontsize=16,color="green",shape="box"];1526[label="yv310",fontsize=16,color="green",shape="box"];1527[label="yv4010",fontsize=16,color="green",shape="box"];1528[label="yv310",fontsize=16,color="green",shape="box"];1529[label="yv4010",fontsize=16,color="green",shape="box"];1530[label="yv310",fontsize=16,color="green",shape="box"];1531[label="yv4010",fontsize=16,color="green",shape="box"];1532[label="yv310",fontsize=16,color="green",shape="box"];1533[label="yv4010",fontsize=16,color="green",shape="box"];1534[label="yv310",fontsize=16,color="green",shape="box"];1535[label="yv4010",fontsize=16,color="green",shape="box"];1536[label="yv310",fontsize=16,color="green",shape="box"];1537[label="yv4010",fontsize=16,color="green",shape="box"];1538[label="yv310",fontsize=16,color="green",shape="box"];1539[label="yv301 * yv4000",fontsize=16,color="black",shape="triangle"];1539 -> 1693[label="",style="solid", color="black", weight=3]; 17.72/6.55 1540 -> 1539[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1540[label="yv300 * yv4001",fontsize=16,color="magenta"];1540 -> 1694[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1540 -> 1695[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1541 -> 1539[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1541[label="yv301 * yv4000",fontsize=16,color="magenta"];1541 -> 1696[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1541 -> 1697[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1542 -> 1539[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1542[label="yv300 * yv4001",fontsize=16,color="magenta"];1542 -> 1698[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1542 -> 1699[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1543[label="primEqInt (Pos (Succ yv3000)) (Pos (Succ yv40000))",fontsize=16,color="black",shape="box"];1543 -> 1700[label="",style="solid", color="black", weight=3]; 17.72/6.55 1544[label="primEqInt (Pos (Succ yv3000)) (Pos Zero)",fontsize=16,color="black",shape="box"];1544 -> 1701[label="",style="solid", color="black", weight=3]; 17.72/6.55 1545[label="False",fontsize=16,color="green",shape="box"];1546[label="primEqInt (Pos Zero) (Pos (Succ yv40000))",fontsize=16,color="black",shape="box"];1546 -> 1702[label="",style="solid", color="black", weight=3]; 17.72/6.55 1547[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1547 -> 1703[label="",style="solid", color="black", weight=3]; 17.72/6.55 1548[label="primEqInt (Pos Zero) (Neg (Succ yv40000))",fontsize=16,color="black",shape="box"];1548 -> 1704[label="",style="solid", color="black", weight=3]; 17.72/6.55 1549[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1549 -> 1705[label="",style="solid", color="black", weight=3]; 17.72/6.55 1550[label="False",fontsize=16,color="green",shape="box"];1551[label="primEqInt (Neg (Succ yv3000)) (Neg (Succ yv40000))",fontsize=16,color="black",shape="box"];1551 -> 1706[label="",style="solid", color="black", weight=3]; 17.72/6.55 1552[label="primEqInt (Neg (Succ yv3000)) (Neg Zero)",fontsize=16,color="black",shape="box"];1552 -> 1707[label="",style="solid", color="black", weight=3]; 17.72/6.55 1553[label="primEqInt (Neg Zero) (Pos (Succ yv40000))",fontsize=16,color="black",shape="box"];1553 -> 1708[label="",style="solid", color="black", weight=3]; 17.72/6.55 1554[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1554 -> 1709[label="",style="solid", color="black", weight=3]; 17.72/6.55 1555[label="primEqInt (Neg Zero) (Neg (Succ yv40000))",fontsize=16,color="black",shape="box"];1555 -> 1710[label="",style="solid", color="black", weight=3]; 17.72/6.55 1556[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1556 -> 1711[label="",style="solid", color="black", weight=3]; 17.72/6.55 1557[label="primEqNat (Succ yv3000) yv4000",fontsize=16,color="burlywood",shape="box"];2196[label="yv4000/Succ yv40000",fontsize=10,color="white",style="solid",shape="box"];1557 -> 2196[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2196 -> 1712[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 2197[label="yv4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1557 -> 2197[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2197 -> 1713[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1558[label="primEqNat Zero yv4000",fontsize=16,color="burlywood",shape="box"];2198[label="yv4000/Succ yv40000",fontsize=10,color="white",style="solid",shape="box"];1558 -> 2198[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2198 -> 1714[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 2199[label="yv4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1558 -> 2199[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2199 -> 1715[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1559[label="yv302 == yv4002",fontsize=16,color="blue",shape="box"];2200[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1559 -> 2200[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2200 -> 1716[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2201[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1559 -> 2201[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2201 -> 1717[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2202[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1559 -> 2202[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2202 -> 1718[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2203[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1559 -> 2203[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2203 -> 1719[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2204[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1559 -> 2204[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2204 -> 1720[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2205[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1559 -> 2205[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2205 -> 1721[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2206[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1559 -> 2206[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2206 -> 1722[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2207[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1559 -> 2207[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2207 -> 1723[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2208[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1559 -> 2208[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2208 -> 1724[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2209[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1559 -> 2209[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2209 -> 1725[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2210[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1559 -> 2210[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2210 -> 1726[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2211[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1559 -> 2211[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2211 -> 1727[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2212[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1559 -> 2212[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2212 -> 1728[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2213[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1559 -> 2213[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2213 -> 1729[label="",style="solid", color="blue", weight=3]; 17.72/6.55 1560[label="yv301 == yv4001",fontsize=16,color="blue",shape="box"];2214[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1560 -> 2214[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2214 -> 1730[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2215[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1560 -> 2215[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2215 -> 1731[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2216[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1560 -> 2216[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2216 -> 1732[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2217[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1560 -> 2217[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2217 -> 1733[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2218[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1560 -> 2218[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2218 -> 1734[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2219[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1560 -> 2219[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2219 -> 1735[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2220[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1560 -> 2220[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2220 -> 1736[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2221[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1560 -> 2221[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2221 -> 1737[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2222[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1560 -> 2222[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2222 -> 1738[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2223[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1560 -> 2223[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2223 -> 1739[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2224[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1560 -> 2224[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2224 -> 1740[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2225[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1560 -> 2225[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2225 -> 1741[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2226[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1560 -> 2226[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2226 -> 1742[label="",style="solid", color="blue", weight=3]; 17.72/6.55 2227[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1560 -> 2227[label="",style="solid", color="blue", weight=9]; 17.72/6.55 2227 -> 1743[label="",style="solid", color="blue", weight=3]; 17.72/6.55 1561 -> 1311[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1561[label="yv300 == yv4000",fontsize=16,color="magenta"];1561 -> 1744[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1561 -> 1745[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1562 -> 1312[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1562[label="yv300 == yv4000",fontsize=16,color="magenta"];1562 -> 1746[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1562 -> 1747[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1563 -> 1313[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1563[label="yv300 == yv4000",fontsize=16,color="magenta"];1563 -> 1748[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1563 -> 1749[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1564 -> 1314[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1564[label="yv300 == yv4000",fontsize=16,color="magenta"];1564 -> 1750[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1564 -> 1751[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1565 -> 1315[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1565[label="yv300 == yv4000",fontsize=16,color="magenta"];1565 -> 1752[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1565 -> 1753[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1566 -> 1316[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1566[label="yv300 == yv4000",fontsize=16,color="magenta"];1566 -> 1754[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1566 -> 1755[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1567 -> 1317[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1567[label="yv300 == yv4000",fontsize=16,color="magenta"];1567 -> 1756[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1567 -> 1757[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1568 -> 1318[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1568[label="yv300 == yv4000",fontsize=16,color="magenta"];1568 -> 1758[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1568 -> 1759[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1569 -> 1319[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1569[label="yv300 == yv4000",fontsize=16,color="magenta"];1569 -> 1760[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1569 -> 1761[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1570 -> 1320[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1570[label="yv300 == yv4000",fontsize=16,color="magenta"];1570 -> 1762[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1570 -> 1763[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1571 -> 1305[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1571[label="yv300 == yv4000",fontsize=16,color="magenta"];1571 -> 1764[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1571 -> 1765[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1572 -> 1322[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1572[label="yv300 == yv4000",fontsize=16,color="magenta"];1572 -> 1766[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1572 -> 1767[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1573 -> 1323[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1573[label="yv300 == yv4000",fontsize=16,color="magenta"];1573 -> 1768[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1573 -> 1769[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1574 -> 1324[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1574[label="yv300 == yv4000",fontsize=16,color="magenta"];1574 -> 1770[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1574 -> 1771[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1575 -> 1311[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1575[label="yv301 == yv4001",fontsize=16,color="magenta"];1575 -> 1772[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1575 -> 1773[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1576 -> 1312[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1576[label="yv301 == yv4001",fontsize=16,color="magenta"];1576 -> 1774[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1576 -> 1775[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1577 -> 1313[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1577[label="yv301 == yv4001",fontsize=16,color="magenta"];1577 -> 1776[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1577 -> 1777[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1578 -> 1314[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1578[label="yv301 == yv4001",fontsize=16,color="magenta"];1578 -> 1778[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1578 -> 1779[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1579 -> 1315[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1579[label="yv301 == yv4001",fontsize=16,color="magenta"];1579 -> 1780[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1579 -> 1781[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1580 -> 1316[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1580[label="yv301 == yv4001",fontsize=16,color="magenta"];1580 -> 1782[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1580 -> 1783[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1581 -> 1317[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1581[label="yv301 == yv4001",fontsize=16,color="magenta"];1581 -> 1784[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1581 -> 1785[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1582 -> 1318[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1582[label="yv301 == yv4001",fontsize=16,color="magenta"];1582 -> 1786[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1582 -> 1787[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1583 -> 1319[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1583[label="yv301 == yv4001",fontsize=16,color="magenta"];1583 -> 1788[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1583 -> 1789[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1584 -> 1320[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1584[label="yv301 == yv4001",fontsize=16,color="magenta"];1584 -> 1790[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1584 -> 1791[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1585 -> 1305[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1585[label="yv301 == yv4001",fontsize=16,color="magenta"];1585 -> 1792[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1585 -> 1793[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1586 -> 1322[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1586[label="yv301 == yv4001",fontsize=16,color="magenta"];1586 -> 1794[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1586 -> 1795[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1587 -> 1323[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1587[label="yv301 == yv4001",fontsize=16,color="magenta"];1587 -> 1796[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1587 -> 1797[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1588 -> 1324[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1588[label="yv301 == yv4001",fontsize=16,color="magenta"];1588 -> 1798[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1588 -> 1799[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1589 -> 1311[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1589[label="yv300 == yv4000",fontsize=16,color="magenta"];1589 -> 1800[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1589 -> 1801[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1590 -> 1312[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1590[label="yv300 == yv4000",fontsize=16,color="magenta"];1590 -> 1802[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1590 -> 1803[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1591 -> 1313[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1591[label="yv300 == yv4000",fontsize=16,color="magenta"];1591 -> 1804[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1591 -> 1805[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1592 -> 1314[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1592[label="yv300 == yv4000",fontsize=16,color="magenta"];1592 -> 1806[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1592 -> 1807[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1593 -> 1315[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1593[label="yv300 == yv4000",fontsize=16,color="magenta"];1593 -> 1808[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1593 -> 1809[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1594 -> 1316[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1594[label="yv300 == yv4000",fontsize=16,color="magenta"];1594 -> 1810[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1594 -> 1811[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1595 -> 1317[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1595[label="yv300 == yv4000",fontsize=16,color="magenta"];1595 -> 1812[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1595 -> 1813[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1596 -> 1318[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1596[label="yv300 == yv4000",fontsize=16,color="magenta"];1596 -> 1814[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1596 -> 1815[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1597 -> 1319[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1597[label="yv300 == yv4000",fontsize=16,color="magenta"];1597 -> 1816[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1597 -> 1817[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1598 -> 1320[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1598[label="yv300 == yv4000",fontsize=16,color="magenta"];1598 -> 1818[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1598 -> 1819[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1599 -> 1305[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1599[label="yv300 == yv4000",fontsize=16,color="magenta"];1599 -> 1820[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1599 -> 1821[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1600 -> 1322[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1600[label="yv300 == yv4000",fontsize=16,color="magenta"];1600 -> 1822[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1600 -> 1823[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1601 -> 1323[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1601[label="yv300 == yv4000",fontsize=16,color="magenta"];1601 -> 1824[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1601 -> 1825[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1602 -> 1324[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1602[label="yv300 == yv4000",fontsize=16,color="magenta"];1602 -> 1826[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1602 -> 1827[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1603 -> 1315[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1603[label="yv301 == yv4001",fontsize=16,color="magenta"];1603 -> 1828[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1603 -> 1829[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1604 -> 1320[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1604[label="yv301 == yv4001",fontsize=16,color="magenta"];1604 -> 1830[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1604 -> 1831[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1605 -> 1315[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1605[label="yv300 == yv4000",fontsize=16,color="magenta"];1605 -> 1832[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1605 -> 1833[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1606 -> 1320[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1606[label="yv300 == yv4000",fontsize=16,color="magenta"];1606 -> 1834[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1606 -> 1835[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1607[label="yv4000",fontsize=16,color="green",shape="box"];1608[label="yv300",fontsize=16,color="green",shape="box"];1609[label="yv4000",fontsize=16,color="green",shape="box"];1610[label="yv300",fontsize=16,color="green",shape="box"];1611[label="yv4000",fontsize=16,color="green",shape="box"];1612[label="yv300",fontsize=16,color="green",shape="box"];1613[label="yv4000",fontsize=16,color="green",shape="box"];1614[label="yv300",fontsize=16,color="green",shape="box"];1615[label="yv4000",fontsize=16,color="green",shape="box"];1616[label="yv300",fontsize=16,color="green",shape="box"];1617[label="yv4000",fontsize=16,color="green",shape="box"];1618[label="yv300",fontsize=16,color="green",shape="box"];1619[label="yv4000",fontsize=16,color="green",shape="box"];1620[label="yv300",fontsize=16,color="green",shape="box"];1621[label="yv4000",fontsize=16,color="green",shape="box"];1622[label="yv300",fontsize=16,color="green",shape="box"];1623[label="yv4000",fontsize=16,color="green",shape="box"];1624[label="yv300",fontsize=16,color="green",shape="box"];1625[label="yv4000",fontsize=16,color="green",shape="box"];1626[label="yv300",fontsize=16,color="green",shape="box"];1627[label="yv4000",fontsize=16,color="green",shape="box"];1628[label="yv300",fontsize=16,color="green",shape="box"];1629[label="yv4000",fontsize=16,color="green",shape="box"];1630[label="yv300",fontsize=16,color="green",shape="box"];1631[label="yv4000",fontsize=16,color="green",shape="box"];1632[label="yv300",fontsize=16,color="green",shape="box"];1633[label="yv4000",fontsize=16,color="green",shape="box"];1634[label="yv300",fontsize=16,color="green",shape="box"];1635[label="yv4000",fontsize=16,color="green",shape="box"];1636[label="yv300",fontsize=16,color="green",shape="box"];1637[label="yv4000",fontsize=16,color="green",shape="box"];1638[label="yv300",fontsize=16,color="green",shape="box"];1639[label="yv4000",fontsize=16,color="green",shape="box"];1640[label="yv300",fontsize=16,color="green",shape="box"];1641[label="yv4000",fontsize=16,color="green",shape="box"];1642[label="yv300",fontsize=16,color="green",shape="box"];1643[label="yv4000",fontsize=16,color="green",shape="box"];1644[label="yv300",fontsize=16,color="green",shape="box"];1645[label="yv4000",fontsize=16,color="green",shape="box"];1646[label="yv300",fontsize=16,color="green",shape="box"];1647[label="yv4000",fontsize=16,color="green",shape="box"];1648[label="yv300",fontsize=16,color="green",shape="box"];1649[label="yv4000",fontsize=16,color="green",shape="box"];1650[label="yv300",fontsize=16,color="green",shape="box"];1651[label="yv4000",fontsize=16,color="green",shape="box"];1652[label="yv300",fontsize=16,color="green",shape="box"];1653[label="yv4000",fontsize=16,color="green",shape="box"];1654[label="yv300",fontsize=16,color="green",shape="box"];1655[label="yv4000",fontsize=16,color="green",shape="box"];1656[label="yv300",fontsize=16,color="green",shape="box"];1657[label="yv4000",fontsize=16,color="green",shape="box"];1658[label="yv300",fontsize=16,color="green",shape="box"];1659[label="yv4000",fontsize=16,color="green",shape="box"];1660[label="yv300",fontsize=16,color="green",shape="box"];1661[label="yv4000",fontsize=16,color="green",shape="box"];1662[label="yv300",fontsize=16,color="green",shape="box"];1663[label="yv4000",fontsize=16,color="green",shape="box"];1664[label="yv300",fontsize=16,color="green",shape="box"];1665[label="yv4000",fontsize=16,color="green",shape="box"];1666[label="yv300",fontsize=16,color="green",shape="box"];1667[label="yv4000",fontsize=16,color="green",shape="box"];1668[label="yv300",fontsize=16,color="green",shape="box"];1669[label="yv4000",fontsize=16,color="green",shape="box"];1670[label="yv300",fontsize=16,color="green",shape="box"];1671[label="yv4000",fontsize=16,color="green",shape="box"];1672[label="yv300",fontsize=16,color="green",shape="box"];1673[label="yv4000",fontsize=16,color="green",shape="box"];1674[label="yv300",fontsize=16,color="green",shape="box"];1675[label="yv4000",fontsize=16,color="green",shape="box"];1676[label="yv300",fontsize=16,color="green",shape="box"];1677[label="yv4000",fontsize=16,color="green",shape="box"];1678[label="yv300",fontsize=16,color="green",shape="box"];1679[label="yv4000",fontsize=16,color="green",shape="box"];1680[label="yv300",fontsize=16,color="green",shape="box"];1681[label="yv4000",fontsize=16,color="green",shape="box"];1682[label="yv300",fontsize=16,color="green",shape="box"];1683[label="yv4000",fontsize=16,color="green",shape="box"];1684[label="yv300",fontsize=16,color="green",shape="box"];1685[label="yv4000",fontsize=16,color="green",shape="box"];1686[label="yv300",fontsize=16,color="green",shape="box"];1687[label="yv4000",fontsize=16,color="green",shape="box"];1688[label="yv300",fontsize=16,color="green",shape="box"];1689[label="yv4000",fontsize=16,color="green",shape="box"];1690[label="yv300",fontsize=16,color="green",shape="box"];1356[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (yv14 : yv12 ==)) (zipWith zip0 (yv15110 : yv15111) (enforceWHNF (WHNF (primPlusInt (Pos yv37) (fromInt (Pos (Succ Zero))))) (numericEnumFrom (primPlusInt (Pos yv37) (fromInt (Pos (Succ Zero)))))))))",fontsize=16,color="black",shape="box"];1356 -> 1393[label="",style="solid", color="black", weight=3]; 17.72/6.55 1329[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 ([] ==)) (zipWith zip0 (yv41110 : yv41111) (enforceWHNF (WHNF (primPlusInt (Pos yv35) (fromInt (Pos (Succ Zero))))) (numericEnumFrom (primPlusInt (Pos yv35) (fromInt (Pos (Succ Zero)))))))))",fontsize=16,color="black",shape="box"];1329 -> 1357[label="",style="solid", color="black", weight=3]; 17.72/6.55 1693[label="primMulInt yv301 yv4000",fontsize=16,color="burlywood",shape="box"];2228[label="yv301/Pos yv3010",fontsize=10,color="white",style="solid",shape="box"];1693 -> 2228[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2228 -> 1838[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 2229[label="yv301/Neg yv3010",fontsize=10,color="white",style="solid",shape="box"];1693 -> 2229[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2229 -> 1839[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1694[label="yv4001",fontsize=16,color="green",shape="box"];1695[label="yv300",fontsize=16,color="green",shape="box"];1696[label="yv4000",fontsize=16,color="green",shape="box"];1697[label="yv301",fontsize=16,color="green",shape="box"];1698[label="yv4001",fontsize=16,color="green",shape="box"];1699[label="yv300",fontsize=16,color="green",shape="box"];1700 -> 1458[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1700[label="primEqNat yv3000 yv40000",fontsize=16,color="magenta"];1700 -> 1840[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1700 -> 1841[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1701[label="False",fontsize=16,color="green",shape="box"];1702[label="False",fontsize=16,color="green",shape="box"];1703[label="True",fontsize=16,color="green",shape="box"];1704[label="False",fontsize=16,color="green",shape="box"];1705[label="True",fontsize=16,color="green",shape="box"];1706 -> 1458[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1706[label="primEqNat yv3000 yv40000",fontsize=16,color="magenta"];1706 -> 1842[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1706 -> 1843[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1707[label="False",fontsize=16,color="green",shape="box"];1708[label="False",fontsize=16,color="green",shape="box"];1709[label="True",fontsize=16,color="green",shape="box"];1710[label="False",fontsize=16,color="green",shape="box"];1711[label="True",fontsize=16,color="green",shape="box"];1712[label="primEqNat (Succ yv3000) (Succ yv40000)",fontsize=16,color="black",shape="box"];1712 -> 1844[label="",style="solid", color="black", weight=3]; 17.72/6.55 1713[label="primEqNat (Succ yv3000) Zero",fontsize=16,color="black",shape="box"];1713 -> 1845[label="",style="solid", color="black", weight=3]; 17.72/6.55 1714[label="primEqNat Zero (Succ yv40000)",fontsize=16,color="black",shape="box"];1714 -> 1846[label="",style="solid", color="black", weight=3]; 17.72/6.55 1715[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];1715 -> 1847[label="",style="solid", color="black", weight=3]; 17.72/6.55 1716 -> 1311[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1716[label="yv302 == yv4002",fontsize=16,color="magenta"];1716 -> 1848[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1716 -> 1849[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1717 -> 1312[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1717[label="yv302 == yv4002",fontsize=16,color="magenta"];1717 -> 1850[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1717 -> 1851[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1718 -> 1313[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1718[label="yv302 == yv4002",fontsize=16,color="magenta"];1718 -> 1852[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1718 -> 1853[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1719 -> 1314[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1719[label="yv302 == yv4002",fontsize=16,color="magenta"];1719 -> 1854[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1719 -> 1855[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1720 -> 1315[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1720[label="yv302 == yv4002",fontsize=16,color="magenta"];1720 -> 1856[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1720 -> 1857[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1721 -> 1316[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1721[label="yv302 == yv4002",fontsize=16,color="magenta"];1721 -> 1858[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1721 -> 1859[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1722 -> 1317[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1722[label="yv302 == yv4002",fontsize=16,color="magenta"];1722 -> 1860[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1722 -> 1861[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1723 -> 1318[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1723[label="yv302 == yv4002",fontsize=16,color="magenta"];1723 -> 1862[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1723 -> 1863[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1724 -> 1319[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1724[label="yv302 == yv4002",fontsize=16,color="magenta"];1724 -> 1864[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1724 -> 1865[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1725 -> 1320[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1725[label="yv302 == yv4002",fontsize=16,color="magenta"];1725 -> 1866[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1725 -> 1867[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1726 -> 1305[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1726[label="yv302 == yv4002",fontsize=16,color="magenta"];1726 -> 1868[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1726 -> 1869[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1727 -> 1322[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1727[label="yv302 == yv4002",fontsize=16,color="magenta"];1727 -> 1870[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1727 -> 1871[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1728 -> 1323[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1728[label="yv302 == yv4002",fontsize=16,color="magenta"];1728 -> 1872[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1728 -> 1873[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1729 -> 1324[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1729[label="yv302 == yv4002",fontsize=16,color="magenta"];1729 -> 1874[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1729 -> 1875[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1730 -> 1311[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1730[label="yv301 == yv4001",fontsize=16,color="magenta"];1730 -> 1876[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1730 -> 1877[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1731 -> 1312[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1731[label="yv301 == yv4001",fontsize=16,color="magenta"];1731 -> 1878[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1731 -> 1879[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1732 -> 1313[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1732[label="yv301 == yv4001",fontsize=16,color="magenta"];1732 -> 1880[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1732 -> 1881[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1733 -> 1314[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1733[label="yv301 == yv4001",fontsize=16,color="magenta"];1733 -> 1882[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1733 -> 1883[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1734 -> 1315[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1734[label="yv301 == yv4001",fontsize=16,color="magenta"];1734 -> 1884[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1734 -> 1885[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1735 -> 1316[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1735[label="yv301 == yv4001",fontsize=16,color="magenta"];1735 -> 1886[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1735 -> 1887[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1736 -> 1317[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1736[label="yv301 == yv4001",fontsize=16,color="magenta"];1736 -> 1888[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1736 -> 1889[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1737 -> 1318[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1737[label="yv301 == yv4001",fontsize=16,color="magenta"];1737 -> 1890[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1737 -> 1891[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1738 -> 1319[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1738[label="yv301 == yv4001",fontsize=16,color="magenta"];1738 -> 1892[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1738 -> 1893[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1739 -> 1320[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1739[label="yv301 == yv4001",fontsize=16,color="magenta"];1739 -> 1894[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1739 -> 1895[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1740 -> 1305[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1740[label="yv301 == yv4001",fontsize=16,color="magenta"];1740 -> 1896[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1740 -> 1897[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1741 -> 1322[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1741[label="yv301 == yv4001",fontsize=16,color="magenta"];1741 -> 1898[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1741 -> 1899[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1742 -> 1323[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1742[label="yv301 == yv4001",fontsize=16,color="magenta"];1742 -> 1900[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1742 -> 1901[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1743 -> 1324[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1743[label="yv301 == yv4001",fontsize=16,color="magenta"];1743 -> 1902[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1743 -> 1903[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1744[label="yv4000",fontsize=16,color="green",shape="box"];1745[label="yv300",fontsize=16,color="green",shape="box"];1746[label="yv4000",fontsize=16,color="green",shape="box"];1747[label="yv300",fontsize=16,color="green",shape="box"];1748[label="yv4000",fontsize=16,color="green",shape="box"];1749[label="yv300",fontsize=16,color="green",shape="box"];1750[label="yv4000",fontsize=16,color="green",shape="box"];1751[label="yv300",fontsize=16,color="green",shape="box"];1752[label="yv4000",fontsize=16,color="green",shape="box"];1753[label="yv300",fontsize=16,color="green",shape="box"];1754[label="yv4000",fontsize=16,color="green",shape="box"];1755[label="yv300",fontsize=16,color="green",shape="box"];1756[label="yv4000",fontsize=16,color="green",shape="box"];1757[label="yv300",fontsize=16,color="green",shape="box"];1758[label="yv4000",fontsize=16,color="green",shape="box"];1759[label="yv300",fontsize=16,color="green",shape="box"];1760[label="yv4000",fontsize=16,color="green",shape="box"];1761[label="yv300",fontsize=16,color="green",shape="box"];1762[label="yv4000",fontsize=16,color="green",shape="box"];1763[label="yv300",fontsize=16,color="green",shape="box"];1764[label="yv4000",fontsize=16,color="green",shape="box"];1765[label="yv300",fontsize=16,color="green",shape="box"];1766[label="yv4000",fontsize=16,color="green",shape="box"];1767[label="yv300",fontsize=16,color="green",shape="box"];1768[label="yv4000",fontsize=16,color="green",shape="box"];1769[label="yv300",fontsize=16,color="green",shape="box"];1770[label="yv4000",fontsize=16,color="green",shape="box"];1771[label="yv300",fontsize=16,color="green",shape="box"];1772[label="yv4001",fontsize=16,color="green",shape="box"];1773[label="yv301",fontsize=16,color="green",shape="box"];1774[label="yv4001",fontsize=16,color="green",shape="box"];1775[label="yv301",fontsize=16,color="green",shape="box"];1776[label="yv4001",fontsize=16,color="green",shape="box"];1777[label="yv301",fontsize=16,color="green",shape="box"];1778[label="yv4001",fontsize=16,color="green",shape="box"];1779[label="yv301",fontsize=16,color="green",shape="box"];1780[label="yv4001",fontsize=16,color="green",shape="box"];1781[label="yv301",fontsize=16,color="green",shape="box"];1782[label="yv4001",fontsize=16,color="green",shape="box"];1783[label="yv301",fontsize=16,color="green",shape="box"];1784[label="yv4001",fontsize=16,color="green",shape="box"];1785[label="yv301",fontsize=16,color="green",shape="box"];1786[label="yv4001",fontsize=16,color="green",shape="box"];1787[label="yv301",fontsize=16,color="green",shape="box"];1788[label="yv4001",fontsize=16,color="green",shape="box"];1789[label="yv301",fontsize=16,color="green",shape="box"];1790[label="yv4001",fontsize=16,color="green",shape="box"];1791[label="yv301",fontsize=16,color="green",shape="box"];1792[label="yv4001",fontsize=16,color="green",shape="box"];1793[label="yv301",fontsize=16,color="green",shape="box"];1794[label="yv4001",fontsize=16,color="green",shape="box"];1795[label="yv301",fontsize=16,color="green",shape="box"];1796[label="yv4001",fontsize=16,color="green",shape="box"];1797[label="yv301",fontsize=16,color="green",shape="box"];1798[label="yv4001",fontsize=16,color="green",shape="box"];1799[label="yv301",fontsize=16,color="green",shape="box"];1800[label="yv4000",fontsize=16,color="green",shape="box"];1801[label="yv300",fontsize=16,color="green",shape="box"];1802[label="yv4000",fontsize=16,color="green",shape="box"];1803[label="yv300",fontsize=16,color="green",shape="box"];1804[label="yv4000",fontsize=16,color="green",shape="box"];1805[label="yv300",fontsize=16,color="green",shape="box"];1806[label="yv4000",fontsize=16,color="green",shape="box"];1807[label="yv300",fontsize=16,color="green",shape="box"];1808[label="yv4000",fontsize=16,color="green",shape="box"];1809[label="yv300",fontsize=16,color="green",shape="box"];1810[label="yv4000",fontsize=16,color="green",shape="box"];1811[label="yv300",fontsize=16,color="green",shape="box"];1812[label="yv4000",fontsize=16,color="green",shape="box"];1813[label="yv300",fontsize=16,color="green",shape="box"];1814[label="yv4000",fontsize=16,color="green",shape="box"];1815[label="yv300",fontsize=16,color="green",shape="box"];1816[label="yv4000",fontsize=16,color="green",shape="box"];1817[label="yv300",fontsize=16,color="green",shape="box"];1818[label="yv4000",fontsize=16,color="green",shape="box"];1819[label="yv300",fontsize=16,color="green",shape="box"];1820[label="yv4000",fontsize=16,color="green",shape="box"];1821[label="yv300",fontsize=16,color="green",shape="box"];1822[label="yv4000",fontsize=16,color="green",shape="box"];1823[label="yv300",fontsize=16,color="green",shape="box"];1824[label="yv4000",fontsize=16,color="green",shape="box"];1825[label="yv300",fontsize=16,color="green",shape="box"];1826[label="yv4000",fontsize=16,color="green",shape="box"];1827[label="yv300",fontsize=16,color="green",shape="box"];1828[label="yv4001",fontsize=16,color="green",shape="box"];1829[label="yv301",fontsize=16,color="green",shape="box"];1830[label="yv4001",fontsize=16,color="green",shape="box"];1831[label="yv301",fontsize=16,color="green",shape="box"];1832[label="yv4000",fontsize=16,color="green",shape="box"];1833[label="yv300",fontsize=16,color="green",shape="box"];1834[label="yv4000",fontsize=16,color="green",shape="box"];1835[label="yv300",fontsize=16,color="green",shape="box"];1393[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (yv14 : yv12 ==)) (zipWith zip0 (yv15110 : yv15111) (enforceWHNF (WHNF (primPlusInt (Pos yv37) (Pos (Succ Zero)))) (numericEnumFrom (primPlusInt (Pos yv37) (Pos (Succ Zero))))))))",fontsize=16,color="black",shape="box"];1393 -> 1430[label="",style="solid", color="black", weight=3]; 17.72/6.55 1357[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 ([] ==)) (zipWith zip0 (yv41110 : yv41111) (enforceWHNF (WHNF (primPlusInt (Pos yv35) (Pos (Succ Zero)))) (numericEnumFrom (primPlusInt (Pos yv35) (Pos (Succ Zero))))))))",fontsize=16,color="black",shape="box"];1357 -> 1394[label="",style="solid", color="black", weight=3]; 17.72/6.55 1838[label="primMulInt (Pos yv3010) yv4000",fontsize=16,color="burlywood",shape="box"];2230[label="yv4000/Pos yv40000",fontsize=10,color="white",style="solid",shape="box"];1838 -> 2230[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2230 -> 1906[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 2231[label="yv4000/Neg yv40000",fontsize=10,color="white",style="solid",shape="box"];1838 -> 2231[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2231 -> 1907[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1839[label="primMulInt (Neg yv3010) yv4000",fontsize=16,color="burlywood",shape="box"];2232[label="yv4000/Pos yv40000",fontsize=10,color="white",style="solid",shape="box"];1839 -> 2232[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2232 -> 1908[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 2233[label="yv4000/Neg yv40000",fontsize=10,color="white",style="solid",shape="box"];1839 -> 2233[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2233 -> 1909[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1840[label="yv40000",fontsize=16,color="green",shape="box"];1841[label="yv3000",fontsize=16,color="green",shape="box"];1842[label="yv40000",fontsize=16,color="green",shape="box"];1843[label="yv3000",fontsize=16,color="green",shape="box"];1844 -> 1458[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1844[label="primEqNat yv3000 yv40000",fontsize=16,color="magenta"];1844 -> 1910[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1844 -> 1911[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1845[label="False",fontsize=16,color="green",shape="box"];1846[label="False",fontsize=16,color="green",shape="box"];1847[label="True",fontsize=16,color="green",shape="box"];1848[label="yv4002",fontsize=16,color="green",shape="box"];1849[label="yv302",fontsize=16,color="green",shape="box"];1850[label="yv4002",fontsize=16,color="green",shape="box"];1851[label="yv302",fontsize=16,color="green",shape="box"];1852[label="yv4002",fontsize=16,color="green",shape="box"];1853[label="yv302",fontsize=16,color="green",shape="box"];1854[label="yv4002",fontsize=16,color="green",shape="box"];1855[label="yv302",fontsize=16,color="green",shape="box"];1856[label="yv4002",fontsize=16,color="green",shape="box"];1857[label="yv302",fontsize=16,color="green",shape="box"];1858[label="yv4002",fontsize=16,color="green",shape="box"];1859[label="yv302",fontsize=16,color="green",shape="box"];1860[label="yv4002",fontsize=16,color="green",shape="box"];1861[label="yv302",fontsize=16,color="green",shape="box"];1862[label="yv4002",fontsize=16,color="green",shape="box"];1863[label="yv302",fontsize=16,color="green",shape="box"];1864[label="yv4002",fontsize=16,color="green",shape="box"];1865[label="yv302",fontsize=16,color="green",shape="box"];1866[label="yv4002",fontsize=16,color="green",shape="box"];1867[label="yv302",fontsize=16,color="green",shape="box"];1868[label="yv4002",fontsize=16,color="green",shape="box"];1869[label="yv302",fontsize=16,color="green",shape="box"];1870[label="yv4002",fontsize=16,color="green",shape="box"];1871[label="yv302",fontsize=16,color="green",shape="box"];1872[label="yv4002",fontsize=16,color="green",shape="box"];1873[label="yv302",fontsize=16,color="green",shape="box"];1874[label="yv4002",fontsize=16,color="green",shape="box"];1875[label="yv302",fontsize=16,color="green",shape="box"];1876[label="yv4001",fontsize=16,color="green",shape="box"];1877[label="yv301",fontsize=16,color="green",shape="box"];1878[label="yv4001",fontsize=16,color="green",shape="box"];1879[label="yv301",fontsize=16,color="green",shape="box"];1880[label="yv4001",fontsize=16,color="green",shape="box"];1881[label="yv301",fontsize=16,color="green",shape="box"];1882[label="yv4001",fontsize=16,color="green",shape="box"];1883[label="yv301",fontsize=16,color="green",shape="box"];1884[label="yv4001",fontsize=16,color="green",shape="box"];1885[label="yv301",fontsize=16,color="green",shape="box"];1886[label="yv4001",fontsize=16,color="green",shape="box"];1887[label="yv301",fontsize=16,color="green",shape="box"];1888[label="yv4001",fontsize=16,color="green",shape="box"];1889[label="yv301",fontsize=16,color="green",shape="box"];1890[label="yv4001",fontsize=16,color="green",shape="box"];1891[label="yv301",fontsize=16,color="green",shape="box"];1892[label="yv4001",fontsize=16,color="green",shape="box"];1893[label="yv301",fontsize=16,color="green",shape="box"];1894[label="yv4001",fontsize=16,color="green",shape="box"];1895[label="yv301",fontsize=16,color="green",shape="box"];1896[label="yv4001",fontsize=16,color="green",shape="box"];1897[label="yv301",fontsize=16,color="green",shape="box"];1898[label="yv4001",fontsize=16,color="green",shape="box"];1899[label="yv301",fontsize=16,color="green",shape="box"];1900[label="yv4001",fontsize=16,color="green",shape="box"];1901[label="yv301",fontsize=16,color="green",shape="box"];1902[label="yv4001",fontsize=16,color="green",shape="box"];1903[label="yv301",fontsize=16,color="green",shape="box"];1430[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (yv14 : yv12 ==)) (zipWith zip0 (yv15110 : yv15111) (enforceWHNF (WHNF (Pos (primPlusNat yv37 (Succ Zero)))) (numericEnumFrom (Pos (primPlusNat yv37 (Succ Zero))))))))",fontsize=16,color="black",shape="box"];1430 -> 1509[label="",style="solid", color="black", weight=3]; 17.72/6.55 1394[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 ([] ==)) (zipWith zip0 (yv41110 : yv41111) (enforceWHNF (WHNF (Pos (primPlusNat yv35 (Succ Zero)))) (numericEnumFrom (Pos (primPlusNat yv35 (Succ Zero))))))))",fontsize=16,color="black",shape="box"];1394 -> 1431[label="",style="solid", color="black", weight=3]; 17.72/6.55 1906[label="primMulInt (Pos yv3010) (Pos yv40000)",fontsize=16,color="black",shape="box"];1906 -> 1914[label="",style="solid", color="black", weight=3]; 17.72/6.55 1907[label="primMulInt (Pos yv3010) (Neg yv40000)",fontsize=16,color="black",shape="box"];1907 -> 1915[label="",style="solid", color="black", weight=3]; 17.72/6.55 1908[label="primMulInt (Neg yv3010) (Pos yv40000)",fontsize=16,color="black",shape="box"];1908 -> 1916[label="",style="solid", color="black", weight=3]; 17.72/6.55 1909[label="primMulInt (Neg yv3010) (Neg yv40000)",fontsize=16,color="black",shape="box"];1909 -> 1917[label="",style="solid", color="black", weight=3]; 17.72/6.55 1910[label="yv40000",fontsize=16,color="green",shape="box"];1911[label="yv3000",fontsize=16,color="green",shape="box"];1509[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (yv14 : yv12 ==)) (zipWith zip0 (yv15110 : yv15111) (numericEnumFrom (Pos (primPlusNat yv37 (Succ Zero)))))))",fontsize=16,color="black",shape="box"];1509 -> 1691[label="",style="solid", color="black", weight=3]; 17.72/6.55 1431[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 ([] ==)) (zipWith zip0 (yv41110 : yv41111) (numericEnumFrom (Pos (primPlusNat yv35 (Succ Zero)))))))",fontsize=16,color="black",shape="box"];1431 -> 1510[label="",style="solid", color="black", weight=3]; 17.72/6.55 1914[label="Pos (primMulNat yv3010 yv40000)",fontsize=16,color="green",shape="box"];1914 -> 1920[label="",style="dashed", color="green", weight=3]; 17.72/6.55 1915[label="Neg (primMulNat yv3010 yv40000)",fontsize=16,color="green",shape="box"];1915 -> 1921[label="",style="dashed", color="green", weight=3]; 17.72/6.55 1916[label="Neg (primMulNat yv3010 yv40000)",fontsize=16,color="green",shape="box"];1916 -> 1922[label="",style="dashed", color="green", weight=3]; 17.72/6.55 1917[label="Pos (primMulNat yv3010 yv40000)",fontsize=16,color="green",shape="box"];1917 -> 1923[label="",style="dashed", color="green", weight=3]; 17.72/6.55 1691[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (yv14 : yv12 ==)) (zipWith zip0 (yv15110 : yv15111) (Pos (primPlusNat yv37 (Succ Zero)) : (numericEnumFrom $! Pos (primPlusNat yv37 (Succ Zero)) + fromInt (Pos (Succ Zero)))))))",fontsize=16,color="black",shape="box"];1691 -> 1836[label="",style="solid", color="black", weight=3]; 17.72/6.55 1510[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 ([] ==)) (zipWith zip0 (yv41110 : yv41111) (Pos (primPlusNat yv35 (Succ Zero)) : (numericEnumFrom $! Pos (primPlusNat yv35 (Succ Zero)) + fromInt (Pos (Succ Zero)))))))",fontsize=16,color="black",shape="box"];1510 -> 1692[label="",style="solid", color="black", weight=3]; 17.72/6.55 1920[label="primMulNat yv3010 yv40000",fontsize=16,color="burlywood",shape="triangle"];2234[label="yv3010/Succ yv30100",fontsize=10,color="white",style="solid",shape="box"];1920 -> 2234[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2234 -> 1926[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 2235[label="yv3010/Zero",fontsize=10,color="white",style="solid",shape="box"];1920 -> 2235[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2235 -> 1927[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1921 -> 1920[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1921[label="primMulNat yv3010 yv40000",fontsize=16,color="magenta"];1921 -> 1928[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1922 -> 1920[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1922[label="primMulNat yv3010 yv40000",fontsize=16,color="magenta"];1922 -> 1929[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1923 -> 1920[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1923[label="primMulNat yv3010 yv40000",fontsize=16,color="magenta"];1923 -> 1930[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1923 -> 1931[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1836[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (yv14 : yv12 ==)) (zip0 yv15110 (Pos (primPlusNat yv37 (Succ Zero))) : zipWith zip0 yv15111 (numericEnumFrom $! Pos (primPlusNat yv37 (Succ Zero)) + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1836 -> 1904[label="",style="solid", color="black", weight=3]; 17.72/6.55 1692[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 ([] ==)) (zip0 yv41110 (Pos (primPlusNat yv35 (Succ Zero))) : zipWith zip0 yv41111 (numericEnumFrom $! Pos (primPlusNat yv35 (Succ Zero)) + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1692 -> 1837[label="",style="solid", color="black", weight=3]; 17.72/6.55 1926[label="primMulNat (Succ yv30100) yv40000",fontsize=16,color="burlywood",shape="box"];2236[label="yv40000/Succ yv400000",fontsize=10,color="white",style="solid",shape="box"];1926 -> 2236[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2236 -> 1936[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 2237[label="yv40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1926 -> 2237[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2237 -> 1937[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1927[label="primMulNat Zero yv40000",fontsize=16,color="burlywood",shape="box"];2238[label="yv40000/Succ yv400000",fontsize=10,color="white",style="solid",shape="box"];1927 -> 2238[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2238 -> 1938[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 2239[label="yv40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1927 -> 2239[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2239 -> 1939[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1928[label="yv40000",fontsize=16,color="green",shape="box"];1929[label="yv3010",fontsize=16,color="green",shape="box"];1930[label="yv3010",fontsize=16,color="green",shape="box"];1931[label="yv40000",fontsize=16,color="green",shape="box"];1904[label="Maybe.listToMaybe (foldr (++) [] (List.findIndices0 (yv14 : yv12 ==) (zip0 yv15110 (Pos (primPlusNat yv37 (Succ Zero)))) : map (List.findIndices0 (yv14 : yv12 ==)) (zipWith zip0 yv15111 (numericEnumFrom $! Pos (primPlusNat yv37 (Succ Zero)) + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1904 -> 1912[label="",style="solid", color="black", weight=3]; 17.72/6.55 1837[label="Maybe.listToMaybe (foldr (++) [] (List.findIndices0 ([] ==) (zip0 yv41110 (Pos (primPlusNat yv35 (Succ Zero)))) : map (List.findIndices0 ([] ==)) (zipWith zip0 yv41111 (numericEnumFrom $! Pos (primPlusNat yv35 (Succ Zero)) + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1837 -> 1905[label="",style="solid", color="black", weight=3]; 17.72/6.55 1936[label="primMulNat (Succ yv30100) (Succ yv400000)",fontsize=16,color="black",shape="box"];1936 -> 1947[label="",style="solid", color="black", weight=3]; 17.72/6.55 1937[label="primMulNat (Succ yv30100) Zero",fontsize=16,color="black",shape="box"];1937 -> 1948[label="",style="solid", color="black", weight=3]; 17.72/6.55 1938[label="primMulNat Zero (Succ yv400000)",fontsize=16,color="black",shape="box"];1938 -> 1949[label="",style="solid", color="black", weight=3]; 17.72/6.55 1939[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1939 -> 1950[label="",style="solid", color="black", weight=3]; 17.72/6.55 1912[label="Maybe.listToMaybe ((++) List.findIndices0 (yv14 : yv12 ==) (zip0 yv15110 (Pos (primPlusNat yv37 (Succ Zero)))) foldr (++) [] (map (List.findIndices0 (yv14 : yv12 ==)) (zipWith zip0 yv15111 (numericEnumFrom $! Pos (primPlusNat yv37 (Succ Zero)) + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1912 -> 1918[label="",style="solid", color="black", weight=3]; 17.72/6.55 1905[label="Maybe.listToMaybe ((++) List.findIndices0 ([] ==) (zip0 yv41110 (Pos (primPlusNat yv35 (Succ Zero)))) foldr (++) [] (map (List.findIndices0 ([] ==)) (zipWith zip0 yv41111 (numericEnumFrom $! Pos (primPlusNat yv35 (Succ Zero)) + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1905 -> 1913[label="",style="solid", color="black", weight=3]; 17.72/6.55 1947 -> 1956[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1947[label="primPlusNat (primMulNat yv30100 (Succ yv400000)) (Succ yv400000)",fontsize=16,color="magenta"];1947 -> 1957[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1948[label="Zero",fontsize=16,color="green",shape="box"];1949[label="Zero",fontsize=16,color="green",shape="box"];1950[label="Zero",fontsize=16,color="green",shape="box"];1918[label="Maybe.listToMaybe ((++) List.findIndices00 (yv14 : yv12 ==) (zip0 yv15110 (Pos (primPlusNat yv37 (Succ Zero)))) foldr (++) [] (map (List.findIndices0 (yv14 : yv12 ==)) (zipWith zip0 yv15111 (numericEnumFrom $! Pos (primPlusNat yv37 (Succ Zero)) + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1918 -> 1924[label="",style="solid", color="black", weight=3]; 17.72/6.55 1913[label="Maybe.listToMaybe ((++) List.findIndices00 ([] ==) (zip0 yv41110 (Pos (primPlusNat yv35 (Succ Zero)))) foldr (++) [] (map (List.findIndices0 ([] ==)) (zipWith zip0 yv41111 (numericEnumFrom $! Pos (primPlusNat yv35 (Succ Zero)) + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1913 -> 1919[label="",style="solid", color="black", weight=3]; 17.72/6.55 1957 -> 1920[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1957[label="primMulNat yv30100 (Succ yv400000)",fontsize=16,color="magenta"];1957 -> 1962[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1957 -> 1963[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1956[label="primPlusNat yv54 (Succ yv400000)",fontsize=16,color="burlywood",shape="triangle"];2240[label="yv54/Succ yv540",fontsize=10,color="white",style="solid",shape="box"];1956 -> 2240[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2240 -> 1964[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 2241[label="yv54/Zero",fontsize=10,color="white",style="solid",shape="box"];1956 -> 2241[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2241 -> 1965[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1924[label="Maybe.listToMaybe ((++) List.findIndices00 (yv14 : yv12 ==) (yv15110,Pos (primPlusNat yv37 (Succ Zero))) foldr (++) [] (map (List.findIndices0 (yv14 : yv12 ==)) (zipWith zip0 yv15111 (numericEnumFrom $! Pos (primPlusNat yv37 (Succ Zero)) + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1924 -> 1932[label="",style="solid", color="black", weight=3]; 17.72/6.55 1919[label="Maybe.listToMaybe ((++) List.findIndices00 ([] ==) (yv41110,Pos (primPlusNat yv35 (Succ Zero))) foldr (++) [] (map (List.findIndices0 ([] ==)) (zipWith zip0 yv41111 (numericEnumFrom $! Pos (primPlusNat yv35 (Succ Zero)) + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1919 -> 1925[label="",style="solid", color="black", weight=3]; 17.72/6.55 1962[label="yv30100",fontsize=16,color="green",shape="box"];1963[label="Succ yv400000",fontsize=16,color="green",shape="box"];1964[label="primPlusNat (Succ yv540) (Succ yv400000)",fontsize=16,color="black",shape="box"];1964 -> 1966[label="",style="solid", color="black", weight=3]; 17.72/6.55 1965[label="primPlusNat Zero (Succ yv400000)",fontsize=16,color="black",shape="box"];1965 -> 1967[label="",style="solid", color="black", weight=3]; 17.72/6.55 1932 -> 1086[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1932[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos (primPlusNat yv37 (Succ Zero))) (yv14 : yv12 == yv15110) foldr (++) [] (map (List.findIndices0 (yv14 : yv12 ==)) (zipWith zip0 yv15111 (numericEnumFrom $! Pos (primPlusNat yv37 (Succ Zero)) + fromInt (Pos (Succ Zero))))))",fontsize=16,color="magenta"];1932 -> 1940[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1932 -> 1941[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1932 -> 1942[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1925 -> 1073[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1925[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos (primPlusNat yv35 (Succ Zero))) ([] == yv41110) foldr (++) [] (map (List.findIndices0 ([] ==)) (zipWith zip0 yv41111 (numericEnumFrom $! Pos (primPlusNat yv35 (Succ Zero)) + fromInt (Pos (Succ Zero))))))",fontsize=16,color="magenta"];1925 -> 1933[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1925 -> 1934[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1925 -> 1935[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1966[label="Succ (Succ (primPlusNat yv540 yv400000))",fontsize=16,color="green",shape="box"];1966 -> 1968[label="",style="dashed", color="green", weight=3]; 17.72/6.55 1967[label="Succ yv400000",fontsize=16,color="green",shape="box"];1940 -> 1956[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1940[label="primPlusNat yv37 (Succ Zero)",fontsize=16,color="magenta"];1940 -> 1958[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1940 -> 1959[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1941 -> 1305[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1941[label="yv14 : yv12 == yv15110",fontsize=16,color="magenta"];1941 -> 1952[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1941 -> 1953[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1942[label="yv15111",fontsize=16,color="green",shape="box"];1933 -> 1305[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1933[label="[] == yv41110",fontsize=16,color="magenta"];1933 -> 1943[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1933 -> 1944[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1934 -> 1956[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1934[label="primPlusNat yv35 (Succ Zero)",fontsize=16,color="magenta"];1934 -> 1960[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1934 -> 1961[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1935[label="yv41111",fontsize=16,color="green",shape="box"];1968[label="primPlusNat yv540 yv400000",fontsize=16,color="burlywood",shape="triangle"];2242[label="yv540/Succ yv5400",fontsize=10,color="white",style="solid",shape="box"];1968 -> 2242[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2242 -> 1969[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 2243[label="yv540/Zero",fontsize=10,color="white",style="solid",shape="box"];1968 -> 2243[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2243 -> 1970[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1958[label="yv37",fontsize=16,color="green",shape="box"];1959[label="Zero",fontsize=16,color="green",shape="box"];1952[label="yv15110",fontsize=16,color="green",shape="box"];1953[label="yv14 : yv12",fontsize=16,color="green",shape="box"];1943[label="yv41110",fontsize=16,color="green",shape="box"];1944[label="[]",fontsize=16,color="green",shape="box"];1960[label="yv35",fontsize=16,color="green",shape="box"];1961[label="Zero",fontsize=16,color="green",shape="box"];1969[label="primPlusNat (Succ yv5400) yv400000",fontsize=16,color="burlywood",shape="box"];2244[label="yv400000/Succ yv4000000",fontsize=10,color="white",style="solid",shape="box"];1969 -> 2244[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2244 -> 1971[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 2245[label="yv400000/Zero",fontsize=10,color="white",style="solid",shape="box"];1969 -> 2245[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2245 -> 1972[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1970[label="primPlusNat Zero yv400000",fontsize=16,color="burlywood",shape="box"];2246[label="yv400000/Succ yv4000000",fontsize=10,color="white",style="solid",shape="box"];1970 -> 2246[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2246 -> 1973[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 2247[label="yv400000/Zero",fontsize=10,color="white",style="solid",shape="box"];1970 -> 2247[label="",style="solid", color="burlywood", weight=9]; 17.72/6.55 2247 -> 1974[label="",style="solid", color="burlywood", weight=3]; 17.72/6.55 1971[label="primPlusNat (Succ yv5400) (Succ yv4000000)",fontsize=16,color="black",shape="box"];1971 -> 1975[label="",style="solid", color="black", weight=3]; 17.72/6.55 1972[label="primPlusNat (Succ yv5400) Zero",fontsize=16,color="black",shape="box"];1972 -> 1976[label="",style="solid", color="black", weight=3]; 17.72/6.55 1973[label="primPlusNat Zero (Succ yv4000000)",fontsize=16,color="black",shape="box"];1973 -> 1977[label="",style="solid", color="black", weight=3]; 17.72/6.55 1974[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];1974 -> 1978[label="",style="solid", color="black", weight=3]; 17.72/6.55 1975[label="Succ (Succ (primPlusNat yv5400 yv4000000))",fontsize=16,color="green",shape="box"];1975 -> 1979[label="",style="dashed", color="green", weight=3]; 17.72/6.55 1976[label="Succ yv5400",fontsize=16,color="green",shape="box"];1977[label="Succ yv4000000",fontsize=16,color="green",shape="box"];1978[label="Zero",fontsize=16,color="green",shape="box"];1979 -> 1968[label="",style="dashed", color="red", weight=0]; 17.72/6.55 1979[label="primPlusNat yv5400 yv4000000",fontsize=16,color="magenta"];1979 -> 1980[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1979 -> 1981[label="",style="dashed", color="magenta", weight=3]; 17.72/6.55 1980[label="yv5400",fontsize=16,color="green",shape="box"];1981[label="yv4000000",fontsize=16,color="green",shape="box"];} 17.72/6.55 17.72/6.55 ---------------------------------------- 17.72/6.55 17.72/6.55 (14) 17.72/6.55 Complex Obligation (AND) 17.72/6.55 17.72/6.55 ---------------------------------------- 17.72/6.55 17.72/6.55 (15) 17.72/6.55 Obligation: 17.72/6.55 Q DP problem: 17.72/6.55 The TRS P consists of the following rules: 17.72/6.55 17.72/6.55 new_esEs2(Right(yv300), Right(yv4000), bh, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_esEs0(yv300, yv4000, bbc, bbd, bbe) 17.72/6.55 new_esEs2(Left(yv300), Left(yv4000), app(ty_Maybe, bbb), ca) -> new_esEs3(yv300, yv4000, bbb) 17.72/6.55 new_esEs0(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), bb, bc, app(app(ty_@2, cf), cg)) -> new_esEs1(yv302, yv4002, cf, cg) 17.72/6.55 new_esEs3(Just(yv300), Just(yv4000), app(app(app(ty_@3, bcd), bce), bcf)) -> new_esEs0(yv300, yv4000, bcd, bce, bcf) 17.72/6.55 new_esEs(:(yv310, yv311), :(yv4010, yv4011), app(app(ty_@2, be), bf)) -> new_esEs1(yv310, yv4010, be, bf) 17.72/6.55 new_esEs0(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), bb, app(app(app(ty_@3, de), df), dg), bd) -> new_esEs0(yv301, yv4001, de, df, dg) 17.72/6.55 new_esEs0(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), bb, app(app(ty_@2, dh), ea), bd) -> new_esEs1(yv301, yv4001, dh, ea) 17.72/6.55 new_esEs0(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), bb, app(ty_Maybe, ee), bd) -> new_esEs3(yv301, yv4001, ee) 17.72/6.55 new_esEs2(Right(yv300), Right(yv4000), bh, app(app(ty_Either, bca), bcb)) -> new_esEs2(yv300, yv4000, bca, bcb) 17.72/6.55 new_esEs3(Just(yv300), Just(yv4000), app(app(ty_Either, bdb), bdc)) -> new_esEs2(yv300, yv4000, bdb, bdc) 17.72/6.55 new_esEs1(@2(yv300, yv301), @2(yv4000, yv4001), app(ty_[], hf), bf) -> new_esEs(yv300, yv4000, hf) 17.72/6.55 new_esEs(:(yv310, yv311), :(yv4010, yv4011), ba) -> new_esEs(yv311, yv4011, ba) 17.72/6.55 new_esEs0(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), bb, bc, app(ty_Maybe, dd)) -> new_esEs3(yv302, yv4002, dd) 17.72/6.55 new_esEs0(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), app(app(ty_Either, fd), ff), bc, bd) -> new_esEs2(yv300, yv4000, fd, ff) 17.72/6.55 new_esEs3(Just(yv300), Just(yv4000), app(ty_Maybe, bdd)) -> new_esEs3(yv300, yv4000, bdd) 17.72/6.55 new_esEs1(@2(yv300, yv301), @2(yv4000, yv4001), app(app(app(ty_@3, ha), hb), hc), bf) -> new_esEs0(yv300, yv4000, ha, hb, hc) 17.72/6.55 new_esEs1(@2(yv300, yv301), @2(yv4000, yv4001), app(app(ty_Either, hg), hh), bf) -> new_esEs2(yv300, yv4000, hg, hh) 17.72/6.55 new_esEs(:(yv310, yv311), :(yv4010, yv4011), app(ty_[], bg)) -> new_esEs(yv310, yv4010, bg) 17.72/6.55 new_esEs0(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), app(ty_Maybe, fg), bc, bd) -> new_esEs3(yv300, yv4000, fg) 17.72/6.55 new_esEs(:(yv310, yv311), :(yv4010, yv4011), app(app(app(ty_@3, bb), bc), bd)) -> new_esEs0(yv310, yv4010, bb, bc, bd) 17.72/6.55 new_esEs0(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), bb, bc, app(app(app(ty_@3, cc), cd), ce)) -> new_esEs0(yv302, yv4002, cc, cd, ce) 17.72/6.55 new_esEs1(@2(yv300, yv301), @2(yv4000, yv4001), be, app(app(app(ty_@3, fh), ga), gb)) -> new_esEs0(yv301, yv4001, fh, ga, gb) 17.72/6.55 new_esEs2(Left(yv300), Left(yv4000), app(app(ty_Either, bah), bba), ca) -> new_esEs2(yv300, yv4000, bah, bba) 17.72/6.55 new_esEs1(@2(yv300, yv301), @2(yv4000, yv4001), be, app(ty_Maybe, gh)) -> new_esEs3(yv301, yv4001, gh) 17.72/6.55 new_esEs3(Just(yv300), Just(yv4000), app(ty_[], bda)) -> new_esEs(yv300, yv4000, bda) 17.72/6.55 new_esEs0(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), app(ty_[], fc), bc, bd) -> new_esEs(yv300, yv4000, fc) 17.72/6.55 new_esEs(:(yv310, yv311), :(yv4010, yv4011), app(app(ty_Either, bh), ca)) -> new_esEs2(yv310, yv4010, bh, ca) 17.72/6.55 new_esEs0(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), bb, app(ty_[], eb), bd) -> new_esEs(yv301, yv4001, eb) 17.72/6.55 new_esEs2(Right(yv300), Right(yv4000), bh, app(ty_[], bbh)) -> new_esEs(yv300, yv4000, bbh) 17.72/6.55 new_esEs(:(yv310, yv311), :(yv4010, yv4011), app(ty_Maybe, cb)) -> new_esEs3(yv310, yv4010, cb) 17.72/6.55 new_esEs2(Right(yv300), Right(yv4000), bh, app(ty_Maybe, bcc)) -> new_esEs3(yv300, yv4000, bcc) 17.72/6.55 new_esEs0(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), bb, bc, app(ty_[], da)) -> new_esEs(yv302, yv4002, da) 17.72/6.55 new_esEs1(@2(yv300, yv301), @2(yv4000, yv4001), app(ty_Maybe, baa), bf) -> new_esEs3(yv300, yv4000, baa) 17.72/6.55 new_esEs1(@2(yv300, yv301), @2(yv4000, yv4001), app(app(ty_@2, hd), he), bf) -> new_esEs1(yv300, yv4000, hd, he) 17.72/6.55 new_esEs1(@2(yv300, yv301), @2(yv4000, yv4001), be, app(ty_[], ge)) -> new_esEs(yv301, yv4001, ge) 17.72/6.55 new_esEs1(@2(yv300, yv301), @2(yv4000, yv4001), be, app(app(ty_Either, gf), gg)) -> new_esEs2(yv301, yv4001, gf, gg) 17.72/6.55 new_esEs0(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), bb, bc, app(app(ty_Either, db), dc)) -> new_esEs2(yv302, yv4002, db, dc) 17.72/6.55 new_esEs2(Right(yv300), Right(yv4000), bh, app(app(ty_@2, bbf), bbg)) -> new_esEs1(yv300, yv4000, bbf, bbg) 17.72/6.55 new_esEs1(@2(yv300, yv301), @2(yv4000, yv4001), be, app(app(ty_@2, gc), gd)) -> new_esEs1(yv301, yv4001, gc, gd) 17.72/6.55 new_esEs2(Left(yv300), Left(yv4000), app(app(ty_@2, bae), baf), ca) -> new_esEs1(yv300, yv4000, bae, baf) 17.72/6.55 new_esEs0(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), app(app(app(ty_@3, ef), eg), eh), bc, bd) -> new_esEs0(yv300, yv4000, ef, eg, eh) 17.72/6.55 new_esEs0(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), app(app(ty_@2, fa), fb), bc, bd) -> new_esEs1(yv300, yv4000, fa, fb) 17.72/6.55 new_esEs2(Left(yv300), Left(yv4000), app(app(app(ty_@3, bab), bac), bad), ca) -> new_esEs0(yv300, yv4000, bab, bac, bad) 17.72/6.55 new_esEs2(Left(yv300), Left(yv4000), app(ty_[], bag), ca) -> new_esEs(yv300, yv4000, bag) 17.72/6.55 new_esEs0(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), bb, app(app(ty_Either, ec), ed), bd) -> new_esEs2(yv301, yv4001, ec, ed) 17.72/6.55 new_esEs3(Just(yv300), Just(yv4000), app(app(ty_@2, bcg), bch)) -> new_esEs1(yv300, yv4000, bcg, bch) 17.72/6.55 17.72/6.55 R is empty. 17.72/6.55 Q is empty. 17.72/6.55 We have to consider all minimal (P,Q,R)-chains. 17.72/6.55 ---------------------------------------- 17.72/6.55 17.72/6.55 (16) QDPSizeChangeProof (EQUIVALENT) 17.72/6.55 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 17.72/6.55 17.72/6.55 From the DPs we obtained the following set of size-change graphs: 17.72/6.55 *new_esEs3(Just(yv300), Just(yv4000), app(app(ty_Either, bdb), bdc)) -> new_esEs2(yv300, yv4000, bdb, bdc) 17.72/6.55 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 17.72/6.55 17.72/6.55 17.72/6.55 *new_esEs3(Just(yv300), Just(yv4000), app(app(app(ty_@3, bcd), bce), bcf)) -> new_esEs0(yv300, yv4000, bcd, bce, bcf) 17.72/6.55 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 17.72/6.55 17.72/6.55 17.72/6.55 *new_esEs3(Just(yv300), Just(yv4000), app(ty_Maybe, bdd)) -> new_esEs3(yv300, yv4000, bdd) 17.72/6.55 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 17.72/6.55 17.72/6.55 17.72/6.55 *new_esEs3(Just(yv300), Just(yv4000), app(ty_[], bda)) -> new_esEs(yv300, yv4000, bda) 17.72/6.55 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 17.72/6.55 17.72/6.55 17.72/6.55 *new_esEs3(Just(yv300), Just(yv4000), app(app(ty_@2, bcg), bch)) -> new_esEs1(yv300, yv4000, bcg, bch) 17.72/6.55 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 17.72/6.55 17.72/6.55 17.72/6.55 *new_esEs(:(yv310, yv311), :(yv4010, yv4011), app(app(ty_Either, bh), ca)) -> new_esEs2(yv310, yv4010, bh, ca) 17.72/6.55 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 17.72/6.55 17.72/6.55 17.72/6.55 *new_esEs(:(yv310, yv311), :(yv4010, yv4011), app(app(app(ty_@3, bb), bc), bd)) -> new_esEs0(yv310, yv4010, bb, bc, bd) 17.72/6.55 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 17.72/6.55 17.72/6.55 17.72/6.55 *new_esEs(:(yv310, yv311), :(yv4010, yv4011), app(ty_Maybe, cb)) -> new_esEs3(yv310, yv4010, cb) 17.72/6.55 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 17.72/6.55 17.72/6.55 17.72/6.55 *new_esEs(:(yv310, yv311), :(yv4010, yv4011), app(app(ty_@2, be), bf)) -> new_esEs1(yv310, yv4010, be, bf) 17.72/6.55 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 17.72/6.55 17.72/6.55 17.72/6.55 *new_esEs0(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), app(app(ty_Either, fd), ff), bc, bd) -> new_esEs2(yv300, yv4000, fd, ff) 17.72/6.55 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 17.72/6.55 17.72/6.55 17.72/6.55 *new_esEs0(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), bb, bc, app(app(ty_Either, db), dc)) -> new_esEs2(yv302, yv4002, db, dc) 17.72/6.55 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 17.72/6.55 17.72/6.55 17.72/6.55 *new_esEs0(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), bb, app(app(ty_Either, ec), ed), bd) -> new_esEs2(yv301, yv4001, ec, ed) 17.72/6.55 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 17.72/6.55 17.72/6.55 17.72/6.55 *new_esEs0(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), bb, app(app(app(ty_@3, de), df), dg), bd) -> new_esEs0(yv301, yv4001, de, df, dg) 17.72/6.55 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 17.72/6.55 17.72/6.55 17.72/6.55 *new_esEs0(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), bb, bc, app(app(app(ty_@3, cc), cd), ce)) -> new_esEs0(yv302, yv4002, cc, cd, ce) 17.72/6.55 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 17.72/6.55 17.72/6.55 17.72/6.55 *new_esEs0(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), app(app(app(ty_@3, ef), eg), eh), bc, bd) -> new_esEs0(yv300, yv4000, ef, eg, eh) 17.72/6.55 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 17.72/6.55 17.72/6.55 17.72/6.55 *new_esEs0(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), bb, app(ty_Maybe, ee), bd) -> new_esEs3(yv301, yv4001, ee) 17.72/6.55 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 17.72/6.55 17.72/6.55 17.72/6.55 *new_esEs0(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), bb, bc, app(ty_Maybe, dd)) -> new_esEs3(yv302, yv4002, dd) 17.72/6.55 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 17.72/6.55 17.72/6.55 17.72/6.55 *new_esEs0(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), app(ty_Maybe, fg), bc, bd) -> new_esEs3(yv300, yv4000, fg) 17.72/6.55 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 17.72/6.55 17.72/6.55 17.72/6.55 *new_esEs0(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), app(ty_[], fc), bc, bd) -> new_esEs(yv300, yv4000, fc) 17.72/6.55 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 17.72/6.55 17.72/6.55 17.72/6.55 *new_esEs0(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), bb, app(ty_[], eb), bd) -> new_esEs(yv301, yv4001, eb) 17.72/6.55 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 17.72/6.55 17.72/6.55 17.72/6.55 *new_esEs0(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), bb, bc, app(ty_[], da)) -> new_esEs(yv302, yv4002, da) 17.72/6.55 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 17.72/6.55 17.72/6.55 17.72/6.55 *new_esEs0(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), bb, bc, app(app(ty_@2, cf), cg)) -> new_esEs1(yv302, yv4002, cf, cg) 17.72/6.55 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 17.72/6.55 17.72/6.55 17.72/6.55 *new_esEs0(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), bb, app(app(ty_@2, dh), ea), bd) -> new_esEs1(yv301, yv4001, dh, ea) 17.72/6.55 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 17.72/6.55 17.72/6.55 17.72/6.55 *new_esEs0(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), app(app(ty_@2, fa), fb), bc, bd) -> new_esEs1(yv300, yv4000, fa, fb) 17.72/6.55 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 17.72/6.55 17.72/6.55 17.72/6.55 *new_esEs1(@2(yv300, yv301), @2(yv4000, yv4001), app(app(ty_Either, hg), hh), bf) -> new_esEs2(yv300, yv4000, hg, hh) 17.72/6.55 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 17.72/6.55 17.72/6.55 17.72/6.55 *new_esEs1(@2(yv300, yv301), @2(yv4000, yv4001), be, app(app(ty_Either, gf), gg)) -> new_esEs2(yv301, yv4001, gf, gg) 17.72/6.55 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 17.72/6.55 17.72/6.55 17.72/6.55 *new_esEs2(Right(yv300), Right(yv4000), bh, app(app(ty_Either, bca), bcb)) -> new_esEs2(yv300, yv4000, bca, bcb) 17.72/6.55 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 17.72/6.55 17.72/6.55 17.72/6.55 *new_esEs2(Left(yv300), Left(yv4000), app(app(ty_Either, bah), bba), ca) -> new_esEs2(yv300, yv4000, bah, bba) 17.72/6.55 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 17.72/6.55 17.72/6.55 17.72/6.55 *new_esEs1(@2(yv300, yv301), @2(yv4000, yv4001), app(app(app(ty_@3, ha), hb), hc), bf) -> new_esEs0(yv300, yv4000, ha, hb, hc) 17.72/6.55 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 17.72/6.55 17.72/6.55 17.72/6.55 *new_esEs1(@2(yv300, yv301), @2(yv4000, yv4001), be, app(app(app(ty_@3, fh), ga), gb)) -> new_esEs0(yv301, yv4001, fh, ga, gb) 17.72/6.55 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 17.72/6.55 17.72/6.55 17.72/6.55 *new_esEs1(@2(yv300, yv301), @2(yv4000, yv4001), be, app(ty_Maybe, gh)) -> new_esEs3(yv301, yv4001, gh) 17.72/6.55 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 17.72/6.55 17.72/6.55 17.72/6.55 *new_esEs1(@2(yv300, yv301), @2(yv4000, yv4001), app(ty_Maybe, baa), bf) -> new_esEs3(yv300, yv4000, baa) 17.72/6.55 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 17.72/6.55 17.72/6.55 17.72/6.55 *new_esEs1(@2(yv300, yv301), @2(yv4000, yv4001), app(ty_[], hf), bf) -> new_esEs(yv300, yv4000, hf) 17.72/6.55 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 17.72/6.55 17.72/6.55 17.72/6.55 *new_esEs1(@2(yv300, yv301), @2(yv4000, yv4001), be, app(ty_[], ge)) -> new_esEs(yv301, yv4001, ge) 17.72/6.55 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 17.72/6.55 17.72/6.55 17.72/6.55 *new_esEs1(@2(yv300, yv301), @2(yv4000, yv4001), app(app(ty_@2, hd), he), bf) -> new_esEs1(yv300, yv4000, hd, he) 17.72/6.55 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 17.72/6.55 17.72/6.55 17.72/6.55 *new_esEs1(@2(yv300, yv301), @2(yv4000, yv4001), be, app(app(ty_@2, gc), gd)) -> new_esEs1(yv301, yv4001, gc, gd) 17.72/6.55 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 17.72/6.55 17.72/6.55 17.72/6.55 *new_esEs2(Right(yv300), Right(yv4000), bh, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_esEs0(yv300, yv4000, bbc, bbd, bbe) 17.72/6.55 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 17.72/6.55 17.72/6.55 17.72/6.55 *new_esEs2(Left(yv300), Left(yv4000), app(app(app(ty_@3, bab), bac), bad), ca) -> new_esEs0(yv300, yv4000, bab, bac, bad) 17.72/6.55 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 17.72/6.55 17.72/6.55 17.72/6.55 *new_esEs2(Left(yv300), Left(yv4000), app(ty_Maybe, bbb), ca) -> new_esEs3(yv300, yv4000, bbb) 17.72/6.55 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 17.72/6.55 17.72/6.55 17.72/6.55 *new_esEs2(Right(yv300), Right(yv4000), bh, app(ty_Maybe, bcc)) -> new_esEs3(yv300, yv4000, bcc) 17.72/6.55 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 17.72/6.55 17.72/6.55 17.72/6.55 *new_esEs2(Right(yv300), Right(yv4000), bh, app(ty_[], bbh)) -> new_esEs(yv300, yv4000, bbh) 17.72/6.55 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 17.72/6.55 17.72/6.55 17.72/6.55 *new_esEs2(Left(yv300), Left(yv4000), app(ty_[], bag), ca) -> new_esEs(yv300, yv4000, bag) 17.72/6.55 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 17.72/6.55 17.72/6.55 17.72/6.55 *new_esEs(:(yv310, yv311), :(yv4010, yv4011), ba) -> new_esEs(yv311, yv4011, ba) 17.72/6.55 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 17.72/6.55 17.72/6.55 17.72/6.55 *new_esEs(:(yv310, yv311), :(yv4010, yv4011), app(ty_[], bg)) -> new_esEs(yv310, yv4010, bg) 17.72/6.55 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 17.72/6.55 17.72/6.55 17.72/6.55 *new_esEs2(Right(yv300), Right(yv4000), bh, app(app(ty_@2, bbf), bbg)) -> new_esEs1(yv300, yv4000, bbf, bbg) 17.72/6.55 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 17.72/6.55 17.72/6.55 17.72/6.55 *new_esEs2(Left(yv300), Left(yv4000), app(app(ty_@2, bae), baf), ca) -> new_esEs1(yv300, yv4000, bae, baf) 17.72/6.55 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 17.72/6.55 17.72/6.55 17.72/6.55 ---------------------------------------- 17.72/6.55 17.72/6.55 (17) 17.72/6.55 YES 17.72/6.55 17.72/6.55 ---------------------------------------- 17.72/6.55 17.72/6.55 (18) 17.72/6.55 Obligation: 17.72/6.55 Q DP problem: 17.72/6.55 The TRS P consists of the following rules: 17.72/6.55 17.72/6.55 new_listToMaybe0(yv37, False, yv14, yv12, :(yv15110, yv15111), ba) -> new_listToMaybe0(new_primPlusNat0(yv37, Zero), new_esEs4(:(yv14, yv12), yv15110, ba), yv14, yv12, yv15111, ba) 17.72/6.55 17.72/6.55 The TRS R consists of the following rules: 17.72/6.55 17.72/6.55 new_esEs25(yv300, yv4000, ty_Integer) -> new_esEs16(yv300, yv4000) 17.72/6.55 new_esEs20(yv310, yv4010, ty_Int) -> new_esEs12(yv310, yv4010) 17.72/6.55 new_esEs7(yv300, yv4000, app(ty_Ratio, dd)) -> new_esEs15(yv300, yv4000, dd) 17.72/6.55 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 17.72/6.55 new_esEs19(Just(yv300), Just(yv4000), ty_Integer) -> new_esEs16(yv300, yv4000) 17.72/6.55 new_esEs20(yv310, yv4010, ty_@0) -> new_esEs8(yv310, yv4010) 17.72/6.55 new_esEs23(yv302, yv4002, ty_Char) -> new_esEs13(yv302, yv4002) 17.72/6.55 new_esEs18(Right(yv300), Right(yv4000), gh, ty_Float) -> new_esEs9(yv300, yv4000) 17.72/6.55 new_esEs24(yv301, yv4001, app(ty_Maybe, bdd)) -> new_esEs19(yv301, yv4001, bdd) 17.72/6.55 new_esEs25(yv300, yv4000, ty_Ordering) -> new_esEs17(yv300, yv4000) 17.72/6.55 new_esEs6(yv301, yv4001, app(app(ty_@2, bg), bh)) -> new_esEs5(yv301, yv4001, bg, bh) 17.72/6.55 new_esEs19(Nothing, Just(yv4000), ea) -> False 17.72/6.55 new_esEs19(Just(yv300), Nothing, ea) -> False 17.72/6.55 new_esEs19(Just(yv300), Just(yv4000), ty_Ordering) -> new_esEs17(yv300, yv4000) 17.72/6.55 new_esEs19(Nothing, Nothing, ea) -> True 17.72/6.55 new_esEs7(yv300, yv4000, ty_Float) -> new_esEs9(yv300, yv4000) 17.72/6.55 new_esEs6(yv301, yv4001, ty_Integer) -> new_esEs16(yv301, yv4001) 17.72/6.55 new_esEs20(yv310, yv4010, ty_Double) -> new_esEs11(yv310, yv4010) 17.72/6.55 new_esEs23(yv302, yv4002, ty_Integer) -> new_esEs16(yv302, yv4002) 17.72/6.55 new_esEs10(False, True) -> False 17.72/6.55 new_esEs10(True, False) -> False 17.72/6.55 new_esEs22(yv300, yv4000, ty_Int) -> new_esEs12(yv300, yv4000) 17.72/6.55 new_esEs6(yv301, yv4001, ty_Char) -> new_esEs13(yv301, yv4001) 17.72/6.55 new_esEs18(Right(yv300), Right(yv4000), gh, app(app(ty_@2, hd), he)) -> new_esEs5(yv300, yv4000, hd, he) 17.72/6.55 new_esEs24(yv301, yv4001, app(app(ty_Either, bdb), bdc)) -> new_esEs18(yv301, yv4001, bdb, bdc) 17.72/6.55 new_esEs25(yv300, yv4000, app(app(ty_@2, bdh), bea)) -> new_esEs5(yv300, yv4000, bdh, bea) 17.72/6.55 new_esEs6(yv301, yv4001, ty_Bool) -> new_esEs10(yv301, yv4001) 17.72/6.55 new_esEs6(yv301, yv4001, ty_Double) -> new_esEs11(yv301, yv4001) 17.72/6.55 new_asAs(True, yv53) -> yv53 17.72/6.55 new_esEs25(yv300, yv4000, ty_Bool) -> new_esEs10(yv300, yv4000) 17.72/6.55 new_esEs25(yv300, yv4000, ty_Double) -> new_esEs11(yv300, yv4000) 17.72/6.55 new_esEs18(Left(yv300), Left(yv4000), ty_Float, fd) -> new_esEs9(yv300, yv4000) 17.72/6.55 new_esEs25(yv300, yv4000, ty_Char) -> new_esEs13(yv300, yv4000) 17.72/6.55 new_primEqInt(Pos(Succ(yv3000)), Pos(Zero)) -> False 17.72/6.55 new_primEqInt(Pos(Zero), Pos(Succ(yv40000))) -> False 17.72/6.55 new_esEs20(yv310, yv4010, app(app(ty_@2, bb), bc)) -> new_esEs5(yv310, yv4010, bb, bc) 17.72/6.55 new_esEs17(LT, LT) -> True 17.72/6.55 new_esEs24(yv301, yv4001, app(ty_Ratio, bch)) -> new_esEs15(yv301, yv4001, bch) 17.72/6.55 new_esEs24(yv301, yv4001, ty_@0) -> new_esEs8(yv301, yv4001) 17.72/6.55 new_primEqNat0(Succ(yv3000), Succ(yv40000)) -> new_primEqNat0(yv3000, yv40000) 17.72/6.55 new_esEs18(Right(yv300), Right(yv4000), gh, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs14(yv300, yv4000, ha, hb, hc) 17.72/6.55 new_esEs18(Right(yv300), Right(yv4000), gh, app(ty_[], hg)) -> new_esEs4(yv300, yv4000, hg) 17.72/6.55 new_esEs6(yv301, yv4001, ty_Ordering) -> new_esEs17(yv301, yv4001) 17.72/6.55 new_esEs23(yv302, yv4002, app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs14(yv302, yv4002, bba, bbb, bbc) 17.72/6.55 new_esEs6(yv301, yv4001, ty_@0) -> new_esEs8(yv301, yv4001) 17.72/6.55 new_esEs24(yv301, yv4001, app(ty_[], bda)) -> new_esEs4(yv301, yv4001, bda) 17.72/6.55 new_esEs23(yv302, yv4002, ty_Double) -> new_esEs11(yv302, yv4002) 17.72/6.55 new_primMulNat0(Zero, Zero) -> Zero 17.72/6.55 new_esEs18(Right(yv300), Right(yv4000), gh, ty_Int) -> new_esEs12(yv300, yv4000) 17.72/6.55 new_esEs18(Left(yv300), Left(yv4000), ty_Bool, fd) -> new_esEs10(yv300, yv4000) 17.72/6.55 new_esEs18(Left(yv300), Left(yv4000), ty_Double, fd) -> new_esEs11(yv300, yv4000) 17.72/6.55 new_esEs19(Just(yv300), Just(yv4000), ty_Int) -> new_esEs12(yv300, yv4000) 17.72/6.55 new_esEs15(:%(yv300, yv301), :%(yv4000, yv4001), bag) -> new_asAs(new_esEs22(yv300, yv4000, bag), new_esEs21(yv301, yv4001, bag)) 17.72/6.55 new_esEs18(Right(yv300), Right(yv4000), gh, app(ty_Maybe, bab)) -> new_esEs19(yv300, yv4000, bab) 17.72/6.55 new_esEs25(yv300, yv4000, ty_Int) -> new_esEs12(yv300, yv4000) 17.72/6.55 new_esEs6(yv301, yv4001, ty_Int) -> new_esEs12(yv301, yv4001) 17.72/6.55 new_esEs20(yv310, yv4010, ty_Ordering) -> new_esEs17(yv310, yv4010) 17.72/6.55 new_esEs7(yv300, yv4000, app(app(app(ty_@3, cf), cg), da)) -> new_esEs14(yv300, yv4000, cf, cg, da) 17.72/6.55 new_esEs20(yv310, yv4010, ty_Integer) -> new_esEs16(yv310, yv4010) 17.72/6.55 new_esEs20(yv310, yv4010, ty_Float) -> new_esEs9(yv310, yv4010) 17.72/6.55 new_esEs8(@0, @0) -> True 17.72/6.55 new_primEqNat0(Succ(yv3000), Zero) -> False 17.72/6.55 new_primEqNat0(Zero, Succ(yv40000)) -> False 17.72/6.55 new_esEs24(yv301, yv4001, ty_Double) -> new_esEs11(yv301, yv4001) 17.72/6.55 new_esEs11(Double(yv300, yv301), Double(yv4000, yv4001)) -> new_esEs12(new_sr(yv300, yv4001), new_sr(yv301, yv4000)) 17.72/6.55 new_esEs19(Just(yv300), Just(yv4000), app(app(app(ty_@3, eb), ec), ed)) -> new_esEs14(yv300, yv4000, eb, ec, ed) 17.72/6.55 new_esEs18(Left(yv300), Left(yv4000), ty_Int, fd) -> new_esEs12(yv300, yv4000) 17.72/6.55 new_esEs25(yv300, yv4000, app(app(app(ty_@3, bde), bdf), bdg)) -> new_esEs14(yv300, yv4000, bde, bdf, bdg) 17.72/6.55 new_esEs19(Just(yv300), Just(yv4000), ty_@0) -> new_esEs8(yv300, yv4000) 17.72/6.55 new_esEs19(Just(yv300), Just(yv4000), ty_Double) -> new_esEs11(yv300, yv4000) 17.72/6.55 new_esEs17(EQ, GT) -> False 17.72/6.55 new_esEs17(GT, EQ) -> False 17.72/6.55 new_esEs19(Just(yv300), Just(yv4000), ty_Char) -> new_esEs13(yv300, yv4000) 17.72/6.55 new_esEs18(Right(yv300), Right(yv4000), gh, ty_Bool) -> new_esEs10(yv300, yv4000) 17.72/6.55 new_esEs23(yv302, yv4002, ty_@0) -> new_esEs8(yv302, yv4002) 17.72/6.55 new_esEs17(GT, GT) -> True 17.72/6.55 new_esEs7(yv300, yv4000, ty_Ordering) -> new_esEs17(yv300, yv4000) 17.72/6.55 new_primEqInt(Neg(Succ(yv3000)), Neg(Zero)) -> False 17.72/6.55 new_primEqInt(Neg(Zero), Neg(Succ(yv40000))) -> False 17.72/6.55 new_esEs24(yv301, yv4001, app(app(app(ty_@3, bcc), bcd), bce)) -> new_esEs14(yv301, yv4001, bcc, bcd, bce) 17.72/6.55 new_esEs20(yv310, yv4010, ty_Bool) -> new_esEs10(yv310, yv4010) 17.72/6.55 new_primEqInt(Pos(Succ(yv3000)), Pos(Succ(yv40000))) -> new_primEqNat0(yv3000, yv40000) 17.72/6.55 new_esEs20(yv310, yv4010, app(ty_Ratio, bag)) -> new_esEs15(yv310, yv4010, bag) 17.72/6.56 new_esEs23(yv302, yv4002, app(app(ty_Either, bbh), bca)) -> new_esEs18(yv302, yv4002, bbh, bca) 17.72/6.56 new_esEs18(Left(yv300), Left(yv4000), app(app(app(ty_@3, ff), fg), fh), fd) -> new_esEs14(yv300, yv4000, ff, fg, fh) 17.72/6.56 new_esEs6(yv301, yv4001, app(app(app(ty_@3, bd), be), bf)) -> new_esEs14(yv301, yv4001, bd, be, bf) 17.72/6.56 new_sr(Pos(yv3010), Neg(yv40000)) -> Neg(new_primMulNat0(yv3010, yv40000)) 17.72/6.56 new_sr(Neg(yv3010), Pos(yv40000)) -> Neg(new_primMulNat0(yv3010, yv40000)) 17.72/6.56 new_primPlusNat1(Succ(yv5400), Succ(yv4000000)) -> Succ(Succ(new_primPlusNat1(yv5400, yv4000000))) 17.72/6.56 new_primEqInt(Pos(Succ(yv3000)), Neg(yv4000)) -> False 17.72/6.56 new_primEqInt(Neg(Succ(yv3000)), Pos(yv4000)) -> False 17.72/6.56 new_esEs25(yv300, yv4000, app(ty_Ratio, beb)) -> new_esEs15(yv300, yv4000, beb) 17.72/6.56 new_esEs23(yv302, yv4002, app(ty_Maybe, bcb)) -> new_esEs19(yv302, yv4002, bcb) 17.72/6.56 new_esEs24(yv301, yv4001, ty_Int) -> new_esEs12(yv301, yv4001) 17.72/6.56 new_esEs21(yv301, yv4001, ty_Integer) -> new_esEs16(yv301, yv4001) 17.72/6.56 new_esEs18(Left(yv300), Left(yv4000), ty_Char, fd) -> new_esEs13(yv300, yv4000) 17.72/6.56 new_esEs24(yv301, yv4001, ty_Ordering) -> new_esEs17(yv301, yv4001) 17.72/6.56 new_esEs6(yv301, yv4001, ty_Float) -> new_esEs9(yv301, yv4001) 17.72/6.56 new_esEs13(Char(yv300), Char(yv4000)) -> new_primEqNat0(yv300, yv4000) 17.72/6.56 new_esEs18(Right(yv300), Right(yv4000), gh, ty_Integer) -> new_esEs16(yv300, yv4000) 17.72/6.56 new_esEs7(yv300, yv4000, app(app(ty_@2, db), dc)) -> new_esEs5(yv300, yv4000, db, dc) 17.72/6.56 new_esEs18(Left(yv300), Left(yv4000), ty_Ordering, fd) -> new_esEs17(yv300, yv4000) 17.72/6.56 new_esEs12(yv30, yv400) -> new_primEqInt(yv30, yv400) 17.72/6.56 new_esEs6(yv301, yv4001, app(app(ty_Either, cc), cd)) -> new_esEs18(yv301, yv4001, cc, cd) 17.72/6.56 new_esEs21(yv301, yv4001, ty_Int) -> new_esEs12(yv301, yv4001) 17.72/6.56 new_sr(Neg(yv3010), Neg(yv40000)) -> Pos(new_primMulNat0(yv3010, yv40000)) 17.72/6.56 new_esEs23(yv302, yv4002, app(ty_[], bbg)) -> new_esEs4(yv302, yv4002, bbg) 17.72/6.56 new_esEs6(yv301, yv4001, app(ty_Ratio, ca)) -> new_esEs15(yv301, yv4001, ca) 17.72/6.56 new_esEs18(Right(yv300), Right(yv4000), gh, ty_Ordering) -> new_esEs17(yv300, yv4000) 17.72/6.56 new_esEs25(yv300, yv4000, app(ty_Maybe, bef)) -> new_esEs19(yv300, yv4000, bef) 17.72/6.56 new_esEs7(yv300, yv4000, ty_Double) -> new_esEs11(yv300, yv4000) 17.72/6.56 new_esEs19(Just(yv300), Just(yv4000), app(app(ty_Either, fa), fb)) -> new_esEs18(yv300, yv4000, fa, fb) 17.72/6.56 new_esEs7(yv300, yv4000, ty_Bool) -> new_esEs10(yv300, yv4000) 17.72/6.56 new_esEs19(Just(yv300), Just(yv4000), app(ty_Maybe, fc)) -> new_esEs19(yv300, yv4000, fc) 17.72/6.56 new_primEqInt(Pos(Zero), Neg(Succ(yv40000))) -> False 17.72/6.56 new_primEqInt(Neg(Zero), Pos(Succ(yv40000))) -> False 17.72/6.56 new_esEs24(yv301, yv4001, ty_Char) -> new_esEs13(yv301, yv4001) 17.72/6.56 new_esEs18(Left(yv300), Left(yv4000), app(ty_Ratio, gc), fd) -> new_esEs15(yv300, yv4000, gc) 17.72/6.56 new_esEs16(Integer(yv300), Integer(yv4000)) -> new_primEqInt(yv300, yv4000) 17.72/6.56 new_esEs10(False, False) -> True 17.72/6.56 new_esEs20(yv310, yv4010, app(app(app(ty_@3, bad), bae), baf)) -> new_esEs14(yv310, yv4010, bad, bae, baf) 17.72/6.56 new_esEs17(EQ, EQ) -> True 17.72/6.56 new_esEs19(Just(yv300), Just(yv4000), app(ty_[], eh)) -> new_esEs4(yv300, yv4000, eh) 17.72/6.56 new_primEqInt(Neg(Succ(yv3000)), Neg(Succ(yv40000))) -> new_primEqNat0(yv3000, yv40000) 17.72/6.56 new_esEs10(True, True) -> True 17.72/6.56 new_esEs18(Right(yv300), Right(yv4000), gh, ty_Char) -> new_esEs13(yv300, yv4000) 17.72/6.56 new_esEs23(yv302, yv4002, ty_Int) -> new_esEs12(yv302, yv4002) 17.72/6.56 new_esEs17(LT, EQ) -> False 17.72/6.56 new_esEs17(EQ, LT) -> False 17.72/6.56 new_esEs6(yv301, yv4001, app(ty_[], cb)) -> new_esEs4(yv301, yv4001, cb) 17.72/6.56 new_primPlusNat0(Succ(yv540), yv400000) -> Succ(Succ(new_primPlusNat1(yv540, yv400000))) 17.72/6.56 new_esEs18(Left(yv300), Left(yv4000), ty_Integer, fd) -> new_esEs16(yv300, yv4000) 17.72/6.56 new_esEs7(yv300, yv4000, ty_Integer) -> new_esEs16(yv300, yv4000) 17.72/6.56 new_esEs18(Right(yv300), Right(yv4000), gh, ty_Double) -> new_esEs11(yv300, yv4000) 17.72/6.56 new_esEs22(yv300, yv4000, ty_Integer) -> new_esEs16(yv300, yv4000) 17.72/6.56 new_esEs18(Right(yv300), Right(yv4000), gh, app(ty_Ratio, hf)) -> new_esEs15(yv300, yv4000, hf) 17.72/6.56 new_esEs18(Left(yv300), Left(yv4000), app(ty_Maybe, gg), fd) -> new_esEs19(yv300, yv4000, gg) 17.72/6.56 new_esEs19(Just(yv300), Just(yv4000), app(ty_Ratio, eg)) -> new_esEs15(yv300, yv4000, eg) 17.72/6.56 new_primPlusNat1(Zero, Zero) -> Zero 17.72/6.56 new_primMulNat0(Succ(yv30100), Zero) -> Zero 17.72/6.56 new_primMulNat0(Zero, Succ(yv400000)) -> Zero 17.72/6.56 new_sr(Pos(yv3010), Pos(yv40000)) -> Pos(new_primMulNat0(yv3010, yv40000)) 17.72/6.56 new_primPlusNat0(Zero, yv400000) -> Succ(yv400000) 17.72/6.56 new_esEs25(yv300, yv4000, ty_Float) -> new_esEs9(yv300, yv4000) 17.72/6.56 new_esEs7(yv300, yv4000, ty_Int) -> new_esEs12(yv300, yv4000) 17.72/6.56 new_esEs6(yv301, yv4001, app(ty_Maybe, ce)) -> new_esEs19(yv301, yv4001, ce) 17.72/6.56 new_esEs18(Left(yv300), Right(yv4000), gh, fd) -> False 17.72/6.56 new_esEs18(Right(yv300), Left(yv4000), gh, fd) -> False 17.72/6.56 new_esEs17(LT, GT) -> False 17.72/6.56 new_esEs17(GT, LT) -> False 17.72/6.56 new_esEs18(Left(yv300), Left(yv4000), app(app(ty_Either, ge), gf), fd) -> new_esEs18(yv300, yv4000, ge, gf) 17.72/6.56 new_esEs25(yv300, yv4000, ty_@0) -> new_esEs8(yv300, yv4000) 17.72/6.56 new_esEs18(Left(yv300), Left(yv4000), app(ty_[], gd), fd) -> new_esEs4(yv300, yv4000, gd) 17.72/6.56 new_esEs23(yv302, yv4002, ty_Bool) -> new_esEs10(yv302, yv4002) 17.72/6.56 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 17.72/6.56 new_primMulNat0(Succ(yv30100), Succ(yv400000)) -> new_primPlusNat0(new_primMulNat0(yv30100, Succ(yv400000)), yv400000) 17.72/6.56 new_esEs20(yv310, yv4010, app(ty_Maybe, ea)) -> new_esEs19(yv310, yv4010, ea) 17.72/6.56 new_esEs18(Right(yv300), Right(yv4000), gh, ty_@0) -> new_esEs8(yv300, yv4000) 17.72/6.56 new_esEs4(:(yv310, yv311), [], bac) -> False 17.72/6.56 new_esEs4([], :(yv4010, yv4011), bac) -> False 17.72/6.56 new_esEs5(@2(yv300, yv301), @2(yv4000, yv4001), bb, bc) -> new_asAs(new_esEs7(yv300, yv4000, bb), new_esEs6(yv301, yv4001, bc)) 17.72/6.56 new_primPlusNat1(Succ(yv5400), Zero) -> Succ(yv5400) 17.72/6.56 new_primPlusNat1(Zero, Succ(yv4000000)) -> Succ(yv4000000) 17.72/6.56 new_esEs7(yv300, yv4000, ty_Char) -> new_esEs13(yv300, yv4000) 17.72/6.56 new_esEs18(Left(yv300), Left(yv4000), app(app(ty_@2, ga), gb), fd) -> new_esEs5(yv300, yv4000, ga, gb) 17.72/6.56 new_esEs18(Left(yv300), Left(yv4000), ty_@0, fd) -> new_esEs8(yv300, yv4000) 17.72/6.56 new_esEs24(yv301, yv4001, ty_Bool) -> new_esEs10(yv301, yv4001) 17.72/6.56 new_esEs23(yv302, yv4002, app(app(ty_@2, bbd), bbe)) -> new_esEs5(yv302, yv4002, bbd, bbe) 17.72/6.56 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 17.72/6.56 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 17.72/6.56 new_esEs23(yv302, yv4002, app(ty_Ratio, bbf)) -> new_esEs15(yv302, yv4002, bbf) 17.72/6.56 new_esEs20(yv310, yv4010, ty_Char) -> new_esEs13(yv310, yv4010) 17.72/6.56 new_esEs25(yv300, yv4000, app(ty_[], bec)) -> new_esEs4(yv300, yv4000, bec) 17.72/6.56 new_esEs19(Just(yv300), Just(yv4000), ty_Bool) -> new_esEs10(yv300, yv4000) 17.72/6.56 new_primEqNat0(Zero, Zero) -> True 17.72/6.56 new_esEs24(yv301, yv4001, ty_Float) -> new_esEs9(yv301, yv4001) 17.72/6.56 new_esEs9(Float(yv300, yv301), Float(yv4000, yv4001)) -> new_esEs12(new_sr(yv300, yv4001), new_sr(yv301, yv4000)) 17.72/6.56 new_esEs4([], [], bac) -> True 17.72/6.56 new_esEs23(yv302, yv4002, ty_Float) -> new_esEs9(yv302, yv4002) 17.72/6.56 new_esEs19(Just(yv300), Just(yv4000), app(app(ty_@2, ee), ef)) -> new_esEs5(yv300, yv4000, ee, ef) 17.72/6.56 new_esEs7(yv300, yv4000, ty_@0) -> new_esEs8(yv300, yv4000) 17.72/6.56 new_esEs7(yv300, yv4000, app(ty_Maybe, dh)) -> new_esEs19(yv300, yv4000, dh) 17.72/6.56 new_esEs25(yv300, yv4000, app(app(ty_Either, bed), bee)) -> new_esEs18(yv300, yv4000, bed, bee) 17.72/6.56 new_esEs18(Right(yv300), Right(yv4000), gh, app(app(ty_Either, hh), baa)) -> new_esEs18(yv300, yv4000, hh, baa) 17.72/6.56 new_asAs(False, yv53) -> False 17.72/6.56 new_esEs24(yv301, yv4001, ty_Integer) -> new_esEs16(yv301, yv4001) 17.72/6.56 new_esEs24(yv301, yv4001, app(app(ty_@2, bcf), bcg)) -> new_esEs5(yv301, yv4001, bcf, bcg) 17.72/6.56 new_esEs4(:(yv310, yv311), :(yv4010, yv4011), bac) -> new_asAs(new_esEs20(yv310, yv4010, bac), new_esEs4(yv311, yv4011, bac)) 17.72/6.56 new_esEs20(yv310, yv4010, app(app(ty_Either, gh), fd)) -> new_esEs18(yv310, yv4010, gh, fd) 17.72/6.56 new_esEs14(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), bad, bae, baf) -> new_asAs(new_esEs25(yv300, yv4000, bad), new_asAs(new_esEs24(yv301, yv4001, bae), new_esEs23(yv302, yv4002, baf))) 17.72/6.56 new_esEs7(yv300, yv4000, app(ty_[], de)) -> new_esEs4(yv300, yv4000, de) 17.72/6.56 new_esEs19(Just(yv300), Just(yv4000), ty_Float) -> new_esEs9(yv300, yv4000) 17.72/6.56 new_esEs23(yv302, yv4002, ty_Ordering) -> new_esEs17(yv302, yv4002) 17.72/6.56 new_esEs7(yv300, yv4000, app(app(ty_Either, df), dg)) -> new_esEs18(yv300, yv4000, df, dg) 17.72/6.56 new_esEs20(yv310, yv4010, app(ty_[], bah)) -> new_esEs4(yv310, yv4010, bah) 17.72/6.56 17.72/6.56 The set Q consists of the following terms: 17.72/6.56 17.72/6.56 new_esEs19(Just(x0), Just(x1), app(ty_Maybe, x2)) 17.72/6.56 new_esEs24(x0, x1, ty_@0) 17.72/6.56 new_esEs23(x0, x1, ty_Integer) 17.72/6.56 new_esEs25(x0, x1, app(ty_Ratio, x2)) 17.72/6.56 new_esEs7(x0, x1, ty_Ordering) 17.72/6.56 new_esEs18(Right(x0), Right(x1), x2, ty_Ordering) 17.72/6.56 new_esEs19(Just(x0), Just(x1), ty_Double) 17.72/6.56 new_esEs24(x0, x1, app(ty_Ratio, x2)) 17.72/6.56 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 17.72/6.56 new_esEs25(x0, x1, ty_Char) 17.72/6.56 new_esEs18(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 17.72/6.56 new_primMulNat0(Zero, Zero) 17.72/6.56 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 17.72/6.56 new_primPlusNat1(Zero, Zero) 17.72/6.56 new_esEs7(x0, x1, ty_Int) 17.72/6.56 new_esEs7(x0, x1, ty_Double) 17.72/6.56 new_esEs18(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 17.72/6.56 new_esEs24(x0, x1, ty_Bool) 17.72/6.56 new_esEs19(Just(x0), Nothing, x1) 17.72/6.56 new_esEs6(x0, x1, ty_Char) 17.72/6.56 new_esEs19(Just(x0), Just(x1), ty_Float) 17.72/6.56 new_esEs7(x0, x1, app(ty_Maybe, x2)) 17.72/6.56 new_esEs18(Right(x0), Right(x1), x2, ty_Float) 17.72/6.56 new_esEs19(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 17.72/6.56 new_esEs18(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 17.72/6.56 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 17.72/6.56 new_esEs6(x0, x1, ty_Int) 17.72/6.56 new_esEs21(x0, x1, ty_Integer) 17.72/6.56 new_esEs19(Just(x0), Just(x1), app(ty_Ratio, x2)) 17.72/6.56 new_primEqInt(Pos(Zero), Pos(Zero)) 17.72/6.56 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 17.72/6.56 new_esEs18(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 17.72/6.56 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 17.72/6.56 new_esEs18(Left(x0), Left(x1), ty_Bool, x2) 17.72/6.56 new_esEs18(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 17.72/6.56 new_asAs(True, x0) 17.72/6.56 new_esEs11(Double(x0, x1), Double(x2, x3)) 17.72/6.56 new_esEs6(x0, x1, app(ty_[], x2)) 17.72/6.56 new_esEs4(:(x0, x1), [], x2) 17.72/6.56 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 17.72/6.56 new_esEs19(Just(x0), Just(x1), app(ty_[], x2)) 17.72/6.56 new_primPlusNat1(Succ(x0), Succ(x1)) 17.72/6.56 new_esEs9(Float(x0, x1), Float(x2, x3)) 17.72/6.56 new_primEqInt(Neg(Zero), Neg(Zero)) 17.72/6.56 new_esEs6(x0, x1, ty_Ordering) 17.72/6.56 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 17.72/6.56 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 17.72/6.56 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 17.72/6.56 new_esEs18(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 17.72/6.56 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 17.72/6.56 new_esEs6(x0, x1, ty_@0) 17.72/6.56 new_esEs24(x0, x1, app(ty_[], x2)) 17.72/6.56 new_esEs6(x0, x1, ty_Float) 17.72/6.56 new_esEs20(x0, x1, ty_@0) 17.72/6.56 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 17.72/6.56 new_esEs20(x0, x1, app(ty_Ratio, x2)) 17.72/6.56 new_esEs14(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 17.72/6.56 new_esEs25(x0, x1, ty_Ordering) 17.72/6.56 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 17.72/6.56 new_esEs20(x0, x1, ty_Double) 17.72/6.56 new_esEs18(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 17.72/6.56 new_sr(Pos(x0), Pos(x1)) 17.72/6.56 new_esEs24(x0, x1, ty_Char) 17.72/6.56 new_esEs17(LT, EQ) 17.72/6.56 new_esEs17(EQ, LT) 17.72/6.56 new_esEs19(Just(x0), Just(x1), ty_Integer) 17.72/6.56 new_esEs23(x0, x1, ty_@0) 17.72/6.56 new_esEs18(Left(x0), Left(x1), ty_Float, x2) 17.72/6.56 new_esEs10(True, True) 17.72/6.56 new_esEs23(x0, x1, ty_Float) 17.72/6.56 new_esEs23(x0, x1, ty_Bool) 17.72/6.56 new_esEs7(x0, x1, ty_Char) 17.72/6.56 new_esEs17(GT, GT) 17.72/6.56 new_primEqNat0(Succ(x0), Zero) 17.72/6.56 new_esEs24(x0, x1, ty_Integer) 17.72/6.56 new_esEs18(Left(x0), Left(x1), ty_@0, x2) 17.72/6.56 new_esEs17(EQ, GT) 17.72/6.56 new_esEs17(GT, EQ) 17.72/6.56 new_esEs18(Left(x0), Left(x1), ty_Char, x2) 17.72/6.56 new_esEs18(Right(x0), Right(x1), x2, ty_@0) 17.72/6.56 new_primEqInt(Pos(Zero), Neg(Zero)) 17.72/6.56 new_primEqInt(Neg(Zero), Pos(Zero)) 17.72/6.56 new_esEs25(x0, x1, ty_Integer) 17.72/6.56 new_esEs18(Left(x0), Left(x1), ty_Double, x2) 17.72/6.56 new_esEs18(Right(x0), Right(x1), x2, ty_Double) 17.72/6.56 new_primPlusNat0(Zero, x0) 17.72/6.56 new_esEs7(x0, x1, ty_@0) 17.72/6.56 new_primMulNat0(Succ(x0), Succ(x1)) 17.72/6.56 new_esEs17(EQ, EQ) 17.72/6.56 new_esEs18(Right(x0), Right(x1), x2, ty_Char) 17.72/6.56 new_esEs18(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 17.72/6.56 new_esEs19(Just(x0), Just(x1), ty_Ordering) 17.72/6.56 new_primPlusNat0(Succ(x0), x1) 17.72/6.56 new_esEs20(x0, x1, app(ty_[], x2)) 17.72/6.56 new_esEs13(Char(x0), Char(x1)) 17.72/6.56 new_esEs22(x0, x1, ty_Integer) 17.72/6.56 new_esEs18(Left(x0), Left(x1), ty_Int, x2) 17.72/6.56 new_esEs23(x0, x1, ty_Char) 17.72/6.56 new_primEqNat0(Zero, Succ(x0)) 17.72/6.56 new_primPlusNat1(Succ(x0), Zero) 17.72/6.56 new_esEs23(x0, x1, ty_Double) 17.72/6.56 new_esEs7(x0, x1, ty_Float) 17.72/6.56 new_esEs20(x0, x1, ty_Float) 17.72/6.56 new_esEs24(x0, x1, app(ty_Maybe, x2)) 17.72/6.56 new_esEs18(Right(x0), Right(x1), x2, ty_Int) 17.72/6.56 new_esEs19(Just(x0), Just(x1), ty_@0) 17.72/6.56 new_esEs20(x0, x1, ty_Char) 17.72/6.56 new_esEs17(LT, GT) 17.72/6.56 new_esEs17(GT, LT) 17.72/6.56 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 17.72/6.56 new_esEs23(x0, x1, ty_Int) 17.72/6.56 new_esEs4(:(x0, x1), :(x2, x3), x4) 17.72/6.56 new_esEs24(x0, x1, ty_Double) 17.72/6.56 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 17.72/6.56 new_esEs15(:%(x0, x1), :%(x2, x3), x4) 17.72/6.56 new_esEs18(Right(x0), Right(x1), x2, ty_Bool) 17.72/6.56 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 17.72/6.56 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 17.72/6.56 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 17.72/6.56 new_esEs24(x0, x1, ty_Float) 17.72/6.56 new_esEs18(Right(x0), Right(x1), x2, ty_Integer) 17.72/6.56 new_esEs20(x0, x1, ty_Int) 17.72/6.56 new_esEs19(Nothing, Just(x0), x1) 17.72/6.56 new_esEs19(Just(x0), Just(x1), ty_Bool) 17.72/6.56 new_esEs12(x0, x1) 17.72/6.56 new_esEs23(x0, x1, app(ty_Maybe, x2)) 17.72/6.56 new_esEs18(Left(x0), Left(x1), app(ty_[], x2), x3) 17.72/6.56 new_esEs4([], [], x0) 17.72/6.56 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 17.72/6.56 new_esEs21(x0, x1, ty_Int) 17.72/6.56 new_esEs6(x0, x1, app(ty_Maybe, x2)) 17.72/6.56 new_esEs25(x0, x1, app(ty_[], x2)) 17.72/6.56 new_esEs7(x0, x1, app(ty_[], x2)) 17.72/6.56 new_esEs7(x0, x1, app(ty_Ratio, x2)) 17.72/6.56 new_esEs6(x0, x1, ty_Integer) 17.72/6.56 new_esEs19(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 17.72/6.56 new_esEs24(x0, x1, ty_Ordering) 17.72/6.56 new_primMulNat0(Succ(x0), Zero) 17.72/6.56 new_esEs24(x0, x1, ty_Int) 17.72/6.56 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 17.72/6.56 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 17.72/6.56 new_esEs7(x0, x1, ty_Bool) 17.72/6.56 new_esEs8(@0, @0) 17.72/6.56 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 17.72/6.56 new_esEs10(False, False) 17.72/6.56 new_esEs19(Just(x0), Just(x1), ty_Char) 17.72/6.56 new_esEs18(Left(x0), Right(x1), x2, x3) 17.72/6.56 new_esEs18(Right(x0), Left(x1), x2, x3) 17.72/6.56 new_primEqNat0(Zero, Zero) 17.72/6.56 new_primMulNat0(Zero, Succ(x0)) 17.72/6.56 new_esEs5(@2(x0, x1), @2(x2, x3), x4, x5) 17.72/6.56 new_sr(Neg(x0), Neg(x1)) 17.72/6.56 new_esEs6(x0, x1, ty_Bool) 17.72/6.56 new_primPlusNat1(Zero, Succ(x0)) 17.72/6.56 new_esEs18(Right(x0), Right(x1), x2, app(ty_[], x3)) 17.72/6.56 new_esEs22(x0, x1, ty_Int) 17.72/6.56 new_esEs25(x0, x1, ty_Float) 17.72/6.56 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 17.72/6.56 new_esEs25(x0, x1, ty_Bool) 17.72/6.56 new_esEs17(LT, LT) 17.72/6.56 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 17.72/6.56 new_esEs20(x0, x1, ty_Bool) 17.72/6.56 new_esEs18(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 17.72/6.56 new_esEs4([], :(x0, x1), x2) 17.72/6.56 new_esEs19(Nothing, Nothing, x0) 17.72/6.56 new_esEs25(x0, x1, app(ty_Maybe, x2)) 17.72/6.56 new_esEs18(Left(x0), Left(x1), ty_Integer, x2) 17.72/6.56 new_esEs20(x0, x1, ty_Ordering) 17.72/6.56 new_esEs23(x0, x1, app(ty_[], x2)) 17.72/6.56 new_esEs25(x0, x1, ty_Double) 17.72/6.56 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 17.72/6.56 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 17.72/6.56 new_sr(Pos(x0), Neg(x1)) 17.72/6.56 new_sr(Neg(x0), Pos(x1)) 17.72/6.56 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 17.72/6.56 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 17.72/6.56 new_esEs6(x0, x1, ty_Double) 17.72/6.56 new_esEs23(x0, x1, ty_Ordering) 17.72/6.56 new_esEs6(x0, x1, app(ty_Ratio, x2)) 17.72/6.56 new_esEs25(x0, x1, ty_Int) 17.72/6.56 new_esEs7(x0, x1, ty_Integer) 17.72/6.56 new_esEs10(False, True) 17.72/6.56 new_esEs10(True, False) 17.72/6.56 new_esEs25(x0, x1, ty_@0) 17.72/6.56 new_esEs20(x0, x1, ty_Integer) 17.72/6.56 new_esEs18(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 17.72/6.56 new_esEs18(Left(x0), Left(x1), ty_Ordering, x2) 17.72/6.56 new_asAs(False, x0) 17.72/6.56 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 17.72/6.56 new_primEqNat0(Succ(x0), Succ(x1)) 17.72/6.56 new_esEs19(Just(x0), Just(x1), ty_Int) 17.72/6.56 new_esEs20(x0, x1, app(ty_Maybe, x2)) 17.72/6.56 new_esEs19(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 17.72/6.56 new_esEs23(x0, x1, app(ty_Ratio, x2)) 17.72/6.56 new_esEs16(Integer(x0), Integer(x1)) 17.72/6.56 17.72/6.56 We have to consider all minimal (P,Q,R)-chains. 17.72/6.56 ---------------------------------------- 17.72/6.56 17.72/6.56 (19) QDPSizeChangeProof (EQUIVALENT) 17.72/6.56 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 17.72/6.56 17.72/6.56 From the DPs we obtained the following set of size-change graphs: 17.72/6.56 *new_listToMaybe0(yv37, False, yv14, yv12, :(yv15110, yv15111), ba) -> new_listToMaybe0(new_primPlusNat0(yv37, Zero), new_esEs4(:(yv14, yv12), yv15110, ba), yv14, yv12, yv15111, ba) 17.72/6.56 The graph contains the following edges 3 >= 3, 4 >= 4, 5 > 5, 6 >= 6 17.72/6.56 17.72/6.56 17.72/6.56 ---------------------------------------- 17.72/6.56 17.72/6.56 (20) 17.72/6.56 YES 17.72/6.56 17.72/6.56 ---------------------------------------- 17.72/6.56 17.72/6.56 (21) 17.72/6.56 Obligation: 17.72/6.56 Q DP problem: 17.72/6.56 The TRS P consists of the following rules: 17.72/6.56 17.72/6.56 new_primMulNat(Succ(yv30100), Succ(yv400000)) -> new_primMulNat(yv30100, Succ(yv400000)) 17.72/6.56 17.72/6.56 R is empty. 17.72/6.56 Q is empty. 17.72/6.56 We have to consider all minimal (P,Q,R)-chains. 17.72/6.56 ---------------------------------------- 17.72/6.56 17.72/6.56 (22) QDPSizeChangeProof (EQUIVALENT) 17.72/6.56 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 17.72/6.56 17.72/6.56 From the DPs we obtained the following set of size-change graphs: 17.72/6.56 *new_primMulNat(Succ(yv30100), Succ(yv400000)) -> new_primMulNat(yv30100, Succ(yv400000)) 17.72/6.56 The graph contains the following edges 1 > 1, 2 >= 2 17.72/6.56 17.72/6.56 17.72/6.56 ---------------------------------------- 17.72/6.56 17.72/6.56 (23) 17.72/6.56 YES 17.72/6.56 17.72/6.56 ---------------------------------------- 17.72/6.56 17.72/6.56 (24) 17.72/6.56 Obligation: 17.72/6.56 Q DP problem: 17.72/6.56 The TRS P consists of the following rules: 17.72/6.56 17.72/6.56 new_primEqNat(Succ(yv3000), Succ(yv40000)) -> new_primEqNat(yv3000, yv40000) 17.72/6.56 17.72/6.56 R is empty. 17.72/6.56 Q is empty. 17.72/6.56 We have to consider all minimal (P,Q,R)-chains. 17.72/6.56 ---------------------------------------- 17.72/6.56 17.72/6.56 (25) QDPSizeChangeProof (EQUIVALENT) 17.72/6.56 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 17.72/6.56 17.72/6.56 From the DPs we obtained the following set of size-change graphs: 17.72/6.56 *new_primEqNat(Succ(yv3000), Succ(yv40000)) -> new_primEqNat(yv3000, yv40000) 17.72/6.56 The graph contains the following edges 1 > 1, 2 > 2 17.72/6.56 17.72/6.56 17.72/6.56 ---------------------------------------- 17.72/6.56 17.72/6.56 (26) 17.72/6.56 YES 17.72/6.56 17.72/6.56 ---------------------------------------- 17.72/6.56 17.72/6.56 (27) 17.72/6.56 Obligation: 17.72/6.56 Q DP problem: 17.72/6.56 The TRS P consists of the following rules: 17.72/6.56 17.72/6.56 new_primPlusNat(Succ(yv5400), Succ(yv4000000)) -> new_primPlusNat(yv5400, yv4000000) 17.72/6.56 17.72/6.56 R is empty. 17.72/6.56 Q is empty. 17.72/6.56 We have to consider all minimal (P,Q,R)-chains. 17.72/6.56 ---------------------------------------- 17.72/6.56 17.72/6.56 (28) QDPSizeChangeProof (EQUIVALENT) 17.72/6.56 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 17.72/6.56 17.72/6.56 From the DPs we obtained the following set of size-change graphs: 17.72/6.56 *new_primPlusNat(Succ(yv5400), Succ(yv4000000)) -> new_primPlusNat(yv5400, yv4000000) 17.72/6.56 The graph contains the following edges 1 > 1, 2 > 2 17.72/6.56 17.72/6.56 17.72/6.56 ---------------------------------------- 17.72/6.56 17.72/6.56 (29) 17.72/6.56 YES 17.72/6.56 17.72/6.56 ---------------------------------------- 17.72/6.56 17.72/6.56 (30) 17.72/6.56 Obligation: 17.72/6.56 Q DP problem: 17.72/6.56 The TRS P consists of the following rules: 17.72/6.56 17.72/6.56 new_listToMaybe(yv35, False, :(yv41110, yv41111), ba) -> new_listToMaybe(new_primPlusNat0(yv35, Zero), new_esEs4([], yv41110, ba), yv41111, ba) 17.72/6.56 17.72/6.56 The TRS R consists of the following rules: 17.72/6.56 17.72/6.56 new_esEs25(yv300, yv4000, ty_Integer) -> new_esEs16(yv300, yv4000) 17.72/6.56 new_esEs20(yv310, yv4010, ty_Int) -> new_esEs12(yv310, yv4010) 17.72/6.56 new_esEs7(yv300, yv4000, app(ty_Ratio, dd)) -> new_esEs15(yv300, yv4000, dd) 17.72/6.56 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 17.72/6.56 new_esEs19(Just(yv300), Just(yv4000), ty_Integer) -> new_esEs16(yv300, yv4000) 17.72/6.56 new_esEs20(yv310, yv4010, ty_@0) -> new_esEs8(yv310, yv4010) 17.72/6.56 new_esEs23(yv302, yv4002, ty_Char) -> new_esEs13(yv302, yv4002) 17.72/6.56 new_esEs18(Right(yv300), Right(yv4000), gh, ty_Float) -> new_esEs9(yv300, yv4000) 17.72/6.56 new_esEs24(yv301, yv4001, app(ty_Maybe, bdc)) -> new_esEs19(yv301, yv4001, bdc) 17.72/6.56 new_esEs25(yv300, yv4000, ty_Ordering) -> new_esEs17(yv300, yv4000) 17.72/6.56 new_esEs6(yv301, yv4001, app(app(ty_@2, bg), bh)) -> new_esEs5(yv301, yv4001, bg, bh) 17.72/6.56 new_esEs19(Nothing, Just(yv4000), ea) -> False 17.72/6.56 new_esEs19(Just(yv300), Nothing, ea) -> False 17.72/6.56 new_esEs19(Just(yv300), Just(yv4000), ty_Ordering) -> new_esEs17(yv300, yv4000) 17.72/6.56 new_esEs19(Nothing, Nothing, ea) -> True 17.72/6.56 new_esEs7(yv300, yv4000, ty_Float) -> new_esEs9(yv300, yv4000) 17.72/6.56 new_esEs6(yv301, yv4001, ty_Integer) -> new_esEs16(yv301, yv4001) 17.72/6.56 new_esEs20(yv310, yv4010, ty_Double) -> new_esEs11(yv310, yv4010) 17.72/6.56 new_esEs23(yv302, yv4002, ty_Integer) -> new_esEs16(yv302, yv4002) 17.72/6.56 new_esEs10(False, True) -> False 17.72/6.56 new_esEs10(True, False) -> False 17.72/6.56 new_esEs22(yv300, yv4000, ty_Int) -> new_esEs12(yv300, yv4000) 17.72/6.56 new_esEs6(yv301, yv4001, ty_Char) -> new_esEs13(yv301, yv4001) 17.72/6.56 new_esEs18(Right(yv300), Right(yv4000), gh, app(app(ty_@2, hd), he)) -> new_esEs5(yv300, yv4000, hd, he) 17.72/6.56 new_esEs24(yv301, yv4001, app(app(ty_Either, bda), bdb)) -> new_esEs18(yv301, yv4001, bda, bdb) 17.72/6.56 new_esEs25(yv300, yv4000, app(app(ty_@2, bdg), bdh)) -> new_esEs5(yv300, yv4000, bdg, bdh) 17.72/6.56 new_esEs6(yv301, yv4001, ty_Bool) -> new_esEs10(yv301, yv4001) 17.72/6.56 new_esEs6(yv301, yv4001, ty_Double) -> new_esEs11(yv301, yv4001) 17.72/6.56 new_asAs(True, yv53) -> yv53 17.72/6.56 new_esEs25(yv300, yv4000, ty_Bool) -> new_esEs10(yv300, yv4000) 17.72/6.56 new_esEs25(yv300, yv4000, ty_Double) -> new_esEs11(yv300, yv4000) 17.72/6.56 new_esEs18(Left(yv300), Left(yv4000), ty_Float, fd) -> new_esEs9(yv300, yv4000) 17.72/6.56 new_esEs25(yv300, yv4000, ty_Char) -> new_esEs13(yv300, yv4000) 17.72/6.56 new_primEqInt(Pos(Succ(yv3000)), Pos(Zero)) -> False 17.72/6.56 new_primEqInt(Pos(Zero), Pos(Succ(yv40000))) -> False 17.72/6.56 new_esEs20(yv310, yv4010, app(app(ty_@2, bb), bc)) -> new_esEs5(yv310, yv4010, bb, bc) 17.72/6.56 new_esEs17(LT, LT) -> True 17.72/6.56 new_esEs24(yv301, yv4001, app(ty_Ratio, bcg)) -> new_esEs15(yv301, yv4001, bcg) 17.72/6.56 new_esEs24(yv301, yv4001, ty_@0) -> new_esEs8(yv301, yv4001) 17.72/6.56 new_primEqNat0(Succ(yv3000), Succ(yv40000)) -> new_primEqNat0(yv3000, yv40000) 17.72/6.56 new_esEs18(Right(yv300), Right(yv4000), gh, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs14(yv300, yv4000, ha, hb, hc) 17.72/6.56 new_esEs18(Right(yv300), Right(yv4000), gh, app(ty_[], hg)) -> new_esEs4(yv300, yv4000, hg) 17.72/6.56 new_esEs6(yv301, yv4001, ty_Ordering) -> new_esEs17(yv301, yv4001) 17.72/6.56 new_esEs23(yv302, yv4002, app(app(app(ty_@3, bah), bba), bbb)) -> new_esEs14(yv302, yv4002, bah, bba, bbb) 17.72/6.56 new_esEs6(yv301, yv4001, ty_@0) -> new_esEs8(yv301, yv4001) 17.72/6.56 new_esEs24(yv301, yv4001, app(ty_[], bch)) -> new_esEs4(yv301, yv4001, bch) 17.72/6.56 new_esEs23(yv302, yv4002, ty_Double) -> new_esEs11(yv302, yv4002) 17.72/6.56 new_primMulNat0(Zero, Zero) -> Zero 17.72/6.56 new_esEs18(Right(yv300), Right(yv4000), gh, ty_Int) -> new_esEs12(yv300, yv4000) 17.72/6.56 new_esEs18(Left(yv300), Left(yv4000), ty_Bool, fd) -> new_esEs10(yv300, yv4000) 17.72/6.56 new_esEs18(Left(yv300), Left(yv4000), ty_Double, fd) -> new_esEs11(yv300, yv4000) 17.72/6.56 new_esEs19(Just(yv300), Just(yv4000), ty_Int) -> new_esEs12(yv300, yv4000) 17.72/6.56 new_esEs15(:%(yv300, yv301), :%(yv4000, yv4001), baf) -> new_asAs(new_esEs22(yv300, yv4000, baf), new_esEs21(yv301, yv4001, baf)) 17.72/6.56 new_esEs18(Right(yv300), Right(yv4000), gh, app(ty_Maybe, bab)) -> new_esEs19(yv300, yv4000, bab) 17.72/6.56 new_esEs25(yv300, yv4000, ty_Int) -> new_esEs12(yv300, yv4000) 17.72/6.56 new_esEs6(yv301, yv4001, ty_Int) -> new_esEs12(yv301, yv4001) 17.72/6.56 new_esEs20(yv310, yv4010, ty_Ordering) -> new_esEs17(yv310, yv4010) 17.72/6.56 new_esEs7(yv300, yv4000, app(app(app(ty_@3, cf), cg), da)) -> new_esEs14(yv300, yv4000, cf, cg, da) 17.72/6.56 new_esEs20(yv310, yv4010, ty_Integer) -> new_esEs16(yv310, yv4010) 17.72/6.56 new_esEs20(yv310, yv4010, ty_Float) -> new_esEs9(yv310, yv4010) 17.72/6.56 new_esEs8(@0, @0) -> True 17.72/6.56 new_primEqNat0(Succ(yv3000), Zero) -> False 17.72/6.56 new_primEqNat0(Zero, Succ(yv40000)) -> False 17.72/6.56 new_esEs24(yv301, yv4001, ty_Double) -> new_esEs11(yv301, yv4001) 17.72/6.56 new_esEs11(Double(yv300, yv301), Double(yv4000, yv4001)) -> new_esEs12(new_sr(yv300, yv4001), new_sr(yv301, yv4000)) 17.72/6.56 new_esEs19(Just(yv300), Just(yv4000), app(app(app(ty_@3, eb), ec), ed)) -> new_esEs14(yv300, yv4000, eb, ec, ed) 17.72/6.56 new_esEs18(Left(yv300), Left(yv4000), ty_Int, fd) -> new_esEs12(yv300, yv4000) 17.72/6.56 new_esEs25(yv300, yv4000, app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs14(yv300, yv4000, bdd, bde, bdf) 17.72/6.56 new_esEs19(Just(yv300), Just(yv4000), ty_@0) -> new_esEs8(yv300, yv4000) 17.72/6.56 new_esEs19(Just(yv300), Just(yv4000), ty_Double) -> new_esEs11(yv300, yv4000) 17.72/6.56 new_esEs17(EQ, GT) -> False 17.72/6.56 new_esEs17(GT, EQ) -> False 17.72/6.56 new_esEs19(Just(yv300), Just(yv4000), ty_Char) -> new_esEs13(yv300, yv4000) 17.72/6.56 new_esEs18(Right(yv300), Right(yv4000), gh, ty_Bool) -> new_esEs10(yv300, yv4000) 17.72/6.56 new_esEs23(yv302, yv4002, ty_@0) -> new_esEs8(yv302, yv4002) 17.72/6.56 new_esEs17(GT, GT) -> True 17.72/6.56 new_esEs7(yv300, yv4000, ty_Ordering) -> new_esEs17(yv300, yv4000) 17.72/6.56 new_primEqInt(Neg(Succ(yv3000)), Neg(Zero)) -> False 17.72/6.56 new_primEqInt(Neg(Zero), Neg(Succ(yv40000))) -> False 17.72/6.56 new_esEs24(yv301, yv4001, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs14(yv301, yv4001, bcb, bcc, bcd) 17.72/6.56 new_esEs20(yv310, yv4010, ty_Bool) -> new_esEs10(yv310, yv4010) 17.72/6.56 new_primEqInt(Pos(Succ(yv3000)), Pos(Succ(yv40000))) -> new_primEqNat0(yv3000, yv40000) 17.72/6.56 new_esEs20(yv310, yv4010, app(ty_Ratio, baf)) -> new_esEs15(yv310, yv4010, baf) 17.72/6.56 new_esEs23(yv302, yv4002, app(app(ty_Either, bbg), bbh)) -> new_esEs18(yv302, yv4002, bbg, bbh) 17.72/6.56 new_esEs18(Left(yv300), Left(yv4000), app(app(app(ty_@3, ff), fg), fh), fd) -> new_esEs14(yv300, yv4000, ff, fg, fh) 17.72/6.56 new_esEs6(yv301, yv4001, app(app(app(ty_@3, bd), be), bf)) -> new_esEs14(yv301, yv4001, bd, be, bf) 17.72/6.56 new_sr(Pos(yv3010), Neg(yv40000)) -> Neg(new_primMulNat0(yv3010, yv40000)) 17.72/6.56 new_sr(Neg(yv3010), Pos(yv40000)) -> Neg(new_primMulNat0(yv3010, yv40000)) 17.72/6.56 new_primPlusNat1(Succ(yv5400), Succ(yv4000000)) -> Succ(Succ(new_primPlusNat1(yv5400, yv4000000))) 17.72/6.56 new_primEqInt(Pos(Succ(yv3000)), Neg(yv4000)) -> False 17.72/6.56 new_primEqInt(Neg(Succ(yv3000)), Pos(yv4000)) -> False 17.72/6.56 new_esEs25(yv300, yv4000, app(ty_Ratio, bea)) -> new_esEs15(yv300, yv4000, bea) 17.72/6.56 new_esEs23(yv302, yv4002, app(ty_Maybe, bca)) -> new_esEs19(yv302, yv4002, bca) 17.72/6.56 new_esEs24(yv301, yv4001, ty_Int) -> new_esEs12(yv301, yv4001) 17.72/6.56 new_esEs21(yv301, yv4001, ty_Integer) -> new_esEs16(yv301, yv4001) 17.72/6.56 new_esEs18(Left(yv300), Left(yv4000), ty_Char, fd) -> new_esEs13(yv300, yv4000) 17.72/6.56 new_esEs24(yv301, yv4001, ty_Ordering) -> new_esEs17(yv301, yv4001) 17.72/6.56 new_esEs6(yv301, yv4001, ty_Float) -> new_esEs9(yv301, yv4001) 17.72/6.56 new_esEs13(Char(yv300), Char(yv4000)) -> new_primEqNat0(yv300, yv4000) 17.72/6.56 new_esEs18(Right(yv300), Right(yv4000), gh, ty_Integer) -> new_esEs16(yv300, yv4000) 17.72/6.56 new_esEs7(yv300, yv4000, app(app(ty_@2, db), dc)) -> new_esEs5(yv300, yv4000, db, dc) 17.72/6.56 new_esEs18(Left(yv300), Left(yv4000), ty_Ordering, fd) -> new_esEs17(yv300, yv4000) 17.72/6.56 new_esEs12(yv30, yv400) -> new_primEqInt(yv30, yv400) 17.72/6.56 new_esEs6(yv301, yv4001, app(app(ty_Either, cc), cd)) -> new_esEs18(yv301, yv4001, cc, cd) 17.72/6.56 new_esEs21(yv301, yv4001, ty_Int) -> new_esEs12(yv301, yv4001) 17.72/6.56 new_sr(Neg(yv3010), Neg(yv40000)) -> Pos(new_primMulNat0(yv3010, yv40000)) 17.72/6.56 new_esEs23(yv302, yv4002, app(ty_[], bbf)) -> new_esEs4(yv302, yv4002, bbf) 17.72/6.56 new_esEs6(yv301, yv4001, app(ty_Ratio, ca)) -> new_esEs15(yv301, yv4001, ca) 17.72/6.56 new_esEs18(Right(yv300), Right(yv4000), gh, ty_Ordering) -> new_esEs17(yv300, yv4000) 17.72/6.56 new_esEs25(yv300, yv4000, app(ty_Maybe, bee)) -> new_esEs19(yv300, yv4000, bee) 17.72/6.56 new_esEs7(yv300, yv4000, ty_Double) -> new_esEs11(yv300, yv4000) 17.72/6.56 new_esEs19(Just(yv300), Just(yv4000), app(app(ty_Either, fa), fb)) -> new_esEs18(yv300, yv4000, fa, fb) 17.72/6.56 new_esEs7(yv300, yv4000, ty_Bool) -> new_esEs10(yv300, yv4000) 17.72/6.56 new_esEs19(Just(yv300), Just(yv4000), app(ty_Maybe, fc)) -> new_esEs19(yv300, yv4000, fc) 17.72/6.56 new_primEqInt(Pos(Zero), Neg(Succ(yv40000))) -> False 17.72/6.56 new_primEqInt(Neg(Zero), Pos(Succ(yv40000))) -> False 17.72/6.56 new_esEs24(yv301, yv4001, ty_Char) -> new_esEs13(yv301, yv4001) 17.72/6.56 new_esEs18(Left(yv300), Left(yv4000), app(ty_Ratio, gc), fd) -> new_esEs15(yv300, yv4000, gc) 17.72/6.56 new_esEs16(Integer(yv300), Integer(yv4000)) -> new_primEqInt(yv300, yv4000) 17.72/6.56 new_esEs10(False, False) -> True 17.72/6.56 new_esEs20(yv310, yv4010, app(app(app(ty_@3, bac), bad), bae)) -> new_esEs14(yv310, yv4010, bac, bad, bae) 17.72/6.56 new_esEs17(EQ, EQ) -> True 17.72/6.56 new_esEs19(Just(yv300), Just(yv4000), app(ty_[], eh)) -> new_esEs4(yv300, yv4000, eh) 17.72/6.56 new_primEqInt(Neg(Succ(yv3000)), Neg(Succ(yv40000))) -> new_primEqNat0(yv3000, yv40000) 17.72/6.56 new_esEs10(True, True) -> True 17.72/6.56 new_esEs18(Right(yv300), Right(yv4000), gh, ty_Char) -> new_esEs13(yv300, yv4000) 17.72/6.56 new_esEs23(yv302, yv4002, ty_Int) -> new_esEs12(yv302, yv4002) 17.72/6.56 new_esEs17(LT, EQ) -> False 17.72/6.56 new_esEs17(EQ, LT) -> False 17.72/6.56 new_esEs6(yv301, yv4001, app(ty_[], cb)) -> new_esEs4(yv301, yv4001, cb) 17.72/6.56 new_primPlusNat0(Succ(yv540), yv400000) -> Succ(Succ(new_primPlusNat1(yv540, yv400000))) 17.72/6.56 new_esEs18(Left(yv300), Left(yv4000), ty_Integer, fd) -> new_esEs16(yv300, yv4000) 17.72/6.56 new_esEs7(yv300, yv4000, ty_Integer) -> new_esEs16(yv300, yv4000) 17.72/6.56 new_esEs18(Right(yv300), Right(yv4000), gh, ty_Double) -> new_esEs11(yv300, yv4000) 17.72/6.56 new_esEs22(yv300, yv4000, ty_Integer) -> new_esEs16(yv300, yv4000) 17.72/6.56 new_esEs18(Right(yv300), Right(yv4000), gh, app(ty_Ratio, hf)) -> new_esEs15(yv300, yv4000, hf) 17.72/6.56 new_esEs18(Left(yv300), Left(yv4000), app(ty_Maybe, gg), fd) -> new_esEs19(yv300, yv4000, gg) 17.72/6.56 new_esEs19(Just(yv300), Just(yv4000), app(ty_Ratio, eg)) -> new_esEs15(yv300, yv4000, eg) 17.72/6.56 new_primPlusNat1(Zero, Zero) -> Zero 17.72/6.56 new_primMulNat0(Succ(yv30100), Zero) -> Zero 17.72/6.56 new_primMulNat0(Zero, Succ(yv400000)) -> Zero 17.72/6.56 new_sr(Pos(yv3010), Pos(yv40000)) -> Pos(new_primMulNat0(yv3010, yv40000)) 17.72/6.56 new_primPlusNat0(Zero, yv400000) -> Succ(yv400000) 17.72/6.56 new_esEs25(yv300, yv4000, ty_Float) -> new_esEs9(yv300, yv4000) 17.72/6.56 new_esEs7(yv300, yv4000, ty_Int) -> new_esEs12(yv300, yv4000) 17.72/6.56 new_esEs6(yv301, yv4001, app(ty_Maybe, ce)) -> new_esEs19(yv301, yv4001, ce) 17.72/6.56 new_esEs18(Left(yv300), Right(yv4000), gh, fd) -> False 17.72/6.56 new_esEs18(Right(yv300), Left(yv4000), gh, fd) -> False 17.72/6.56 new_esEs17(LT, GT) -> False 17.72/6.56 new_esEs17(GT, LT) -> False 17.72/6.56 new_esEs18(Left(yv300), Left(yv4000), app(app(ty_Either, ge), gf), fd) -> new_esEs18(yv300, yv4000, ge, gf) 17.72/6.56 new_esEs25(yv300, yv4000, ty_@0) -> new_esEs8(yv300, yv4000) 17.72/6.56 new_esEs18(Left(yv300), Left(yv4000), app(ty_[], gd), fd) -> new_esEs4(yv300, yv4000, gd) 17.72/6.56 new_esEs23(yv302, yv4002, ty_Bool) -> new_esEs10(yv302, yv4002) 17.72/6.56 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 17.72/6.56 new_primMulNat0(Succ(yv30100), Succ(yv400000)) -> new_primPlusNat0(new_primMulNat0(yv30100, Succ(yv400000)), yv400000) 17.72/6.56 new_esEs20(yv310, yv4010, app(ty_Maybe, ea)) -> new_esEs19(yv310, yv4010, ea) 17.72/6.56 new_esEs18(Right(yv300), Right(yv4000), gh, ty_@0) -> new_esEs8(yv300, yv4000) 17.72/6.56 new_esEs4(:(yv310, yv311), [], ba) -> False 17.72/6.56 new_esEs4([], :(yv4010, yv4011), ba) -> False 17.72/6.56 new_esEs5(@2(yv300, yv301), @2(yv4000, yv4001), bb, bc) -> new_asAs(new_esEs7(yv300, yv4000, bb), new_esEs6(yv301, yv4001, bc)) 17.72/6.56 new_primPlusNat1(Succ(yv5400), Zero) -> Succ(yv5400) 17.72/6.56 new_primPlusNat1(Zero, Succ(yv4000000)) -> Succ(yv4000000) 17.72/6.56 new_esEs7(yv300, yv4000, ty_Char) -> new_esEs13(yv300, yv4000) 17.72/6.56 new_esEs18(Left(yv300), Left(yv4000), app(app(ty_@2, ga), gb), fd) -> new_esEs5(yv300, yv4000, ga, gb) 17.72/6.56 new_esEs18(Left(yv300), Left(yv4000), ty_@0, fd) -> new_esEs8(yv300, yv4000) 17.72/6.56 new_esEs24(yv301, yv4001, ty_Bool) -> new_esEs10(yv301, yv4001) 17.72/6.56 new_esEs23(yv302, yv4002, app(app(ty_@2, bbc), bbd)) -> new_esEs5(yv302, yv4002, bbc, bbd) 17.72/6.56 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 17.72/6.56 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 17.72/6.56 new_esEs23(yv302, yv4002, app(ty_Ratio, bbe)) -> new_esEs15(yv302, yv4002, bbe) 17.72/6.56 new_esEs20(yv310, yv4010, ty_Char) -> new_esEs13(yv310, yv4010) 17.72/6.56 new_esEs25(yv300, yv4000, app(ty_[], beb)) -> new_esEs4(yv300, yv4000, beb) 17.72/6.56 new_esEs19(Just(yv300), Just(yv4000), ty_Bool) -> new_esEs10(yv300, yv4000) 17.72/6.56 new_primEqNat0(Zero, Zero) -> True 17.72/6.56 new_esEs24(yv301, yv4001, ty_Float) -> new_esEs9(yv301, yv4001) 17.72/6.56 new_esEs9(Float(yv300, yv301), Float(yv4000, yv4001)) -> new_esEs12(new_sr(yv300, yv4001), new_sr(yv301, yv4000)) 17.72/6.56 new_esEs4([], [], ba) -> True 17.72/6.56 new_esEs23(yv302, yv4002, ty_Float) -> new_esEs9(yv302, yv4002) 17.72/6.56 new_esEs19(Just(yv300), Just(yv4000), app(app(ty_@2, ee), ef)) -> new_esEs5(yv300, yv4000, ee, ef) 17.72/6.56 new_esEs7(yv300, yv4000, ty_@0) -> new_esEs8(yv300, yv4000) 17.72/6.56 new_esEs7(yv300, yv4000, app(ty_Maybe, dh)) -> new_esEs19(yv300, yv4000, dh) 17.72/6.56 new_esEs25(yv300, yv4000, app(app(ty_Either, bec), bed)) -> new_esEs18(yv300, yv4000, bec, bed) 17.72/6.56 new_esEs18(Right(yv300), Right(yv4000), gh, app(app(ty_Either, hh), baa)) -> new_esEs18(yv300, yv4000, hh, baa) 17.72/6.56 new_asAs(False, yv53) -> False 17.72/6.56 new_esEs24(yv301, yv4001, ty_Integer) -> new_esEs16(yv301, yv4001) 17.72/6.56 new_esEs24(yv301, yv4001, app(app(ty_@2, bce), bcf)) -> new_esEs5(yv301, yv4001, bce, bcf) 17.72/6.56 new_esEs4(:(yv310, yv311), :(yv4010, yv4011), ba) -> new_asAs(new_esEs20(yv310, yv4010, ba), new_esEs4(yv311, yv4011, ba)) 17.72/6.56 new_esEs20(yv310, yv4010, app(app(ty_Either, gh), fd)) -> new_esEs18(yv310, yv4010, gh, fd) 17.72/6.56 new_esEs14(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), bac, bad, bae) -> new_asAs(new_esEs25(yv300, yv4000, bac), new_asAs(new_esEs24(yv301, yv4001, bad), new_esEs23(yv302, yv4002, bae))) 17.72/6.56 new_esEs7(yv300, yv4000, app(ty_[], de)) -> new_esEs4(yv300, yv4000, de) 17.72/6.56 new_esEs19(Just(yv300), Just(yv4000), ty_Float) -> new_esEs9(yv300, yv4000) 17.72/6.56 new_esEs23(yv302, yv4002, ty_Ordering) -> new_esEs17(yv302, yv4002) 17.72/6.56 new_esEs7(yv300, yv4000, app(app(ty_Either, df), dg)) -> new_esEs18(yv300, yv4000, df, dg) 17.72/6.56 new_esEs20(yv310, yv4010, app(ty_[], bag)) -> new_esEs4(yv310, yv4010, bag) 17.72/6.56 17.72/6.56 The set Q consists of the following terms: 17.72/6.56 17.72/6.56 new_esEs19(Just(x0), Just(x1), app(ty_Maybe, x2)) 17.72/6.56 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 17.72/6.56 new_esEs24(x0, x1, ty_@0) 17.72/6.56 new_esEs14(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 17.72/6.56 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 17.72/6.56 new_esEs23(x0, x1, ty_Integer) 17.72/6.56 new_esEs7(x0, x1, ty_Ordering) 17.72/6.56 new_esEs18(Right(x0), Right(x1), x2, ty_Ordering) 17.72/6.56 new_esEs19(Just(x0), Just(x1), ty_Double) 17.72/6.56 new_esEs25(x0, x1, ty_Char) 17.72/6.56 new_esEs23(x0, x1, app(ty_[], x2)) 17.72/6.56 new_esEs18(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 17.72/6.56 new_primMulNat0(Zero, Zero) 17.72/6.56 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 17.72/6.56 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 17.72/6.56 new_primPlusNat1(Zero, Zero) 17.72/6.56 new_esEs7(x0, x1, ty_Int) 17.72/6.56 new_esEs7(x0, x1, ty_Double) 17.72/6.56 new_esEs18(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 17.72/6.56 new_esEs24(x0, x1, ty_Bool) 17.72/6.56 new_esEs19(Just(x0), Nothing, x1) 17.72/6.56 new_esEs6(x0, x1, ty_Char) 17.72/6.56 new_esEs25(x0, x1, app(ty_Maybe, x2)) 17.72/6.56 new_esEs19(Just(x0), Just(x1), ty_Float) 17.72/6.56 new_esEs4(:(x0, x1), [], x2) 17.72/6.56 new_esEs7(x0, x1, app(ty_Maybe, x2)) 17.72/6.56 new_esEs18(Right(x0), Right(x1), x2, ty_Float) 17.72/6.56 new_esEs19(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 17.72/6.56 new_esEs18(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 17.72/6.56 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 17.72/6.56 new_esEs6(x0, x1, ty_Int) 17.72/6.56 new_esEs21(x0, x1, ty_Integer) 17.72/6.56 new_esEs19(Just(x0), Just(x1), app(ty_Ratio, x2)) 17.72/6.56 new_primEqInt(Pos(Zero), Pos(Zero)) 17.72/6.56 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 17.72/6.56 new_esEs18(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 17.72/6.56 new_esEs18(Left(x0), Left(x1), ty_Bool, x2) 17.72/6.56 new_esEs18(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 17.72/6.56 new_asAs(True, x0) 17.72/6.56 new_esEs11(Double(x0, x1), Double(x2, x3)) 17.72/6.56 new_esEs6(x0, x1, app(ty_[], x2)) 17.72/6.56 new_esEs19(Just(x0), Just(x1), app(ty_[], x2)) 17.72/6.56 new_primPlusNat1(Succ(x0), Succ(x1)) 17.72/6.56 new_esEs9(Float(x0, x1), Float(x2, x3)) 17.72/6.56 new_primEqInt(Neg(Zero), Neg(Zero)) 17.72/6.56 new_esEs6(x0, x1, ty_Ordering) 17.72/6.56 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 17.72/6.56 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 17.72/6.56 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 17.72/6.56 new_esEs18(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 17.72/6.56 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 17.72/6.56 new_esEs6(x0, x1, ty_@0) 17.72/6.56 new_esEs6(x0, x1, ty_Float) 17.72/6.56 new_esEs20(x0, x1, ty_@0) 17.72/6.56 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 17.72/6.56 new_esEs25(x0, x1, ty_Ordering) 17.72/6.56 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 17.72/6.56 new_esEs20(x0, x1, ty_Double) 17.72/6.56 new_esEs18(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 17.72/6.56 new_sr(Pos(x0), Pos(x1)) 17.72/6.56 new_esEs24(x0, x1, ty_Char) 17.72/6.56 new_esEs17(LT, EQ) 17.72/6.56 new_esEs17(EQ, LT) 17.72/6.56 new_esEs19(Just(x0), Just(x1), ty_Integer) 17.72/6.56 new_esEs23(x0, x1, ty_@0) 17.72/6.56 new_esEs18(Left(x0), Left(x1), ty_Float, x2) 17.72/6.56 new_esEs10(True, True) 17.72/6.56 new_esEs23(x0, x1, ty_Float) 17.72/6.56 new_esEs23(x0, x1, ty_Bool) 17.72/6.56 new_esEs7(x0, x1, ty_Char) 17.72/6.56 new_esEs17(GT, GT) 17.72/6.56 new_primEqNat0(Succ(x0), Zero) 17.72/6.56 new_esEs24(x0, x1, ty_Integer) 17.72/6.56 new_esEs18(Left(x0), Left(x1), ty_@0, x2) 17.72/6.56 new_esEs17(EQ, GT) 17.72/6.56 new_esEs17(GT, EQ) 17.72/6.56 new_esEs18(Left(x0), Left(x1), ty_Char, x2) 17.72/6.56 new_esEs18(Right(x0), Right(x1), x2, ty_@0) 17.72/6.56 new_primEqInt(Pos(Zero), Neg(Zero)) 17.72/6.56 new_primEqInt(Neg(Zero), Pos(Zero)) 17.72/6.56 new_esEs25(x0, x1, ty_Integer) 17.72/6.56 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 17.72/6.56 new_esEs18(Left(x0), Left(x1), ty_Double, x2) 17.72/6.56 new_esEs18(Right(x0), Right(x1), x2, ty_Double) 17.72/6.56 new_primPlusNat0(Zero, x0) 17.72/6.56 new_esEs7(x0, x1, ty_@0) 17.72/6.56 new_primMulNat0(Succ(x0), Succ(x1)) 17.72/6.56 new_esEs17(EQ, EQ) 17.72/6.56 new_esEs18(Right(x0), Right(x1), x2, ty_Char) 17.72/6.56 new_esEs18(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 17.72/6.56 new_esEs19(Just(x0), Just(x1), ty_Ordering) 17.72/6.56 new_primPlusNat0(Succ(x0), x1) 17.72/6.56 new_esEs25(x0, x1, app(ty_Ratio, x2)) 17.72/6.56 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 17.72/6.56 new_esEs13(Char(x0), Char(x1)) 17.72/6.56 new_esEs22(x0, x1, ty_Integer) 17.72/6.56 new_esEs18(Left(x0), Left(x1), ty_Int, x2) 17.72/6.56 new_esEs23(x0, x1, ty_Char) 17.72/6.56 new_primEqNat0(Zero, Succ(x0)) 17.72/6.56 new_primPlusNat1(Succ(x0), Zero) 17.72/6.56 new_esEs23(x0, x1, ty_Double) 17.72/6.56 new_esEs7(x0, x1, ty_Float) 17.72/6.56 new_esEs20(x0, x1, ty_Float) 17.72/6.56 new_esEs15(:%(x0, x1), :%(x2, x3), x4) 17.72/6.56 new_esEs18(Right(x0), Right(x1), x2, ty_Int) 17.72/6.56 new_esEs19(Just(x0), Just(x1), ty_@0) 17.72/6.56 new_esEs20(x0, x1, ty_Char) 17.72/6.56 new_esEs17(LT, GT) 17.72/6.56 new_esEs17(GT, LT) 17.72/6.56 new_esEs25(x0, x1, app(ty_[], x2)) 17.72/6.56 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 17.72/6.56 new_esEs23(x0, x1, ty_Int) 17.72/6.56 new_esEs24(x0, x1, ty_Double) 17.72/6.56 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 17.72/6.56 new_esEs18(Right(x0), Right(x1), x2, ty_Bool) 17.72/6.56 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 17.72/6.56 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 17.72/6.56 new_esEs20(x0, x1, app(ty_Ratio, x2)) 17.72/6.56 new_esEs24(x0, x1, ty_Float) 17.72/6.56 new_esEs18(Right(x0), Right(x1), x2, ty_Integer) 17.72/6.56 new_esEs20(x0, x1, ty_Int) 17.72/6.56 new_esEs19(Nothing, Just(x0), x1) 17.72/6.56 new_esEs19(Just(x0), Just(x1), ty_Bool) 17.72/6.56 new_esEs12(x0, x1) 17.72/6.56 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 17.72/6.56 new_esEs24(x0, x1, app(ty_Maybe, x2)) 17.72/6.56 new_esEs4([], :(x0, x1), x2) 17.72/6.56 new_esEs18(Left(x0), Left(x1), app(ty_[], x2), x3) 17.72/6.56 new_esEs23(x0, x1, app(ty_Ratio, x2)) 17.72/6.56 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 17.72/6.56 new_esEs21(x0, x1, ty_Int) 17.72/6.56 new_esEs6(x0, x1, app(ty_Maybe, x2)) 17.72/6.56 new_esEs7(x0, x1, app(ty_[], x2)) 17.72/6.56 new_esEs7(x0, x1, app(ty_Ratio, x2)) 17.72/6.56 new_esEs6(x0, x1, ty_Integer) 17.72/6.56 new_esEs19(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 17.72/6.56 new_esEs24(x0, x1, ty_Ordering) 17.72/6.56 new_esEs4(:(x0, x1), :(x2, x3), x4) 17.72/6.56 new_primMulNat0(Succ(x0), Zero) 17.72/6.56 new_esEs24(x0, x1, ty_Int) 17.72/6.56 new_esEs24(x0, x1, app(ty_[], x2)) 17.72/6.56 new_esEs20(x0, x1, app(ty_[], x2)) 17.72/6.56 new_esEs7(x0, x1, ty_Bool) 17.72/6.56 new_esEs8(@0, @0) 17.72/6.56 new_esEs10(False, False) 17.72/6.56 new_esEs19(Just(x0), Just(x1), ty_Char) 17.72/6.56 new_esEs18(Left(x0), Right(x1), x2, x3) 17.72/6.56 new_esEs18(Right(x0), Left(x1), x2, x3) 17.72/6.56 new_primEqNat0(Zero, Zero) 17.72/6.56 new_primMulNat0(Zero, Succ(x0)) 17.72/6.56 new_esEs5(@2(x0, x1), @2(x2, x3), x4, x5) 17.72/6.56 new_sr(Neg(x0), Neg(x1)) 17.72/6.56 new_esEs6(x0, x1, ty_Bool) 17.72/6.56 new_primPlusNat1(Zero, Succ(x0)) 17.72/6.56 new_esEs18(Right(x0), Right(x1), x2, app(ty_[], x3)) 17.72/6.56 new_esEs22(x0, x1, ty_Int) 17.72/6.56 new_esEs25(x0, x1, ty_Float) 17.72/6.56 new_esEs23(x0, x1, app(ty_Maybe, x2)) 17.72/6.56 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 17.72/6.56 new_esEs25(x0, x1, ty_Bool) 17.72/6.56 new_esEs17(LT, LT) 17.72/6.56 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 17.72/6.56 new_esEs20(x0, x1, ty_Bool) 17.72/6.56 new_esEs18(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 17.72/6.56 new_esEs19(Nothing, Nothing, x0) 17.72/6.56 new_esEs18(Left(x0), Left(x1), ty_Integer, x2) 17.72/6.56 new_esEs20(x0, x1, ty_Ordering) 17.72/6.56 new_esEs24(x0, x1, app(ty_Ratio, x2)) 17.72/6.56 new_esEs25(x0, x1, ty_Double) 17.72/6.56 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 17.72/6.56 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 17.72/6.56 new_sr(Pos(x0), Neg(x1)) 17.72/6.56 new_sr(Neg(x0), Pos(x1)) 17.72/6.56 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 17.72/6.56 new_esEs6(x0, x1, ty_Double) 17.72/6.56 new_esEs4([], [], x0) 17.72/6.56 new_esEs23(x0, x1, ty_Ordering) 17.72/6.56 new_esEs6(x0, x1, app(ty_Ratio, x2)) 17.72/6.56 new_esEs25(x0, x1, ty_Int) 17.72/6.56 new_esEs7(x0, x1, ty_Integer) 17.72/6.56 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 17.72/6.56 new_esEs10(False, True) 17.72/6.56 new_esEs10(True, False) 17.72/6.56 new_esEs25(x0, x1, ty_@0) 17.72/6.56 new_esEs20(x0, x1, ty_Integer) 17.72/6.56 new_esEs18(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 17.72/6.56 new_esEs18(Left(x0), Left(x1), ty_Ordering, x2) 17.72/6.56 new_asAs(False, x0) 17.72/6.56 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 17.72/6.56 new_primEqNat0(Succ(x0), Succ(x1)) 17.72/6.56 new_esEs19(Just(x0), Just(x1), ty_Int) 17.72/6.56 new_esEs20(x0, x1, app(ty_Maybe, x2)) 17.72/6.56 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 17.72/6.56 new_esEs19(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 17.72/6.56 new_esEs16(Integer(x0), Integer(x1)) 17.72/6.56 17.72/6.56 We have to consider all minimal (P,Q,R)-chains. 17.72/6.56 ---------------------------------------- 17.72/6.56 17.72/6.56 (31) QDPSizeChangeProof (EQUIVALENT) 17.72/6.56 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 17.72/6.56 17.72/6.56 From the DPs we obtained the following set of size-change graphs: 17.72/6.56 *new_listToMaybe(yv35, False, :(yv41110, yv41111), ba) -> new_listToMaybe(new_primPlusNat0(yv35, Zero), new_esEs4([], yv41110, ba), yv41111, ba) 17.72/6.56 The graph contains the following edges 3 > 3, 4 >= 4 17.72/6.56 17.72/6.56 17.72/6.56 ---------------------------------------- 17.72/6.56 17.72/6.56 (32) 17.72/6.56 YES 18.04/6.61 EOF