13.22/5.10 YES 15.87/5.85 proof of /export/starexec/sandbox2/benchmark/theBenchmark.hs 15.87/5.85 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 15.87/5.85 15.87/5.85 15.87/5.85 H-Termination with start terms of the given HASKELL could be proven: 15.87/5.85 15.87/5.85 (0) HASKELL 15.87/5.85 (1) LR [EQUIVALENT, 0 ms] 15.87/5.85 (2) HASKELL 15.87/5.85 (3) CR [EQUIVALENT, 0 ms] 15.87/5.85 (4) HASKELL 15.87/5.85 (5) IFR [EQUIVALENT, 0 ms] 15.87/5.85 (6) HASKELL 15.87/5.85 (7) BR [EQUIVALENT, 14 ms] 15.87/5.85 (8) HASKELL 15.87/5.85 (9) COR [EQUIVALENT, 0 ms] 15.87/5.85 (10) HASKELL 15.87/5.85 (11) NumRed [SOUND, 3 ms] 15.87/5.85 (12) HASKELL 15.87/5.85 (13) Narrow [SOUND, 0 ms] 15.87/5.85 (14) AND 15.87/5.85 (15) QDP 15.87/5.85 (16) QDPSizeChangeProof [EQUIVALENT, 0 ms] 15.87/5.85 (17) YES 15.87/5.85 (18) QDP 15.87/5.85 (19) QDPSizeChangeProof [EQUIVALENT, 0 ms] 15.87/5.85 (20) YES 15.87/5.85 (21) QDP 15.87/5.85 (22) QDPSizeChangeProof [EQUIVALENT, 0 ms] 15.87/5.85 (23) YES 15.87/5.85 (24) QDP 15.87/5.85 (25) QDPSizeChangeProof [EQUIVALENT, 0 ms] 15.87/5.85 (26) YES 15.87/5.85 (27) QDP 15.87/5.85 (28) QDPSizeChangeProof [EQUIVALENT, 0 ms] 15.87/5.85 (29) YES 15.87/5.85 15.87/5.85 15.87/5.85 ---------------------------------------- 15.87/5.85 15.87/5.85 (0) 15.87/5.85 Obligation: 15.87/5.85 mainModule Main 15.87/5.85 module Maybe where { 15.87/5.85 import qualified List; 15.87/5.85 import qualified Main; 15.87/5.85 import qualified Prelude; 15.87/5.85 } 15.87/5.85 module List where { 15.87/5.85 import qualified Main; 15.87/5.85 import qualified Maybe; 15.87/5.85 import qualified Prelude; 15.87/5.85 elemIndices :: Eq a => a -> [a] -> [Int]; 15.87/5.85 elemIndices x = findIndices (== x); 15.87/5.85 15.87/5.85 findIndices :: (a -> Bool) -> [a] -> [Int]; 15.87/5.85 findIndices p xs = concatMap (\vv1 ->case vv1 of { 15.87/5.85 (x,i)-> if p x then i : [] else []; 15.87/5.85 _-> []; 15.87/5.85 } ) (zip xs (enumFrom 0)); 15.87/5.85 15.87/5.85 } 15.87/5.85 module Main where { 15.87/5.85 import qualified List; 15.87/5.85 import qualified Maybe; 15.87/5.85 import qualified Prelude; 15.87/5.85 } 15.87/5.85 15.87/5.85 ---------------------------------------- 15.87/5.85 15.87/5.85 (1) LR (EQUIVALENT) 15.87/5.85 Lambda Reductions: 15.87/5.85 The following Lambda expression 15.87/5.85 "\ab->(a,b)" 15.87/5.85 is transformed to 15.87/5.85 "zip0 a b = (a,b); 15.87/5.85 " 15.87/5.85 The following Lambda expression 15.87/5.85 "\vv1->case vv1 of { 15.87/5.85 (x,i) -> if p x then i : [] else []; 15.87/5.85 _ -> []} 15.87/5.85 " 15.87/5.85 is transformed to 15.87/5.85 "findIndices0 p vv1 = case vv1 of { 15.87/5.85 (x,i) -> if p x then i : [] else []; 15.87/5.85 _ -> []} 15.87/5.85 ; 15.87/5.85 " 15.87/5.85 15.87/5.85 ---------------------------------------- 15.87/5.85 15.87/5.85 (2) 15.87/5.85 Obligation: 15.87/5.85 mainModule Main 15.87/5.85 module Maybe where { 15.87/5.85 import qualified List; 15.87/5.85 import qualified Main; 15.87/5.85 import qualified Prelude; 15.87/5.85 } 15.87/5.85 module List where { 15.87/5.85 import qualified Main; 15.87/5.85 import qualified Maybe; 15.87/5.85 import qualified Prelude; 15.87/5.85 elemIndices :: Eq a => a -> [a] -> [Int]; 15.87/5.85 elemIndices x = findIndices (== x); 15.87/5.85 15.87/5.85 findIndices :: (a -> Bool) -> [a] -> [Int]; 15.87/5.85 findIndices p xs = concatMap (findIndices0 p) (zip xs (enumFrom 0)); 15.87/5.85 15.87/5.85 findIndices0 p vv1 = case vv1 of { 15.87/5.85 (x,i)-> if p x then i : [] else []; 15.87/5.85 _-> []; 15.87/5.85 } ; 15.87/5.85 15.87/5.85 } 15.87/5.85 module Main where { 15.87/5.85 import qualified List; 15.87/5.85 import qualified Maybe; 15.87/5.85 import qualified Prelude; 15.87/5.85 } 15.87/5.85 15.87/5.85 ---------------------------------------- 15.87/5.85 15.87/5.85 (3) CR (EQUIVALENT) 15.87/5.85 Case Reductions: 15.87/5.85 The following Case expression 15.87/5.85 "case vv1 of { 15.87/5.85 (x,i) -> if p x then i : [] else []; 15.87/5.85 _ -> []} 15.87/5.85 " 15.87/5.85 is transformed to 15.87/5.85 "findIndices00 p (x,i) = if p x then i : [] else []; 15.87/5.85 findIndices00 p _ = []; 15.87/5.85 " 15.87/5.85 15.87/5.85 ---------------------------------------- 15.87/5.85 15.87/5.85 (4) 15.87/5.85 Obligation: 15.87/5.85 mainModule Main 15.87/5.85 module Maybe where { 15.87/5.85 import qualified List; 15.87/5.85 import qualified Main; 15.87/5.85 import qualified Prelude; 15.87/5.85 } 15.87/5.85 module List where { 15.87/5.85 import qualified Main; 15.87/5.85 import qualified Maybe; 15.87/5.85 import qualified Prelude; 15.87/5.85 elemIndices :: Eq a => a -> [a] -> [Int]; 15.87/5.85 elemIndices x = findIndices (== x); 15.87/5.85 15.87/5.85 findIndices :: (a -> Bool) -> [a] -> [Int]; 15.87/5.85 findIndices p xs = concatMap (findIndices0 p) (zip xs (enumFrom 0)); 15.87/5.85 15.87/5.85 findIndices0 p vv1 = findIndices00 p vv1; 15.87/5.85 15.87/5.85 findIndices00 p (x,i) = if p x then i : [] else []; 15.87/5.85 findIndices00 p _ = []; 15.87/5.85 15.87/5.85 } 15.87/5.85 module Main where { 15.87/5.85 import qualified List; 15.87/5.85 import qualified Maybe; 15.87/5.85 import qualified Prelude; 15.87/5.85 } 15.87/5.85 15.87/5.85 ---------------------------------------- 15.87/5.85 15.87/5.85 (5) IFR (EQUIVALENT) 15.87/5.85 If Reductions: 15.87/5.85 The following If expression 15.87/5.85 "if p x then i : [] else []" 15.87/5.85 is transformed to 15.87/5.85 "findIndices000 i True = i : []; 15.87/5.85 findIndices000 i False = []; 15.87/5.85 " 15.87/5.85 15.87/5.85 ---------------------------------------- 15.87/5.85 15.87/5.85 (6) 15.87/5.85 Obligation: 15.87/5.85 mainModule Main 15.87/5.85 module Maybe where { 15.87/5.85 import qualified List; 15.87/5.85 import qualified Main; 15.87/5.85 import qualified Prelude; 15.87/5.85 } 15.87/5.85 module List where { 15.87/5.85 import qualified Main; 15.87/5.85 import qualified Maybe; 15.87/5.85 import qualified Prelude; 15.87/5.85 elemIndices :: Eq a => a -> [a] -> [Int]; 15.87/5.85 elemIndices x = findIndices (== x); 15.87/5.85 15.87/5.85 findIndices :: (a -> Bool) -> [a] -> [Int]; 15.87/5.85 findIndices p xs = concatMap (findIndices0 p) (zip xs (enumFrom 0)); 15.87/5.85 15.87/5.85 findIndices0 p vv1 = findIndices00 p vv1; 15.87/5.85 15.87/5.85 findIndices00 p (x,i) = findIndices000 i (p x); 15.87/5.85 findIndices00 p _ = []; 15.87/5.85 15.87/5.85 findIndices000 i True = i : []; 15.87/5.85 findIndices000 i False = []; 15.87/5.85 15.87/5.85 } 15.87/5.85 module Main where { 15.87/5.85 import qualified List; 15.87/5.85 import qualified Maybe; 15.87/5.85 import qualified Prelude; 15.87/5.85 } 15.87/5.85 15.87/5.85 ---------------------------------------- 15.87/5.85 15.87/5.85 (7) BR (EQUIVALENT) 15.87/5.85 Replaced joker patterns by fresh variables and removed binding patterns. 15.87/5.85 ---------------------------------------- 15.87/5.85 15.87/5.85 (8) 15.87/5.85 Obligation: 15.87/5.85 mainModule Main 15.87/5.85 module Maybe where { 15.87/5.85 import qualified List; 15.87/5.85 import qualified Main; 15.87/5.85 import qualified Prelude; 15.87/5.85 } 15.87/5.85 module List where { 15.87/5.85 import qualified Main; 15.87/5.85 import qualified Maybe; 15.87/5.85 import qualified Prelude; 15.87/5.85 elemIndices :: Eq a => a -> [a] -> [Int]; 15.87/5.85 elemIndices x = findIndices (== x); 15.87/5.85 15.87/5.85 findIndices :: (a -> Bool) -> [a] -> [Int]; 15.87/5.85 findIndices p xs = concatMap (findIndices0 p) (zip xs (enumFrom 0)); 15.87/5.85 15.87/5.85 findIndices0 p vv1 = findIndices00 p vv1; 15.87/5.85 15.87/5.85 findIndices00 p (x,i) = findIndices000 i (p x); 15.87/5.85 findIndices00 p xz = []; 15.87/5.85 15.87/5.85 findIndices000 i True = i : []; 15.87/5.85 findIndices000 i False = []; 15.87/5.85 15.87/5.85 } 15.87/5.85 module Main where { 15.87/5.85 import qualified List; 15.87/5.85 import qualified Maybe; 15.87/5.85 import qualified Prelude; 15.87/5.85 } 15.87/5.85 15.87/5.85 ---------------------------------------- 15.87/5.85 15.87/5.85 (9) COR (EQUIVALENT) 15.87/5.85 Cond Reductions: 15.87/5.85 The following Function with conditions 15.87/5.85 "undefined |Falseundefined; 15.87/5.85 " 15.87/5.85 is transformed to 15.87/5.85 "undefined = undefined1; 15.87/5.85 " 15.87/5.85 "undefined0 True = undefined; 15.87/5.85 " 15.87/5.85 "undefined1 = undefined0 False; 15.87/5.85 " 15.87/5.85 15.87/5.85 ---------------------------------------- 15.87/5.85 15.87/5.85 (10) 15.87/5.85 Obligation: 15.87/5.85 mainModule Main 15.87/5.85 module Maybe where { 15.87/5.85 import qualified List; 15.87/5.85 import qualified Main; 15.87/5.85 import qualified Prelude; 15.87/5.85 } 15.87/5.85 module List where { 15.87/5.85 import qualified Main; 15.87/5.85 import qualified Maybe; 15.87/5.85 import qualified Prelude; 15.87/5.85 elemIndices :: Eq a => a -> [a] -> [Int]; 15.87/5.85 elemIndices x = findIndices (== x); 15.87/5.85 15.87/5.85 findIndices :: (a -> Bool) -> [a] -> [Int]; 15.87/5.85 findIndices p xs = concatMap (findIndices0 p) (zip xs (enumFrom 0)); 15.87/5.85 15.87/5.85 findIndices0 p vv1 = findIndices00 p vv1; 15.87/5.85 15.87/5.85 findIndices00 p (x,i) = findIndices000 i (p x); 15.87/5.85 findIndices00 p xz = []; 15.87/5.85 15.87/5.85 findIndices000 i True = i : []; 15.87/5.85 findIndices000 i False = []; 15.87/5.85 15.87/5.85 } 15.87/5.85 module Main where { 15.87/5.85 import qualified List; 15.87/5.85 import qualified Maybe; 15.87/5.85 import qualified Prelude; 15.87/5.85 } 15.87/5.85 15.87/5.85 ---------------------------------------- 15.87/5.85 15.87/5.85 (11) NumRed (SOUND) 15.87/5.85 Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. 15.87/5.85 ---------------------------------------- 15.87/5.85 15.87/5.85 (12) 15.87/5.85 Obligation: 15.87/5.85 mainModule Main 15.87/5.85 module Maybe where { 15.87/5.85 import qualified List; 15.87/5.85 import qualified Main; 15.87/5.85 import qualified Prelude; 15.87/5.85 } 15.87/5.85 module List where { 15.87/5.85 import qualified Main; 15.87/5.85 import qualified Maybe; 15.87/5.85 import qualified Prelude; 15.87/5.85 elemIndices :: Eq a => a -> [a] -> [Int]; 15.87/5.85 elemIndices x = findIndices (== x); 15.87/5.85 15.87/5.85 findIndices :: (a -> Bool) -> [a] -> [Int]; 15.87/5.85 findIndices p xs = concatMap (findIndices0 p) (zip xs (enumFrom (Pos Zero))); 15.87/5.85 15.87/5.85 findIndices0 p vv1 = findIndices00 p vv1; 15.87/5.85 15.87/5.85 findIndices00 p (x,i) = findIndices000 i (p x); 15.87/5.85 findIndices00 p xz = []; 15.87/5.85 15.87/5.85 findIndices000 i True = i : []; 15.87/5.85 findIndices000 i False = []; 15.87/5.85 15.87/5.85 } 15.87/5.85 module Main where { 15.87/5.85 import qualified List; 15.87/5.85 import qualified Maybe; 15.87/5.85 import qualified Prelude; 15.87/5.85 } 15.87/5.85 15.87/5.85 ---------------------------------------- 15.87/5.85 15.87/5.85 (13) Narrow (SOUND) 15.87/5.85 Haskell To QDPs 15.87/5.85 15.87/5.85 digraph dp_graph { 15.87/5.85 node [outthreshold=100, inthreshold=100];1[label="List.elemIndices",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 15.87/5.85 3[label="List.elemIndices yu3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 15.87/5.85 4[label="List.elemIndices yu3 yu4",fontsize=16,color="black",shape="triangle"];4 -> 5[label="",style="solid", color="black", weight=3]; 15.87/5.85 5[label="List.findIndices (yu3 ==) yu4",fontsize=16,color="black",shape="box"];5 -> 6[label="",style="solid", color="black", weight=3]; 15.87/5.85 6[label="concatMap (List.findIndices0 (yu3 ==)) (zip yu4 (enumFrom (Pos Zero)))",fontsize=16,color="black",shape="box"];6 -> 7[label="",style="solid", color="black", weight=3]; 15.87/5.85 7[label="concat . map (List.findIndices0 (yu3 ==))",fontsize=16,color="black",shape="box"];7 -> 8[label="",style="solid", color="black", weight=3]; 15.87/5.85 8[label="concat (map (List.findIndices0 (yu3 ==)) (zip yu4 (enumFrom (Pos Zero))))",fontsize=16,color="black",shape="box"];8 -> 9[label="",style="solid", color="black", weight=3]; 15.87/5.85 9[label="foldr (++) [] (map (List.findIndices0 (yu3 ==)) (zip yu4 (enumFrom (Pos Zero))))",fontsize=16,color="black",shape="box"];9 -> 10[label="",style="solid", color="black", weight=3]; 15.87/5.85 10[label="foldr (++) [] (map (List.findIndices0 (yu3 ==)) (zipWith zip0 yu4 (enumFrom (Pos Zero))))",fontsize=16,color="burlywood",shape="box"];2901[label="yu4/yu40 : yu41",fontsize=10,color="white",style="solid",shape="box"];10 -> 2901[label="",style="solid", color="burlywood", weight=9]; 15.87/5.85 2901 -> 11[label="",style="solid", color="burlywood", weight=3]; 15.87/5.85 2902[label="yu4/[]",fontsize=10,color="white",style="solid",shape="box"];10 -> 2902[label="",style="solid", color="burlywood", weight=9]; 15.87/5.85 2902 -> 12[label="",style="solid", color="burlywood", weight=3]; 15.87/5.85 11[label="foldr (++) [] (map (List.findIndices0 (yu3 ==)) (zipWith zip0 (yu40 : yu41) (enumFrom (Pos Zero))))",fontsize=16,color="black",shape="box"];11 -> 13[label="",style="solid", color="black", weight=3]; 15.87/5.85 12[label="foldr (++) [] (map (List.findIndices0 (yu3 ==)) (zipWith zip0 [] (enumFrom (Pos Zero))))",fontsize=16,color="black",shape="box"];12 -> 14[label="",style="solid", color="black", weight=3]; 15.87/5.85 13[label="foldr (++) [] (map (List.findIndices0 (yu3 ==)) (zipWith zip0 (yu40 : yu41) (numericEnumFrom (Pos Zero))))",fontsize=16,color="black",shape="box"];13 -> 15[label="",style="solid", color="black", weight=3]; 15.87/5.85 14[label="foldr (++) [] (map (List.findIndices0 (yu3 ==)) [])",fontsize=16,color="black",shape="triangle"];14 -> 16[label="",style="solid", color="black", weight=3]; 15.87/5.85 15[label="foldr (++) [] (map (List.findIndices0 (yu3 ==)) (zipWith zip0 (yu40 : yu41) (Pos Zero : (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];15 -> 17[label="",style="solid", color="black", weight=3]; 15.87/5.85 16[label="foldr (++) [] []",fontsize=16,color="black",shape="box"];16 -> 18[label="",style="solid", color="black", weight=3]; 15.87/5.85 17[label="foldr (++) [] (map (List.findIndices0 (yu3 ==)) (zip0 yu40 (Pos Zero) : zipWith zip0 yu41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];17 -> 19[label="",style="solid", color="black", weight=3]; 15.87/5.85 18[label="[]",fontsize=16,color="green",shape="box"];19[label="foldr (++) [] (List.findIndices0 (yu3 ==) (zip0 yu40 (Pos Zero)) : map (List.findIndices0 (yu3 ==)) (zipWith zip0 yu41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];19 -> 20[label="",style="solid", color="black", weight=3]; 15.87/5.85 20 -> 2174[label="",style="dashed", color="red", weight=0]; 15.87/5.85 20[label="(++) List.findIndices0 (yu3 ==) (zip0 yu40 (Pos Zero)) foldr (++) [] (map (List.findIndices0 (yu3 ==)) (zipWith zip0 yu41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];20 -> 2175[label="",style="dashed", color="magenta", weight=3]; 15.87/5.85 20 -> 2176[label="",style="dashed", color="magenta", weight=3]; 15.87/5.85 20 -> 2177[label="",style="dashed", color="magenta", weight=3]; 15.87/5.85 2175 -> 2856[label="",style="dashed", color="red", weight=0]; 15.87/5.85 2175[label="foldr (++) [] (map (List.findIndices0 (yu3 ==)) (zipWith zip0 yu41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];2175 -> 2857[label="",style="dashed", color="magenta", weight=3]; 15.87/5.85 2175 -> 2858[label="",style="dashed", color="magenta", weight=3]; 15.87/5.85 2176[label="Zero",fontsize=16,color="green",shape="box"];2177[label="yu40",fontsize=16,color="green",shape="box"];2174[label="(++) List.findIndices0 (yu3 ==) (zip0 yu4110 (Pos yu66)) yu68",fontsize=16,color="black",shape="triangle"];2174 -> 2181[label="",style="solid", color="black", weight=3]; 15.87/5.85 2857[label="Zero",fontsize=16,color="green",shape="box"];2858[label="yu41",fontsize=16,color="green",shape="box"];2856[label="foldr (++) [] (map (List.findIndices0 (yu3 ==)) (zipWith zip0 yu4111 (numericEnumFrom $! Pos yu92 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="triangle"];2903[label="yu4111/yu41110 : yu41111",fontsize=10,color="white",style="solid",shape="box"];2856 -> 2903[label="",style="solid", color="burlywood", weight=9]; 15.87/5.85 2903 -> 2860[label="",style="solid", color="burlywood", weight=3]; 15.87/5.85 2904[label="yu4111/[]",fontsize=10,color="white",style="solid",shape="box"];2856 -> 2904[label="",style="solid", color="burlywood", weight=9]; 15.87/5.85 2904 -> 2861[label="",style="solid", color="burlywood", weight=3]; 15.87/5.85 2181[label="(++) List.findIndices00 (yu3 ==) (zip0 yu4110 (Pos yu66)) yu68",fontsize=16,color="black",shape="box"];2181 -> 2184[label="",style="solid", color="black", weight=3]; 15.87/5.85 2860[label="foldr (++) [] (map (List.findIndices0 (yu3 ==)) (zipWith zip0 (yu41110 : yu41111) (numericEnumFrom $! Pos yu92 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];2860 -> 2864[label="",style="solid", color="black", weight=3]; 15.87/5.85 2861[label="foldr (++) [] (map (List.findIndices0 (yu3 ==)) (zipWith zip0 [] (numericEnumFrom $! Pos yu92 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];2861 -> 2865[label="",style="solid", color="black", weight=3]; 15.87/5.85 2184[label="(++) List.findIndices00 (yu3 ==) (yu4110,Pos yu66) yu68",fontsize=16,color="black",shape="box"];2184 -> 2186[label="",style="solid", color="black", weight=3]; 15.87/5.85 2864[label="foldr (++) [] (map (List.findIndices0 (yu3 ==)) (zipWith zip0 (yu41110 : yu41111) (Pos yu92 + fromInt (Pos (Succ Zero)) `seq` numericEnumFrom (Pos yu92 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];2864 -> 2867[label="",style="solid", color="black", weight=3]; 15.87/5.85 2865 -> 14[label="",style="dashed", color="red", weight=0]; 15.87/5.85 2865[label="foldr (++) [] (map (List.findIndices0 (yu3 ==)) [])",fontsize=16,color="magenta"];2186 -> 2203[label="",style="dashed", color="red", weight=0]; 15.87/5.85 2186[label="(++) List.findIndices000 (Pos yu66) (yu3 == yu4110) yu68",fontsize=16,color="magenta"];2186 -> 2204[label="",style="dashed", color="magenta", weight=3]; 15.87/5.85 2186 -> 2205[label="",style="dashed", color="magenta", weight=3]; 15.87/5.85 2186 -> 2206[label="",style="dashed", color="magenta", weight=3]; 15.87/5.85 2867[label="foldr (++) [] (map (List.findIndices0 (yu3 ==)) (zipWith zip0 (yu41110 : yu41111) (enforceWHNF (WHNF (Pos yu92 + fromInt (Pos (Succ Zero)))) (numericEnumFrom (Pos yu92 + fromInt (Pos (Succ Zero)))))))",fontsize=16,color="black",shape="box"];2867 -> 2870[label="",style="solid", color="black", weight=3]; 15.87/5.85 2204[label="yu66",fontsize=16,color="green",shape="box"];2205[label="yu3 == yu4110",fontsize=16,color="burlywood",shape="triangle"];2905[label="yu3/Nothing",fontsize=10,color="white",style="solid",shape="box"];2205 -> 2905[label="",style="solid", color="burlywood", weight=9]; 15.87/5.85 2905 -> 2219[label="",style="solid", color="burlywood", weight=3]; 15.87/5.85 2906[label="yu3/Just yu30",fontsize=10,color="white",style="solid",shape="box"];2205 -> 2906[label="",style="solid", color="burlywood", weight=9]; 15.87/5.85 2906 -> 2220[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2206[label="yu68",fontsize=16,color="green",shape="box"];2203[label="(++) List.findIndices000 (Pos yu73) yu74 yu75",fontsize=16,color="burlywood",shape="triangle"];2907[label="yu74/False",fontsize=10,color="white",style="solid",shape="box"];2203 -> 2907[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2907 -> 2221[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2908[label="yu74/True",fontsize=10,color="white",style="solid",shape="box"];2203 -> 2908[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2908 -> 2222[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2870[label="foldr (++) [] (map (List.findIndices0 (yu3 ==)) (zipWith zip0 (yu41110 : yu41111) (enforceWHNF (WHNF (primPlusInt (Pos yu92) (fromInt (Pos (Succ Zero))))) (numericEnumFrom (primPlusInt (Pos yu92) (fromInt (Pos (Succ Zero))))))))",fontsize=16,color="black",shape="box"];2870 -> 2875[label="",style="solid", color="black", weight=3]; 15.87/5.86 2219[label="Nothing == yu4110",fontsize=16,color="burlywood",shape="box"];2909[label="yu4110/Nothing",fontsize=10,color="white",style="solid",shape="box"];2219 -> 2909[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2909 -> 2224[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2910[label="yu4110/Just yu41100",fontsize=10,color="white",style="solid",shape="box"];2219 -> 2910[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2910 -> 2225[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2220[label="Just yu30 == yu4110",fontsize=16,color="burlywood",shape="box"];2911[label="yu4110/Nothing",fontsize=10,color="white",style="solid",shape="box"];2220 -> 2911[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2911 -> 2226[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2912[label="yu4110/Just yu41100",fontsize=10,color="white",style="solid",shape="box"];2220 -> 2912[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2912 -> 2227[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2221[label="(++) List.findIndices000 (Pos yu73) False yu75",fontsize=16,color="black",shape="box"];2221 -> 2228[label="",style="solid", color="black", weight=3]; 15.87/5.86 2222[label="(++) List.findIndices000 (Pos yu73) True yu75",fontsize=16,color="black",shape="box"];2222 -> 2229[label="",style="solid", color="black", weight=3]; 15.87/5.86 2875[label="foldr (++) [] (map (List.findIndices0 (yu3 ==)) (zipWith zip0 (yu41110 : yu41111) (enforceWHNF (WHNF (primPlusInt (Pos yu92) (Pos (Succ Zero)))) (numericEnumFrom (primPlusInt (Pos yu92) (Pos (Succ Zero)))))))",fontsize=16,color="black",shape="box"];2875 -> 2880[label="",style="solid", color="black", weight=3]; 15.87/5.86 2224[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];2224 -> 2231[label="",style="solid", color="black", weight=3]; 15.87/5.86 2225[label="Nothing == Just yu41100",fontsize=16,color="black",shape="box"];2225 -> 2232[label="",style="solid", color="black", weight=3]; 15.87/5.86 2226[label="Just yu30 == Nothing",fontsize=16,color="black",shape="box"];2226 -> 2233[label="",style="solid", color="black", weight=3]; 15.87/5.86 2227[label="Just yu30 == Just yu41100",fontsize=16,color="black",shape="box"];2227 -> 2234[label="",style="solid", color="black", weight=3]; 15.87/5.86 2228[label="(++) [] yu75",fontsize=16,color="black",shape="triangle"];2228 -> 2235[label="",style="solid", color="black", weight=3]; 15.87/5.86 2229[label="(++) (Pos yu73 : []) yu75",fontsize=16,color="black",shape="box"];2229 -> 2236[label="",style="solid", color="black", weight=3]; 15.87/5.86 2880 -> 2882[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2880[label="foldr (++) [] (map (List.findIndices0 (yu3 ==)) (zipWith zip0 (yu41110 : yu41111) (enforceWHNF (WHNF (Pos (primPlusNat yu92 (Succ Zero)))) (numericEnumFrom (Pos (primPlusNat yu92 (Succ Zero)))))))",fontsize=16,color="magenta"];2880 -> 2883[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2880 -> 2884[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2231[label="True",fontsize=16,color="green",shape="box"];2232[label="False",fontsize=16,color="green",shape="box"];2233[label="False",fontsize=16,color="green",shape="box"];2234[label="yu30 == yu41100",fontsize=16,color="blue",shape="box"];2913[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2234 -> 2913[label="",style="solid", color="blue", weight=9]; 15.87/5.86 2913 -> 2238[label="",style="solid", color="blue", weight=3]; 15.87/5.86 2914[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2234 -> 2914[label="",style="solid", color="blue", weight=9]; 15.87/5.86 2914 -> 2239[label="",style="solid", color="blue", weight=3]; 15.87/5.86 2915[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2234 -> 2915[label="",style="solid", color="blue", weight=9]; 15.87/5.86 2915 -> 2240[label="",style="solid", color="blue", weight=3]; 15.87/5.86 2916[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2234 -> 2916[label="",style="solid", color="blue", weight=9]; 15.87/5.86 2916 -> 2241[label="",style="solid", color="blue", weight=3]; 15.87/5.86 2917[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2234 -> 2917[label="",style="solid", color="blue", weight=9]; 15.87/5.86 2917 -> 2242[label="",style="solid", color="blue", weight=3]; 15.87/5.86 2918[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2234 -> 2918[label="",style="solid", color="blue", weight=9]; 15.87/5.86 2918 -> 2243[label="",style="solid", color="blue", weight=3]; 15.87/5.86 2919[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2234 -> 2919[label="",style="solid", color="blue", weight=9]; 15.87/5.86 2919 -> 2244[label="",style="solid", color="blue", weight=3]; 15.87/5.86 2920[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2234 -> 2920[label="",style="solid", color="blue", weight=9]; 15.87/5.86 2920 -> 2245[label="",style="solid", color="blue", weight=3]; 15.87/5.86 2921[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2234 -> 2921[label="",style="solid", color="blue", weight=9]; 15.87/5.86 2921 -> 2246[label="",style="solid", color="blue", weight=3]; 15.87/5.86 2922[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2234 -> 2922[label="",style="solid", color="blue", weight=9]; 15.87/5.86 2922 -> 2247[label="",style="solid", color="blue", weight=3]; 15.87/5.86 2923[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2234 -> 2923[label="",style="solid", color="blue", weight=9]; 15.87/5.86 2923 -> 2248[label="",style="solid", color="blue", weight=3]; 15.87/5.86 2924[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2234 -> 2924[label="",style="solid", color="blue", weight=9]; 15.87/5.86 2924 -> 2249[label="",style="solid", color="blue", weight=3]; 15.87/5.86 2925[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2234 -> 2925[label="",style="solid", color="blue", weight=9]; 15.87/5.86 2925 -> 2250[label="",style="solid", color="blue", weight=3]; 15.87/5.86 2926[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2234 -> 2926[label="",style="solid", color="blue", weight=9]; 15.87/5.86 2926 -> 2251[label="",style="solid", color="blue", weight=3]; 15.87/5.86 2235[label="yu75",fontsize=16,color="green",shape="box"];2236[label="Pos yu73 : [] ++ yu75",fontsize=16,color="green",shape="box"];2236 -> 2252[label="",style="dashed", color="green", weight=3]; 15.87/5.86 2883 -> 2866[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2883[label="primPlusNat yu92 (Succ Zero)",fontsize=16,color="magenta"];2883 -> 2885[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2883 -> 2886[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2884 -> 2866[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2884[label="primPlusNat yu92 (Succ Zero)",fontsize=16,color="magenta"];2884 -> 2887[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2884 -> 2888[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2882[label="foldr (++) [] (map (List.findIndices0 (yu3 ==)) (zipWith zip0 (yu41110 : yu41111) (enforceWHNF (WHNF (Pos yu94)) (numericEnumFrom (Pos yu93)))))",fontsize=16,color="black",shape="triangle"];2882 -> 2889[label="",style="solid", color="black", weight=3]; 15.87/5.86 2238[label="yu30 == yu41100",fontsize=16,color="burlywood",shape="triangle"];2927[label="yu30/Integer yu300",fontsize=10,color="white",style="solid",shape="box"];2238 -> 2927[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2927 -> 2254[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2239[label="yu30 == yu41100",fontsize=16,color="black",shape="triangle"];2239 -> 2255[label="",style="solid", color="black", weight=3]; 15.87/5.86 2240[label="yu30 == yu41100",fontsize=16,color="burlywood",shape="triangle"];2928[label="yu30/yu300 :% yu301",fontsize=10,color="white",style="solid",shape="box"];2240 -> 2928[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2928 -> 2256[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2241[label="yu30 == yu41100",fontsize=16,color="burlywood",shape="triangle"];2929[label="yu30/Left yu300",fontsize=10,color="white",style="solid",shape="box"];2241 -> 2929[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2929 -> 2257[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2930[label="yu30/Right yu300",fontsize=10,color="white",style="solid",shape="box"];2241 -> 2930[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2930 -> 2258[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2242[label="yu30 == yu41100",fontsize=16,color="burlywood",shape="triangle"];2931[label="yu30/()",fontsize=10,color="white",style="solid",shape="box"];2242 -> 2931[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2931 -> 2259[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2243[label="yu30 == yu41100",fontsize=16,color="burlywood",shape="triangle"];2932[label="yu30/(yu300,yu301,yu302)",fontsize=10,color="white",style="solid",shape="box"];2243 -> 2932[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2932 -> 2260[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2244 -> 2205[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2244[label="yu30 == yu41100",fontsize=16,color="magenta"];2244 -> 2261[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2244 -> 2262[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2245[label="yu30 == yu41100",fontsize=16,color="burlywood",shape="triangle"];2933[label="yu30/yu300 : yu301",fontsize=10,color="white",style="solid",shape="box"];2245 -> 2933[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2933 -> 2263[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2934[label="yu30/[]",fontsize=10,color="white",style="solid",shape="box"];2245 -> 2934[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2934 -> 2264[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2246[label="yu30 == yu41100",fontsize=16,color="burlywood",shape="triangle"];2935[label="yu30/LT",fontsize=10,color="white",style="solid",shape="box"];2246 -> 2935[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2935 -> 2265[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2936[label="yu30/EQ",fontsize=10,color="white",style="solid",shape="box"];2246 -> 2936[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2936 -> 2266[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2937[label="yu30/GT",fontsize=10,color="white",style="solid",shape="box"];2246 -> 2937[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2937 -> 2267[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2247[label="yu30 == yu41100",fontsize=16,color="black",shape="triangle"];2247 -> 2268[label="",style="solid", color="black", weight=3]; 15.87/5.86 2248[label="yu30 == yu41100",fontsize=16,color="burlywood",shape="triangle"];2938[label="yu30/(yu300,yu301)",fontsize=10,color="white",style="solid",shape="box"];2248 -> 2938[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2938 -> 2269[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2249[label="yu30 == yu41100",fontsize=16,color="burlywood",shape="triangle"];2939[label="yu30/False",fontsize=10,color="white",style="solid",shape="box"];2249 -> 2939[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2939 -> 2270[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2940[label="yu30/True",fontsize=10,color="white",style="solid",shape="box"];2249 -> 2940[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2940 -> 2271[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2250[label="yu30 == yu41100",fontsize=16,color="black",shape="triangle"];2250 -> 2272[label="",style="solid", color="black", weight=3]; 15.87/5.86 2251[label="yu30 == yu41100",fontsize=16,color="black",shape="triangle"];2251 -> 2273[label="",style="solid", color="black", weight=3]; 15.87/5.86 2252 -> 2228[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2252[label="[] ++ yu75",fontsize=16,color="magenta"];2885[label="yu92",fontsize=16,color="green",shape="box"];2886[label="Succ Zero",fontsize=16,color="green",shape="box"];2866[label="primPlusNat yu910 yu41100000",fontsize=16,color="burlywood",shape="triangle"];2941[label="yu910/Succ yu9100",fontsize=10,color="white",style="solid",shape="box"];2866 -> 2941[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2941 -> 2868[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2942[label="yu910/Zero",fontsize=10,color="white",style="solid",shape="box"];2866 -> 2942[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2942 -> 2869[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2887[label="yu92",fontsize=16,color="green",shape="box"];2888[label="Succ Zero",fontsize=16,color="green",shape="box"];2889[label="foldr (++) [] (map (List.findIndices0 (yu3 ==)) (zipWith zip0 (yu41110 : yu41111) (numericEnumFrom (Pos yu93))))",fontsize=16,color="black",shape="box"];2889 -> 2892[label="",style="solid", color="black", weight=3]; 15.87/5.86 2254[label="Integer yu300 == yu41100",fontsize=16,color="burlywood",shape="box"];2943[label="yu41100/Integer yu411000",fontsize=10,color="white",style="solid",shape="box"];2254 -> 2943[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2943 -> 2277[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2255[label="primEqChar yu30 yu41100",fontsize=16,color="burlywood",shape="box"];2944[label="yu30/Char yu300",fontsize=10,color="white",style="solid",shape="box"];2255 -> 2944[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2944 -> 2278[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2256[label="yu300 :% yu301 == yu41100",fontsize=16,color="burlywood",shape="box"];2945[label="yu41100/yu411000 :% yu411001",fontsize=10,color="white",style="solid",shape="box"];2256 -> 2945[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2945 -> 2279[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2257[label="Left yu300 == yu41100",fontsize=16,color="burlywood",shape="box"];2946[label="yu41100/Left yu411000",fontsize=10,color="white",style="solid",shape="box"];2257 -> 2946[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2946 -> 2280[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2947[label="yu41100/Right yu411000",fontsize=10,color="white",style="solid",shape="box"];2257 -> 2947[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2947 -> 2281[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2258[label="Right yu300 == yu41100",fontsize=16,color="burlywood",shape="box"];2948[label="yu41100/Left yu411000",fontsize=10,color="white",style="solid",shape="box"];2258 -> 2948[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2948 -> 2282[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2949[label="yu41100/Right yu411000",fontsize=10,color="white",style="solid",shape="box"];2258 -> 2949[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2949 -> 2283[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2259[label="() == yu41100",fontsize=16,color="burlywood",shape="box"];2950[label="yu41100/()",fontsize=10,color="white",style="solid",shape="box"];2259 -> 2950[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2950 -> 2284[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2260[label="(yu300,yu301,yu302) == yu41100",fontsize=16,color="burlywood",shape="box"];2951[label="yu41100/(yu411000,yu411001,yu411002)",fontsize=10,color="white",style="solid",shape="box"];2260 -> 2951[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2951 -> 2285[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2261[label="yu30",fontsize=16,color="green",shape="box"];2262[label="yu41100",fontsize=16,color="green",shape="box"];2263[label="yu300 : yu301 == yu41100",fontsize=16,color="burlywood",shape="box"];2952[label="yu41100/yu411000 : yu411001",fontsize=10,color="white",style="solid",shape="box"];2263 -> 2952[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2952 -> 2286[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2953[label="yu41100/[]",fontsize=10,color="white",style="solid",shape="box"];2263 -> 2953[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2953 -> 2287[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2264[label="[] == yu41100",fontsize=16,color="burlywood",shape="box"];2954[label="yu41100/yu411000 : yu411001",fontsize=10,color="white",style="solid",shape="box"];2264 -> 2954[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2954 -> 2288[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2955[label="yu41100/[]",fontsize=10,color="white",style="solid",shape="box"];2264 -> 2955[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2955 -> 2289[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2265[label="LT == yu41100",fontsize=16,color="burlywood",shape="box"];2956[label="yu41100/LT",fontsize=10,color="white",style="solid",shape="box"];2265 -> 2956[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2956 -> 2290[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2957[label="yu41100/EQ",fontsize=10,color="white",style="solid",shape="box"];2265 -> 2957[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2957 -> 2291[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2958[label="yu41100/GT",fontsize=10,color="white",style="solid",shape="box"];2265 -> 2958[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2958 -> 2292[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2266[label="EQ == yu41100",fontsize=16,color="burlywood",shape="box"];2959[label="yu41100/LT",fontsize=10,color="white",style="solid",shape="box"];2266 -> 2959[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2959 -> 2293[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2960[label="yu41100/EQ",fontsize=10,color="white",style="solid",shape="box"];2266 -> 2960[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2960 -> 2294[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2961[label="yu41100/GT",fontsize=10,color="white",style="solid",shape="box"];2266 -> 2961[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2961 -> 2295[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2267[label="GT == yu41100",fontsize=16,color="burlywood",shape="box"];2962[label="yu41100/LT",fontsize=10,color="white",style="solid",shape="box"];2267 -> 2962[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2962 -> 2296[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2963[label="yu41100/EQ",fontsize=10,color="white",style="solid",shape="box"];2267 -> 2963[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2963 -> 2297[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2964[label="yu41100/GT",fontsize=10,color="white",style="solid",shape="box"];2267 -> 2964[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2964 -> 2298[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2268[label="primEqDouble yu30 yu41100",fontsize=16,color="burlywood",shape="box"];2965[label="yu30/Double yu300 yu301",fontsize=10,color="white",style="solid",shape="box"];2268 -> 2965[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2965 -> 2299[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2269[label="(yu300,yu301) == yu41100",fontsize=16,color="burlywood",shape="box"];2966[label="yu41100/(yu411000,yu411001)",fontsize=10,color="white",style="solid",shape="box"];2269 -> 2966[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2966 -> 2300[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2270[label="False == yu41100",fontsize=16,color="burlywood",shape="box"];2967[label="yu41100/False",fontsize=10,color="white",style="solid",shape="box"];2270 -> 2967[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2967 -> 2301[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2968[label="yu41100/True",fontsize=10,color="white",style="solid",shape="box"];2270 -> 2968[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2968 -> 2302[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2271[label="True == yu41100",fontsize=16,color="burlywood",shape="box"];2969[label="yu41100/False",fontsize=10,color="white",style="solid",shape="box"];2271 -> 2969[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2969 -> 2303[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2970[label="yu41100/True",fontsize=10,color="white",style="solid",shape="box"];2271 -> 2970[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2970 -> 2304[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2272[label="primEqFloat yu30 yu41100",fontsize=16,color="burlywood",shape="box"];2971[label="yu30/Float yu300 yu301",fontsize=10,color="white",style="solid",shape="box"];2272 -> 2971[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2971 -> 2305[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2273[label="primEqInt yu30 yu41100",fontsize=16,color="burlywood",shape="triangle"];2972[label="yu30/Pos yu300",fontsize=10,color="white",style="solid",shape="box"];2273 -> 2972[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2972 -> 2306[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2973[label="yu30/Neg yu300",fontsize=10,color="white",style="solid",shape="box"];2273 -> 2973[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2973 -> 2307[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2868[label="primPlusNat (Succ yu9100) yu41100000",fontsize=16,color="burlywood",shape="box"];2974[label="yu41100000/Succ yu411000000",fontsize=10,color="white",style="solid",shape="box"];2868 -> 2974[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2974 -> 2871[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2975[label="yu41100000/Zero",fontsize=10,color="white",style="solid",shape="box"];2868 -> 2975[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2975 -> 2872[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2869[label="primPlusNat Zero yu41100000",fontsize=16,color="burlywood",shape="box"];2976[label="yu41100000/Succ yu411000000",fontsize=10,color="white",style="solid",shape="box"];2869 -> 2976[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2976 -> 2873[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2977[label="yu41100000/Zero",fontsize=10,color="white",style="solid",shape="box"];2869 -> 2977[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2977 -> 2874[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2892[label="foldr (++) [] (map (List.findIndices0 (yu3 ==)) (zipWith zip0 (yu41110 : yu41111) (Pos yu93 : (numericEnumFrom $! Pos yu93 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];2892 -> 2893[label="",style="solid", color="black", weight=3]; 15.87/5.86 2277[label="Integer yu300 == Integer yu411000",fontsize=16,color="black",shape="box"];2277 -> 2311[label="",style="solid", color="black", weight=3]; 15.87/5.86 2278[label="primEqChar (Char yu300) yu41100",fontsize=16,color="burlywood",shape="box"];2978[label="yu41100/Char yu411000",fontsize=10,color="white",style="solid",shape="box"];2278 -> 2978[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2978 -> 2312[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2279[label="yu300 :% yu301 == yu411000 :% yu411001",fontsize=16,color="black",shape="box"];2279 -> 2313[label="",style="solid", color="black", weight=3]; 15.87/5.86 2280[label="Left yu300 == Left yu411000",fontsize=16,color="black",shape="box"];2280 -> 2314[label="",style="solid", color="black", weight=3]; 15.87/5.86 2281[label="Left yu300 == Right yu411000",fontsize=16,color="black",shape="box"];2281 -> 2315[label="",style="solid", color="black", weight=3]; 15.87/5.86 2282[label="Right yu300 == Left yu411000",fontsize=16,color="black",shape="box"];2282 -> 2316[label="",style="solid", color="black", weight=3]; 15.87/5.86 2283[label="Right yu300 == Right yu411000",fontsize=16,color="black",shape="box"];2283 -> 2317[label="",style="solid", color="black", weight=3]; 15.87/5.86 2284[label="() == ()",fontsize=16,color="black",shape="box"];2284 -> 2318[label="",style="solid", color="black", weight=3]; 15.87/5.86 2285[label="(yu300,yu301,yu302) == (yu411000,yu411001,yu411002)",fontsize=16,color="black",shape="box"];2285 -> 2319[label="",style="solid", color="black", weight=3]; 15.87/5.86 2286[label="yu300 : yu301 == yu411000 : yu411001",fontsize=16,color="black",shape="box"];2286 -> 2320[label="",style="solid", color="black", weight=3]; 15.87/5.86 2287[label="yu300 : yu301 == []",fontsize=16,color="black",shape="box"];2287 -> 2321[label="",style="solid", color="black", weight=3]; 15.87/5.86 2288[label="[] == yu411000 : yu411001",fontsize=16,color="black",shape="box"];2288 -> 2322[label="",style="solid", color="black", weight=3]; 15.87/5.86 2289[label="[] == []",fontsize=16,color="black",shape="box"];2289 -> 2323[label="",style="solid", color="black", weight=3]; 15.87/5.86 2290[label="LT == LT",fontsize=16,color="black",shape="box"];2290 -> 2324[label="",style="solid", color="black", weight=3]; 15.87/5.86 2291[label="LT == EQ",fontsize=16,color="black",shape="box"];2291 -> 2325[label="",style="solid", color="black", weight=3]; 15.87/5.86 2292[label="LT == GT",fontsize=16,color="black",shape="box"];2292 -> 2326[label="",style="solid", color="black", weight=3]; 15.87/5.86 2293[label="EQ == LT",fontsize=16,color="black",shape="box"];2293 -> 2327[label="",style="solid", color="black", weight=3]; 15.87/5.86 2294[label="EQ == EQ",fontsize=16,color="black",shape="box"];2294 -> 2328[label="",style="solid", color="black", weight=3]; 15.87/5.86 2295[label="EQ == GT",fontsize=16,color="black",shape="box"];2295 -> 2329[label="",style="solid", color="black", weight=3]; 15.87/5.86 2296[label="GT == LT",fontsize=16,color="black",shape="box"];2296 -> 2330[label="",style="solid", color="black", weight=3]; 15.87/5.86 2297[label="GT == EQ",fontsize=16,color="black",shape="box"];2297 -> 2331[label="",style="solid", color="black", weight=3]; 15.87/5.86 2298[label="GT == GT",fontsize=16,color="black",shape="box"];2298 -> 2332[label="",style="solid", color="black", weight=3]; 15.87/5.86 2299[label="primEqDouble (Double yu300 yu301) yu41100",fontsize=16,color="burlywood",shape="box"];2979[label="yu41100/Double yu411000 yu411001",fontsize=10,color="white",style="solid",shape="box"];2299 -> 2979[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2979 -> 2333[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2300[label="(yu300,yu301) == (yu411000,yu411001)",fontsize=16,color="black",shape="box"];2300 -> 2334[label="",style="solid", color="black", weight=3]; 15.87/5.86 2301[label="False == False",fontsize=16,color="black",shape="box"];2301 -> 2335[label="",style="solid", color="black", weight=3]; 15.87/5.86 2302[label="False == True",fontsize=16,color="black",shape="box"];2302 -> 2336[label="",style="solid", color="black", weight=3]; 15.87/5.86 2303[label="True == False",fontsize=16,color="black",shape="box"];2303 -> 2337[label="",style="solid", color="black", weight=3]; 15.87/5.86 2304[label="True == True",fontsize=16,color="black",shape="box"];2304 -> 2338[label="",style="solid", color="black", weight=3]; 15.87/5.86 2305[label="primEqFloat (Float yu300 yu301) yu41100",fontsize=16,color="burlywood",shape="box"];2980[label="yu41100/Float yu411000 yu411001",fontsize=10,color="white",style="solid",shape="box"];2305 -> 2980[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2980 -> 2339[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2306[label="primEqInt (Pos yu300) yu41100",fontsize=16,color="burlywood",shape="box"];2981[label="yu300/Succ yu3000",fontsize=10,color="white",style="solid",shape="box"];2306 -> 2981[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2981 -> 2340[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2982[label="yu300/Zero",fontsize=10,color="white",style="solid",shape="box"];2306 -> 2982[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2982 -> 2341[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2307[label="primEqInt (Neg yu300) yu41100",fontsize=16,color="burlywood",shape="box"];2983[label="yu300/Succ yu3000",fontsize=10,color="white",style="solid",shape="box"];2307 -> 2983[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2983 -> 2342[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2984[label="yu300/Zero",fontsize=10,color="white",style="solid",shape="box"];2307 -> 2984[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 2984 -> 2343[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2871[label="primPlusNat (Succ yu9100) (Succ yu411000000)",fontsize=16,color="black",shape="box"];2871 -> 2876[label="",style="solid", color="black", weight=3]; 15.87/5.86 2872[label="primPlusNat (Succ yu9100) Zero",fontsize=16,color="black",shape="box"];2872 -> 2877[label="",style="solid", color="black", weight=3]; 15.87/5.86 2873[label="primPlusNat Zero (Succ yu411000000)",fontsize=16,color="black",shape="box"];2873 -> 2878[label="",style="solid", color="black", weight=3]; 15.87/5.86 2874[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2874 -> 2879[label="",style="solid", color="black", weight=3]; 15.87/5.86 2893[label="foldr (++) [] (map (List.findIndices0 (yu3 ==)) (zip0 yu41110 (Pos yu93) : zipWith zip0 yu41111 (numericEnumFrom $! Pos yu93 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];2893 -> 2894[label="",style="solid", color="black", weight=3]; 15.87/5.86 2311 -> 2273[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2311[label="primEqInt yu300 yu411000",fontsize=16,color="magenta"];2311 -> 2346[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2311 -> 2347[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2312[label="primEqChar (Char yu300) (Char yu411000)",fontsize=16,color="black",shape="box"];2312 -> 2348[label="",style="solid", color="black", weight=3]; 15.87/5.86 2313 -> 2412[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2313[label="yu300 == yu411000 && yu301 == yu411001",fontsize=16,color="magenta"];2313 -> 2413[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2313 -> 2414[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2314[label="yu300 == yu411000",fontsize=16,color="blue",shape="box"];2985[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2314 -> 2985[label="",style="solid", color="blue", weight=9]; 15.87/5.86 2985 -> 2359[label="",style="solid", color="blue", weight=3]; 15.87/5.86 2986[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2314 -> 2986[label="",style="solid", color="blue", weight=9]; 15.87/5.86 2986 -> 2360[label="",style="solid", color="blue", weight=3]; 15.87/5.86 2987[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2314 -> 2987[label="",style="solid", color="blue", weight=9]; 15.87/5.86 2987 -> 2361[label="",style="solid", color="blue", weight=3]; 15.87/5.86 2988[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2314 -> 2988[label="",style="solid", color="blue", weight=9]; 15.87/5.86 2988 -> 2362[label="",style="solid", color="blue", weight=3]; 15.87/5.86 2989[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2314 -> 2989[label="",style="solid", color="blue", weight=9]; 15.87/5.86 2989 -> 2363[label="",style="solid", color="blue", weight=3]; 15.87/5.86 2990[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2314 -> 2990[label="",style="solid", color="blue", weight=9]; 15.87/5.86 2990 -> 2364[label="",style="solid", color="blue", weight=3]; 15.87/5.86 2991[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2314 -> 2991[label="",style="solid", color="blue", weight=9]; 15.87/5.86 2991 -> 2365[label="",style="solid", color="blue", weight=3]; 15.87/5.86 2992[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2314 -> 2992[label="",style="solid", color="blue", weight=9]; 15.87/5.86 2992 -> 2366[label="",style="solid", color="blue", weight=3]; 15.87/5.86 2993[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2314 -> 2993[label="",style="solid", color="blue", weight=9]; 15.87/5.86 2993 -> 2367[label="",style="solid", color="blue", weight=3]; 15.87/5.86 2994[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2314 -> 2994[label="",style="solid", color="blue", weight=9]; 15.87/5.86 2994 -> 2368[label="",style="solid", color="blue", weight=3]; 15.87/5.86 2995[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2314 -> 2995[label="",style="solid", color="blue", weight=9]; 15.87/5.86 2995 -> 2369[label="",style="solid", color="blue", weight=3]; 15.87/5.86 2996[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2314 -> 2996[label="",style="solid", color="blue", weight=9]; 15.87/5.86 2996 -> 2370[label="",style="solid", color="blue", weight=3]; 15.87/5.86 2997[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2314 -> 2997[label="",style="solid", color="blue", weight=9]; 15.87/5.86 2997 -> 2371[label="",style="solid", color="blue", weight=3]; 15.87/5.86 2998[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2314 -> 2998[label="",style="solid", color="blue", weight=9]; 15.87/5.86 2998 -> 2372[label="",style="solid", color="blue", weight=3]; 15.87/5.86 2315[label="False",fontsize=16,color="green",shape="box"];2316[label="False",fontsize=16,color="green",shape="box"];2317[label="yu300 == yu411000",fontsize=16,color="blue",shape="box"];2999[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2317 -> 2999[label="",style="solid", color="blue", weight=9]; 15.87/5.86 2999 -> 2373[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3000[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2317 -> 3000[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3000 -> 2374[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3001[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2317 -> 3001[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3001 -> 2375[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3002[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2317 -> 3002[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3002 -> 2376[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3003[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2317 -> 3003[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3003 -> 2377[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3004[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2317 -> 3004[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3004 -> 2378[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3005[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2317 -> 3005[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3005 -> 2379[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3006[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2317 -> 3006[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3006 -> 2380[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3007[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2317 -> 3007[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3007 -> 2381[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3008[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2317 -> 3008[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3008 -> 2382[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3009[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2317 -> 3009[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3009 -> 2383[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3010[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2317 -> 3010[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3010 -> 2384[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3011[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2317 -> 3011[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3011 -> 2385[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3012[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2317 -> 3012[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3012 -> 2386[label="",style="solid", color="blue", weight=3]; 15.87/5.86 2318[label="True",fontsize=16,color="green",shape="box"];2319 -> 2412[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2319[label="yu300 == yu411000 && yu301 == yu411001 && yu302 == yu411002",fontsize=16,color="magenta"];2319 -> 2415[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2319 -> 2416[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2320 -> 2412[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2320[label="yu300 == yu411000 && yu301 == yu411001",fontsize=16,color="magenta"];2320 -> 2417[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2320 -> 2418[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2321[label="False",fontsize=16,color="green",shape="box"];2322[label="False",fontsize=16,color="green",shape="box"];2323[label="True",fontsize=16,color="green",shape="box"];2324[label="True",fontsize=16,color="green",shape="box"];2325[label="False",fontsize=16,color="green",shape="box"];2326[label="False",fontsize=16,color="green",shape="box"];2327[label="False",fontsize=16,color="green",shape="box"];2328[label="True",fontsize=16,color="green",shape="box"];2329[label="False",fontsize=16,color="green",shape="box"];2330[label="False",fontsize=16,color="green",shape="box"];2331[label="False",fontsize=16,color="green",shape="box"];2332[label="True",fontsize=16,color="green",shape="box"];2333[label="primEqDouble (Double yu300 yu301) (Double yu411000 yu411001)",fontsize=16,color="black",shape="box"];2333 -> 2398[label="",style="solid", color="black", weight=3]; 15.87/5.86 2334 -> 2412[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2334[label="yu300 == yu411000 && yu301 == yu411001",fontsize=16,color="magenta"];2334 -> 2419[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2334 -> 2420[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2335[label="True",fontsize=16,color="green",shape="box"];2336[label="False",fontsize=16,color="green",shape="box"];2337[label="False",fontsize=16,color="green",shape="box"];2338[label="True",fontsize=16,color="green",shape="box"];2339[label="primEqFloat (Float yu300 yu301) (Float yu411000 yu411001)",fontsize=16,color="black",shape="box"];2339 -> 2399[label="",style="solid", color="black", weight=3]; 15.87/5.86 2340[label="primEqInt (Pos (Succ yu3000)) yu41100",fontsize=16,color="burlywood",shape="box"];3013[label="yu41100/Pos yu411000",fontsize=10,color="white",style="solid",shape="box"];2340 -> 3013[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 3013 -> 2400[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 3014[label="yu41100/Neg yu411000",fontsize=10,color="white",style="solid",shape="box"];2340 -> 3014[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 3014 -> 2401[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2341[label="primEqInt (Pos Zero) yu41100",fontsize=16,color="burlywood",shape="box"];3015[label="yu41100/Pos yu411000",fontsize=10,color="white",style="solid",shape="box"];2341 -> 3015[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 3015 -> 2402[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 3016[label="yu41100/Neg yu411000",fontsize=10,color="white",style="solid",shape="box"];2341 -> 3016[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 3016 -> 2403[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2342[label="primEqInt (Neg (Succ yu3000)) yu41100",fontsize=16,color="burlywood",shape="box"];3017[label="yu41100/Pos yu411000",fontsize=10,color="white",style="solid",shape="box"];2342 -> 3017[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 3017 -> 2404[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 3018[label="yu41100/Neg yu411000",fontsize=10,color="white",style="solid",shape="box"];2342 -> 3018[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 3018 -> 2405[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2343[label="primEqInt (Neg Zero) yu41100",fontsize=16,color="burlywood",shape="box"];3019[label="yu41100/Pos yu411000",fontsize=10,color="white",style="solid",shape="box"];2343 -> 3019[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 3019 -> 2406[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 3020[label="yu41100/Neg yu411000",fontsize=10,color="white",style="solid",shape="box"];2343 -> 3020[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 3020 -> 2407[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2876[label="Succ (Succ (primPlusNat yu9100 yu411000000))",fontsize=16,color="green",shape="box"];2876 -> 2881[label="",style="dashed", color="green", weight=3]; 15.87/5.86 2877[label="Succ yu9100",fontsize=16,color="green",shape="box"];2878[label="Succ yu411000000",fontsize=16,color="green",shape="box"];2879[label="Zero",fontsize=16,color="green",shape="box"];2894[label="foldr (++) [] (List.findIndices0 (yu3 ==) (zip0 yu41110 (Pos yu93)) : map (List.findIndices0 (yu3 ==)) (zipWith zip0 yu41111 (numericEnumFrom $! Pos yu93 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];2894 -> 2895[label="",style="solid", color="black", weight=3]; 15.87/5.86 2346[label="yu411000",fontsize=16,color="green",shape="box"];2347[label="yu300",fontsize=16,color="green",shape="box"];2348[label="primEqNat yu300 yu411000",fontsize=16,color="burlywood",shape="triangle"];3021[label="yu300/Succ yu3000",fontsize=10,color="white",style="solid",shape="box"];2348 -> 3021[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 3021 -> 2408[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 3022[label="yu300/Zero",fontsize=10,color="white",style="solid",shape="box"];2348 -> 3022[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 3022 -> 2409[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2413[label="yu301 == yu411001",fontsize=16,color="blue",shape="box"];3023[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2413 -> 3023[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3023 -> 2425[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3024[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2413 -> 3024[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3024 -> 2426[label="",style="solid", color="blue", weight=3]; 15.87/5.86 2414[label="yu300 == yu411000",fontsize=16,color="blue",shape="box"];3025[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2414 -> 3025[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3025 -> 2427[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3026[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2414 -> 3026[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3026 -> 2428[label="",style="solid", color="blue", weight=3]; 15.87/5.86 2412[label="yu87 && yu88",fontsize=16,color="burlywood",shape="triangle"];3027[label="yu87/False",fontsize=10,color="white",style="solid",shape="box"];2412 -> 3027[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 3027 -> 2429[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 3028[label="yu87/True",fontsize=10,color="white",style="solid",shape="box"];2412 -> 3028[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 3028 -> 2430[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2359 -> 2238[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2359[label="yu300 == yu411000",fontsize=16,color="magenta"];2359 -> 2431[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2359 -> 2432[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2360 -> 2239[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2360[label="yu300 == yu411000",fontsize=16,color="magenta"];2360 -> 2433[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2360 -> 2434[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2361 -> 2240[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2361[label="yu300 == yu411000",fontsize=16,color="magenta"];2361 -> 2435[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2361 -> 2436[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2362 -> 2241[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2362[label="yu300 == yu411000",fontsize=16,color="magenta"];2362 -> 2437[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2362 -> 2438[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2363 -> 2242[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2363[label="yu300 == yu411000",fontsize=16,color="magenta"];2363 -> 2439[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2363 -> 2440[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2364 -> 2243[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2364[label="yu300 == yu411000",fontsize=16,color="magenta"];2364 -> 2441[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2364 -> 2442[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2365 -> 2205[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2365[label="yu300 == yu411000",fontsize=16,color="magenta"];2365 -> 2443[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2365 -> 2444[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2366 -> 2245[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2366[label="yu300 == yu411000",fontsize=16,color="magenta"];2366 -> 2445[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2366 -> 2446[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2367 -> 2246[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2367[label="yu300 == yu411000",fontsize=16,color="magenta"];2367 -> 2447[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2367 -> 2448[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2368 -> 2247[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2368[label="yu300 == yu411000",fontsize=16,color="magenta"];2368 -> 2449[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2368 -> 2450[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2369 -> 2248[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2369[label="yu300 == yu411000",fontsize=16,color="magenta"];2369 -> 2451[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2369 -> 2452[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2370 -> 2249[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2370[label="yu300 == yu411000",fontsize=16,color="magenta"];2370 -> 2453[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2370 -> 2454[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2371 -> 2250[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2371[label="yu300 == yu411000",fontsize=16,color="magenta"];2371 -> 2455[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2371 -> 2456[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2372 -> 2251[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2372[label="yu300 == yu411000",fontsize=16,color="magenta"];2372 -> 2457[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2372 -> 2458[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2373 -> 2238[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2373[label="yu300 == yu411000",fontsize=16,color="magenta"];2373 -> 2459[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2373 -> 2460[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2374 -> 2239[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2374[label="yu300 == yu411000",fontsize=16,color="magenta"];2374 -> 2461[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2374 -> 2462[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2375 -> 2240[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2375[label="yu300 == yu411000",fontsize=16,color="magenta"];2375 -> 2463[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2375 -> 2464[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2376 -> 2241[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2376[label="yu300 == yu411000",fontsize=16,color="magenta"];2376 -> 2465[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2376 -> 2466[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2377 -> 2242[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2377[label="yu300 == yu411000",fontsize=16,color="magenta"];2377 -> 2467[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2377 -> 2468[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2378 -> 2243[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2378[label="yu300 == yu411000",fontsize=16,color="magenta"];2378 -> 2469[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2378 -> 2470[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2379 -> 2205[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2379[label="yu300 == yu411000",fontsize=16,color="magenta"];2379 -> 2471[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2379 -> 2472[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2380 -> 2245[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2380[label="yu300 == yu411000",fontsize=16,color="magenta"];2380 -> 2473[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2380 -> 2474[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2381 -> 2246[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2381[label="yu300 == yu411000",fontsize=16,color="magenta"];2381 -> 2475[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2381 -> 2476[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2382 -> 2247[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2382[label="yu300 == yu411000",fontsize=16,color="magenta"];2382 -> 2477[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2382 -> 2478[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2383 -> 2248[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2383[label="yu300 == yu411000",fontsize=16,color="magenta"];2383 -> 2479[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2383 -> 2480[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2384 -> 2249[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2384[label="yu300 == yu411000",fontsize=16,color="magenta"];2384 -> 2481[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2384 -> 2482[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2385 -> 2250[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2385[label="yu300 == yu411000",fontsize=16,color="magenta"];2385 -> 2483[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2385 -> 2484[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2386 -> 2251[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2386[label="yu300 == yu411000",fontsize=16,color="magenta"];2386 -> 2485[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2386 -> 2486[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2415 -> 2412[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2415[label="yu301 == yu411001 && yu302 == yu411002",fontsize=16,color="magenta"];2415 -> 2487[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2415 -> 2488[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2416[label="yu300 == yu411000",fontsize=16,color="blue",shape="box"];3029[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 3029[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3029 -> 2489[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3030[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 3030[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3030 -> 2490[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3031[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 3031[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3031 -> 2491[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3032[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 3032[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3032 -> 2492[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3033[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 3033[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3033 -> 2493[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3034[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 3034[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3034 -> 2494[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3035[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 3035[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3035 -> 2495[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3036[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 3036[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3036 -> 2496[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3037[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 3037[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3037 -> 2497[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3038[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 3038[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3038 -> 2498[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3039[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 3039[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3039 -> 2499[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3040[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 3040[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3040 -> 2500[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3041[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 3041[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3041 -> 2501[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3042[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 3042[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3042 -> 2502[label="",style="solid", color="blue", weight=3]; 15.87/5.86 2417 -> 2245[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2417[label="yu301 == yu411001",fontsize=16,color="magenta"];2417 -> 2503[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2417 -> 2504[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2418[label="yu300 == yu411000",fontsize=16,color="blue",shape="box"];3043[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2418 -> 3043[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3043 -> 2505[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3044[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2418 -> 3044[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3044 -> 2506[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3045[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2418 -> 3045[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3045 -> 2507[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3046[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2418 -> 3046[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3046 -> 2508[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3047[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2418 -> 3047[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3047 -> 2509[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3048[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2418 -> 3048[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3048 -> 2510[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3049[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2418 -> 3049[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3049 -> 2511[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3050[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2418 -> 3050[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3050 -> 2512[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3051[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2418 -> 3051[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3051 -> 2513[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3052[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2418 -> 3052[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3052 -> 2514[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3053[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2418 -> 3053[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3053 -> 2515[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3054[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2418 -> 3054[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3054 -> 2516[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3055[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2418 -> 3055[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3055 -> 2517[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3056[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2418 -> 3056[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3056 -> 2518[label="",style="solid", color="blue", weight=3]; 15.87/5.86 2398 -> 2251[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2398[label="yu300 * yu411001 == yu301 * yu411000",fontsize=16,color="magenta"];2398 -> 2519[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2398 -> 2520[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2419[label="yu301 == yu411001",fontsize=16,color="blue",shape="box"];3057[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 3057[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3057 -> 2521[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3058[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 3058[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3058 -> 2522[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3059[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 3059[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3059 -> 2523[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3060[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 3060[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3060 -> 2524[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3061[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 3061[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3061 -> 2525[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3062[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 3062[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3062 -> 2526[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3063[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 3063[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3063 -> 2527[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3064[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 3064[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3064 -> 2528[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3065[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 3065[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3065 -> 2529[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3066[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 3066[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3066 -> 2530[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3067[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 3067[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3067 -> 2531[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3068[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 3068[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3068 -> 2532[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3069[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 3069[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3069 -> 2533[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3070[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 3070[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3070 -> 2534[label="",style="solid", color="blue", weight=3]; 15.87/5.86 2420[label="yu300 == yu411000",fontsize=16,color="blue",shape="box"];3071[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 3071[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3071 -> 2535[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3072[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 3072[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3072 -> 2536[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3073[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 3073[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3073 -> 2537[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3074[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 3074[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3074 -> 2538[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3075[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 3075[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3075 -> 2539[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3076[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 3076[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3076 -> 2540[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3077[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 3077[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3077 -> 2541[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3078[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 3078[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3078 -> 2542[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3079[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 3079[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3079 -> 2543[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3080[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 3080[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3080 -> 2544[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3081[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 3081[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3081 -> 2545[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3082[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 3082[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3082 -> 2546[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3083[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 3083[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3083 -> 2547[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3084[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 3084[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3084 -> 2548[label="",style="solid", color="blue", weight=3]; 15.87/5.86 2399 -> 2251[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2399[label="yu300 * yu411001 == yu301 * yu411000",fontsize=16,color="magenta"];2399 -> 2549[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2399 -> 2550[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2400[label="primEqInt (Pos (Succ yu3000)) (Pos yu411000)",fontsize=16,color="burlywood",shape="box"];3085[label="yu411000/Succ yu4110000",fontsize=10,color="white",style="solid",shape="box"];2400 -> 3085[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 3085 -> 2551[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 3086[label="yu411000/Zero",fontsize=10,color="white",style="solid",shape="box"];2400 -> 3086[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 3086 -> 2552[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2401[label="primEqInt (Pos (Succ yu3000)) (Neg yu411000)",fontsize=16,color="black",shape="box"];2401 -> 2553[label="",style="solid", color="black", weight=3]; 15.87/5.86 2402[label="primEqInt (Pos Zero) (Pos yu411000)",fontsize=16,color="burlywood",shape="box"];3087[label="yu411000/Succ yu4110000",fontsize=10,color="white",style="solid",shape="box"];2402 -> 3087[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 3087 -> 2554[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 3088[label="yu411000/Zero",fontsize=10,color="white",style="solid",shape="box"];2402 -> 3088[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 3088 -> 2555[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2403[label="primEqInt (Pos Zero) (Neg yu411000)",fontsize=16,color="burlywood",shape="box"];3089[label="yu411000/Succ yu4110000",fontsize=10,color="white",style="solid",shape="box"];2403 -> 3089[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 3089 -> 2556[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 3090[label="yu411000/Zero",fontsize=10,color="white",style="solid",shape="box"];2403 -> 3090[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 3090 -> 2557[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2404[label="primEqInt (Neg (Succ yu3000)) (Pos yu411000)",fontsize=16,color="black",shape="box"];2404 -> 2558[label="",style="solid", color="black", weight=3]; 15.87/5.86 2405[label="primEqInt (Neg (Succ yu3000)) (Neg yu411000)",fontsize=16,color="burlywood",shape="box"];3091[label="yu411000/Succ yu4110000",fontsize=10,color="white",style="solid",shape="box"];2405 -> 3091[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 3091 -> 2559[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 3092[label="yu411000/Zero",fontsize=10,color="white",style="solid",shape="box"];2405 -> 3092[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 3092 -> 2560[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2406[label="primEqInt (Neg Zero) (Pos yu411000)",fontsize=16,color="burlywood",shape="box"];3093[label="yu411000/Succ yu4110000",fontsize=10,color="white",style="solid",shape="box"];2406 -> 3093[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 3093 -> 2561[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 3094[label="yu411000/Zero",fontsize=10,color="white",style="solid",shape="box"];2406 -> 3094[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 3094 -> 2562[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2407[label="primEqInt (Neg Zero) (Neg yu411000)",fontsize=16,color="burlywood",shape="box"];3095[label="yu411000/Succ yu4110000",fontsize=10,color="white",style="solid",shape="box"];2407 -> 3095[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 3095 -> 2563[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 3096[label="yu411000/Zero",fontsize=10,color="white",style="solid",shape="box"];2407 -> 3096[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 3096 -> 2564[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2881 -> 2866[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2881[label="primPlusNat yu9100 yu411000000",fontsize=16,color="magenta"];2881 -> 2890[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2881 -> 2891[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2895 -> 2174[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2895[label="(++) List.findIndices0 (yu3 ==) (zip0 yu41110 (Pos yu93)) foldr (++) [] (map (List.findIndices0 (yu3 ==)) (zipWith zip0 yu41111 (numericEnumFrom $! Pos yu93 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];2895 -> 2896[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2895 -> 2897[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2895 -> 2898[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2408[label="primEqNat (Succ yu3000) yu411000",fontsize=16,color="burlywood",shape="box"];3097[label="yu411000/Succ yu4110000",fontsize=10,color="white",style="solid",shape="box"];2408 -> 3097[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 3097 -> 2565[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 3098[label="yu411000/Zero",fontsize=10,color="white",style="solid",shape="box"];2408 -> 3098[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 3098 -> 2566[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2409[label="primEqNat Zero yu411000",fontsize=16,color="burlywood",shape="box"];3099[label="yu411000/Succ yu4110000",fontsize=10,color="white",style="solid",shape="box"];2409 -> 3099[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 3099 -> 2567[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 3100[label="yu411000/Zero",fontsize=10,color="white",style="solid",shape="box"];2409 -> 3100[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 3100 -> 2568[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2425 -> 2238[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2425[label="yu301 == yu411001",fontsize=16,color="magenta"];2425 -> 2577[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2425 -> 2578[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2426 -> 2251[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2426[label="yu301 == yu411001",fontsize=16,color="magenta"];2426 -> 2579[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2426 -> 2580[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2427 -> 2238[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2427[label="yu300 == yu411000",fontsize=16,color="magenta"];2427 -> 2581[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2427 -> 2582[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2428 -> 2251[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2428[label="yu300 == yu411000",fontsize=16,color="magenta"];2428 -> 2583[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2428 -> 2584[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2429[label="False && yu88",fontsize=16,color="black",shape="box"];2429 -> 2585[label="",style="solid", color="black", weight=3]; 15.87/5.86 2430[label="True && yu88",fontsize=16,color="black",shape="box"];2430 -> 2586[label="",style="solid", color="black", weight=3]; 15.87/5.86 2431[label="yu411000",fontsize=16,color="green",shape="box"];2432[label="yu300",fontsize=16,color="green",shape="box"];2433[label="yu411000",fontsize=16,color="green",shape="box"];2434[label="yu300",fontsize=16,color="green",shape="box"];2435[label="yu411000",fontsize=16,color="green",shape="box"];2436[label="yu300",fontsize=16,color="green",shape="box"];2437[label="yu411000",fontsize=16,color="green",shape="box"];2438[label="yu300",fontsize=16,color="green",shape="box"];2439[label="yu411000",fontsize=16,color="green",shape="box"];2440[label="yu300",fontsize=16,color="green",shape="box"];2441[label="yu411000",fontsize=16,color="green",shape="box"];2442[label="yu300",fontsize=16,color="green",shape="box"];2443[label="yu300",fontsize=16,color="green",shape="box"];2444[label="yu411000",fontsize=16,color="green",shape="box"];2445[label="yu411000",fontsize=16,color="green",shape="box"];2446[label="yu300",fontsize=16,color="green",shape="box"];2447[label="yu411000",fontsize=16,color="green",shape="box"];2448[label="yu300",fontsize=16,color="green",shape="box"];2449[label="yu411000",fontsize=16,color="green",shape="box"];2450[label="yu300",fontsize=16,color="green",shape="box"];2451[label="yu411000",fontsize=16,color="green",shape="box"];2452[label="yu300",fontsize=16,color="green",shape="box"];2453[label="yu411000",fontsize=16,color="green",shape="box"];2454[label="yu300",fontsize=16,color="green",shape="box"];2455[label="yu411000",fontsize=16,color="green",shape="box"];2456[label="yu300",fontsize=16,color="green",shape="box"];2457[label="yu411000",fontsize=16,color="green",shape="box"];2458[label="yu300",fontsize=16,color="green",shape="box"];2459[label="yu411000",fontsize=16,color="green",shape="box"];2460[label="yu300",fontsize=16,color="green",shape="box"];2461[label="yu411000",fontsize=16,color="green",shape="box"];2462[label="yu300",fontsize=16,color="green",shape="box"];2463[label="yu411000",fontsize=16,color="green",shape="box"];2464[label="yu300",fontsize=16,color="green",shape="box"];2465[label="yu411000",fontsize=16,color="green",shape="box"];2466[label="yu300",fontsize=16,color="green",shape="box"];2467[label="yu411000",fontsize=16,color="green",shape="box"];2468[label="yu300",fontsize=16,color="green",shape="box"];2469[label="yu411000",fontsize=16,color="green",shape="box"];2470[label="yu300",fontsize=16,color="green",shape="box"];2471[label="yu300",fontsize=16,color="green",shape="box"];2472[label="yu411000",fontsize=16,color="green",shape="box"];2473[label="yu411000",fontsize=16,color="green",shape="box"];2474[label="yu300",fontsize=16,color="green",shape="box"];2475[label="yu411000",fontsize=16,color="green",shape="box"];2476[label="yu300",fontsize=16,color="green",shape="box"];2477[label="yu411000",fontsize=16,color="green",shape="box"];2478[label="yu300",fontsize=16,color="green",shape="box"];2479[label="yu411000",fontsize=16,color="green",shape="box"];2480[label="yu300",fontsize=16,color="green",shape="box"];2481[label="yu411000",fontsize=16,color="green",shape="box"];2482[label="yu300",fontsize=16,color="green",shape="box"];2483[label="yu411000",fontsize=16,color="green",shape="box"];2484[label="yu300",fontsize=16,color="green",shape="box"];2485[label="yu411000",fontsize=16,color="green",shape="box"];2486[label="yu300",fontsize=16,color="green",shape="box"];2487[label="yu302 == yu411002",fontsize=16,color="blue",shape="box"];3101[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2487 -> 3101[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3101 -> 2587[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3102[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2487 -> 3102[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3102 -> 2588[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3103[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2487 -> 3103[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3103 -> 2589[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3104[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2487 -> 3104[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3104 -> 2590[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3105[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2487 -> 3105[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3105 -> 2591[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3106[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2487 -> 3106[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3106 -> 2592[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3107[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2487 -> 3107[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3107 -> 2593[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3108[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2487 -> 3108[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3108 -> 2594[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3109[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2487 -> 3109[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3109 -> 2595[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3110[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2487 -> 3110[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3110 -> 2596[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3111[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2487 -> 3111[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3111 -> 2597[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3112[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2487 -> 3112[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3112 -> 2598[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3113[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2487 -> 3113[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3113 -> 2599[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3114[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2487 -> 3114[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3114 -> 2600[label="",style="solid", color="blue", weight=3]; 15.87/5.86 2488[label="yu301 == yu411001",fontsize=16,color="blue",shape="box"];3115[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2488 -> 3115[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3115 -> 2601[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3116[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2488 -> 3116[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3116 -> 2602[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3117[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2488 -> 3117[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3117 -> 2603[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3118[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2488 -> 3118[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3118 -> 2604[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3119[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2488 -> 3119[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3119 -> 2605[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3120[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2488 -> 3120[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3120 -> 2606[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3121[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2488 -> 3121[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3121 -> 2607[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3122[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2488 -> 3122[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3122 -> 2608[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3123[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2488 -> 3123[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3123 -> 2609[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3124[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2488 -> 3124[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3124 -> 2610[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3125[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2488 -> 3125[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3125 -> 2611[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3126[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2488 -> 3126[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3126 -> 2612[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3127[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2488 -> 3127[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3127 -> 2613[label="",style="solid", color="blue", weight=3]; 15.87/5.86 3128[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2488 -> 3128[label="",style="solid", color="blue", weight=9]; 15.87/5.86 3128 -> 2614[label="",style="solid", color="blue", weight=3]; 15.87/5.86 2489 -> 2238[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2489[label="yu300 == yu411000",fontsize=16,color="magenta"];2489 -> 2615[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2489 -> 2616[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2490 -> 2239[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2490[label="yu300 == yu411000",fontsize=16,color="magenta"];2490 -> 2617[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2490 -> 2618[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2491 -> 2240[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2491[label="yu300 == yu411000",fontsize=16,color="magenta"];2491 -> 2619[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2491 -> 2620[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2492 -> 2241[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2492[label="yu300 == yu411000",fontsize=16,color="magenta"];2492 -> 2621[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2492 -> 2622[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2493 -> 2242[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2493[label="yu300 == yu411000",fontsize=16,color="magenta"];2493 -> 2623[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2493 -> 2624[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2494 -> 2243[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2494[label="yu300 == yu411000",fontsize=16,color="magenta"];2494 -> 2625[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2494 -> 2626[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2495 -> 2205[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2495[label="yu300 == yu411000",fontsize=16,color="magenta"];2495 -> 2627[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2495 -> 2628[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2496 -> 2245[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2496[label="yu300 == yu411000",fontsize=16,color="magenta"];2496 -> 2629[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2496 -> 2630[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2497 -> 2246[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2497[label="yu300 == yu411000",fontsize=16,color="magenta"];2497 -> 2631[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2497 -> 2632[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2498 -> 2247[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2498[label="yu300 == yu411000",fontsize=16,color="magenta"];2498 -> 2633[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2498 -> 2634[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2499 -> 2248[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2499[label="yu300 == yu411000",fontsize=16,color="magenta"];2499 -> 2635[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2499 -> 2636[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2500 -> 2249[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2500[label="yu300 == yu411000",fontsize=16,color="magenta"];2500 -> 2637[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2500 -> 2638[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2501 -> 2250[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2501[label="yu300 == yu411000",fontsize=16,color="magenta"];2501 -> 2639[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2501 -> 2640[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2502 -> 2251[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2502[label="yu300 == yu411000",fontsize=16,color="magenta"];2502 -> 2641[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2502 -> 2642[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2503[label="yu411001",fontsize=16,color="green",shape="box"];2504[label="yu301",fontsize=16,color="green",shape="box"];2505 -> 2238[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2505[label="yu300 == yu411000",fontsize=16,color="magenta"];2505 -> 2643[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2505 -> 2644[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2506 -> 2239[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2506[label="yu300 == yu411000",fontsize=16,color="magenta"];2506 -> 2645[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2506 -> 2646[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2507 -> 2240[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2507[label="yu300 == yu411000",fontsize=16,color="magenta"];2507 -> 2647[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2507 -> 2648[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2508 -> 2241[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2508[label="yu300 == yu411000",fontsize=16,color="magenta"];2508 -> 2649[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2508 -> 2650[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2509 -> 2242[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2509[label="yu300 == yu411000",fontsize=16,color="magenta"];2509 -> 2651[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2509 -> 2652[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2510 -> 2243[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2510[label="yu300 == yu411000",fontsize=16,color="magenta"];2510 -> 2653[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2510 -> 2654[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2511 -> 2205[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2511[label="yu300 == yu411000",fontsize=16,color="magenta"];2511 -> 2655[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2511 -> 2656[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2512 -> 2245[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2512[label="yu300 == yu411000",fontsize=16,color="magenta"];2512 -> 2657[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2512 -> 2658[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2513 -> 2246[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2513[label="yu300 == yu411000",fontsize=16,color="magenta"];2513 -> 2659[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2513 -> 2660[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2514 -> 2247[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2514[label="yu300 == yu411000",fontsize=16,color="magenta"];2514 -> 2661[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2514 -> 2662[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2515 -> 2248[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2515[label="yu300 == yu411000",fontsize=16,color="magenta"];2515 -> 2663[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2515 -> 2664[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2516 -> 2249[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2516[label="yu300 == yu411000",fontsize=16,color="magenta"];2516 -> 2665[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2516 -> 2666[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2517 -> 2250[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2517[label="yu300 == yu411000",fontsize=16,color="magenta"];2517 -> 2667[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2517 -> 2668[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2518 -> 2251[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2518[label="yu300 == yu411000",fontsize=16,color="magenta"];2518 -> 2669[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2518 -> 2670[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2519[label="yu301 * yu411000",fontsize=16,color="black",shape="triangle"];2519 -> 2671[label="",style="solid", color="black", weight=3]; 15.87/5.86 2520 -> 2519[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2520[label="yu300 * yu411001",fontsize=16,color="magenta"];2520 -> 2672[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2520 -> 2673[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2521 -> 2238[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2521[label="yu301 == yu411001",fontsize=16,color="magenta"];2521 -> 2674[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2521 -> 2675[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2522 -> 2239[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2522[label="yu301 == yu411001",fontsize=16,color="magenta"];2522 -> 2676[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2522 -> 2677[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2523 -> 2240[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2523[label="yu301 == yu411001",fontsize=16,color="magenta"];2523 -> 2678[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2523 -> 2679[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2524 -> 2241[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2524[label="yu301 == yu411001",fontsize=16,color="magenta"];2524 -> 2680[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2524 -> 2681[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2525 -> 2242[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2525[label="yu301 == yu411001",fontsize=16,color="magenta"];2525 -> 2682[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2525 -> 2683[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2526 -> 2243[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2526[label="yu301 == yu411001",fontsize=16,color="magenta"];2526 -> 2684[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2526 -> 2685[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2527 -> 2205[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2527[label="yu301 == yu411001",fontsize=16,color="magenta"];2527 -> 2686[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2527 -> 2687[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2528 -> 2245[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2528[label="yu301 == yu411001",fontsize=16,color="magenta"];2528 -> 2688[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2528 -> 2689[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2529 -> 2246[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2529[label="yu301 == yu411001",fontsize=16,color="magenta"];2529 -> 2690[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2529 -> 2691[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2530 -> 2247[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2530[label="yu301 == yu411001",fontsize=16,color="magenta"];2530 -> 2692[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2530 -> 2693[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2531 -> 2248[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2531[label="yu301 == yu411001",fontsize=16,color="magenta"];2531 -> 2694[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2531 -> 2695[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2532 -> 2249[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2532[label="yu301 == yu411001",fontsize=16,color="magenta"];2532 -> 2696[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2532 -> 2697[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2533 -> 2250[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2533[label="yu301 == yu411001",fontsize=16,color="magenta"];2533 -> 2698[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2533 -> 2699[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2534 -> 2251[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2534[label="yu301 == yu411001",fontsize=16,color="magenta"];2534 -> 2700[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2534 -> 2701[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2535 -> 2238[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2535[label="yu300 == yu411000",fontsize=16,color="magenta"];2535 -> 2702[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2535 -> 2703[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2536 -> 2239[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2536[label="yu300 == yu411000",fontsize=16,color="magenta"];2536 -> 2704[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2536 -> 2705[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2537 -> 2240[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2537[label="yu300 == yu411000",fontsize=16,color="magenta"];2537 -> 2706[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2537 -> 2707[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2538 -> 2241[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2538[label="yu300 == yu411000",fontsize=16,color="magenta"];2538 -> 2708[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2538 -> 2709[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2539 -> 2242[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2539[label="yu300 == yu411000",fontsize=16,color="magenta"];2539 -> 2710[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2539 -> 2711[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2540 -> 2243[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2540[label="yu300 == yu411000",fontsize=16,color="magenta"];2540 -> 2712[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2540 -> 2713[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2541 -> 2205[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2541[label="yu300 == yu411000",fontsize=16,color="magenta"];2541 -> 2714[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2541 -> 2715[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2542 -> 2245[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2542[label="yu300 == yu411000",fontsize=16,color="magenta"];2542 -> 2716[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2542 -> 2717[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2543 -> 2246[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2543[label="yu300 == yu411000",fontsize=16,color="magenta"];2543 -> 2718[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2543 -> 2719[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2544 -> 2247[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2544[label="yu300 == yu411000",fontsize=16,color="magenta"];2544 -> 2720[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2544 -> 2721[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2545 -> 2248[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2545[label="yu300 == yu411000",fontsize=16,color="magenta"];2545 -> 2722[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2545 -> 2723[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2546 -> 2249[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2546[label="yu300 == yu411000",fontsize=16,color="magenta"];2546 -> 2724[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2546 -> 2725[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2547 -> 2250[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2547[label="yu300 == yu411000",fontsize=16,color="magenta"];2547 -> 2726[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2547 -> 2727[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2548 -> 2251[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2548[label="yu300 == yu411000",fontsize=16,color="magenta"];2548 -> 2728[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2548 -> 2729[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2549 -> 2519[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2549[label="yu301 * yu411000",fontsize=16,color="magenta"];2549 -> 2730[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2549 -> 2731[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2550 -> 2519[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2550[label="yu300 * yu411001",fontsize=16,color="magenta"];2550 -> 2732[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2550 -> 2733[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2551[label="primEqInt (Pos (Succ yu3000)) (Pos (Succ yu4110000))",fontsize=16,color="black",shape="box"];2551 -> 2734[label="",style="solid", color="black", weight=3]; 15.87/5.86 2552[label="primEqInt (Pos (Succ yu3000)) (Pos Zero)",fontsize=16,color="black",shape="box"];2552 -> 2735[label="",style="solid", color="black", weight=3]; 15.87/5.86 2553[label="False",fontsize=16,color="green",shape="box"];2554[label="primEqInt (Pos Zero) (Pos (Succ yu4110000))",fontsize=16,color="black",shape="box"];2554 -> 2736[label="",style="solid", color="black", weight=3]; 15.87/5.86 2555[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2555 -> 2737[label="",style="solid", color="black", weight=3]; 15.87/5.86 2556[label="primEqInt (Pos Zero) (Neg (Succ yu4110000))",fontsize=16,color="black",shape="box"];2556 -> 2738[label="",style="solid", color="black", weight=3]; 15.87/5.86 2557[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2557 -> 2739[label="",style="solid", color="black", weight=3]; 15.87/5.86 2558[label="False",fontsize=16,color="green",shape="box"];2559[label="primEqInt (Neg (Succ yu3000)) (Neg (Succ yu4110000))",fontsize=16,color="black",shape="box"];2559 -> 2740[label="",style="solid", color="black", weight=3]; 15.87/5.86 2560[label="primEqInt (Neg (Succ yu3000)) (Neg Zero)",fontsize=16,color="black",shape="box"];2560 -> 2741[label="",style="solid", color="black", weight=3]; 15.87/5.86 2561[label="primEqInt (Neg Zero) (Pos (Succ yu4110000))",fontsize=16,color="black",shape="box"];2561 -> 2742[label="",style="solid", color="black", weight=3]; 15.87/5.86 2562[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2562 -> 2743[label="",style="solid", color="black", weight=3]; 15.87/5.86 2563[label="primEqInt (Neg Zero) (Neg (Succ yu4110000))",fontsize=16,color="black",shape="box"];2563 -> 2744[label="",style="solid", color="black", weight=3]; 15.87/5.86 2564[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2564 -> 2745[label="",style="solid", color="black", weight=3]; 15.87/5.86 2890[label="yu9100",fontsize=16,color="green",shape="box"];2891[label="yu411000000",fontsize=16,color="green",shape="box"];2896 -> 2856[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2896[label="foldr (++) [] (map (List.findIndices0 (yu3 ==)) (zipWith zip0 yu41111 (numericEnumFrom $! Pos yu93 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];2896 -> 2899[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2896 -> 2900[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2897[label="yu93",fontsize=16,color="green",shape="box"];2898[label="yu41110",fontsize=16,color="green",shape="box"];2565[label="primEqNat (Succ yu3000) (Succ yu4110000)",fontsize=16,color="black",shape="box"];2565 -> 2746[label="",style="solid", color="black", weight=3]; 15.87/5.86 2566[label="primEqNat (Succ yu3000) Zero",fontsize=16,color="black",shape="box"];2566 -> 2747[label="",style="solid", color="black", weight=3]; 15.87/5.86 2567[label="primEqNat Zero (Succ yu4110000)",fontsize=16,color="black",shape="box"];2567 -> 2748[label="",style="solid", color="black", weight=3]; 15.87/5.86 2568[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];2568 -> 2749[label="",style="solid", color="black", weight=3]; 15.87/5.86 2577[label="yu411001",fontsize=16,color="green",shape="box"];2578[label="yu301",fontsize=16,color="green",shape="box"];2579[label="yu411001",fontsize=16,color="green",shape="box"];2580[label="yu301",fontsize=16,color="green",shape="box"];2581[label="yu411000",fontsize=16,color="green",shape="box"];2582[label="yu300",fontsize=16,color="green",shape="box"];2583[label="yu411000",fontsize=16,color="green",shape="box"];2584[label="yu300",fontsize=16,color="green",shape="box"];2585[label="False",fontsize=16,color="green",shape="box"];2586[label="yu88",fontsize=16,color="green",shape="box"];2587 -> 2238[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2587[label="yu302 == yu411002",fontsize=16,color="magenta"];2587 -> 2751[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2587 -> 2752[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2588 -> 2239[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2588[label="yu302 == yu411002",fontsize=16,color="magenta"];2588 -> 2753[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2588 -> 2754[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2589 -> 2240[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2589[label="yu302 == yu411002",fontsize=16,color="magenta"];2589 -> 2755[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2589 -> 2756[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2590 -> 2241[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2590[label="yu302 == yu411002",fontsize=16,color="magenta"];2590 -> 2757[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2590 -> 2758[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2591 -> 2242[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2591[label="yu302 == yu411002",fontsize=16,color="magenta"];2591 -> 2759[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2591 -> 2760[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2592 -> 2243[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2592[label="yu302 == yu411002",fontsize=16,color="magenta"];2592 -> 2761[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2592 -> 2762[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2593 -> 2205[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2593[label="yu302 == yu411002",fontsize=16,color="magenta"];2593 -> 2763[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2593 -> 2764[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2594 -> 2245[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2594[label="yu302 == yu411002",fontsize=16,color="magenta"];2594 -> 2765[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2594 -> 2766[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2595 -> 2246[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2595[label="yu302 == yu411002",fontsize=16,color="magenta"];2595 -> 2767[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2595 -> 2768[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2596 -> 2247[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2596[label="yu302 == yu411002",fontsize=16,color="magenta"];2596 -> 2769[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2596 -> 2770[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2597 -> 2248[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2597[label="yu302 == yu411002",fontsize=16,color="magenta"];2597 -> 2771[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2597 -> 2772[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2598 -> 2249[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2598[label="yu302 == yu411002",fontsize=16,color="magenta"];2598 -> 2773[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2598 -> 2774[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2599 -> 2250[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2599[label="yu302 == yu411002",fontsize=16,color="magenta"];2599 -> 2775[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2599 -> 2776[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2600 -> 2251[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2600[label="yu302 == yu411002",fontsize=16,color="magenta"];2600 -> 2777[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2600 -> 2778[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2601 -> 2238[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2601[label="yu301 == yu411001",fontsize=16,color="magenta"];2601 -> 2779[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2601 -> 2780[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2602 -> 2239[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2602[label="yu301 == yu411001",fontsize=16,color="magenta"];2602 -> 2781[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2602 -> 2782[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2603 -> 2240[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2603[label="yu301 == yu411001",fontsize=16,color="magenta"];2603 -> 2783[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2603 -> 2784[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2604 -> 2241[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2604[label="yu301 == yu411001",fontsize=16,color="magenta"];2604 -> 2785[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2604 -> 2786[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2605 -> 2242[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2605[label="yu301 == yu411001",fontsize=16,color="magenta"];2605 -> 2787[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2605 -> 2788[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2606 -> 2243[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2606[label="yu301 == yu411001",fontsize=16,color="magenta"];2606 -> 2789[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2606 -> 2790[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2607 -> 2205[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2607[label="yu301 == yu411001",fontsize=16,color="magenta"];2607 -> 2791[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2607 -> 2792[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2608 -> 2245[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2608[label="yu301 == yu411001",fontsize=16,color="magenta"];2608 -> 2793[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2608 -> 2794[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2609 -> 2246[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2609[label="yu301 == yu411001",fontsize=16,color="magenta"];2609 -> 2795[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2609 -> 2796[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2610 -> 2247[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2610[label="yu301 == yu411001",fontsize=16,color="magenta"];2610 -> 2797[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2610 -> 2798[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2611 -> 2248[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2611[label="yu301 == yu411001",fontsize=16,color="magenta"];2611 -> 2799[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2611 -> 2800[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2612 -> 2249[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2612[label="yu301 == yu411001",fontsize=16,color="magenta"];2612 -> 2801[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2612 -> 2802[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2613 -> 2250[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2613[label="yu301 == yu411001",fontsize=16,color="magenta"];2613 -> 2803[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2613 -> 2804[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2614 -> 2251[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2614[label="yu301 == yu411001",fontsize=16,color="magenta"];2614 -> 2805[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2614 -> 2806[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2615[label="yu411000",fontsize=16,color="green",shape="box"];2616[label="yu300",fontsize=16,color="green",shape="box"];2617[label="yu411000",fontsize=16,color="green",shape="box"];2618[label="yu300",fontsize=16,color="green",shape="box"];2619[label="yu411000",fontsize=16,color="green",shape="box"];2620[label="yu300",fontsize=16,color="green",shape="box"];2621[label="yu411000",fontsize=16,color="green",shape="box"];2622[label="yu300",fontsize=16,color="green",shape="box"];2623[label="yu411000",fontsize=16,color="green",shape="box"];2624[label="yu300",fontsize=16,color="green",shape="box"];2625[label="yu411000",fontsize=16,color="green",shape="box"];2626[label="yu300",fontsize=16,color="green",shape="box"];2627[label="yu300",fontsize=16,color="green",shape="box"];2628[label="yu411000",fontsize=16,color="green",shape="box"];2629[label="yu411000",fontsize=16,color="green",shape="box"];2630[label="yu300",fontsize=16,color="green",shape="box"];2631[label="yu411000",fontsize=16,color="green",shape="box"];2632[label="yu300",fontsize=16,color="green",shape="box"];2633[label="yu411000",fontsize=16,color="green",shape="box"];2634[label="yu300",fontsize=16,color="green",shape="box"];2635[label="yu411000",fontsize=16,color="green",shape="box"];2636[label="yu300",fontsize=16,color="green",shape="box"];2637[label="yu411000",fontsize=16,color="green",shape="box"];2638[label="yu300",fontsize=16,color="green",shape="box"];2639[label="yu411000",fontsize=16,color="green",shape="box"];2640[label="yu300",fontsize=16,color="green",shape="box"];2641[label="yu411000",fontsize=16,color="green",shape="box"];2642[label="yu300",fontsize=16,color="green",shape="box"];2643[label="yu411000",fontsize=16,color="green",shape="box"];2644[label="yu300",fontsize=16,color="green",shape="box"];2645[label="yu411000",fontsize=16,color="green",shape="box"];2646[label="yu300",fontsize=16,color="green",shape="box"];2647[label="yu411000",fontsize=16,color="green",shape="box"];2648[label="yu300",fontsize=16,color="green",shape="box"];2649[label="yu411000",fontsize=16,color="green",shape="box"];2650[label="yu300",fontsize=16,color="green",shape="box"];2651[label="yu411000",fontsize=16,color="green",shape="box"];2652[label="yu300",fontsize=16,color="green",shape="box"];2653[label="yu411000",fontsize=16,color="green",shape="box"];2654[label="yu300",fontsize=16,color="green",shape="box"];2655[label="yu300",fontsize=16,color="green",shape="box"];2656[label="yu411000",fontsize=16,color="green",shape="box"];2657[label="yu411000",fontsize=16,color="green",shape="box"];2658[label="yu300",fontsize=16,color="green",shape="box"];2659[label="yu411000",fontsize=16,color="green",shape="box"];2660[label="yu300",fontsize=16,color="green",shape="box"];2661[label="yu411000",fontsize=16,color="green",shape="box"];2662[label="yu300",fontsize=16,color="green",shape="box"];2663[label="yu411000",fontsize=16,color="green",shape="box"];2664[label="yu300",fontsize=16,color="green",shape="box"];2665[label="yu411000",fontsize=16,color="green",shape="box"];2666[label="yu300",fontsize=16,color="green",shape="box"];2667[label="yu411000",fontsize=16,color="green",shape="box"];2668[label="yu300",fontsize=16,color="green",shape="box"];2669[label="yu411000",fontsize=16,color="green",shape="box"];2670[label="yu300",fontsize=16,color="green",shape="box"];2671[label="primMulInt yu301 yu411000",fontsize=16,color="burlywood",shape="box"];3129[label="yu301/Pos yu3010",fontsize=10,color="white",style="solid",shape="box"];2671 -> 3129[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 3129 -> 2807[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 3130[label="yu301/Neg yu3010",fontsize=10,color="white",style="solid",shape="box"];2671 -> 3130[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 3130 -> 2808[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2672[label="yu300",fontsize=16,color="green",shape="box"];2673[label="yu411001",fontsize=16,color="green",shape="box"];2674[label="yu411001",fontsize=16,color="green",shape="box"];2675[label="yu301",fontsize=16,color="green",shape="box"];2676[label="yu411001",fontsize=16,color="green",shape="box"];2677[label="yu301",fontsize=16,color="green",shape="box"];2678[label="yu411001",fontsize=16,color="green",shape="box"];2679[label="yu301",fontsize=16,color="green",shape="box"];2680[label="yu411001",fontsize=16,color="green",shape="box"];2681[label="yu301",fontsize=16,color="green",shape="box"];2682[label="yu411001",fontsize=16,color="green",shape="box"];2683[label="yu301",fontsize=16,color="green",shape="box"];2684[label="yu411001",fontsize=16,color="green",shape="box"];2685[label="yu301",fontsize=16,color="green",shape="box"];2686[label="yu301",fontsize=16,color="green",shape="box"];2687[label="yu411001",fontsize=16,color="green",shape="box"];2688[label="yu411001",fontsize=16,color="green",shape="box"];2689[label="yu301",fontsize=16,color="green",shape="box"];2690[label="yu411001",fontsize=16,color="green",shape="box"];2691[label="yu301",fontsize=16,color="green",shape="box"];2692[label="yu411001",fontsize=16,color="green",shape="box"];2693[label="yu301",fontsize=16,color="green",shape="box"];2694[label="yu411001",fontsize=16,color="green",shape="box"];2695[label="yu301",fontsize=16,color="green",shape="box"];2696[label="yu411001",fontsize=16,color="green",shape="box"];2697[label="yu301",fontsize=16,color="green",shape="box"];2698[label="yu411001",fontsize=16,color="green",shape="box"];2699[label="yu301",fontsize=16,color="green",shape="box"];2700[label="yu411001",fontsize=16,color="green",shape="box"];2701[label="yu301",fontsize=16,color="green",shape="box"];2702[label="yu411000",fontsize=16,color="green",shape="box"];2703[label="yu300",fontsize=16,color="green",shape="box"];2704[label="yu411000",fontsize=16,color="green",shape="box"];2705[label="yu300",fontsize=16,color="green",shape="box"];2706[label="yu411000",fontsize=16,color="green",shape="box"];2707[label="yu300",fontsize=16,color="green",shape="box"];2708[label="yu411000",fontsize=16,color="green",shape="box"];2709[label="yu300",fontsize=16,color="green",shape="box"];2710[label="yu411000",fontsize=16,color="green",shape="box"];2711[label="yu300",fontsize=16,color="green",shape="box"];2712[label="yu411000",fontsize=16,color="green",shape="box"];2713[label="yu300",fontsize=16,color="green",shape="box"];2714[label="yu300",fontsize=16,color="green",shape="box"];2715[label="yu411000",fontsize=16,color="green",shape="box"];2716[label="yu411000",fontsize=16,color="green",shape="box"];2717[label="yu300",fontsize=16,color="green",shape="box"];2718[label="yu411000",fontsize=16,color="green",shape="box"];2719[label="yu300",fontsize=16,color="green",shape="box"];2720[label="yu411000",fontsize=16,color="green",shape="box"];2721[label="yu300",fontsize=16,color="green",shape="box"];2722[label="yu411000",fontsize=16,color="green",shape="box"];2723[label="yu300",fontsize=16,color="green",shape="box"];2724[label="yu411000",fontsize=16,color="green",shape="box"];2725[label="yu300",fontsize=16,color="green",shape="box"];2726[label="yu411000",fontsize=16,color="green",shape="box"];2727[label="yu300",fontsize=16,color="green",shape="box"];2728[label="yu411000",fontsize=16,color="green",shape="box"];2729[label="yu300",fontsize=16,color="green",shape="box"];2730[label="yu301",fontsize=16,color="green",shape="box"];2731[label="yu411000",fontsize=16,color="green",shape="box"];2732[label="yu300",fontsize=16,color="green",shape="box"];2733[label="yu411001",fontsize=16,color="green",shape="box"];2734 -> 2348[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2734[label="primEqNat yu3000 yu4110000",fontsize=16,color="magenta"];2734 -> 2809[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2734 -> 2810[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2735[label="False",fontsize=16,color="green",shape="box"];2736[label="False",fontsize=16,color="green",shape="box"];2737[label="True",fontsize=16,color="green",shape="box"];2738[label="False",fontsize=16,color="green",shape="box"];2739[label="True",fontsize=16,color="green",shape="box"];2740 -> 2348[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2740[label="primEqNat yu3000 yu4110000",fontsize=16,color="magenta"];2740 -> 2811[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2740 -> 2812[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2741[label="False",fontsize=16,color="green",shape="box"];2742[label="False",fontsize=16,color="green",shape="box"];2743[label="True",fontsize=16,color="green",shape="box"];2744[label="False",fontsize=16,color="green",shape="box"];2745[label="True",fontsize=16,color="green",shape="box"];2899[label="yu93",fontsize=16,color="green",shape="box"];2900[label="yu41111",fontsize=16,color="green",shape="box"];2746 -> 2348[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2746[label="primEqNat yu3000 yu4110000",fontsize=16,color="magenta"];2746 -> 2813[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2746 -> 2814[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2747[label="False",fontsize=16,color="green",shape="box"];2748[label="False",fontsize=16,color="green",shape="box"];2749[label="True",fontsize=16,color="green",shape="box"];2751[label="yu411002",fontsize=16,color="green",shape="box"];2752[label="yu302",fontsize=16,color="green",shape="box"];2753[label="yu411002",fontsize=16,color="green",shape="box"];2754[label="yu302",fontsize=16,color="green",shape="box"];2755[label="yu411002",fontsize=16,color="green",shape="box"];2756[label="yu302",fontsize=16,color="green",shape="box"];2757[label="yu411002",fontsize=16,color="green",shape="box"];2758[label="yu302",fontsize=16,color="green",shape="box"];2759[label="yu411002",fontsize=16,color="green",shape="box"];2760[label="yu302",fontsize=16,color="green",shape="box"];2761[label="yu411002",fontsize=16,color="green",shape="box"];2762[label="yu302",fontsize=16,color="green",shape="box"];2763[label="yu302",fontsize=16,color="green",shape="box"];2764[label="yu411002",fontsize=16,color="green",shape="box"];2765[label="yu411002",fontsize=16,color="green",shape="box"];2766[label="yu302",fontsize=16,color="green",shape="box"];2767[label="yu411002",fontsize=16,color="green",shape="box"];2768[label="yu302",fontsize=16,color="green",shape="box"];2769[label="yu411002",fontsize=16,color="green",shape="box"];2770[label="yu302",fontsize=16,color="green",shape="box"];2771[label="yu411002",fontsize=16,color="green",shape="box"];2772[label="yu302",fontsize=16,color="green",shape="box"];2773[label="yu411002",fontsize=16,color="green",shape="box"];2774[label="yu302",fontsize=16,color="green",shape="box"];2775[label="yu411002",fontsize=16,color="green",shape="box"];2776[label="yu302",fontsize=16,color="green",shape="box"];2777[label="yu411002",fontsize=16,color="green",shape="box"];2778[label="yu302",fontsize=16,color="green",shape="box"];2779[label="yu411001",fontsize=16,color="green",shape="box"];2780[label="yu301",fontsize=16,color="green",shape="box"];2781[label="yu411001",fontsize=16,color="green",shape="box"];2782[label="yu301",fontsize=16,color="green",shape="box"];2783[label="yu411001",fontsize=16,color="green",shape="box"];2784[label="yu301",fontsize=16,color="green",shape="box"];2785[label="yu411001",fontsize=16,color="green",shape="box"];2786[label="yu301",fontsize=16,color="green",shape="box"];2787[label="yu411001",fontsize=16,color="green",shape="box"];2788[label="yu301",fontsize=16,color="green",shape="box"];2789[label="yu411001",fontsize=16,color="green",shape="box"];2790[label="yu301",fontsize=16,color="green",shape="box"];2791[label="yu301",fontsize=16,color="green",shape="box"];2792[label="yu411001",fontsize=16,color="green",shape="box"];2793[label="yu411001",fontsize=16,color="green",shape="box"];2794[label="yu301",fontsize=16,color="green",shape="box"];2795[label="yu411001",fontsize=16,color="green",shape="box"];2796[label="yu301",fontsize=16,color="green",shape="box"];2797[label="yu411001",fontsize=16,color="green",shape="box"];2798[label="yu301",fontsize=16,color="green",shape="box"];2799[label="yu411001",fontsize=16,color="green",shape="box"];2800[label="yu301",fontsize=16,color="green",shape="box"];2801[label="yu411001",fontsize=16,color="green",shape="box"];2802[label="yu301",fontsize=16,color="green",shape="box"];2803[label="yu411001",fontsize=16,color="green",shape="box"];2804[label="yu301",fontsize=16,color="green",shape="box"];2805[label="yu411001",fontsize=16,color="green",shape="box"];2806[label="yu301",fontsize=16,color="green",shape="box"];2807[label="primMulInt (Pos yu3010) yu411000",fontsize=16,color="burlywood",shape="box"];3131[label="yu411000/Pos yu4110000",fontsize=10,color="white",style="solid",shape="box"];2807 -> 3131[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 3131 -> 2816[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 3132[label="yu411000/Neg yu4110000",fontsize=10,color="white",style="solid",shape="box"];2807 -> 3132[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 3132 -> 2817[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2808[label="primMulInt (Neg yu3010) yu411000",fontsize=16,color="burlywood",shape="box"];3133[label="yu411000/Pos yu4110000",fontsize=10,color="white",style="solid",shape="box"];2808 -> 3133[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 3133 -> 2818[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 3134[label="yu411000/Neg yu4110000",fontsize=10,color="white",style="solid",shape="box"];2808 -> 3134[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 3134 -> 2819[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2809[label="yu3000",fontsize=16,color="green",shape="box"];2810[label="yu4110000",fontsize=16,color="green",shape="box"];2811[label="yu3000",fontsize=16,color="green",shape="box"];2812[label="yu4110000",fontsize=16,color="green",shape="box"];2813[label="yu3000",fontsize=16,color="green",shape="box"];2814[label="yu4110000",fontsize=16,color="green",shape="box"];2816[label="primMulInt (Pos yu3010) (Pos yu4110000)",fontsize=16,color="black",shape="box"];2816 -> 2821[label="",style="solid", color="black", weight=3]; 15.87/5.86 2817[label="primMulInt (Pos yu3010) (Neg yu4110000)",fontsize=16,color="black",shape="box"];2817 -> 2822[label="",style="solid", color="black", weight=3]; 15.87/5.86 2818[label="primMulInt (Neg yu3010) (Pos yu4110000)",fontsize=16,color="black",shape="box"];2818 -> 2823[label="",style="solid", color="black", weight=3]; 15.87/5.86 2819[label="primMulInt (Neg yu3010) (Neg yu4110000)",fontsize=16,color="black",shape="box"];2819 -> 2824[label="",style="solid", color="black", weight=3]; 15.87/5.86 2821[label="Pos (primMulNat yu3010 yu4110000)",fontsize=16,color="green",shape="box"];2821 -> 2826[label="",style="dashed", color="green", weight=3]; 15.87/5.86 2822[label="Neg (primMulNat yu3010 yu4110000)",fontsize=16,color="green",shape="box"];2822 -> 2827[label="",style="dashed", color="green", weight=3]; 15.87/5.86 2823[label="Neg (primMulNat yu3010 yu4110000)",fontsize=16,color="green",shape="box"];2823 -> 2828[label="",style="dashed", color="green", weight=3]; 15.87/5.86 2824[label="Pos (primMulNat yu3010 yu4110000)",fontsize=16,color="green",shape="box"];2824 -> 2829[label="",style="dashed", color="green", weight=3]; 15.87/5.86 2826[label="primMulNat yu3010 yu4110000",fontsize=16,color="burlywood",shape="triangle"];3135[label="yu3010/Succ yu30100",fontsize=10,color="white",style="solid",shape="box"];2826 -> 3135[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 3135 -> 2831[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 3136[label="yu3010/Zero",fontsize=10,color="white",style="solid",shape="box"];2826 -> 3136[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 3136 -> 2832[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2827 -> 2826[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2827[label="primMulNat yu3010 yu4110000",fontsize=16,color="magenta"];2827 -> 2833[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2828 -> 2826[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2828[label="primMulNat yu3010 yu4110000",fontsize=16,color="magenta"];2828 -> 2834[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2829 -> 2826[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2829[label="primMulNat yu3010 yu4110000",fontsize=16,color="magenta"];2829 -> 2835[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2829 -> 2836[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2831[label="primMulNat (Succ yu30100) yu4110000",fontsize=16,color="burlywood",shape="box"];3137[label="yu4110000/Succ yu41100000",fontsize=10,color="white",style="solid",shape="box"];2831 -> 3137[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 3137 -> 2838[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 3138[label="yu4110000/Zero",fontsize=10,color="white",style="solid",shape="box"];2831 -> 3138[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 3138 -> 2839[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2832[label="primMulNat Zero yu4110000",fontsize=16,color="burlywood",shape="box"];3139[label="yu4110000/Succ yu41100000",fontsize=10,color="white",style="solid",shape="box"];2832 -> 3139[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 3139 -> 2840[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 3140[label="yu4110000/Zero",fontsize=10,color="white",style="solid",shape="box"];2832 -> 3140[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 3140 -> 2841[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2833[label="yu4110000",fontsize=16,color="green",shape="box"];2834[label="yu3010",fontsize=16,color="green",shape="box"];2835[label="yu3010",fontsize=16,color="green",shape="box"];2836[label="yu4110000",fontsize=16,color="green",shape="box"];2838[label="primMulNat (Succ yu30100) (Succ yu41100000)",fontsize=16,color="black",shape="box"];2838 -> 2843[label="",style="solid", color="black", weight=3]; 15.87/5.86 2839[label="primMulNat (Succ yu30100) Zero",fontsize=16,color="black",shape="box"];2839 -> 2844[label="",style="solid", color="black", weight=3]; 15.87/5.86 2840[label="primMulNat Zero (Succ yu41100000)",fontsize=16,color="black",shape="box"];2840 -> 2845[label="",style="solid", color="black", weight=3]; 15.87/5.86 2841[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];2841 -> 2846[label="",style="solid", color="black", weight=3]; 15.87/5.86 2843 -> 2848[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2843[label="primPlusNat (primMulNat yu30100 (Succ yu41100000)) (Succ yu41100000)",fontsize=16,color="magenta"];2843 -> 2849[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2844[label="Zero",fontsize=16,color="green",shape="box"];2845[label="Zero",fontsize=16,color="green",shape="box"];2846[label="Zero",fontsize=16,color="green",shape="box"];2849 -> 2826[label="",style="dashed", color="red", weight=0]; 15.87/5.86 2849[label="primMulNat yu30100 (Succ yu41100000)",fontsize=16,color="magenta"];2849 -> 2852[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2849 -> 2853[label="",style="dashed", color="magenta", weight=3]; 15.87/5.86 2848[label="primPlusNat yu91 (Succ yu41100000)",fontsize=16,color="burlywood",shape="triangle"];3141[label="yu91/Succ yu910",fontsize=10,color="white",style="solid",shape="box"];2848 -> 3141[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 3141 -> 2854[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 3142[label="yu91/Zero",fontsize=10,color="white",style="solid",shape="box"];2848 -> 3142[label="",style="solid", color="burlywood", weight=9]; 15.87/5.86 3142 -> 2855[label="",style="solid", color="burlywood", weight=3]; 15.87/5.86 2852[label="yu30100",fontsize=16,color="green",shape="box"];2853[label="Succ yu41100000",fontsize=16,color="green",shape="box"];2854[label="primPlusNat (Succ yu910) (Succ yu41100000)",fontsize=16,color="black",shape="box"];2854 -> 2862[label="",style="solid", color="black", weight=3]; 15.87/5.86 2855[label="primPlusNat Zero (Succ yu41100000)",fontsize=16,color="black",shape="box"];2855 -> 2863[label="",style="solid", color="black", weight=3]; 15.87/5.86 2862[label="Succ (Succ (primPlusNat yu910 yu41100000))",fontsize=16,color="green",shape="box"];2862 -> 2866[label="",style="dashed", color="green", weight=3]; 15.87/5.86 2863[label="Succ yu41100000",fontsize=16,color="green",shape="box"];} 15.87/5.86 15.87/5.86 ---------------------------------------- 15.87/5.86 15.87/5.86 (14) 15.87/5.86 Complex Obligation (AND) 15.87/5.86 15.87/5.86 ---------------------------------------- 15.87/5.86 15.87/5.86 (15) 15.87/5.86 Obligation: 15.87/5.86 Q DP problem: 15.87/5.86 The TRS P consists of the following rules: 15.87/5.86 15.87/5.86 new_foldr0(yu3, yu41110, yu41111, yu94, yu93, ba) -> new_foldr(yu3, yu41111, yu93, ba) 15.87/5.86 new_foldr(yu3, :(yu41110, yu41111), yu92, ba) -> new_foldr0(yu3, yu41110, yu41111, new_primPlusNat0(yu92, Succ(Zero)), new_primPlusNat0(yu92, Succ(Zero)), ba) 15.87/5.86 15.87/5.86 The TRS R consists of the following rules: 15.87/5.86 15.87/5.86 new_primPlusNat0(Succ(yu9100), Zero) -> Succ(yu9100) 15.87/5.86 new_primPlusNat0(Zero, Succ(yu411000000)) -> Succ(yu411000000) 15.87/5.86 new_primPlusNat0(Succ(yu9100), Succ(yu411000000)) -> Succ(Succ(new_primPlusNat0(yu9100, yu411000000))) 15.87/5.86 new_primPlusNat0(Zero, Zero) -> Zero 15.87/5.86 15.87/5.86 The set Q consists of the following terms: 15.87/5.86 15.87/5.86 new_primPlusNat0(Succ(x0), Succ(x1)) 15.87/5.86 new_primPlusNat0(Succ(x0), Zero) 15.87/5.86 new_primPlusNat0(Zero, Succ(x0)) 15.87/5.86 new_primPlusNat0(Zero, Zero) 15.87/5.86 15.87/5.86 We have to consider all minimal (P,Q,R)-chains. 15.87/5.86 ---------------------------------------- 15.87/5.86 15.87/5.86 (16) QDPSizeChangeProof (EQUIVALENT) 15.87/5.86 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. 15.87/5.86 15.87/5.86 From the DPs we obtained the following set of size-change graphs: 15.87/5.86 *new_foldr(yu3, :(yu41110, yu41111), yu92, ba) -> new_foldr0(yu3, yu41110, yu41111, new_primPlusNat0(yu92, Succ(Zero)), new_primPlusNat0(yu92, Succ(Zero)), ba) 15.87/5.86 The graph contains the following edges 1 >= 1, 2 > 2, 2 > 3, 4 >= 6 15.87/5.86 15.87/5.86 15.87/5.86 *new_foldr0(yu3, yu41110, yu41111, yu94, yu93, ba) -> new_foldr(yu3, yu41111, yu93, ba) 15.87/5.86 The graph contains the following edges 1 >= 1, 3 >= 2, 5 >= 3, 6 >= 4 15.87/5.86 15.87/5.86 15.87/5.86 ---------------------------------------- 15.87/5.86 15.87/5.86 (17) 15.87/5.86 YES 15.87/5.86 15.87/5.86 ---------------------------------------- 15.87/5.86 15.87/5.86 (18) 15.87/5.86 Obligation: 15.87/5.86 Q DP problem: 15.87/5.86 The TRS P consists of the following rules: 15.87/5.86 15.87/5.86 new_esEs(Left(yu300), Left(yu411000), app(app(app(ty_@3, bd), be), bf), bc) -> new_esEs0(yu300, yu411000, bd, be, bf) 15.87/5.86 new_esEs0(@3(yu300, yu301, yu302), @3(yu411000, yu411001, yu411002), app(ty_Maybe, ha), dg, fc) -> new_esEs1(yu300, yu411000, ha) 15.87/5.86 new_esEs(Right(yu300), Right(yu411000), cc, app(app(app(ty_@3, cf), cg), da)) -> new_esEs0(yu300, yu411000, cf, cg, da) 15.87/5.86 new_esEs2(:(yu300, yu301), :(yu411000, yu411001), hf) -> new_esEs2(yu301, yu411001, hf) 15.87/5.86 new_esEs1(Just(@3(yu300, yu301, yu302)), Just(@3(yu411000, yu411001, yu411002)), app(app(app(ty_@3, df), app(ty_[], ga)), fc)) -> new_esEs2(yu301, yu411001, ga) 15.87/5.86 new_esEs1(Just(@2(yu300, yu301)), Just(@2(yu411000, yu411001)), app(app(ty_@2, app(app(app(ty_@3, bce), bcf), bcg)), bcd)) -> new_esEs0(yu300, yu411000, bce, bcf, bcg) 15.87/5.86 new_esEs1(Just(@2(yu300, yu301)), Just(@2(yu411000, yu411001)), app(app(ty_@2, bah), app(ty_[], bbg))) -> new_esEs2(yu301, yu411001, bbg) 15.87/5.86 new_esEs0(@3(yu300, yu301, yu302), @3(yu411000, yu411001, yu411002), app(app(ty_Either, gd), ge), dg, fc) -> new_esEs(yu300, yu411000, gd, ge) 15.87/5.86 new_esEs3(@2(yu300, yu301), @2(yu411000, yu411001), bah, app(app(ty_Either, bba), bbb)) -> new_esEs(yu301, yu411001, bba, bbb) 15.87/5.86 new_esEs3(@2(yu300, yu301), @2(yu411000, yu411001), app(app(app(ty_@3, bce), bcf), bcg), bcd) -> new_esEs0(yu300, yu411000, bce, bcf, bcg) 15.87/5.86 new_esEs1(Just(Left(yu300)), Just(Left(yu411000)), app(app(ty_Either, app(ty_Maybe, bg)), bc)) -> new_esEs1(yu300, yu411000, bg) 15.87/5.86 new_esEs0(@3(yu300, yu301, yu302), @3(yu411000, yu411001, yu411002), df, dg, app(ty_Maybe, ee)) -> new_esEs1(yu302, yu411002, ee) 15.87/5.86 new_esEs(Left(yu300), Left(yu411000), app(app(ty_@2, ca), cb), bc) -> new_esEs3(yu300, yu411000, ca, cb) 15.87/5.86 new_esEs1(Just(@3(yu300, yu301, yu302)), Just(@3(yu411000, yu411001, yu411002)), app(app(app(ty_@3, df), dg), app(app(ty_@2, eg), eh))) -> new_esEs3(yu302, yu411002, eg, eh) 15.87/5.86 new_esEs0(@3(yu300, yu301, yu302), @3(yu411000, yu411001, yu411002), df, app(ty_Maybe, fh), fc) -> new_esEs1(yu301, yu411001, fh) 15.87/5.86 new_esEs0(@3(yu300, yu301, yu302), @3(yu411000, yu411001, yu411002), df, dg, app(app(ty_Either, dh), ea)) -> new_esEs(yu302, yu411002, dh, ea) 15.87/5.86 new_esEs0(@3(yu300, yu301, yu302), @3(yu411000, yu411001, yu411002), app(app(ty_@2, hc), hd), dg, fc) -> new_esEs3(yu300, yu411000, hc, hd) 15.87/5.86 new_esEs2(:(yu300, yu301), :(yu411000, yu411001), app(app(ty_Either, hg), hh)) -> new_esEs(yu300, yu411000, hg, hh) 15.87/5.86 new_esEs3(@2(yu300, yu301), @2(yu411000, yu411001), app(ty_Maybe, bch), bcd) -> new_esEs1(yu300, yu411000, bch) 15.87/5.86 new_esEs2(:(yu300, yu301), :(yu411000, yu411001), app(app(ty_@2, baf), bag)) -> new_esEs3(yu300, yu411000, baf, bag) 15.87/5.86 new_esEs(Right(yu300), Right(yu411000), cc, app(ty_Maybe, db)) -> new_esEs1(yu300, yu411000, db) 15.87/5.86 new_esEs1(Just(Right(yu300)), Just(Right(yu411000)), app(app(ty_Either, cc), app(ty_[], dc))) -> new_esEs2(yu300, yu411000, dc) 15.87/5.86 new_esEs1(Just(Left(yu300)), Just(Left(yu411000)), app(app(ty_Either, app(ty_[], bh)), bc)) -> new_esEs2(yu300, yu411000, bh) 15.87/5.86 new_esEs3(@2(yu300, yu301), @2(yu411000, yu411001), bah, app(ty_Maybe, bbf)) -> new_esEs1(yu301, yu411001, bbf) 15.87/5.86 new_esEs1(Just(@3(yu300, yu301, yu302)), Just(@3(yu411000, yu411001, yu411002)), app(app(app(ty_@3, app(app(ty_Either, gd), ge)), dg), fc)) -> new_esEs(yu300, yu411000, gd, ge) 15.87/5.86 new_esEs1(Just(:(yu300, yu301)), Just(:(yu411000, yu411001)), app(ty_[], app(app(app(ty_@3, baa), bab), bac))) -> new_esEs0(yu300, yu411000, baa, bab, bac) 15.87/5.86 new_esEs3(@2(yu300, yu301), @2(yu411000, yu411001), bah, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_esEs0(yu301, yu411001, bbc, bbd, bbe) 15.87/5.86 new_esEs1(Just(:(yu300, yu301)), Just(:(yu411000, yu411001)), app(ty_[], hf)) -> new_esEs2(yu301, yu411001, hf) 15.87/5.86 new_esEs1(Just(@3(yu300, yu301, yu302)), Just(@3(yu411000, yu411001, yu411002)), app(app(app(ty_@3, df), app(app(app(ty_@3, fd), ff), fg)), fc)) -> new_esEs0(yu301, yu411001, fd, ff, fg) 15.87/5.86 new_esEs1(Just(@3(yu300, yu301, yu302)), Just(@3(yu411000, yu411001, yu411002)), app(app(app(ty_@3, df), app(app(ty_Either, fa), fb)), fc)) -> new_esEs(yu301, yu411001, fa, fb) 15.87/5.86 new_esEs1(Just(Right(yu300)), Just(Right(yu411000)), app(app(ty_Either, cc), app(app(ty_Either, cd), ce))) -> new_esEs(yu300, yu411000, cd, ce) 15.87/5.86 new_esEs1(Just(@3(yu300, yu301, yu302)), Just(@3(yu411000, yu411001, yu411002)), app(app(app(ty_@3, app(app(app(ty_@3, gf), gg), gh)), dg), fc)) -> new_esEs0(yu300, yu411000, gf, gg, gh) 15.87/5.86 new_esEs3(@2(yu300, yu301), @2(yu411000, yu411001), app(ty_[], bda), bcd) -> new_esEs2(yu300, yu411000, bda) 15.87/5.86 new_esEs0(@3(yu300, yu301, yu302), @3(yu411000, yu411001, yu411002), df, dg, app(ty_[], ef)) -> new_esEs2(yu302, yu411002, ef) 15.87/5.86 new_esEs1(Just(@2(yu300, yu301)), Just(@2(yu411000, yu411001)), app(app(ty_@2, bah), app(app(app(ty_@3, bbc), bbd), bbe))) -> new_esEs0(yu301, yu411001, bbc, bbd, bbe) 15.87/5.86 new_esEs1(Just(yu30), Just(yu41100), app(ty_Maybe, he)) -> new_esEs1(yu30, yu41100, he) 15.87/5.86 new_esEs1(Just(@3(yu300, yu301, yu302)), Just(@3(yu411000, yu411001, yu411002)), app(app(app(ty_@3, df), dg), app(ty_[], ef))) -> new_esEs2(yu302, yu411002, ef) 15.87/5.86 new_esEs1(Just(Right(yu300)), Just(Right(yu411000)), app(app(ty_Either, cc), app(app(ty_@2, dd), de))) -> new_esEs3(yu300, yu411000, dd, de) 15.87/5.86 new_esEs1(Just(@3(yu300, yu301, yu302)), Just(@3(yu411000, yu411001, yu411002)), app(app(app(ty_@3, df), app(ty_Maybe, fh)), fc)) -> new_esEs1(yu301, yu411001, fh) 15.87/5.86 new_esEs0(@3(yu300, yu301, yu302), @3(yu411000, yu411001, yu411002), app(ty_[], hb), dg, fc) -> new_esEs2(yu300, yu411000, hb) 15.87/5.86 new_esEs1(Just(@3(yu300, yu301, yu302)), Just(@3(yu411000, yu411001, yu411002)), app(app(app(ty_@3, app(app(ty_@2, hc), hd)), dg), fc)) -> new_esEs3(yu300, yu411000, hc, hd) 15.87/5.86 new_esEs1(Just(Left(yu300)), Just(Left(yu411000)), app(app(ty_Either, app(app(app(ty_@3, bd), be), bf)), bc)) -> new_esEs0(yu300, yu411000, bd, be, bf) 15.87/5.86 new_esEs1(Just(:(yu300, yu301)), Just(:(yu411000, yu411001)), app(ty_[], app(ty_[], bae))) -> new_esEs2(yu300, yu411000, bae) 15.87/5.86 new_esEs1(Just(@2(yu300, yu301)), Just(@2(yu411000, yu411001)), app(app(ty_@2, bah), app(app(ty_@2, bbh), bca))) -> new_esEs3(yu301, yu411001, bbh, bca) 15.87/5.86 new_esEs1(Just(@3(yu300, yu301, yu302)), Just(@3(yu411000, yu411001, yu411002)), app(app(app(ty_@3, df), dg), app(app(ty_Either, dh), ea))) -> new_esEs(yu302, yu411002, dh, ea) 15.87/5.86 new_esEs0(@3(yu300, yu301, yu302), @3(yu411000, yu411001, yu411002), df, app(app(app(ty_@3, fd), ff), fg), fc) -> new_esEs0(yu301, yu411001, fd, ff, fg) 15.87/5.86 new_esEs1(Just(@3(yu300, yu301, yu302)), Just(@3(yu411000, yu411001, yu411002)), app(app(app(ty_@3, app(ty_[], hb)), dg), fc)) -> new_esEs2(yu300, yu411000, hb) 15.87/5.86 new_esEs1(Just(Right(yu300)), Just(Right(yu411000)), app(app(ty_Either, cc), app(app(app(ty_@3, cf), cg), da))) -> new_esEs0(yu300, yu411000, cf, cg, da) 15.87/5.86 new_esEs2(:(yu300, yu301), :(yu411000, yu411001), app(app(app(ty_@3, baa), bab), bac)) -> new_esEs0(yu300, yu411000, baa, bab, bac) 15.87/5.86 new_esEs(Right(yu300), Right(yu411000), cc, app(app(ty_@2, dd), de)) -> new_esEs3(yu300, yu411000, dd, de) 15.87/5.86 new_esEs0(@3(yu300, yu301, yu302), @3(yu411000, yu411001, yu411002), df, app(app(ty_@2, gb), gc), fc) -> new_esEs3(yu301, yu411001, gb, gc) 15.87/5.86 new_esEs1(Just(@3(yu300, yu301, yu302)), Just(@3(yu411000, yu411001, yu411002)), app(app(app(ty_@3, df), dg), app(ty_Maybe, ee))) -> new_esEs1(yu302, yu411002, ee) 15.87/5.86 new_esEs1(Just(@3(yu300, yu301, yu302)), Just(@3(yu411000, yu411001, yu411002)), app(app(app(ty_@3, app(ty_Maybe, ha)), dg), fc)) -> new_esEs1(yu300, yu411000, ha) 15.87/5.86 new_esEs1(Just(@2(yu300, yu301)), Just(@2(yu411000, yu411001)), app(app(ty_@2, app(ty_[], bda)), bcd)) -> new_esEs2(yu300, yu411000, bda) 15.87/5.86 new_esEs1(Just(:(yu300, yu301)), Just(:(yu411000, yu411001)), app(ty_[], app(app(ty_Either, hg), hh))) -> new_esEs(yu300, yu411000, hg, hh) 15.87/5.86 new_esEs3(@2(yu300, yu301), @2(yu411000, yu411001), bah, app(app(ty_@2, bbh), bca)) -> new_esEs3(yu301, yu411001, bbh, bca) 15.87/5.86 new_esEs0(@3(yu300, yu301, yu302), @3(yu411000, yu411001, yu411002), df, dg, app(app(app(ty_@3, eb), ec), ed)) -> new_esEs0(yu302, yu411002, eb, ec, ed) 15.87/5.86 new_esEs(Right(yu300), Right(yu411000), cc, app(app(ty_Either, cd), ce)) -> new_esEs(yu300, yu411000, cd, ce) 15.87/5.86 new_esEs0(@3(yu300, yu301, yu302), @3(yu411000, yu411001, yu411002), df, app(app(ty_Either, fa), fb), fc) -> new_esEs(yu301, yu411001, fa, fb) 15.87/5.86 new_esEs1(Just(@3(yu300, yu301, yu302)), Just(@3(yu411000, yu411001, yu411002)), app(app(app(ty_@3, df), app(app(ty_@2, gb), gc)), fc)) -> new_esEs3(yu301, yu411001, gb, gc) 15.87/5.86 new_esEs1(Just(Left(yu300)), Just(Left(yu411000)), app(app(ty_Either, app(app(ty_@2, ca), cb)), bc)) -> new_esEs3(yu300, yu411000, ca, cb) 15.87/5.86 new_esEs(Right(yu300), Right(yu411000), cc, app(ty_[], dc)) -> new_esEs2(yu300, yu411000, dc) 15.87/5.86 new_esEs1(Just(@2(yu300, yu301)), Just(@2(yu411000, yu411001)), app(app(ty_@2, app(app(ty_Either, bcb), bcc)), bcd)) -> new_esEs(yu300, yu411000, bcb, bcc) 15.87/5.86 new_esEs1(Just(@2(yu300, yu301)), Just(@2(yu411000, yu411001)), app(app(ty_@2, bah), app(ty_Maybe, bbf))) -> new_esEs1(yu301, yu411001, bbf) 15.87/5.86 new_esEs3(@2(yu300, yu301), @2(yu411000, yu411001), app(app(ty_@2, bdb), bdc), bcd) -> new_esEs3(yu300, yu411000, bdb, bdc) 15.87/5.86 new_esEs1(Just(@3(yu300, yu301, yu302)), Just(@3(yu411000, yu411001, yu411002)), app(app(app(ty_@3, df), dg), app(app(app(ty_@3, eb), ec), ed))) -> new_esEs0(yu302, yu411002, eb, ec, ed) 15.87/5.86 new_esEs1(Just(:(yu300, yu301)), Just(:(yu411000, yu411001)), app(ty_[], app(app(ty_@2, baf), bag))) -> new_esEs3(yu300, yu411000, baf, bag) 15.87/5.86 new_esEs(Left(yu300), Left(yu411000), app(app(ty_Either, ba), bb), bc) -> new_esEs(yu300, yu411000, ba, bb) 15.87/5.86 new_esEs3(@2(yu300, yu301), @2(yu411000, yu411001), bah, app(ty_[], bbg)) -> new_esEs2(yu301, yu411001, bbg) 15.87/5.86 new_esEs2(:(yu300, yu301), :(yu411000, yu411001), app(ty_[], bae)) -> new_esEs2(yu300, yu411000, bae) 15.87/5.86 new_esEs0(@3(yu300, yu301, yu302), @3(yu411000, yu411001, yu411002), df, dg, app(app(ty_@2, eg), eh)) -> new_esEs3(yu302, yu411002, eg, eh) 15.87/5.86 new_esEs1(Just(Right(yu300)), Just(Right(yu411000)), app(app(ty_Either, cc), app(ty_Maybe, db))) -> new_esEs1(yu300, yu411000, db) 15.87/5.86 new_esEs(Left(yu300), Left(yu411000), app(ty_[], bh), bc) -> new_esEs2(yu300, yu411000, bh) 15.87/5.86 new_esEs(Left(yu300), Left(yu411000), app(ty_Maybe, bg), bc) -> new_esEs1(yu300, yu411000, bg) 15.87/5.86 new_esEs1(Just(@2(yu300, yu301)), Just(@2(yu411000, yu411001)), app(app(ty_@2, app(ty_Maybe, bch)), bcd)) -> new_esEs1(yu300, yu411000, bch) 15.87/5.86 new_esEs1(Just(:(yu300, yu301)), Just(:(yu411000, yu411001)), app(ty_[], app(ty_Maybe, bad))) -> new_esEs1(yu300, yu411000, bad) 15.87/5.86 new_esEs0(@3(yu300, yu301, yu302), @3(yu411000, yu411001, yu411002), df, app(ty_[], ga), fc) -> new_esEs2(yu301, yu411001, ga) 15.87/5.86 new_esEs3(@2(yu300, yu301), @2(yu411000, yu411001), app(app(ty_Either, bcb), bcc), bcd) -> new_esEs(yu300, yu411000, bcb, bcc) 15.87/5.86 new_esEs1(Just(@2(yu300, yu301)), Just(@2(yu411000, yu411001)), app(app(ty_@2, bah), app(app(ty_Either, bba), bbb))) -> new_esEs(yu301, yu411001, bba, bbb) 15.87/5.86 new_esEs1(Just(Left(yu300)), Just(Left(yu411000)), app(app(ty_Either, app(app(ty_Either, ba), bb)), bc)) -> new_esEs(yu300, yu411000, ba, bb) 15.87/5.86 new_esEs0(@3(yu300, yu301, yu302), @3(yu411000, yu411001, yu411002), app(app(app(ty_@3, gf), gg), gh), dg, fc) -> new_esEs0(yu300, yu411000, gf, gg, gh) 15.87/5.86 new_esEs2(:(yu300, yu301), :(yu411000, yu411001), app(ty_Maybe, bad)) -> new_esEs1(yu300, yu411000, bad) 15.87/5.86 new_esEs1(Just(@2(yu300, yu301)), Just(@2(yu411000, yu411001)), app(app(ty_@2, app(app(ty_@2, bdb), bdc)), bcd)) -> new_esEs3(yu300, yu411000, bdb, bdc) 15.87/5.86 15.87/5.86 R is empty. 15.87/5.86 Q is empty. 15.87/5.86 We have to consider all minimal (P,Q,R)-chains. 15.87/5.86 ---------------------------------------- 15.87/5.86 15.87/5.86 (19) QDPSizeChangeProof (EQUIVALENT) 15.87/5.86 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. 15.87/5.86 15.87/5.86 From the DPs we obtained the following set of size-change graphs: 15.87/5.86 *new_esEs2(:(yu300, yu301), :(yu411000, yu411001), app(app(ty_Either, hg), hh)) -> new_esEs(yu300, yu411000, hg, hh) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs2(:(yu300, yu301), :(yu411000, yu411001), app(app(app(ty_@3, baa), bab), bac)) -> new_esEs0(yu300, yu411000, baa, bab, bac) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs2(:(yu300, yu301), :(yu411000, yu411001), app(ty_Maybe, bad)) -> new_esEs1(yu300, yu411000, bad) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs2(:(yu300, yu301), :(yu411000, yu411001), app(app(ty_@2, baf), bag)) -> new_esEs3(yu300, yu411000, baf, bag) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs0(@3(yu300, yu301, yu302), @3(yu411000, yu411001, yu411002), app(app(ty_Either, gd), ge), dg, fc) -> new_esEs(yu300, yu411000, gd, ge) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs0(@3(yu300, yu301, yu302), @3(yu411000, yu411001, yu411002), df, dg, app(app(ty_Either, dh), ea)) -> new_esEs(yu302, yu411002, dh, ea) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs0(@3(yu300, yu301, yu302), @3(yu411000, yu411001, yu411002), df, app(app(ty_Either, fa), fb), fc) -> new_esEs(yu301, yu411001, fa, fb) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs0(@3(yu300, yu301, yu302), @3(yu411000, yu411001, yu411002), df, app(app(app(ty_@3, fd), ff), fg), fc) -> new_esEs0(yu301, yu411001, fd, ff, fg) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs0(@3(yu300, yu301, yu302), @3(yu411000, yu411001, yu411002), df, dg, app(app(app(ty_@3, eb), ec), ed)) -> new_esEs0(yu302, yu411002, eb, ec, ed) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs0(@3(yu300, yu301, yu302), @3(yu411000, yu411001, yu411002), app(app(app(ty_@3, gf), gg), gh), dg, fc) -> new_esEs0(yu300, yu411000, gf, gg, gh) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs0(@3(yu300, yu301, yu302), @3(yu411000, yu411001, yu411002), df, dg, app(ty_[], ef)) -> new_esEs2(yu302, yu411002, ef) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs0(@3(yu300, yu301, yu302), @3(yu411000, yu411001, yu411002), app(ty_[], hb), dg, fc) -> new_esEs2(yu300, yu411000, hb) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs0(@3(yu300, yu301, yu302), @3(yu411000, yu411001, yu411002), df, app(ty_[], ga), fc) -> new_esEs2(yu301, yu411001, ga) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs0(@3(yu300, yu301, yu302), @3(yu411000, yu411001, yu411002), app(ty_Maybe, ha), dg, fc) -> new_esEs1(yu300, yu411000, ha) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs0(@3(yu300, yu301, yu302), @3(yu411000, yu411001, yu411002), df, dg, app(ty_Maybe, ee)) -> new_esEs1(yu302, yu411002, ee) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs0(@3(yu300, yu301, yu302), @3(yu411000, yu411001, yu411002), df, app(ty_Maybe, fh), fc) -> new_esEs1(yu301, yu411001, fh) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs0(@3(yu300, yu301, yu302), @3(yu411000, yu411001, yu411002), app(app(ty_@2, hc), hd), dg, fc) -> new_esEs3(yu300, yu411000, hc, hd) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs0(@3(yu300, yu301, yu302), @3(yu411000, yu411001, yu411002), df, app(app(ty_@2, gb), gc), fc) -> new_esEs3(yu301, yu411001, gb, gc) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs0(@3(yu300, yu301, yu302), @3(yu411000, yu411001, yu411002), df, dg, app(app(ty_@2, eg), eh)) -> new_esEs3(yu302, yu411002, eg, eh) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs1(Just(@3(yu300, yu301, yu302)), Just(@3(yu411000, yu411001, yu411002)), app(app(app(ty_@3, app(app(ty_Either, gd), ge)), dg), fc)) -> new_esEs(yu300, yu411000, gd, ge) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs1(Just(@3(yu300, yu301, yu302)), Just(@3(yu411000, yu411001, yu411002)), app(app(app(ty_@3, df), app(app(ty_Either, fa), fb)), fc)) -> new_esEs(yu301, yu411001, fa, fb) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs1(Just(Right(yu300)), Just(Right(yu411000)), app(app(ty_Either, cc), app(app(ty_Either, cd), ce))) -> new_esEs(yu300, yu411000, cd, ce) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs1(Just(@3(yu300, yu301, yu302)), Just(@3(yu411000, yu411001, yu411002)), app(app(app(ty_@3, df), dg), app(app(ty_Either, dh), ea))) -> new_esEs(yu302, yu411002, dh, ea) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs1(Just(:(yu300, yu301)), Just(:(yu411000, yu411001)), app(ty_[], app(app(ty_Either, hg), hh))) -> new_esEs(yu300, yu411000, hg, hh) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs1(Just(@2(yu300, yu301)), Just(@2(yu411000, yu411001)), app(app(ty_@2, app(app(ty_Either, bcb), bcc)), bcd)) -> new_esEs(yu300, yu411000, bcb, bcc) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs1(Just(@2(yu300, yu301)), Just(@2(yu411000, yu411001)), app(app(ty_@2, bah), app(app(ty_Either, bba), bbb))) -> new_esEs(yu301, yu411001, bba, bbb) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs1(Just(Left(yu300)), Just(Left(yu411000)), app(app(ty_Either, app(app(ty_Either, ba), bb)), bc)) -> new_esEs(yu300, yu411000, ba, bb) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs(Right(yu300), Right(yu411000), cc, app(app(ty_Either, cd), ce)) -> new_esEs(yu300, yu411000, cd, ce) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs(Left(yu300), Left(yu411000), app(app(ty_Either, ba), bb), bc) -> new_esEs(yu300, yu411000, ba, bb) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs3(@2(yu300, yu301), @2(yu411000, yu411001), bah, app(app(ty_Either, bba), bbb)) -> new_esEs(yu301, yu411001, bba, bbb) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs3(@2(yu300, yu301), @2(yu411000, yu411001), app(app(ty_Either, bcb), bcc), bcd) -> new_esEs(yu300, yu411000, bcb, bcc) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs1(Just(@2(yu300, yu301)), Just(@2(yu411000, yu411001)), app(app(ty_@2, app(app(app(ty_@3, bce), bcf), bcg)), bcd)) -> new_esEs0(yu300, yu411000, bce, bcf, bcg) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs1(Just(:(yu300, yu301)), Just(:(yu411000, yu411001)), app(ty_[], app(app(app(ty_@3, baa), bab), bac))) -> new_esEs0(yu300, yu411000, baa, bab, bac) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs1(Just(@3(yu300, yu301, yu302)), Just(@3(yu411000, yu411001, yu411002)), app(app(app(ty_@3, df), app(app(app(ty_@3, fd), ff), fg)), fc)) -> new_esEs0(yu301, yu411001, fd, ff, fg) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs1(Just(@3(yu300, yu301, yu302)), Just(@3(yu411000, yu411001, yu411002)), app(app(app(ty_@3, app(app(app(ty_@3, gf), gg), gh)), dg), fc)) -> new_esEs0(yu300, yu411000, gf, gg, gh) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs1(Just(@2(yu300, yu301)), Just(@2(yu411000, yu411001)), app(app(ty_@2, bah), app(app(app(ty_@3, bbc), bbd), bbe))) -> new_esEs0(yu301, yu411001, bbc, bbd, bbe) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs1(Just(Left(yu300)), Just(Left(yu411000)), app(app(ty_Either, app(app(app(ty_@3, bd), be), bf)), bc)) -> new_esEs0(yu300, yu411000, bd, be, bf) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs1(Just(Right(yu300)), Just(Right(yu411000)), app(app(ty_Either, cc), app(app(app(ty_@3, cf), cg), da))) -> new_esEs0(yu300, yu411000, cf, cg, da) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs1(Just(@3(yu300, yu301, yu302)), Just(@3(yu411000, yu411001, yu411002)), app(app(app(ty_@3, df), dg), app(app(app(ty_@3, eb), ec), ed))) -> new_esEs0(yu302, yu411002, eb, ec, ed) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs1(Just(@3(yu300, yu301, yu302)), Just(@3(yu411000, yu411001, yu411002)), app(app(app(ty_@3, df), app(ty_[], ga)), fc)) -> new_esEs2(yu301, yu411001, ga) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs1(Just(@2(yu300, yu301)), Just(@2(yu411000, yu411001)), app(app(ty_@2, bah), app(ty_[], bbg))) -> new_esEs2(yu301, yu411001, bbg) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs1(Just(Right(yu300)), Just(Right(yu411000)), app(app(ty_Either, cc), app(ty_[], dc))) -> new_esEs2(yu300, yu411000, dc) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs1(Just(Left(yu300)), Just(Left(yu411000)), app(app(ty_Either, app(ty_[], bh)), bc)) -> new_esEs2(yu300, yu411000, bh) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs1(Just(:(yu300, yu301)), Just(:(yu411000, yu411001)), app(ty_[], hf)) -> new_esEs2(yu301, yu411001, hf) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs1(Just(@3(yu300, yu301, yu302)), Just(@3(yu411000, yu411001, yu411002)), app(app(app(ty_@3, df), dg), app(ty_[], ef))) -> new_esEs2(yu302, yu411002, ef) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs1(Just(:(yu300, yu301)), Just(:(yu411000, yu411001)), app(ty_[], app(ty_[], bae))) -> new_esEs2(yu300, yu411000, bae) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs1(Just(@3(yu300, yu301, yu302)), Just(@3(yu411000, yu411001, yu411002)), app(app(app(ty_@3, app(ty_[], hb)), dg), fc)) -> new_esEs2(yu300, yu411000, hb) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs1(Just(@2(yu300, yu301)), Just(@2(yu411000, yu411001)), app(app(ty_@2, app(ty_[], bda)), bcd)) -> new_esEs2(yu300, yu411000, bda) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs1(Just(Left(yu300)), Just(Left(yu411000)), app(app(ty_Either, app(ty_Maybe, bg)), bc)) -> new_esEs1(yu300, yu411000, bg) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs1(Just(yu30), Just(yu41100), app(ty_Maybe, he)) -> new_esEs1(yu30, yu41100, he) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs1(Just(@3(yu300, yu301, yu302)), Just(@3(yu411000, yu411001, yu411002)), app(app(app(ty_@3, df), app(ty_Maybe, fh)), fc)) -> new_esEs1(yu301, yu411001, fh) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs1(Just(@3(yu300, yu301, yu302)), Just(@3(yu411000, yu411001, yu411002)), app(app(app(ty_@3, df), dg), app(ty_Maybe, ee))) -> new_esEs1(yu302, yu411002, ee) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs1(Just(@3(yu300, yu301, yu302)), Just(@3(yu411000, yu411001, yu411002)), app(app(app(ty_@3, app(ty_Maybe, ha)), dg), fc)) -> new_esEs1(yu300, yu411000, ha) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs1(Just(@2(yu300, yu301)), Just(@2(yu411000, yu411001)), app(app(ty_@2, bah), app(ty_Maybe, bbf))) -> new_esEs1(yu301, yu411001, bbf) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs1(Just(Right(yu300)), Just(Right(yu411000)), app(app(ty_Either, cc), app(ty_Maybe, db))) -> new_esEs1(yu300, yu411000, db) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs1(Just(@2(yu300, yu301)), Just(@2(yu411000, yu411001)), app(app(ty_@2, app(ty_Maybe, bch)), bcd)) -> new_esEs1(yu300, yu411000, bch) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs1(Just(:(yu300, yu301)), Just(:(yu411000, yu411001)), app(ty_[], app(ty_Maybe, bad))) -> new_esEs1(yu300, yu411000, bad) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs1(Just(@3(yu300, yu301, yu302)), Just(@3(yu411000, yu411001, yu411002)), app(app(app(ty_@3, df), dg), app(app(ty_@2, eg), eh))) -> new_esEs3(yu302, yu411002, eg, eh) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs1(Just(Right(yu300)), Just(Right(yu411000)), app(app(ty_Either, cc), app(app(ty_@2, dd), de))) -> new_esEs3(yu300, yu411000, dd, de) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs1(Just(@3(yu300, yu301, yu302)), Just(@3(yu411000, yu411001, yu411002)), app(app(app(ty_@3, app(app(ty_@2, hc), hd)), dg), fc)) -> new_esEs3(yu300, yu411000, hc, hd) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs1(Just(@2(yu300, yu301)), Just(@2(yu411000, yu411001)), app(app(ty_@2, bah), app(app(ty_@2, bbh), bca))) -> new_esEs3(yu301, yu411001, bbh, bca) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs1(Just(@3(yu300, yu301, yu302)), Just(@3(yu411000, yu411001, yu411002)), app(app(app(ty_@3, df), app(app(ty_@2, gb), gc)), fc)) -> new_esEs3(yu301, yu411001, gb, gc) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs1(Just(Left(yu300)), Just(Left(yu411000)), app(app(ty_Either, app(app(ty_@2, ca), cb)), bc)) -> new_esEs3(yu300, yu411000, ca, cb) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs1(Just(:(yu300, yu301)), Just(:(yu411000, yu411001)), app(ty_[], app(app(ty_@2, baf), bag))) -> new_esEs3(yu300, yu411000, baf, bag) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs1(Just(@2(yu300, yu301)), Just(@2(yu411000, yu411001)), app(app(ty_@2, app(app(ty_@2, bdb), bdc)), bcd)) -> new_esEs3(yu300, yu411000, bdb, bdc) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs(Left(yu300), Left(yu411000), app(app(app(ty_@3, bd), be), bf), bc) -> new_esEs0(yu300, yu411000, bd, be, bf) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs(Right(yu300), Right(yu411000), cc, app(app(app(ty_@3, cf), cg), da)) -> new_esEs0(yu300, yu411000, cf, cg, da) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs3(@2(yu300, yu301), @2(yu411000, yu411001), app(app(app(ty_@3, bce), bcf), bcg), bcd) -> new_esEs0(yu300, yu411000, bce, bcf, bcg) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs3(@2(yu300, yu301), @2(yu411000, yu411001), bah, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_esEs0(yu301, yu411001, bbc, bbd, bbe) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs2(:(yu300, yu301), :(yu411000, yu411001), hf) -> new_esEs2(yu301, yu411001, hf) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs2(:(yu300, yu301), :(yu411000, yu411001), app(ty_[], bae)) -> new_esEs2(yu300, yu411000, bae) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs(Right(yu300), Right(yu411000), cc, app(ty_[], dc)) -> new_esEs2(yu300, yu411000, dc) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs(Left(yu300), Left(yu411000), app(ty_[], bh), bc) -> new_esEs2(yu300, yu411000, bh) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs3(@2(yu300, yu301), @2(yu411000, yu411001), app(ty_[], bda), bcd) -> new_esEs2(yu300, yu411000, bda) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs3(@2(yu300, yu301), @2(yu411000, yu411001), bah, app(ty_[], bbg)) -> new_esEs2(yu301, yu411001, bbg) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs(Right(yu300), Right(yu411000), cc, app(ty_Maybe, db)) -> new_esEs1(yu300, yu411000, db) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs(Left(yu300), Left(yu411000), app(ty_Maybe, bg), bc) -> new_esEs1(yu300, yu411000, bg) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs3(@2(yu300, yu301), @2(yu411000, yu411001), app(ty_Maybe, bch), bcd) -> new_esEs1(yu300, yu411000, bch) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs3(@2(yu300, yu301), @2(yu411000, yu411001), bah, app(ty_Maybe, bbf)) -> new_esEs1(yu301, yu411001, bbf) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs(Left(yu300), Left(yu411000), app(app(ty_@2, ca), cb), bc) -> new_esEs3(yu300, yu411000, ca, cb) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs(Right(yu300), Right(yu411000), cc, app(app(ty_@2, dd), de)) -> new_esEs3(yu300, yu411000, dd, de) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs3(@2(yu300, yu301), @2(yu411000, yu411001), bah, app(app(ty_@2, bbh), bca)) -> new_esEs3(yu301, yu411001, bbh, bca) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 15.87/5.86 15.87/5.86 15.87/5.86 *new_esEs3(@2(yu300, yu301), @2(yu411000, yu411001), app(app(ty_@2, bdb), bdc), bcd) -> new_esEs3(yu300, yu411000, bdb, bdc) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 15.87/5.86 15.87/5.86 15.87/5.86 ---------------------------------------- 15.87/5.86 15.87/5.86 (20) 15.87/5.86 YES 15.87/5.86 15.87/5.86 ---------------------------------------- 15.87/5.86 15.87/5.86 (21) 15.87/5.86 Obligation: 15.87/5.86 Q DP problem: 15.87/5.86 The TRS P consists of the following rules: 15.87/5.86 15.87/5.86 new_primMulNat(Succ(yu30100), Succ(yu41100000)) -> new_primMulNat(yu30100, Succ(yu41100000)) 15.87/5.86 15.87/5.86 R is empty. 15.87/5.86 Q is empty. 15.87/5.86 We have to consider all minimal (P,Q,R)-chains. 15.87/5.86 ---------------------------------------- 15.87/5.86 15.87/5.86 (22) QDPSizeChangeProof (EQUIVALENT) 15.87/5.86 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. 15.87/5.86 15.87/5.86 From the DPs we obtained the following set of size-change graphs: 15.87/5.86 *new_primMulNat(Succ(yu30100), Succ(yu41100000)) -> new_primMulNat(yu30100, Succ(yu41100000)) 15.87/5.86 The graph contains the following edges 1 > 1, 2 >= 2 15.87/5.86 15.87/5.86 15.87/5.86 ---------------------------------------- 15.87/5.86 15.87/5.86 (23) 15.87/5.86 YES 15.87/5.86 15.87/5.86 ---------------------------------------- 15.87/5.86 15.87/5.86 (24) 15.87/5.86 Obligation: 15.87/5.86 Q DP problem: 15.87/5.86 The TRS P consists of the following rules: 15.87/5.86 15.87/5.86 new_primPlusNat(Succ(yu9100), Succ(yu411000000)) -> new_primPlusNat(yu9100, yu411000000) 15.87/5.86 15.87/5.86 R is empty. 15.87/5.86 Q is empty. 15.87/5.86 We have to consider all minimal (P,Q,R)-chains. 15.87/5.86 ---------------------------------------- 15.87/5.86 15.87/5.86 (25) QDPSizeChangeProof (EQUIVALENT) 15.87/5.86 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. 15.87/5.86 15.87/5.86 From the DPs we obtained the following set of size-change graphs: 15.87/5.86 *new_primPlusNat(Succ(yu9100), Succ(yu411000000)) -> new_primPlusNat(yu9100, yu411000000) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2 15.87/5.86 15.87/5.86 15.87/5.86 ---------------------------------------- 15.87/5.86 15.87/5.86 (26) 15.87/5.86 YES 15.87/5.86 15.87/5.86 ---------------------------------------- 15.87/5.86 15.87/5.86 (27) 15.87/5.86 Obligation: 15.87/5.86 Q DP problem: 15.87/5.86 The TRS P consists of the following rules: 15.87/5.86 15.87/5.86 new_primEqNat(Succ(yu3000), Succ(yu4110000)) -> new_primEqNat(yu3000, yu4110000) 15.87/5.86 15.87/5.86 R is empty. 15.87/5.86 Q is empty. 15.87/5.86 We have to consider all minimal (P,Q,R)-chains. 15.87/5.86 ---------------------------------------- 15.87/5.86 15.87/5.86 (28) QDPSizeChangeProof (EQUIVALENT) 15.87/5.86 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. 15.87/5.86 15.87/5.86 From the DPs we obtained the following set of size-change graphs: 15.87/5.86 *new_primEqNat(Succ(yu3000), Succ(yu4110000)) -> new_primEqNat(yu3000, yu4110000) 15.87/5.86 The graph contains the following edges 1 > 1, 2 > 2 15.87/5.86 15.87/5.86 15.87/5.86 ---------------------------------------- 15.87/5.86 15.87/5.86 (29) 15.87/5.86 YES 15.87/5.90 EOF