15.46/5.94 YES 18.28/6.69 proof of /export/starexec/sandbox2/benchmark/theBenchmark.hs 18.28/6.69 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 18.28/6.69 18.28/6.69 18.28/6.69 H-Termination with start terms of the given HASKELL could be proven: 18.28/6.69 18.28/6.69 (0) HASKELL 18.28/6.69 (1) LR [EQUIVALENT, 0 ms] 18.28/6.69 (2) HASKELL 18.28/6.69 (3) CR [EQUIVALENT, 0 ms] 18.28/6.69 (4) HASKELL 18.28/6.69 (5) IFR [EQUIVALENT, 0 ms] 18.28/6.69 (6) HASKELL 18.28/6.69 (7) BR [EQUIVALENT, 16 ms] 18.28/6.69 (8) HASKELL 18.28/6.69 (9) COR [EQUIVALENT, 0 ms] 18.28/6.69 (10) HASKELL 18.28/6.69 (11) NumRed [SOUND, 1 ms] 18.28/6.69 (12) HASKELL 18.28/6.69 (13) Narrow [SOUND, 0 ms] 18.28/6.69 (14) AND 18.28/6.69 (15) QDP 18.28/6.69 (16) QDPSizeChangeProof [EQUIVALENT, 22 ms] 18.28/6.69 (17) YES 18.28/6.69 (18) QDP 18.28/6.69 (19) QDPSizeChangeProof [EQUIVALENT, 0 ms] 18.28/6.69 (20) YES 18.28/6.69 (21) QDP 18.28/6.69 (22) QDPSizeChangeProof [EQUIVALENT, 0 ms] 18.28/6.69 (23) YES 18.28/6.69 (24) QDP 18.28/6.69 (25) QDPSizeChangeProof [EQUIVALENT, 0 ms] 18.28/6.69 (26) YES 18.28/6.69 (27) QDP 18.28/6.69 (28) QDPSizeChangeProof [EQUIVALENT, 0 ms] 18.28/6.69 (29) YES 18.28/6.69 18.28/6.69 18.28/6.69 ---------------------------------------- 18.28/6.69 18.28/6.69 (0) 18.28/6.69 Obligation: 18.28/6.69 mainModule Main 18.28/6.69 module Maybe where { 18.28/6.69 import qualified List; 18.28/6.69 import qualified Main; 18.28/6.69 import qualified Prelude; 18.28/6.69 } 18.28/6.69 module List where { 18.28/6.69 import qualified Main; 18.28/6.69 import qualified Maybe; 18.28/6.69 import qualified Prelude; 18.28/6.69 elemIndices :: Eq a => a -> [a] -> [Int]; 18.28/6.69 elemIndices x = findIndices (== x); 18.28/6.69 18.28/6.69 findIndices :: (a -> Bool) -> [a] -> [Int]; 18.28/6.69 findIndices p xs = concatMap (\vv1 ->case vv1 of { 18.28/6.69 (x,i)-> if p x then i : [] else []; 18.28/6.69 _-> []; 18.28/6.69 } ) (zip xs (enumFrom 0)); 18.28/6.69 18.28/6.69 } 18.28/6.69 module Main where { 18.28/6.69 import qualified List; 18.28/6.69 import qualified Maybe; 18.28/6.69 import qualified Prelude; 18.28/6.69 } 18.28/6.69 18.28/6.69 ---------------------------------------- 18.28/6.69 18.28/6.69 (1) LR (EQUIVALENT) 18.28/6.69 Lambda Reductions: 18.28/6.69 The following Lambda expression 18.28/6.69 "\ab->(a,b)" 18.28/6.69 is transformed to 18.28/6.69 "zip0 a b = (a,b); 18.28/6.69 " 18.28/6.69 The following Lambda expression 18.28/6.69 "\vv1->case vv1 of { 18.28/6.69 (x,i) -> if p x then i : [] else []; 18.28/6.69 _ -> []} 18.28/6.69 " 18.28/6.69 is transformed to 18.28/6.69 "findIndices0 p vv1 = case vv1 of { 18.28/6.69 (x,i) -> if p x then i : [] else []; 18.28/6.69 _ -> []} 18.28/6.69 ; 18.28/6.69 " 18.28/6.69 18.28/6.69 ---------------------------------------- 18.28/6.69 18.28/6.69 (2) 18.28/6.69 Obligation: 18.28/6.69 mainModule Main 18.28/6.69 module Maybe where { 18.28/6.69 import qualified List; 18.28/6.69 import qualified Main; 18.28/6.69 import qualified Prelude; 18.28/6.69 } 18.28/6.69 module List where { 18.28/6.69 import qualified Main; 18.28/6.69 import qualified Maybe; 18.28/6.69 import qualified Prelude; 18.28/6.69 elemIndices :: Eq a => a -> [a] -> [Int]; 18.28/6.69 elemIndices x = findIndices (== x); 18.28/6.69 18.28/6.69 findIndices :: (a -> Bool) -> [a] -> [Int]; 18.28/6.69 findIndices p xs = concatMap (findIndices0 p) (zip xs (enumFrom 0)); 18.28/6.69 18.28/6.69 findIndices0 p vv1 = case vv1 of { 18.28/6.69 (x,i)-> if p x then i : [] else []; 18.28/6.69 _-> []; 18.28/6.69 } ; 18.28/6.69 18.28/6.69 } 18.28/6.69 module Main where { 18.28/6.69 import qualified List; 18.28/6.69 import qualified Maybe; 18.28/6.69 import qualified Prelude; 18.28/6.69 } 18.28/6.69 18.28/6.69 ---------------------------------------- 18.28/6.69 18.28/6.69 (3) CR (EQUIVALENT) 18.28/6.69 Case Reductions: 18.28/6.69 The following Case expression 18.28/6.69 "case vv1 of { 18.28/6.69 (x,i) -> if p x then i : [] else []; 18.28/6.69 _ -> []} 18.28/6.69 " 18.28/6.69 is transformed to 18.28/6.69 "findIndices00 p (x,i) = if p x then i : [] else []; 18.28/6.69 findIndices00 p _ = []; 18.28/6.69 " 18.28/6.69 18.28/6.69 ---------------------------------------- 18.28/6.69 18.28/6.69 (4) 18.28/6.69 Obligation: 18.28/6.69 mainModule Main 18.28/6.69 module Maybe where { 18.28/6.69 import qualified List; 18.28/6.69 import qualified Main; 18.28/6.69 import qualified Prelude; 18.28/6.69 } 18.28/6.69 module List where { 18.28/6.69 import qualified Main; 18.28/6.69 import qualified Maybe; 18.28/6.69 import qualified Prelude; 18.28/6.69 elemIndices :: Eq a => a -> [a] -> [Int]; 18.28/6.69 elemIndices x = findIndices (== x); 18.28/6.69 18.28/6.69 findIndices :: (a -> Bool) -> [a] -> [Int]; 18.28/6.69 findIndices p xs = concatMap (findIndices0 p) (zip xs (enumFrom 0)); 18.28/6.69 18.28/6.69 findIndices0 p vv1 = findIndices00 p vv1; 18.28/6.69 18.28/6.69 findIndices00 p (x,i) = if p x then i : [] else []; 18.28/6.69 findIndices00 p _ = []; 18.28/6.69 18.28/6.69 } 18.28/6.69 module Main where { 18.28/6.69 import qualified List; 18.28/6.69 import qualified Maybe; 18.28/6.69 import qualified Prelude; 18.28/6.69 } 18.28/6.69 18.28/6.69 ---------------------------------------- 18.28/6.69 18.28/6.69 (5) IFR (EQUIVALENT) 18.28/6.69 If Reductions: 18.28/6.69 The following If expression 18.28/6.69 "if p x then i : [] else []" 18.28/6.69 is transformed to 18.28/6.69 "findIndices000 i True = i : []; 18.28/6.69 findIndices000 i False = []; 18.28/6.69 " 18.28/6.69 18.28/6.69 ---------------------------------------- 18.28/6.69 18.28/6.69 (6) 18.28/6.69 Obligation: 18.28/6.69 mainModule Main 18.28/6.69 module Maybe where { 18.28/6.69 import qualified List; 18.28/6.69 import qualified Main; 18.28/6.69 import qualified Prelude; 18.28/6.69 } 18.28/6.69 module List where { 18.28/6.69 import qualified Main; 18.28/6.69 import qualified Maybe; 18.28/6.69 import qualified Prelude; 18.28/6.69 elemIndices :: Eq a => a -> [a] -> [Int]; 18.28/6.69 elemIndices x = findIndices (== x); 18.28/6.69 18.28/6.69 findIndices :: (a -> Bool) -> [a] -> [Int]; 18.28/6.69 findIndices p xs = concatMap (findIndices0 p) (zip xs (enumFrom 0)); 18.28/6.69 18.28/6.69 findIndices0 p vv1 = findIndices00 p vv1; 18.28/6.69 18.28/6.69 findIndices00 p (x,i) = findIndices000 i (p x); 18.28/6.69 findIndices00 p _ = []; 18.28/6.69 18.28/6.69 findIndices000 i True = i : []; 18.28/6.69 findIndices000 i False = []; 18.28/6.69 18.28/6.69 } 18.28/6.69 module Main where { 18.28/6.69 import qualified List; 18.28/6.69 import qualified Maybe; 18.28/6.69 import qualified Prelude; 18.28/6.69 } 18.28/6.69 18.28/6.69 ---------------------------------------- 18.28/6.69 18.28/6.69 (7) BR (EQUIVALENT) 18.28/6.69 Replaced joker patterns by fresh variables and removed binding patterns. 18.28/6.69 ---------------------------------------- 18.28/6.69 18.28/6.69 (8) 18.28/6.69 Obligation: 18.28/6.69 mainModule Main 18.28/6.69 module Maybe where { 18.28/6.69 import qualified List; 18.28/6.69 import qualified Main; 18.28/6.69 import qualified Prelude; 18.28/6.69 } 18.28/6.69 module List where { 18.28/6.69 import qualified Main; 18.28/6.69 import qualified Maybe; 18.28/6.69 import qualified Prelude; 18.28/6.69 elemIndices :: Eq a => a -> [a] -> [Int]; 18.28/6.69 elemIndices x = findIndices (== x); 18.28/6.69 18.28/6.69 findIndices :: (a -> Bool) -> [a] -> [Int]; 18.28/6.69 findIndices p xs = concatMap (findIndices0 p) (zip xs (enumFrom 0)); 18.28/6.69 18.28/6.69 findIndices0 p vv1 = findIndices00 p vv1; 18.28/6.69 18.28/6.69 findIndices00 p (x,i) = findIndices000 i (p x); 18.28/6.69 findIndices00 p xz = []; 18.28/6.69 18.28/6.69 findIndices000 i True = i : []; 18.28/6.69 findIndices000 i False = []; 18.28/6.69 18.28/6.69 } 18.28/6.69 module Main where { 18.28/6.69 import qualified List; 18.28/6.69 import qualified Maybe; 18.28/6.69 import qualified Prelude; 18.28/6.69 } 18.28/6.69 18.28/6.69 ---------------------------------------- 18.28/6.69 18.28/6.69 (9) COR (EQUIVALENT) 18.28/6.69 Cond Reductions: 18.28/6.69 The following Function with conditions 18.28/6.69 "undefined |Falseundefined; 18.28/6.69 " 18.28/6.69 is transformed to 18.28/6.69 "undefined = undefined1; 18.28/6.69 " 18.28/6.69 "undefined0 True = undefined; 18.28/6.69 " 18.28/6.69 "undefined1 = undefined0 False; 18.28/6.69 " 18.28/6.69 18.28/6.69 ---------------------------------------- 18.28/6.69 18.28/6.69 (10) 18.28/6.69 Obligation: 18.28/6.69 mainModule Main 18.28/6.69 module Maybe where { 18.28/6.69 import qualified List; 18.28/6.69 import qualified Main; 18.28/6.69 import qualified Prelude; 18.28/6.69 } 18.28/6.69 module List where { 18.28/6.69 import qualified Main; 18.28/6.69 import qualified Maybe; 18.28/6.69 import qualified Prelude; 18.28/6.69 elemIndices :: Eq a => a -> [a] -> [Int]; 18.28/6.69 elemIndices x = findIndices (== x); 18.28/6.69 18.28/6.69 findIndices :: (a -> Bool) -> [a] -> [Int]; 18.28/6.69 findIndices p xs = concatMap (findIndices0 p) (zip xs (enumFrom 0)); 18.28/6.69 18.28/6.69 findIndices0 p vv1 = findIndices00 p vv1; 18.28/6.69 18.28/6.69 findIndices00 p (x,i) = findIndices000 i (p x); 18.28/6.69 findIndices00 p xz = []; 18.28/6.69 18.28/6.69 findIndices000 i True = i : []; 18.28/6.69 findIndices000 i False = []; 18.28/6.69 18.28/6.69 } 18.28/6.69 module Main where { 18.28/6.69 import qualified List; 18.28/6.69 import qualified Maybe; 18.28/6.69 import qualified Prelude; 18.28/6.69 } 18.28/6.69 18.28/6.69 ---------------------------------------- 18.28/6.69 18.28/6.69 (11) NumRed (SOUND) 18.28/6.69 Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. 18.28/6.69 ---------------------------------------- 18.28/6.69 18.28/6.69 (12) 18.28/6.69 Obligation: 18.28/6.69 mainModule Main 18.28/6.69 module Maybe where { 18.28/6.69 import qualified List; 18.28/6.69 import qualified Main; 18.28/6.69 import qualified Prelude; 18.28/6.69 } 18.28/6.69 module List where { 18.28/6.69 import qualified Main; 18.28/6.69 import qualified Maybe; 18.28/6.69 import qualified Prelude; 18.28/6.69 elemIndices :: Eq a => a -> [a] -> [Int]; 18.28/6.69 elemIndices x = findIndices (== x); 18.28/6.69 18.28/6.69 findIndices :: (a -> Bool) -> [a] -> [Int]; 18.28/6.69 findIndices p xs = concatMap (findIndices0 p) (zip xs (enumFrom (Pos Zero))); 18.28/6.69 18.28/6.69 findIndices0 p vv1 = findIndices00 p vv1; 18.28/6.69 18.28/6.69 findIndices00 p (x,i) = findIndices000 i (p x); 18.28/6.69 findIndices00 p xz = []; 18.28/6.69 18.28/6.69 findIndices000 i True = i : []; 18.28/6.69 findIndices000 i False = []; 18.28/6.69 18.28/6.69 } 18.28/6.69 module Main where { 18.28/6.69 import qualified List; 18.28/6.69 import qualified Maybe; 18.28/6.69 import qualified Prelude; 18.28/6.69 } 18.28/6.69 18.28/6.69 ---------------------------------------- 18.28/6.69 18.28/6.69 (13) Narrow (SOUND) 18.28/6.69 Haskell To QDPs 18.28/6.69 18.28/6.69 digraph dp_graph { 18.28/6.69 node [outthreshold=100, inthreshold=100];1[label="List.elemIndices",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 18.28/6.69 3[label="List.elemIndices yu3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 18.28/6.69 4[label="List.elemIndices yu3 yu4",fontsize=16,color="black",shape="triangle"];4 -> 5[label="",style="solid", color="black", weight=3]; 18.28/6.69 5[label="List.findIndices (yu3 ==) yu4",fontsize=16,color="black",shape="box"];5 -> 6[label="",style="solid", color="black", weight=3]; 18.28/6.69 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]; 18.28/6.69 7[label="concat . map (List.findIndices0 (yu3 ==))",fontsize=16,color="black",shape="box"];7 -> 8[label="",style="solid", color="black", weight=3]; 18.28/6.69 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]; 18.28/6.69 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]; 18.28/6.69 10[label="foldr (++) [] (map (List.findIndices0 (yu3 ==)) (zipWith zip0 yu4 (enumFrom (Pos Zero))))",fontsize=16,color="burlywood",shape="box"];2938[label="yu4/yu40 : yu41",fontsize=10,color="white",style="solid",shape="box"];10 -> 2938[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 2938 -> 11[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2939[label="yu4/[]",fontsize=10,color="white",style="solid",shape="box"];10 -> 2939[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 2939 -> 12[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 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]; 18.28/6.69 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]; 18.28/6.69 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]; 18.28/6.69 14[label="foldr (++) [] (map (List.findIndices0 (yu3 ==)) [])",fontsize=16,color="black",shape="triangle"];14 -> 16[label="",style="solid", color="black", weight=3]; 18.28/6.69 15 -> 1898[label="",style="dashed", color="red", weight=0]; 18.28/6.69 15[label="foldr (++) [] (map (List.findIndices0 (yu3 ==)) (zipWith zip0 (yu40 : yu41) (Pos Zero : (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="magenta"];15 -> 1899[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 15 -> 1900[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 15 -> 1901[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 15 -> 1902[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 16[label="foldr (++) [] []",fontsize=16,color="black",shape="box"];16 -> 18[label="",style="solid", color="black", weight=3]; 18.28/6.69 1899[label="yu40",fontsize=16,color="green",shape="box"];1900[label="Zero",fontsize=16,color="green",shape="box"];1901[label="yu41",fontsize=16,color="green",shape="box"];1902[label="Zero",fontsize=16,color="green",shape="box"];1898[label="foldr (++) [] (map (List.findIndices0 (yu3 ==)) (zipWith zip0 (yu4110 : yu4111) (Pos yu61 : (numericEnumFrom $! Pos yu62 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="triangle"];1898 -> 1905[label="",style="solid", color="black", weight=3]; 18.28/6.69 18[label="[]",fontsize=16,color="green",shape="box"];1905[label="foldr (++) [] (map (List.findIndices0 (yu3 ==)) (zip0 yu4110 (Pos yu61) : zipWith zip0 yu4111 (numericEnumFrom $! Pos yu62 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];1905 -> 1906[label="",style="solid", color="black", weight=3]; 18.28/6.69 1906[label="foldr (++) [] (List.findIndices0 (yu3 ==) (zip0 yu4110 (Pos yu61)) : map (List.findIndices0 (yu3 ==)) (zipWith zip0 yu4111 (numericEnumFrom $! Pos yu62 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];1906 -> 1907[label="",style="solid", color="black", weight=3]; 18.28/6.69 1907[label="(++) List.findIndices0 (yu3 ==) (zip0 yu4110 (Pos yu61)) foldr (++) [] (map (List.findIndices0 (yu3 ==)) (zipWith zip0 yu4111 (numericEnumFrom $! Pos yu62 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];1907 -> 1908[label="",style="solid", color="black", weight=3]; 18.28/6.69 1908[label="(++) List.findIndices00 (yu3 ==) (zip0 yu4110 (Pos yu61)) foldr (++) [] (map (List.findIndices0 (yu3 ==)) (zipWith zip0 yu4111 (numericEnumFrom $! Pos yu62 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];1908 -> 1909[label="",style="solid", color="black", weight=3]; 18.28/6.69 1909[label="(++) List.findIndices00 (yu3 ==) (yu4110,Pos yu61) foldr (++) [] (map (List.findIndices0 (yu3 ==)) (zipWith zip0 yu4111 (numericEnumFrom $! Pos yu62 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];1909 -> 1910[label="",style="solid", color="black", weight=3]; 18.28/6.69 1910[label="(++) List.findIndices000 (Pos yu61) (yu3 == yu4110) foldr (++) [] (map (List.findIndices0 (yu3 ==)) (zipWith zip0 yu4111 (numericEnumFrom $! Pos yu62 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];2940[label="yu3/(yu30,yu31)",fontsize=10,color="white",style="solid",shape="box"];1910 -> 2940[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 2940 -> 1911[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 1911[label="(++) List.findIndices000 (Pos yu61) ((yu30,yu31) == yu4110) foldr (++) [] (map (List.findIndices0 ((yu30,yu31) ==)) (zipWith zip0 yu4111 (numericEnumFrom $! Pos yu62 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];2941[label="yu4110/(yu41100,yu41101)",fontsize=10,color="white",style="solid",shape="box"];1911 -> 2941[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 2941 -> 1912[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 1912[label="(++) List.findIndices000 (Pos yu61) ((yu30,yu31) == (yu41100,yu41101)) foldr (++) [] (map (List.findIndices0 ((yu30,yu31) ==)) (zipWith zip0 yu4111 (numericEnumFrom $! Pos yu62 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];1912 -> 1913[label="",style="solid", color="black", weight=3]; 18.28/6.69 1913 -> 1996[label="",style="dashed", color="red", weight=0]; 18.28/6.69 1913[label="(++) List.findIndices000 (Pos yu61) (yu30 == yu41100 && yu31 == yu41101) foldr (++) [] (map (List.findIndices0 ((yu30,yu31) ==)) (zipWith zip0 yu4111 (numericEnumFrom $! Pos yu62 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];1913 -> 1997[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 1913 -> 1998[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 1913 -> 1999[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 1913 -> 2000[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 1913 -> 2001[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 1913 -> 2002[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 1997[label="yu4111",fontsize=16,color="green",shape="box"];1998 -> 2238[label="",style="dashed", color="red", weight=0]; 18.28/6.69 1998[label="yu30 == yu41100 && yu31 == yu41101",fontsize=16,color="magenta"];1998 -> 2239[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 1998 -> 2240[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 1999[label="yu30",fontsize=16,color="green",shape="box"];2000[label="yu31",fontsize=16,color="green",shape="box"];2001[label="yu61",fontsize=16,color="green",shape="box"];2002[label="yu62",fontsize=16,color="green",shape="box"];1996[label="(++) List.findIndices000 (Pos yu85) yu86 foldr (++) [] (map (List.findIndices0 ((yu87,yu88) ==)) (zipWith zip0 yu89 (numericEnumFrom $! Pos yu90 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="triangle"];2942[label="yu86/False",fontsize=10,color="white",style="solid",shape="box"];1996 -> 2942[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 2942 -> 2025[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2943[label="yu86/True",fontsize=10,color="white",style="solid",shape="box"];1996 -> 2943[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 2943 -> 2026[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2239[label="yu31 == yu41101",fontsize=16,color="blue",shape="box"];2944[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2239 -> 2944[label="",style="solid", color="blue", weight=9]; 18.28/6.69 2944 -> 2243[label="",style="solid", color="blue", weight=3]; 18.28/6.69 2945[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2239 -> 2945[label="",style="solid", color="blue", weight=9]; 18.28/6.69 2945 -> 2244[label="",style="solid", color="blue", weight=3]; 18.28/6.69 2946[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2239 -> 2946[label="",style="solid", color="blue", weight=9]; 18.28/6.69 2946 -> 2245[label="",style="solid", color="blue", weight=3]; 18.28/6.69 2947[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2239 -> 2947[label="",style="solid", color="blue", weight=9]; 18.28/6.69 2947 -> 2246[label="",style="solid", color="blue", weight=3]; 18.28/6.69 2948[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2239 -> 2948[label="",style="solid", color="blue", weight=9]; 18.28/6.69 2948 -> 2247[label="",style="solid", color="blue", weight=3]; 18.28/6.69 2949[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2239 -> 2949[label="",style="solid", color="blue", weight=9]; 18.28/6.69 2949 -> 2248[label="",style="solid", color="blue", weight=3]; 18.28/6.69 2950[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2239 -> 2950[label="",style="solid", color="blue", weight=9]; 18.28/6.69 2950 -> 2249[label="",style="solid", color="blue", weight=3]; 18.28/6.69 2951[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2239 -> 2951[label="",style="solid", color="blue", weight=9]; 18.28/6.69 2951 -> 2250[label="",style="solid", color="blue", weight=3]; 18.28/6.69 2952[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2239 -> 2952[label="",style="solid", color="blue", weight=9]; 18.28/6.69 2952 -> 2251[label="",style="solid", color="blue", weight=3]; 18.28/6.69 2953[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2239 -> 2953[label="",style="solid", color="blue", weight=9]; 18.28/6.69 2953 -> 2252[label="",style="solid", color="blue", weight=3]; 18.28/6.69 2954[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2239 -> 2954[label="",style="solid", color="blue", weight=9]; 18.28/6.69 2954 -> 2253[label="",style="solid", color="blue", weight=3]; 18.28/6.69 2955[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2239 -> 2955[label="",style="solid", color="blue", weight=9]; 18.28/6.69 2955 -> 2254[label="",style="solid", color="blue", weight=3]; 18.28/6.69 2956[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2239 -> 2956[label="",style="solid", color="blue", weight=9]; 18.28/6.69 2956 -> 2255[label="",style="solid", color="blue", weight=3]; 18.28/6.69 2957[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2239 -> 2957[label="",style="solid", color="blue", weight=9]; 18.28/6.69 2957 -> 2256[label="",style="solid", color="blue", weight=3]; 18.28/6.69 2240[label="yu30 == yu41100",fontsize=16,color="blue",shape="box"];2958[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2240 -> 2958[label="",style="solid", color="blue", weight=9]; 18.28/6.69 2958 -> 2257[label="",style="solid", color="blue", weight=3]; 18.28/6.69 2959[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2240 -> 2959[label="",style="solid", color="blue", weight=9]; 18.28/6.69 2959 -> 2258[label="",style="solid", color="blue", weight=3]; 18.28/6.69 2960[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2240 -> 2960[label="",style="solid", color="blue", weight=9]; 18.28/6.69 2960 -> 2259[label="",style="solid", color="blue", weight=3]; 18.28/6.69 2961[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2240 -> 2961[label="",style="solid", color="blue", weight=9]; 18.28/6.69 2961 -> 2260[label="",style="solid", color="blue", weight=3]; 18.28/6.69 2962[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2240 -> 2962[label="",style="solid", color="blue", weight=9]; 18.28/6.69 2962 -> 2261[label="",style="solid", color="blue", weight=3]; 18.28/6.69 2963[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2240 -> 2963[label="",style="solid", color="blue", weight=9]; 18.28/6.69 2963 -> 2262[label="",style="solid", color="blue", weight=3]; 18.28/6.69 2964[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2240 -> 2964[label="",style="solid", color="blue", weight=9]; 18.28/6.69 2964 -> 2263[label="",style="solid", color="blue", weight=3]; 18.28/6.69 2965[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2240 -> 2965[label="",style="solid", color="blue", weight=9]; 18.28/6.69 2965 -> 2264[label="",style="solid", color="blue", weight=3]; 18.28/6.69 2966[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2240 -> 2966[label="",style="solid", color="blue", weight=9]; 18.28/6.69 2966 -> 2265[label="",style="solid", color="blue", weight=3]; 18.28/6.69 2967[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2240 -> 2967[label="",style="solid", color="blue", weight=9]; 18.28/6.69 2967 -> 2266[label="",style="solid", color="blue", weight=3]; 18.28/6.69 2968[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2240 -> 2968[label="",style="solid", color="blue", weight=9]; 18.28/6.69 2968 -> 2267[label="",style="solid", color="blue", weight=3]; 18.28/6.69 2969[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2240 -> 2969[label="",style="solid", color="blue", weight=9]; 18.28/6.69 2969 -> 2268[label="",style="solid", color="blue", weight=3]; 18.28/6.69 2970[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2240 -> 2970[label="",style="solid", color="blue", weight=9]; 18.28/6.69 2970 -> 2269[label="",style="solid", color="blue", weight=3]; 18.28/6.69 2971[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2240 -> 2971[label="",style="solid", color="blue", weight=9]; 18.28/6.69 2971 -> 2270[label="",style="solid", color="blue", weight=3]; 18.28/6.69 2238[label="yu102 && yu103",fontsize=16,color="burlywood",shape="triangle"];2972[label="yu102/False",fontsize=10,color="white",style="solid",shape="box"];2238 -> 2972[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 2972 -> 2271[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2973[label="yu102/True",fontsize=10,color="white",style="solid",shape="box"];2238 -> 2973[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 2973 -> 2272[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2025[label="(++) List.findIndices000 (Pos yu85) False foldr (++) [] (map (List.findIndices0 ((yu87,yu88) ==)) (zipWith zip0 yu89 (numericEnumFrom $! Pos yu90 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];2025 -> 2043[label="",style="solid", color="black", weight=3]; 18.28/6.69 2026[label="(++) List.findIndices000 (Pos yu85) True foldr (++) [] (map (List.findIndices0 ((yu87,yu88) ==)) (zipWith zip0 yu89 (numericEnumFrom $! Pos yu90 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];2026 -> 2044[label="",style="solid", color="black", weight=3]; 18.28/6.69 2243[label="yu31 == yu41101",fontsize=16,color="burlywood",shape="triangle"];2974[label="yu31/False",fontsize=10,color="white",style="solid",shape="box"];2243 -> 2974[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 2974 -> 2275[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2975[label="yu31/True",fontsize=10,color="white",style="solid",shape="box"];2243 -> 2975[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 2975 -> 2276[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2244[label="yu31 == yu41101",fontsize=16,color="black",shape="triangle"];2244 -> 2277[label="",style="solid", color="black", weight=3]; 18.28/6.69 2245[label="yu31 == yu41101",fontsize=16,color="burlywood",shape="triangle"];2976[label="yu31/Nothing",fontsize=10,color="white",style="solid",shape="box"];2245 -> 2976[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 2976 -> 2278[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2977[label="yu31/Just yu310",fontsize=10,color="white",style="solid",shape="box"];2245 -> 2977[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 2977 -> 2279[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2246[label="yu31 == yu41101",fontsize=16,color="burlywood",shape="triangle"];2978[label="yu31/yu310 : yu311",fontsize=10,color="white",style="solid",shape="box"];2246 -> 2978[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 2978 -> 2280[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2979[label="yu31/[]",fontsize=10,color="white",style="solid",shape="box"];2246 -> 2979[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 2979 -> 2281[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2247[label="yu31 == yu41101",fontsize=16,color="black",shape="triangle"];2247 -> 2282[label="",style="solid", color="black", weight=3]; 18.28/6.69 2248[label="yu31 == yu41101",fontsize=16,color="burlywood",shape="triangle"];2980[label="yu31/(yu310,yu311)",fontsize=10,color="white",style="solid",shape="box"];2248 -> 2980[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 2980 -> 2283[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2249[label="yu31 == yu41101",fontsize=16,color="burlywood",shape="triangle"];2981[label="yu31/LT",fontsize=10,color="white",style="solid",shape="box"];2249 -> 2981[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 2981 -> 2284[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2982[label="yu31/EQ",fontsize=10,color="white",style="solid",shape="box"];2249 -> 2982[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 2982 -> 2285[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2983[label="yu31/GT",fontsize=10,color="white",style="solid",shape="box"];2249 -> 2983[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 2983 -> 2286[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2250[label="yu31 == yu41101",fontsize=16,color="burlywood",shape="triangle"];2984[label="yu31/(yu310,yu311,yu312)",fontsize=10,color="white",style="solid",shape="box"];2250 -> 2984[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 2984 -> 2287[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2251[label="yu31 == yu41101",fontsize=16,color="burlywood",shape="triangle"];2985[label="yu31/Left yu310",fontsize=10,color="white",style="solid",shape="box"];2251 -> 2985[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 2985 -> 2288[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2986[label="yu31/Right yu310",fontsize=10,color="white",style="solid",shape="box"];2251 -> 2986[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 2986 -> 2289[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2252[label="yu31 == yu41101",fontsize=16,color="black",shape="triangle"];2252 -> 2290[label="",style="solid", color="black", weight=3]; 18.28/6.69 2253[label="yu31 == yu41101",fontsize=16,color="burlywood",shape="triangle"];2987[label="yu31/Integer yu310",fontsize=10,color="white",style="solid",shape="box"];2253 -> 2987[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 2987 -> 2291[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2254[label="yu31 == yu41101",fontsize=16,color="burlywood",shape="triangle"];2988[label="yu31/yu310 :% yu311",fontsize=10,color="white",style="solid",shape="box"];2254 -> 2988[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 2988 -> 2292[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2255[label="yu31 == yu41101",fontsize=16,color="black",shape="triangle"];2255 -> 2293[label="",style="solid", color="black", weight=3]; 18.28/6.69 2256[label="yu31 == yu41101",fontsize=16,color="burlywood",shape="triangle"];2989[label="yu31/()",fontsize=10,color="white",style="solid",shape="box"];2256 -> 2989[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 2989 -> 2294[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2257 -> 2243[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2257[label="yu30 == yu41100",fontsize=16,color="magenta"];2257 -> 2295[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2257 -> 2296[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2258 -> 2244[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2258[label="yu30 == yu41100",fontsize=16,color="magenta"];2258 -> 2297[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2258 -> 2298[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2259 -> 2245[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2259[label="yu30 == yu41100",fontsize=16,color="magenta"];2259 -> 2299[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2259 -> 2300[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2260 -> 2246[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2260[label="yu30 == yu41100",fontsize=16,color="magenta"];2260 -> 2301[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2260 -> 2302[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2261 -> 2247[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2261[label="yu30 == yu41100",fontsize=16,color="magenta"];2261 -> 2303[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2261 -> 2304[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2262 -> 2248[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2262[label="yu30 == yu41100",fontsize=16,color="magenta"];2262 -> 2305[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2262 -> 2306[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2263 -> 2249[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2263[label="yu30 == yu41100",fontsize=16,color="magenta"];2263 -> 2307[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2263 -> 2308[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2264 -> 2250[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2264[label="yu30 == yu41100",fontsize=16,color="magenta"];2264 -> 2309[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2264 -> 2310[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2265 -> 2251[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2265[label="yu30 == yu41100",fontsize=16,color="magenta"];2265 -> 2311[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2265 -> 2312[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2266 -> 2252[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2266[label="yu30 == yu41100",fontsize=16,color="magenta"];2266 -> 2313[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2266 -> 2314[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2267 -> 2253[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2267[label="yu30 == yu41100",fontsize=16,color="magenta"];2267 -> 2315[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2267 -> 2316[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2268 -> 2254[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2268[label="yu30 == yu41100",fontsize=16,color="magenta"];2268 -> 2317[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2268 -> 2318[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2269 -> 2255[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2269[label="yu30 == yu41100",fontsize=16,color="magenta"];2269 -> 2319[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2269 -> 2320[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2270 -> 2256[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2270[label="yu30 == yu41100",fontsize=16,color="magenta"];2270 -> 2321[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2270 -> 2322[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2271[label="False && yu103",fontsize=16,color="black",shape="box"];2271 -> 2323[label="",style="solid", color="black", weight=3]; 18.28/6.69 2272[label="True && yu103",fontsize=16,color="black",shape="box"];2272 -> 2324[label="",style="solid", color="black", weight=3]; 18.28/6.69 2043[label="(++) [] foldr (++) [] (map (List.findIndices0 ((yu87,yu88) ==)) (zipWith zip0 yu89 (numericEnumFrom $! Pos yu90 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="triangle"];2043 -> 2067[label="",style="solid", color="black", weight=3]; 18.28/6.69 2044[label="(++) (Pos yu85 : []) foldr (++) [] (map (List.findIndices0 ((yu87,yu88) ==)) (zipWith zip0 yu89 (numericEnumFrom $! Pos yu90 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];2044 -> 2068[label="",style="solid", color="black", weight=3]; 18.28/6.69 2275[label="False == yu41101",fontsize=16,color="burlywood",shape="box"];2990[label="yu41101/False",fontsize=10,color="white",style="solid",shape="box"];2275 -> 2990[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 2990 -> 2326[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2991[label="yu41101/True",fontsize=10,color="white",style="solid",shape="box"];2275 -> 2991[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 2991 -> 2327[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2276[label="True == yu41101",fontsize=16,color="burlywood",shape="box"];2992[label="yu41101/False",fontsize=10,color="white",style="solid",shape="box"];2276 -> 2992[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 2992 -> 2328[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2993[label="yu41101/True",fontsize=10,color="white",style="solid",shape="box"];2276 -> 2993[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 2993 -> 2329[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2277[label="primEqChar yu31 yu41101",fontsize=16,color="burlywood",shape="box"];2994[label="yu31/Char yu310",fontsize=10,color="white",style="solid",shape="box"];2277 -> 2994[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 2994 -> 2330[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2278[label="Nothing == yu41101",fontsize=16,color="burlywood",shape="box"];2995[label="yu41101/Nothing",fontsize=10,color="white",style="solid",shape="box"];2278 -> 2995[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 2995 -> 2331[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2996[label="yu41101/Just yu411010",fontsize=10,color="white",style="solid",shape="box"];2278 -> 2996[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 2996 -> 2332[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2279[label="Just yu310 == yu41101",fontsize=16,color="burlywood",shape="box"];2997[label="yu41101/Nothing",fontsize=10,color="white",style="solid",shape="box"];2279 -> 2997[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 2997 -> 2333[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2998[label="yu41101/Just yu411010",fontsize=10,color="white",style="solid",shape="box"];2279 -> 2998[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 2998 -> 2334[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2280[label="yu310 : yu311 == yu41101",fontsize=16,color="burlywood",shape="box"];2999[label="yu41101/yu411010 : yu411011",fontsize=10,color="white",style="solid",shape="box"];2280 -> 2999[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 2999 -> 2335[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 3000[label="yu41101/[]",fontsize=10,color="white",style="solid",shape="box"];2280 -> 3000[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 3000 -> 2336[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2281[label="[] == yu41101",fontsize=16,color="burlywood",shape="box"];3001[label="yu41101/yu411010 : yu411011",fontsize=10,color="white",style="solid",shape="box"];2281 -> 3001[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 3001 -> 2337[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 3002[label="yu41101/[]",fontsize=10,color="white",style="solid",shape="box"];2281 -> 3002[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 3002 -> 2338[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2282[label="primEqDouble yu31 yu41101",fontsize=16,color="burlywood",shape="box"];3003[label="yu31/Double yu310 yu311",fontsize=10,color="white",style="solid",shape="box"];2282 -> 3003[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 3003 -> 2339[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2283[label="(yu310,yu311) == yu41101",fontsize=16,color="burlywood",shape="box"];3004[label="yu41101/(yu411010,yu411011)",fontsize=10,color="white",style="solid",shape="box"];2283 -> 3004[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 3004 -> 2340[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2284[label="LT == yu41101",fontsize=16,color="burlywood",shape="box"];3005[label="yu41101/LT",fontsize=10,color="white",style="solid",shape="box"];2284 -> 3005[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 3005 -> 2341[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 3006[label="yu41101/EQ",fontsize=10,color="white",style="solid",shape="box"];2284 -> 3006[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 3006 -> 2342[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 3007[label="yu41101/GT",fontsize=10,color="white",style="solid",shape="box"];2284 -> 3007[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 3007 -> 2343[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2285[label="EQ == yu41101",fontsize=16,color="burlywood",shape="box"];3008[label="yu41101/LT",fontsize=10,color="white",style="solid",shape="box"];2285 -> 3008[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 3008 -> 2344[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 3009[label="yu41101/EQ",fontsize=10,color="white",style="solid",shape="box"];2285 -> 3009[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 3009 -> 2345[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 3010[label="yu41101/GT",fontsize=10,color="white",style="solid",shape="box"];2285 -> 3010[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 3010 -> 2346[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2286[label="GT == yu41101",fontsize=16,color="burlywood",shape="box"];3011[label="yu41101/LT",fontsize=10,color="white",style="solid",shape="box"];2286 -> 3011[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 3011 -> 2347[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 3012[label="yu41101/EQ",fontsize=10,color="white",style="solid",shape="box"];2286 -> 3012[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 3012 -> 2348[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 3013[label="yu41101/GT",fontsize=10,color="white",style="solid",shape="box"];2286 -> 3013[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 3013 -> 2349[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2287[label="(yu310,yu311,yu312) == yu41101",fontsize=16,color="burlywood",shape="box"];3014[label="yu41101/(yu411010,yu411011,yu411012)",fontsize=10,color="white",style="solid",shape="box"];2287 -> 3014[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 3014 -> 2350[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2288[label="Left yu310 == yu41101",fontsize=16,color="burlywood",shape="box"];3015[label="yu41101/Left yu411010",fontsize=10,color="white",style="solid",shape="box"];2288 -> 3015[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 3015 -> 2351[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 3016[label="yu41101/Right yu411010",fontsize=10,color="white",style="solid",shape="box"];2288 -> 3016[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 3016 -> 2352[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2289[label="Right yu310 == yu41101",fontsize=16,color="burlywood",shape="box"];3017[label="yu41101/Left yu411010",fontsize=10,color="white",style="solid",shape="box"];2289 -> 3017[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 3017 -> 2353[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 3018[label="yu41101/Right yu411010",fontsize=10,color="white",style="solid",shape="box"];2289 -> 3018[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 3018 -> 2354[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2290[label="primEqFloat yu31 yu41101",fontsize=16,color="burlywood",shape="box"];3019[label="yu31/Float yu310 yu311",fontsize=10,color="white",style="solid",shape="box"];2290 -> 3019[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 3019 -> 2355[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2291[label="Integer yu310 == yu41101",fontsize=16,color="burlywood",shape="box"];3020[label="yu41101/Integer yu411010",fontsize=10,color="white",style="solid",shape="box"];2291 -> 3020[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 3020 -> 2356[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2292[label="yu310 :% yu311 == yu41101",fontsize=16,color="burlywood",shape="box"];3021[label="yu41101/yu411010 :% yu411011",fontsize=10,color="white",style="solid",shape="box"];2292 -> 3021[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 3021 -> 2357[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2293[label="primEqInt yu31 yu41101",fontsize=16,color="burlywood",shape="triangle"];3022[label="yu31/Pos yu310",fontsize=10,color="white",style="solid",shape="box"];2293 -> 3022[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 3022 -> 2358[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 3023[label="yu31/Neg yu310",fontsize=10,color="white",style="solid",shape="box"];2293 -> 3023[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 3023 -> 2359[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2294[label="() == yu41101",fontsize=16,color="burlywood",shape="box"];3024[label="yu41101/()",fontsize=10,color="white",style="solid",shape="box"];2294 -> 3024[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 3024 -> 2360[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2295[label="yu41100",fontsize=16,color="green",shape="box"];2296[label="yu30",fontsize=16,color="green",shape="box"];2297[label="yu41100",fontsize=16,color="green",shape="box"];2298[label="yu30",fontsize=16,color="green",shape="box"];2299[label="yu41100",fontsize=16,color="green",shape="box"];2300[label="yu30",fontsize=16,color="green",shape="box"];2301[label="yu41100",fontsize=16,color="green",shape="box"];2302[label="yu30",fontsize=16,color="green",shape="box"];2303[label="yu41100",fontsize=16,color="green",shape="box"];2304[label="yu30",fontsize=16,color="green",shape="box"];2305[label="yu41100",fontsize=16,color="green",shape="box"];2306[label="yu30",fontsize=16,color="green",shape="box"];2307[label="yu41100",fontsize=16,color="green",shape="box"];2308[label="yu30",fontsize=16,color="green",shape="box"];2309[label="yu41100",fontsize=16,color="green",shape="box"];2310[label="yu30",fontsize=16,color="green",shape="box"];2311[label="yu41100",fontsize=16,color="green",shape="box"];2312[label="yu30",fontsize=16,color="green",shape="box"];2313[label="yu41100",fontsize=16,color="green",shape="box"];2314[label="yu30",fontsize=16,color="green",shape="box"];2315[label="yu41100",fontsize=16,color="green",shape="box"];2316[label="yu30",fontsize=16,color="green",shape="box"];2317[label="yu41100",fontsize=16,color="green",shape="box"];2318[label="yu30",fontsize=16,color="green",shape="box"];2319[label="yu41100",fontsize=16,color="green",shape="box"];2320[label="yu30",fontsize=16,color="green",shape="box"];2321[label="yu41100",fontsize=16,color="green",shape="box"];2322[label="yu30",fontsize=16,color="green",shape="box"];2323[label="False",fontsize=16,color="green",shape="box"];2324[label="yu103",fontsize=16,color="green",shape="box"];2067[label="foldr (++) [] (map (List.findIndices0 ((yu87,yu88) ==)) (zipWith zip0 yu89 (numericEnumFrom $! Pos yu90 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="burlywood",shape="box"];3025[label="yu89/yu890 : yu891",fontsize=10,color="white",style="solid",shape="box"];2067 -> 3025[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 3025 -> 2118[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 3026[label="yu89/[]",fontsize=10,color="white",style="solid",shape="box"];2067 -> 3026[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 3026 -> 2119[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2068[label="Pos yu85 : [] ++ foldr (++) [] (map (List.findIndices0 ((yu87,yu88) ==)) (zipWith zip0 yu89 (numericEnumFrom $! Pos yu90 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="green",shape="box"];2068 -> 2120[label="",style="dashed", color="green", weight=3]; 18.28/6.69 2326[label="False == False",fontsize=16,color="black",shape="box"];2326 -> 2362[label="",style="solid", color="black", weight=3]; 18.28/6.69 2327[label="False == True",fontsize=16,color="black",shape="box"];2327 -> 2363[label="",style="solid", color="black", weight=3]; 18.28/6.69 2328[label="True == False",fontsize=16,color="black",shape="box"];2328 -> 2364[label="",style="solid", color="black", weight=3]; 18.28/6.69 2329[label="True == True",fontsize=16,color="black",shape="box"];2329 -> 2365[label="",style="solid", color="black", weight=3]; 18.28/6.69 2330[label="primEqChar (Char yu310) yu41101",fontsize=16,color="burlywood",shape="box"];3027[label="yu41101/Char yu411010",fontsize=10,color="white",style="solid",shape="box"];2330 -> 3027[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 3027 -> 2366[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2331[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];2331 -> 2367[label="",style="solid", color="black", weight=3]; 18.28/6.69 2332[label="Nothing == Just yu411010",fontsize=16,color="black",shape="box"];2332 -> 2368[label="",style="solid", color="black", weight=3]; 18.28/6.69 2333[label="Just yu310 == Nothing",fontsize=16,color="black",shape="box"];2333 -> 2369[label="",style="solid", color="black", weight=3]; 18.28/6.69 2334[label="Just yu310 == Just yu411010",fontsize=16,color="black",shape="box"];2334 -> 2370[label="",style="solid", color="black", weight=3]; 18.28/6.69 2335[label="yu310 : yu311 == yu411010 : yu411011",fontsize=16,color="black",shape="box"];2335 -> 2371[label="",style="solid", color="black", weight=3]; 18.28/6.69 2336[label="yu310 : yu311 == []",fontsize=16,color="black",shape="box"];2336 -> 2372[label="",style="solid", color="black", weight=3]; 18.28/6.69 2337[label="[] == yu411010 : yu411011",fontsize=16,color="black",shape="box"];2337 -> 2373[label="",style="solid", color="black", weight=3]; 18.28/6.69 2338[label="[] == []",fontsize=16,color="black",shape="box"];2338 -> 2374[label="",style="solid", color="black", weight=3]; 18.28/6.69 2339[label="primEqDouble (Double yu310 yu311) yu41101",fontsize=16,color="burlywood",shape="box"];3028[label="yu41101/Double yu411010 yu411011",fontsize=10,color="white",style="solid",shape="box"];2339 -> 3028[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 3028 -> 2375[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2340[label="(yu310,yu311) == (yu411010,yu411011)",fontsize=16,color="black",shape="box"];2340 -> 2376[label="",style="solid", color="black", weight=3]; 18.28/6.69 2341[label="LT == LT",fontsize=16,color="black",shape="box"];2341 -> 2377[label="",style="solid", color="black", weight=3]; 18.28/6.69 2342[label="LT == EQ",fontsize=16,color="black",shape="box"];2342 -> 2378[label="",style="solid", color="black", weight=3]; 18.28/6.69 2343[label="LT == GT",fontsize=16,color="black",shape="box"];2343 -> 2379[label="",style="solid", color="black", weight=3]; 18.28/6.69 2344[label="EQ == LT",fontsize=16,color="black",shape="box"];2344 -> 2380[label="",style="solid", color="black", weight=3]; 18.28/6.69 2345[label="EQ == EQ",fontsize=16,color="black",shape="box"];2345 -> 2381[label="",style="solid", color="black", weight=3]; 18.28/6.69 2346[label="EQ == GT",fontsize=16,color="black",shape="box"];2346 -> 2382[label="",style="solid", color="black", weight=3]; 18.28/6.69 2347[label="GT == LT",fontsize=16,color="black",shape="box"];2347 -> 2383[label="",style="solid", color="black", weight=3]; 18.28/6.69 2348[label="GT == EQ",fontsize=16,color="black",shape="box"];2348 -> 2384[label="",style="solid", color="black", weight=3]; 18.28/6.69 2349[label="GT == GT",fontsize=16,color="black",shape="box"];2349 -> 2385[label="",style="solid", color="black", weight=3]; 18.28/6.69 2350[label="(yu310,yu311,yu312) == (yu411010,yu411011,yu411012)",fontsize=16,color="black",shape="box"];2350 -> 2386[label="",style="solid", color="black", weight=3]; 18.28/6.69 2351[label="Left yu310 == Left yu411010",fontsize=16,color="black",shape="box"];2351 -> 2387[label="",style="solid", color="black", weight=3]; 18.28/6.69 2352[label="Left yu310 == Right yu411010",fontsize=16,color="black",shape="box"];2352 -> 2388[label="",style="solid", color="black", weight=3]; 18.28/6.69 2353[label="Right yu310 == Left yu411010",fontsize=16,color="black",shape="box"];2353 -> 2389[label="",style="solid", color="black", weight=3]; 18.28/6.69 2354[label="Right yu310 == Right yu411010",fontsize=16,color="black",shape="box"];2354 -> 2390[label="",style="solid", color="black", weight=3]; 18.28/6.69 2355[label="primEqFloat (Float yu310 yu311) yu41101",fontsize=16,color="burlywood",shape="box"];3029[label="yu41101/Float yu411010 yu411011",fontsize=10,color="white",style="solid",shape="box"];2355 -> 3029[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 3029 -> 2391[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2356[label="Integer yu310 == Integer yu411010",fontsize=16,color="black",shape="box"];2356 -> 2392[label="",style="solid", color="black", weight=3]; 18.28/6.69 2357[label="yu310 :% yu311 == yu411010 :% yu411011",fontsize=16,color="black",shape="box"];2357 -> 2393[label="",style="solid", color="black", weight=3]; 18.28/6.69 2358[label="primEqInt (Pos yu310) yu41101",fontsize=16,color="burlywood",shape="box"];3030[label="yu310/Succ yu3100",fontsize=10,color="white",style="solid",shape="box"];2358 -> 3030[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 3030 -> 2394[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 3031[label="yu310/Zero",fontsize=10,color="white",style="solid",shape="box"];2358 -> 3031[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 3031 -> 2395[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2359[label="primEqInt (Neg yu310) yu41101",fontsize=16,color="burlywood",shape="box"];3032[label="yu310/Succ yu3100",fontsize=10,color="white",style="solid",shape="box"];2359 -> 3032[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 3032 -> 2396[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 3033[label="yu310/Zero",fontsize=10,color="white",style="solid",shape="box"];2359 -> 3033[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 3033 -> 2397[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2360[label="() == ()",fontsize=16,color="black",shape="box"];2360 -> 2398[label="",style="solid", color="black", weight=3]; 18.28/6.69 2118[label="foldr (++) [] (map (List.findIndices0 ((yu87,yu88) ==)) (zipWith zip0 (yu890 : yu891) (numericEnumFrom $! Pos yu90 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];2118 -> 2186[label="",style="solid", color="black", weight=3]; 18.28/6.69 2119[label="foldr (++) [] (map (List.findIndices0 ((yu87,yu88) ==)) (zipWith zip0 [] (numericEnumFrom $! Pos yu90 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="black",shape="box"];2119 -> 2187[label="",style="solid", color="black", weight=3]; 18.28/6.69 2120 -> 2043[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2120[label="[] ++ foldr (++) [] (map (List.findIndices0 ((yu87,yu88) ==)) (zipWith zip0 yu89 (numericEnumFrom $! Pos yu90 + fromInt (Pos (Succ Zero)))))",fontsize=16,color="magenta"];2362[label="True",fontsize=16,color="green",shape="box"];2363[label="False",fontsize=16,color="green",shape="box"];2364[label="False",fontsize=16,color="green",shape="box"];2365[label="True",fontsize=16,color="green",shape="box"];2366[label="primEqChar (Char yu310) (Char yu411010)",fontsize=16,color="black",shape="box"];2366 -> 2400[label="",style="solid", color="black", weight=3]; 18.28/6.69 2367[label="True",fontsize=16,color="green",shape="box"];2368[label="False",fontsize=16,color="green",shape="box"];2369[label="False",fontsize=16,color="green",shape="box"];2370[label="yu310 == yu411010",fontsize=16,color="blue",shape="box"];3034[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2370 -> 3034[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3034 -> 2401[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3035[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2370 -> 3035[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3035 -> 2402[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3036[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2370 -> 3036[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3036 -> 2403[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3037[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2370 -> 3037[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3037 -> 2404[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3038[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2370 -> 3038[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3038 -> 2405[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3039[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2370 -> 3039[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3039 -> 2406[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3040[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2370 -> 3040[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3040 -> 2407[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3041[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2370 -> 3041[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3041 -> 2408[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3042[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2370 -> 3042[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3042 -> 2409[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3043[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2370 -> 3043[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3043 -> 2410[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3044[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2370 -> 3044[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3044 -> 2411[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3045[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2370 -> 3045[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3045 -> 2412[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3046[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2370 -> 3046[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3046 -> 2413[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3047[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2370 -> 3047[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3047 -> 2414[label="",style="solid", color="blue", weight=3]; 18.28/6.69 2371 -> 2238[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2371[label="yu310 == yu411010 && yu311 == yu411011",fontsize=16,color="magenta"];2371 -> 2415[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2371 -> 2416[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2372[label="False",fontsize=16,color="green",shape="box"];2373[label="False",fontsize=16,color="green",shape="box"];2374[label="True",fontsize=16,color="green",shape="box"];2375[label="primEqDouble (Double yu310 yu311) (Double yu411010 yu411011)",fontsize=16,color="black",shape="box"];2375 -> 2417[label="",style="solid", color="black", weight=3]; 18.28/6.69 2376 -> 2238[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2376[label="yu310 == yu411010 && yu311 == yu411011",fontsize=16,color="magenta"];2376 -> 2418[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2376 -> 2419[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2377[label="True",fontsize=16,color="green",shape="box"];2378[label="False",fontsize=16,color="green",shape="box"];2379[label="False",fontsize=16,color="green",shape="box"];2380[label="False",fontsize=16,color="green",shape="box"];2381[label="True",fontsize=16,color="green",shape="box"];2382[label="False",fontsize=16,color="green",shape="box"];2383[label="False",fontsize=16,color="green",shape="box"];2384[label="False",fontsize=16,color="green",shape="box"];2385[label="True",fontsize=16,color="green",shape="box"];2386 -> 2238[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2386[label="yu310 == yu411010 && yu311 == yu411011 && yu312 == yu411012",fontsize=16,color="magenta"];2386 -> 2420[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2386 -> 2421[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2387[label="yu310 == yu411010",fontsize=16,color="blue",shape="box"];3048[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2387 -> 3048[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3048 -> 2422[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3049[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2387 -> 3049[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3049 -> 2423[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3050[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2387 -> 3050[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3050 -> 2424[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3051[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2387 -> 3051[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3051 -> 2425[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3052[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2387 -> 3052[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3052 -> 2426[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3053[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2387 -> 3053[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3053 -> 2427[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3054[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2387 -> 3054[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3054 -> 2428[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3055[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2387 -> 3055[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3055 -> 2429[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3056[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2387 -> 3056[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3056 -> 2430[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3057[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2387 -> 3057[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3057 -> 2431[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3058[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2387 -> 3058[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3058 -> 2432[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3059[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2387 -> 3059[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3059 -> 2433[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3060[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2387 -> 3060[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3060 -> 2434[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3061[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2387 -> 3061[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3061 -> 2435[label="",style="solid", color="blue", weight=3]; 18.28/6.69 2388[label="False",fontsize=16,color="green",shape="box"];2389[label="False",fontsize=16,color="green",shape="box"];2390[label="yu310 == yu411010",fontsize=16,color="blue",shape="box"];3062[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2390 -> 3062[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3062 -> 2436[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3063[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2390 -> 3063[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3063 -> 2437[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3064[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2390 -> 3064[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3064 -> 2438[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3065[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2390 -> 3065[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3065 -> 2439[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3066[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2390 -> 3066[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3066 -> 2440[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3067[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2390 -> 3067[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3067 -> 2441[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3068[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2390 -> 3068[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3068 -> 2442[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3069[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2390 -> 3069[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3069 -> 2443[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3070[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2390 -> 3070[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3070 -> 2444[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3071[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2390 -> 3071[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3071 -> 2445[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3072[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2390 -> 3072[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3072 -> 2446[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3073[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2390 -> 3073[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3073 -> 2447[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3074[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2390 -> 3074[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3074 -> 2448[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3075[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2390 -> 3075[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3075 -> 2449[label="",style="solid", color="blue", weight=3]; 18.28/6.69 2391[label="primEqFloat (Float yu310 yu311) (Float yu411010 yu411011)",fontsize=16,color="black",shape="box"];2391 -> 2450[label="",style="solid", color="black", weight=3]; 18.28/6.69 2392 -> 2293[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2392[label="primEqInt yu310 yu411010",fontsize=16,color="magenta"];2392 -> 2451[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2392 -> 2452[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2393 -> 2238[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2393[label="yu310 == yu411010 && yu311 == yu411011",fontsize=16,color="magenta"];2393 -> 2453[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2393 -> 2454[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2394[label="primEqInt (Pos (Succ yu3100)) yu41101",fontsize=16,color="burlywood",shape="box"];3076[label="yu41101/Pos yu411010",fontsize=10,color="white",style="solid",shape="box"];2394 -> 3076[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 3076 -> 2455[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 3077[label="yu41101/Neg yu411010",fontsize=10,color="white",style="solid",shape="box"];2394 -> 3077[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 3077 -> 2456[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2395[label="primEqInt (Pos Zero) yu41101",fontsize=16,color="burlywood",shape="box"];3078[label="yu41101/Pos yu411010",fontsize=10,color="white",style="solid",shape="box"];2395 -> 3078[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 3078 -> 2457[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 3079[label="yu41101/Neg yu411010",fontsize=10,color="white",style="solid",shape="box"];2395 -> 3079[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 3079 -> 2458[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2396[label="primEqInt (Neg (Succ yu3100)) yu41101",fontsize=16,color="burlywood",shape="box"];3080[label="yu41101/Pos yu411010",fontsize=10,color="white",style="solid",shape="box"];2396 -> 3080[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 3080 -> 2459[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 3081[label="yu41101/Neg yu411010",fontsize=10,color="white",style="solid",shape="box"];2396 -> 3081[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 3081 -> 2460[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2397[label="primEqInt (Neg Zero) yu41101",fontsize=16,color="burlywood",shape="box"];3082[label="yu41101/Pos yu411010",fontsize=10,color="white",style="solid",shape="box"];2397 -> 3082[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 3082 -> 2461[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 3083[label="yu41101/Neg yu411010",fontsize=10,color="white",style="solid",shape="box"];2397 -> 3083[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 3083 -> 2462[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2398[label="True",fontsize=16,color="green",shape="box"];2186[label="foldr (++) [] (map (List.findIndices0 ((yu87,yu88) ==)) (zipWith zip0 (yu890 : yu891) (Pos yu90 + fromInt (Pos (Succ Zero)) `seq` numericEnumFrom (Pos yu90 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];2186 -> 2273[label="",style="solid", color="black", weight=3]; 18.28/6.69 2187 -> 14[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2187[label="foldr (++) [] (map (List.findIndices0 ((yu87,yu88) ==)) [])",fontsize=16,color="magenta"];2187 -> 2274[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2400[label="primEqNat yu310 yu411010",fontsize=16,color="burlywood",shape="triangle"];3084[label="yu310/Succ yu3100",fontsize=10,color="white",style="solid",shape="box"];2400 -> 3084[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 3084 -> 2464[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 3085[label="yu310/Zero",fontsize=10,color="white",style="solid",shape="box"];2400 -> 3085[label="",style="solid", color="burlywood", weight=9]; 18.28/6.69 3085 -> 2465[label="",style="solid", color="burlywood", weight=3]; 18.28/6.69 2401 -> 2243[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2401[label="yu310 == yu411010",fontsize=16,color="magenta"];2401 -> 2466[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2401 -> 2467[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2402 -> 2244[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2402[label="yu310 == yu411010",fontsize=16,color="magenta"];2402 -> 2468[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2402 -> 2469[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2403 -> 2245[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2403[label="yu310 == yu411010",fontsize=16,color="magenta"];2403 -> 2470[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2403 -> 2471[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2404 -> 2246[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2404[label="yu310 == yu411010",fontsize=16,color="magenta"];2404 -> 2472[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2404 -> 2473[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2405 -> 2247[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2405[label="yu310 == yu411010",fontsize=16,color="magenta"];2405 -> 2474[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2405 -> 2475[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2406 -> 2248[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2406[label="yu310 == yu411010",fontsize=16,color="magenta"];2406 -> 2476[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2406 -> 2477[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2407 -> 2249[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2407[label="yu310 == yu411010",fontsize=16,color="magenta"];2407 -> 2478[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2407 -> 2479[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2408 -> 2250[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2408[label="yu310 == yu411010",fontsize=16,color="magenta"];2408 -> 2480[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2408 -> 2481[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2409 -> 2251[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2409[label="yu310 == yu411010",fontsize=16,color="magenta"];2409 -> 2482[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2409 -> 2483[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2410 -> 2252[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2410[label="yu310 == yu411010",fontsize=16,color="magenta"];2410 -> 2484[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2410 -> 2485[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2411 -> 2253[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2411[label="yu310 == yu411010",fontsize=16,color="magenta"];2411 -> 2486[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2411 -> 2487[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2412 -> 2254[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2412[label="yu310 == yu411010",fontsize=16,color="magenta"];2412 -> 2488[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2412 -> 2489[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2413 -> 2255[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2413[label="yu310 == yu411010",fontsize=16,color="magenta"];2413 -> 2490[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2413 -> 2491[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2414 -> 2256[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2414[label="yu310 == yu411010",fontsize=16,color="magenta"];2414 -> 2492[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2414 -> 2493[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2415 -> 2246[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2415[label="yu311 == yu411011",fontsize=16,color="magenta"];2415 -> 2494[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2415 -> 2495[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2416[label="yu310 == yu411010",fontsize=16,color="blue",shape="box"];3086[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 3086[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3086 -> 2496[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3087[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 3087[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3087 -> 2497[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3088[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 3088[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3088 -> 2498[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3089[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 3089[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3089 -> 2499[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3090[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 3090[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3090 -> 2500[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3091[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 3091[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3091 -> 2501[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3092[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 3092[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3092 -> 2502[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3093[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 3093[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3093 -> 2503[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3094[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 3094[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3094 -> 2504[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3095[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 3095[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3095 -> 2505[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3096[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 3096[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3096 -> 2506[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3097[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 3097[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3097 -> 2507[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3098[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 3098[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3098 -> 2508[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3099[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 3099[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3099 -> 2509[label="",style="solid", color="blue", weight=3]; 18.28/6.69 2417 -> 2255[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2417[label="yu310 * yu411011 == yu311 * yu411010",fontsize=16,color="magenta"];2417 -> 2510[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2417 -> 2511[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2418[label="yu311 == yu411011",fontsize=16,color="blue",shape="box"];3100[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2418 -> 3100[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3100 -> 2512[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3101[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2418 -> 3101[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3101 -> 2513[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3102[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2418 -> 3102[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3102 -> 2514[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3103[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2418 -> 3103[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3103 -> 2515[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3104[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2418 -> 3104[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3104 -> 2516[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3105[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2418 -> 3105[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3105 -> 2517[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3106[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2418 -> 3106[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3106 -> 2518[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3107[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2418 -> 3107[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3107 -> 2519[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3108[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2418 -> 3108[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3108 -> 2520[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3109[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2418 -> 3109[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3109 -> 2521[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3110[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2418 -> 3110[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3110 -> 2522[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3111[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2418 -> 3111[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3111 -> 2523[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3112[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2418 -> 3112[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3112 -> 2524[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3113[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2418 -> 3113[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3113 -> 2525[label="",style="solid", color="blue", weight=3]; 18.28/6.69 2419[label="yu310 == yu411010",fontsize=16,color="blue",shape="box"];3114[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 3114[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3114 -> 2526[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3115[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 3115[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3115 -> 2527[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3116[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 3116[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3116 -> 2528[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3117[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 3117[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3117 -> 2529[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3118[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 3118[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3118 -> 2530[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3119[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 3119[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3119 -> 2531[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3120[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 3120[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3120 -> 2532[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3121[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 3121[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3121 -> 2533[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3122[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 3122[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3122 -> 2534[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3123[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 3123[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3123 -> 2535[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3124[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 3124[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3124 -> 2536[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3125[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 3125[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3125 -> 2537[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3126[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 3126[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3126 -> 2538[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3127[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 3127[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3127 -> 2539[label="",style="solid", color="blue", weight=3]; 18.28/6.69 2420 -> 2238[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2420[label="yu311 == yu411011 && yu312 == yu411012",fontsize=16,color="magenta"];2420 -> 2540[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2420 -> 2541[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2421[label="yu310 == yu411010",fontsize=16,color="blue",shape="box"];3128[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2421 -> 3128[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3128 -> 2542[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3129[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2421 -> 3129[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3129 -> 2543[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3130[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2421 -> 3130[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3130 -> 2544[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3131[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2421 -> 3131[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3131 -> 2545[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3132[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2421 -> 3132[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3132 -> 2546[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3133[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2421 -> 3133[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3133 -> 2547[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3134[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2421 -> 3134[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3134 -> 2548[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3135[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2421 -> 3135[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3135 -> 2549[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3136[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2421 -> 3136[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3136 -> 2550[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3137[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2421 -> 3137[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3137 -> 2551[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3138[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2421 -> 3138[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3138 -> 2552[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3139[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2421 -> 3139[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3139 -> 2553[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3140[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2421 -> 3140[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3140 -> 2554[label="",style="solid", color="blue", weight=3]; 18.28/6.69 3141[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2421 -> 3141[label="",style="solid", color="blue", weight=9]; 18.28/6.69 3141 -> 2555[label="",style="solid", color="blue", weight=3]; 18.28/6.69 2422 -> 2243[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2422[label="yu310 == yu411010",fontsize=16,color="magenta"];2422 -> 2556[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2422 -> 2557[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2423 -> 2244[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2423[label="yu310 == yu411010",fontsize=16,color="magenta"];2423 -> 2558[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2423 -> 2559[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2424 -> 2245[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2424[label="yu310 == yu411010",fontsize=16,color="magenta"];2424 -> 2560[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2424 -> 2561[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2425 -> 2246[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2425[label="yu310 == yu411010",fontsize=16,color="magenta"];2425 -> 2562[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2425 -> 2563[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2426 -> 2247[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2426[label="yu310 == yu411010",fontsize=16,color="magenta"];2426 -> 2564[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2426 -> 2565[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2427 -> 2248[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2427[label="yu310 == yu411010",fontsize=16,color="magenta"];2427 -> 2566[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2427 -> 2567[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2428 -> 2249[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2428[label="yu310 == yu411010",fontsize=16,color="magenta"];2428 -> 2568[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2428 -> 2569[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2429 -> 2250[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2429[label="yu310 == yu411010",fontsize=16,color="magenta"];2429 -> 2570[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2429 -> 2571[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2430 -> 2251[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2430[label="yu310 == yu411010",fontsize=16,color="magenta"];2430 -> 2572[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2430 -> 2573[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2431 -> 2252[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2431[label="yu310 == yu411010",fontsize=16,color="magenta"];2431 -> 2574[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2431 -> 2575[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2432 -> 2253[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2432[label="yu310 == yu411010",fontsize=16,color="magenta"];2432 -> 2576[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2432 -> 2577[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2433 -> 2254[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2433[label="yu310 == yu411010",fontsize=16,color="magenta"];2433 -> 2578[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2433 -> 2579[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2434 -> 2255[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2434[label="yu310 == yu411010",fontsize=16,color="magenta"];2434 -> 2580[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2434 -> 2581[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2435 -> 2256[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2435[label="yu310 == yu411010",fontsize=16,color="magenta"];2435 -> 2582[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2435 -> 2583[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2436 -> 2243[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2436[label="yu310 == yu411010",fontsize=16,color="magenta"];2436 -> 2584[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2436 -> 2585[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2437 -> 2244[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2437[label="yu310 == yu411010",fontsize=16,color="magenta"];2437 -> 2586[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2437 -> 2587[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2438 -> 2245[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2438[label="yu310 == yu411010",fontsize=16,color="magenta"];2438 -> 2588[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2438 -> 2589[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2439 -> 2246[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2439[label="yu310 == yu411010",fontsize=16,color="magenta"];2439 -> 2590[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2439 -> 2591[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2440 -> 2247[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2440[label="yu310 == yu411010",fontsize=16,color="magenta"];2440 -> 2592[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2440 -> 2593[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2441 -> 2248[label="",style="dashed", color="red", weight=0]; 18.28/6.69 2441[label="yu310 == yu411010",fontsize=16,color="magenta"];2441 -> 2594[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2441 -> 2595[label="",style="dashed", color="magenta", weight=3]; 18.28/6.69 2442 -> 2249[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2442[label="yu310 == yu411010",fontsize=16,color="magenta"];2442 -> 2596[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2442 -> 2597[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2443 -> 2250[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2443[label="yu310 == yu411010",fontsize=16,color="magenta"];2443 -> 2598[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2443 -> 2599[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2444 -> 2251[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2444[label="yu310 == yu411010",fontsize=16,color="magenta"];2444 -> 2600[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2444 -> 2601[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2445 -> 2252[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2445[label="yu310 == yu411010",fontsize=16,color="magenta"];2445 -> 2602[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2445 -> 2603[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2446 -> 2253[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2446[label="yu310 == yu411010",fontsize=16,color="magenta"];2446 -> 2604[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2446 -> 2605[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2447 -> 2254[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2447[label="yu310 == yu411010",fontsize=16,color="magenta"];2447 -> 2606[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2447 -> 2607[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2448 -> 2255[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2448[label="yu310 == yu411010",fontsize=16,color="magenta"];2448 -> 2608[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2448 -> 2609[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2449 -> 2256[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2449[label="yu310 == yu411010",fontsize=16,color="magenta"];2449 -> 2610[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2449 -> 2611[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2450 -> 2255[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2450[label="yu310 * yu411011 == yu311 * yu411010",fontsize=16,color="magenta"];2450 -> 2612[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2450 -> 2613[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2451[label="yu411010",fontsize=16,color="green",shape="box"];2452[label="yu310",fontsize=16,color="green",shape="box"];2453[label="yu311 == yu411011",fontsize=16,color="blue",shape="box"];3142[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2453 -> 3142[label="",style="solid", color="blue", weight=9]; 18.28/6.70 3142 -> 2614[label="",style="solid", color="blue", weight=3]; 18.28/6.70 3143[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2453 -> 3143[label="",style="solid", color="blue", weight=9]; 18.28/6.70 3143 -> 2615[label="",style="solid", color="blue", weight=3]; 18.28/6.70 2454[label="yu310 == yu411010",fontsize=16,color="blue",shape="box"];3144[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2454 -> 3144[label="",style="solid", color="blue", weight=9]; 18.28/6.70 3144 -> 2616[label="",style="solid", color="blue", weight=3]; 18.28/6.70 3145[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2454 -> 3145[label="",style="solid", color="blue", weight=9]; 18.28/6.70 3145 -> 2617[label="",style="solid", color="blue", weight=3]; 18.28/6.70 2455[label="primEqInt (Pos (Succ yu3100)) (Pos yu411010)",fontsize=16,color="burlywood",shape="box"];3146[label="yu411010/Succ yu4110100",fontsize=10,color="white",style="solid",shape="box"];2455 -> 3146[label="",style="solid", color="burlywood", weight=9]; 18.28/6.70 3146 -> 2618[label="",style="solid", color="burlywood", weight=3]; 18.28/6.70 3147[label="yu411010/Zero",fontsize=10,color="white",style="solid",shape="box"];2455 -> 3147[label="",style="solid", color="burlywood", weight=9]; 18.28/6.70 3147 -> 2619[label="",style="solid", color="burlywood", weight=3]; 18.28/6.70 2456[label="primEqInt (Pos (Succ yu3100)) (Neg yu411010)",fontsize=16,color="black",shape="box"];2456 -> 2620[label="",style="solid", color="black", weight=3]; 18.28/6.70 2457[label="primEqInt (Pos Zero) (Pos yu411010)",fontsize=16,color="burlywood",shape="box"];3148[label="yu411010/Succ yu4110100",fontsize=10,color="white",style="solid",shape="box"];2457 -> 3148[label="",style="solid", color="burlywood", weight=9]; 18.28/6.70 3148 -> 2621[label="",style="solid", color="burlywood", weight=3]; 18.28/6.70 3149[label="yu411010/Zero",fontsize=10,color="white",style="solid",shape="box"];2457 -> 3149[label="",style="solid", color="burlywood", weight=9]; 18.28/6.70 3149 -> 2622[label="",style="solid", color="burlywood", weight=3]; 18.28/6.70 2458[label="primEqInt (Pos Zero) (Neg yu411010)",fontsize=16,color="burlywood",shape="box"];3150[label="yu411010/Succ yu4110100",fontsize=10,color="white",style="solid",shape="box"];2458 -> 3150[label="",style="solid", color="burlywood", weight=9]; 18.28/6.70 3150 -> 2623[label="",style="solid", color="burlywood", weight=3]; 18.28/6.70 3151[label="yu411010/Zero",fontsize=10,color="white",style="solid",shape="box"];2458 -> 3151[label="",style="solid", color="burlywood", weight=9]; 18.28/6.70 3151 -> 2624[label="",style="solid", color="burlywood", weight=3]; 18.28/6.70 2459[label="primEqInt (Neg (Succ yu3100)) (Pos yu411010)",fontsize=16,color="black",shape="box"];2459 -> 2625[label="",style="solid", color="black", weight=3]; 18.28/6.70 2460[label="primEqInt (Neg (Succ yu3100)) (Neg yu411010)",fontsize=16,color="burlywood",shape="box"];3152[label="yu411010/Succ yu4110100",fontsize=10,color="white",style="solid",shape="box"];2460 -> 3152[label="",style="solid", color="burlywood", weight=9]; 18.28/6.70 3152 -> 2626[label="",style="solid", color="burlywood", weight=3]; 18.28/6.70 3153[label="yu411010/Zero",fontsize=10,color="white",style="solid",shape="box"];2460 -> 3153[label="",style="solid", color="burlywood", weight=9]; 18.28/6.70 3153 -> 2627[label="",style="solid", color="burlywood", weight=3]; 18.28/6.70 2461[label="primEqInt (Neg Zero) (Pos yu411010)",fontsize=16,color="burlywood",shape="box"];3154[label="yu411010/Succ yu4110100",fontsize=10,color="white",style="solid",shape="box"];2461 -> 3154[label="",style="solid", color="burlywood", weight=9]; 18.28/6.70 3154 -> 2628[label="",style="solid", color="burlywood", weight=3]; 18.28/6.70 3155[label="yu411010/Zero",fontsize=10,color="white",style="solid",shape="box"];2461 -> 3155[label="",style="solid", color="burlywood", weight=9]; 18.28/6.70 3155 -> 2629[label="",style="solid", color="burlywood", weight=3]; 18.28/6.70 2462[label="primEqInt (Neg Zero) (Neg yu411010)",fontsize=16,color="burlywood",shape="box"];3156[label="yu411010/Succ yu4110100",fontsize=10,color="white",style="solid",shape="box"];2462 -> 3156[label="",style="solid", color="burlywood", weight=9]; 18.28/6.70 3156 -> 2630[label="",style="solid", color="burlywood", weight=3]; 18.28/6.70 3157[label="yu411010/Zero",fontsize=10,color="white",style="solid",shape="box"];2462 -> 3157[label="",style="solid", color="burlywood", weight=9]; 18.28/6.70 3157 -> 2631[label="",style="solid", color="burlywood", weight=3]; 18.28/6.70 2273[label="foldr (++) [] (map (List.findIndices0 ((yu87,yu88) ==)) (zipWith zip0 (yu890 : yu891) (enforceWHNF (WHNF (Pos yu90 + fromInt (Pos (Succ Zero)))) (numericEnumFrom (Pos yu90 + fromInt (Pos (Succ Zero)))))))",fontsize=16,color="black",shape="box"];2273 -> 2325[label="",style="solid", color="black", weight=3]; 18.28/6.70 2274[label="(yu87,yu88)",fontsize=16,color="green",shape="box"];2464[label="primEqNat (Succ yu3100) yu411010",fontsize=16,color="burlywood",shape="box"];3158[label="yu411010/Succ yu4110100",fontsize=10,color="white",style="solid",shape="box"];2464 -> 3158[label="",style="solid", color="burlywood", weight=9]; 18.28/6.70 3158 -> 2633[label="",style="solid", color="burlywood", weight=3]; 18.28/6.70 3159[label="yu411010/Zero",fontsize=10,color="white",style="solid",shape="box"];2464 -> 3159[label="",style="solid", color="burlywood", weight=9]; 18.28/6.70 3159 -> 2634[label="",style="solid", color="burlywood", weight=3]; 18.28/6.70 2465[label="primEqNat Zero yu411010",fontsize=16,color="burlywood",shape="box"];3160[label="yu411010/Succ yu4110100",fontsize=10,color="white",style="solid",shape="box"];2465 -> 3160[label="",style="solid", color="burlywood", weight=9]; 18.28/6.70 3160 -> 2635[label="",style="solid", color="burlywood", weight=3]; 18.28/6.70 3161[label="yu411010/Zero",fontsize=10,color="white",style="solid",shape="box"];2465 -> 3161[label="",style="solid", color="burlywood", weight=9]; 18.28/6.70 3161 -> 2636[label="",style="solid", color="burlywood", weight=3]; 18.28/6.70 2466[label="yu411010",fontsize=16,color="green",shape="box"];2467[label="yu310",fontsize=16,color="green",shape="box"];2468[label="yu411010",fontsize=16,color="green",shape="box"];2469[label="yu310",fontsize=16,color="green",shape="box"];2470[label="yu411010",fontsize=16,color="green",shape="box"];2471[label="yu310",fontsize=16,color="green",shape="box"];2472[label="yu411010",fontsize=16,color="green",shape="box"];2473[label="yu310",fontsize=16,color="green",shape="box"];2474[label="yu411010",fontsize=16,color="green",shape="box"];2475[label="yu310",fontsize=16,color="green",shape="box"];2476[label="yu411010",fontsize=16,color="green",shape="box"];2477[label="yu310",fontsize=16,color="green",shape="box"];2478[label="yu411010",fontsize=16,color="green",shape="box"];2479[label="yu310",fontsize=16,color="green",shape="box"];2480[label="yu411010",fontsize=16,color="green",shape="box"];2481[label="yu310",fontsize=16,color="green",shape="box"];2482[label="yu411010",fontsize=16,color="green",shape="box"];2483[label="yu310",fontsize=16,color="green",shape="box"];2484[label="yu411010",fontsize=16,color="green",shape="box"];2485[label="yu310",fontsize=16,color="green",shape="box"];2486[label="yu411010",fontsize=16,color="green",shape="box"];2487[label="yu310",fontsize=16,color="green",shape="box"];2488[label="yu411010",fontsize=16,color="green",shape="box"];2489[label="yu310",fontsize=16,color="green",shape="box"];2490[label="yu411010",fontsize=16,color="green",shape="box"];2491[label="yu310",fontsize=16,color="green",shape="box"];2492[label="yu411010",fontsize=16,color="green",shape="box"];2493[label="yu310",fontsize=16,color="green",shape="box"];2494[label="yu411011",fontsize=16,color="green",shape="box"];2495[label="yu311",fontsize=16,color="green",shape="box"];2496 -> 2243[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2496[label="yu310 == yu411010",fontsize=16,color="magenta"];2496 -> 2637[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2496 -> 2638[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2497 -> 2244[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2497[label="yu310 == yu411010",fontsize=16,color="magenta"];2497 -> 2639[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2497 -> 2640[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2498 -> 2245[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2498[label="yu310 == yu411010",fontsize=16,color="magenta"];2498 -> 2641[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2498 -> 2642[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2499 -> 2246[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2499[label="yu310 == yu411010",fontsize=16,color="magenta"];2499 -> 2643[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2499 -> 2644[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2500 -> 2247[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2500[label="yu310 == yu411010",fontsize=16,color="magenta"];2500 -> 2645[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2500 -> 2646[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2501 -> 2248[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2501[label="yu310 == yu411010",fontsize=16,color="magenta"];2501 -> 2647[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2501 -> 2648[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2502 -> 2249[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2502[label="yu310 == yu411010",fontsize=16,color="magenta"];2502 -> 2649[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2502 -> 2650[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2503 -> 2250[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2503[label="yu310 == yu411010",fontsize=16,color="magenta"];2503 -> 2651[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2503 -> 2652[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2504 -> 2251[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2504[label="yu310 == yu411010",fontsize=16,color="magenta"];2504 -> 2653[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2504 -> 2654[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2505 -> 2252[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2505[label="yu310 == yu411010",fontsize=16,color="magenta"];2505 -> 2655[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2505 -> 2656[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2506 -> 2253[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2506[label="yu310 == yu411010",fontsize=16,color="magenta"];2506 -> 2657[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2506 -> 2658[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2507 -> 2254[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2507[label="yu310 == yu411010",fontsize=16,color="magenta"];2507 -> 2659[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2507 -> 2660[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2508 -> 2255[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2508[label="yu310 == yu411010",fontsize=16,color="magenta"];2508 -> 2661[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2508 -> 2662[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2509 -> 2256[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2509[label="yu310 == yu411010",fontsize=16,color="magenta"];2509 -> 2663[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2509 -> 2664[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2510[label="yu311 * yu411010",fontsize=16,color="black",shape="triangle"];2510 -> 2665[label="",style="solid", color="black", weight=3]; 18.28/6.70 2511 -> 2510[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2511[label="yu310 * yu411011",fontsize=16,color="magenta"];2511 -> 2666[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2511 -> 2667[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2512 -> 2243[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2512[label="yu311 == yu411011",fontsize=16,color="magenta"];2512 -> 2668[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2512 -> 2669[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2513 -> 2244[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2513[label="yu311 == yu411011",fontsize=16,color="magenta"];2513 -> 2670[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2513 -> 2671[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2514 -> 2245[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2514[label="yu311 == yu411011",fontsize=16,color="magenta"];2514 -> 2672[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2514 -> 2673[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2515 -> 2246[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2515[label="yu311 == yu411011",fontsize=16,color="magenta"];2515 -> 2674[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2515 -> 2675[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2516 -> 2247[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2516[label="yu311 == yu411011",fontsize=16,color="magenta"];2516 -> 2676[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2516 -> 2677[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2517 -> 2248[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2517[label="yu311 == yu411011",fontsize=16,color="magenta"];2517 -> 2678[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2517 -> 2679[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2518 -> 2249[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2518[label="yu311 == yu411011",fontsize=16,color="magenta"];2518 -> 2680[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2518 -> 2681[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2519 -> 2250[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2519[label="yu311 == yu411011",fontsize=16,color="magenta"];2519 -> 2682[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2519 -> 2683[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2520 -> 2251[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2520[label="yu311 == yu411011",fontsize=16,color="magenta"];2520 -> 2684[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2520 -> 2685[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2521 -> 2252[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2521[label="yu311 == yu411011",fontsize=16,color="magenta"];2521 -> 2686[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2521 -> 2687[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2522 -> 2253[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2522[label="yu311 == yu411011",fontsize=16,color="magenta"];2522 -> 2688[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2522 -> 2689[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2523 -> 2254[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2523[label="yu311 == yu411011",fontsize=16,color="magenta"];2523 -> 2690[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2523 -> 2691[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2524 -> 2255[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2524[label="yu311 == yu411011",fontsize=16,color="magenta"];2524 -> 2692[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2524 -> 2693[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2525 -> 2256[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2525[label="yu311 == yu411011",fontsize=16,color="magenta"];2525 -> 2694[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2525 -> 2695[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2526 -> 2243[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2526[label="yu310 == yu411010",fontsize=16,color="magenta"];2526 -> 2696[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2526 -> 2697[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2527 -> 2244[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2527[label="yu310 == yu411010",fontsize=16,color="magenta"];2527 -> 2698[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2527 -> 2699[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2528 -> 2245[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2528[label="yu310 == yu411010",fontsize=16,color="magenta"];2528 -> 2700[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2528 -> 2701[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2529 -> 2246[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2529[label="yu310 == yu411010",fontsize=16,color="magenta"];2529 -> 2702[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2529 -> 2703[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2530 -> 2247[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2530[label="yu310 == yu411010",fontsize=16,color="magenta"];2530 -> 2704[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2530 -> 2705[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2531 -> 2248[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2531[label="yu310 == yu411010",fontsize=16,color="magenta"];2531 -> 2706[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2531 -> 2707[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2532 -> 2249[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2532[label="yu310 == yu411010",fontsize=16,color="magenta"];2532 -> 2708[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2532 -> 2709[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2533 -> 2250[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2533[label="yu310 == yu411010",fontsize=16,color="magenta"];2533 -> 2710[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2533 -> 2711[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2534 -> 2251[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2534[label="yu310 == yu411010",fontsize=16,color="magenta"];2534 -> 2712[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2534 -> 2713[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2535 -> 2252[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2535[label="yu310 == yu411010",fontsize=16,color="magenta"];2535 -> 2714[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2535 -> 2715[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2536 -> 2253[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2536[label="yu310 == yu411010",fontsize=16,color="magenta"];2536 -> 2716[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2536 -> 2717[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2537 -> 2254[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2537[label="yu310 == yu411010",fontsize=16,color="magenta"];2537 -> 2718[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2537 -> 2719[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2538 -> 2255[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2538[label="yu310 == yu411010",fontsize=16,color="magenta"];2538 -> 2720[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2538 -> 2721[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2539 -> 2256[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2539[label="yu310 == yu411010",fontsize=16,color="magenta"];2539 -> 2722[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2539 -> 2723[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2540[label="yu312 == yu411012",fontsize=16,color="blue",shape="box"];3162[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2540 -> 3162[label="",style="solid", color="blue", weight=9]; 18.28/6.70 3162 -> 2724[label="",style="solid", color="blue", weight=3]; 18.28/6.70 3163[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2540 -> 3163[label="",style="solid", color="blue", weight=9]; 18.28/6.70 3163 -> 2725[label="",style="solid", color="blue", weight=3]; 18.28/6.70 3164[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2540 -> 3164[label="",style="solid", color="blue", weight=9]; 18.28/6.70 3164 -> 2726[label="",style="solid", color="blue", weight=3]; 18.28/6.70 3165[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2540 -> 3165[label="",style="solid", color="blue", weight=9]; 18.28/6.70 3165 -> 2727[label="",style="solid", color="blue", weight=3]; 18.28/6.70 3166[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2540 -> 3166[label="",style="solid", color="blue", weight=9]; 18.28/6.70 3166 -> 2728[label="",style="solid", color="blue", weight=3]; 18.28/6.70 3167[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2540 -> 3167[label="",style="solid", color="blue", weight=9]; 18.28/6.70 3167 -> 2729[label="",style="solid", color="blue", weight=3]; 18.28/6.70 3168[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2540 -> 3168[label="",style="solid", color="blue", weight=9]; 18.28/6.70 3168 -> 2730[label="",style="solid", color="blue", weight=3]; 18.28/6.70 3169[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2540 -> 3169[label="",style="solid", color="blue", weight=9]; 18.28/6.70 3169 -> 2731[label="",style="solid", color="blue", weight=3]; 18.28/6.70 3170[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2540 -> 3170[label="",style="solid", color="blue", weight=9]; 18.28/6.70 3170 -> 2732[label="",style="solid", color="blue", weight=3]; 18.28/6.70 3171[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2540 -> 3171[label="",style="solid", color="blue", weight=9]; 18.28/6.70 3171 -> 2733[label="",style="solid", color="blue", weight=3]; 18.28/6.70 3172[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2540 -> 3172[label="",style="solid", color="blue", weight=9]; 18.28/6.70 3172 -> 2734[label="",style="solid", color="blue", weight=3]; 18.28/6.70 3173[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2540 -> 3173[label="",style="solid", color="blue", weight=9]; 18.28/6.70 3173 -> 2735[label="",style="solid", color="blue", weight=3]; 18.28/6.70 3174[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2540 -> 3174[label="",style="solid", color="blue", weight=9]; 18.28/6.70 3174 -> 2736[label="",style="solid", color="blue", weight=3]; 18.28/6.70 3175[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2540 -> 3175[label="",style="solid", color="blue", weight=9]; 18.28/6.70 3175 -> 2737[label="",style="solid", color="blue", weight=3]; 18.28/6.70 2541[label="yu311 == yu411011",fontsize=16,color="blue",shape="box"];3176[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2541 -> 3176[label="",style="solid", color="blue", weight=9]; 18.28/6.70 3176 -> 2738[label="",style="solid", color="blue", weight=3]; 18.28/6.70 3177[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2541 -> 3177[label="",style="solid", color="blue", weight=9]; 18.28/6.70 3177 -> 2739[label="",style="solid", color="blue", weight=3]; 18.28/6.70 3178[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2541 -> 3178[label="",style="solid", color="blue", weight=9]; 18.28/6.70 3178 -> 2740[label="",style="solid", color="blue", weight=3]; 18.28/6.70 3179[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2541 -> 3179[label="",style="solid", color="blue", weight=9]; 18.28/6.70 3179 -> 2741[label="",style="solid", color="blue", weight=3]; 18.28/6.70 3180[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2541 -> 3180[label="",style="solid", color="blue", weight=9]; 18.28/6.70 3180 -> 2742[label="",style="solid", color="blue", weight=3]; 18.28/6.70 3181[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2541 -> 3181[label="",style="solid", color="blue", weight=9]; 18.28/6.70 3181 -> 2743[label="",style="solid", color="blue", weight=3]; 18.28/6.70 3182[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2541 -> 3182[label="",style="solid", color="blue", weight=9]; 18.28/6.70 3182 -> 2744[label="",style="solid", color="blue", weight=3]; 18.28/6.70 3183[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2541 -> 3183[label="",style="solid", color="blue", weight=9]; 18.28/6.70 3183 -> 2745[label="",style="solid", color="blue", weight=3]; 18.28/6.70 3184[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2541 -> 3184[label="",style="solid", color="blue", weight=9]; 18.28/6.70 3184 -> 2746[label="",style="solid", color="blue", weight=3]; 18.28/6.70 3185[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2541 -> 3185[label="",style="solid", color="blue", weight=9]; 18.28/6.70 3185 -> 2747[label="",style="solid", color="blue", weight=3]; 18.28/6.70 3186[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2541 -> 3186[label="",style="solid", color="blue", weight=9]; 18.28/6.70 3186 -> 2748[label="",style="solid", color="blue", weight=3]; 18.28/6.70 3187[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2541 -> 3187[label="",style="solid", color="blue", weight=9]; 18.28/6.70 3187 -> 2749[label="",style="solid", color="blue", weight=3]; 18.28/6.70 3188[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2541 -> 3188[label="",style="solid", color="blue", weight=9]; 18.28/6.70 3188 -> 2750[label="",style="solid", color="blue", weight=3]; 18.28/6.70 3189[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2541 -> 3189[label="",style="solid", color="blue", weight=9]; 18.28/6.70 3189 -> 2751[label="",style="solid", color="blue", weight=3]; 18.28/6.70 2542 -> 2243[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2542[label="yu310 == yu411010",fontsize=16,color="magenta"];2542 -> 2752[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2542 -> 2753[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2543 -> 2244[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2543[label="yu310 == yu411010",fontsize=16,color="magenta"];2543 -> 2754[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2543 -> 2755[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2544 -> 2245[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2544[label="yu310 == yu411010",fontsize=16,color="magenta"];2544 -> 2756[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2544 -> 2757[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2545 -> 2246[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2545[label="yu310 == yu411010",fontsize=16,color="magenta"];2545 -> 2758[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2545 -> 2759[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2546 -> 2247[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2546[label="yu310 == yu411010",fontsize=16,color="magenta"];2546 -> 2760[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2546 -> 2761[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2547 -> 2248[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2547[label="yu310 == yu411010",fontsize=16,color="magenta"];2547 -> 2762[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2547 -> 2763[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2548 -> 2249[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2548[label="yu310 == yu411010",fontsize=16,color="magenta"];2548 -> 2764[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2548 -> 2765[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2549 -> 2250[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2549[label="yu310 == yu411010",fontsize=16,color="magenta"];2549 -> 2766[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2549 -> 2767[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2550 -> 2251[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2550[label="yu310 == yu411010",fontsize=16,color="magenta"];2550 -> 2768[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2550 -> 2769[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2551 -> 2252[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2551[label="yu310 == yu411010",fontsize=16,color="magenta"];2551 -> 2770[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2551 -> 2771[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2552 -> 2253[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2552[label="yu310 == yu411010",fontsize=16,color="magenta"];2552 -> 2772[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2552 -> 2773[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2553 -> 2254[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2553[label="yu310 == yu411010",fontsize=16,color="magenta"];2553 -> 2774[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2553 -> 2775[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2554 -> 2255[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2554[label="yu310 == yu411010",fontsize=16,color="magenta"];2554 -> 2776[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2554 -> 2777[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2555 -> 2256[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2555[label="yu310 == yu411010",fontsize=16,color="magenta"];2555 -> 2778[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2555 -> 2779[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2556[label="yu411010",fontsize=16,color="green",shape="box"];2557[label="yu310",fontsize=16,color="green",shape="box"];2558[label="yu411010",fontsize=16,color="green",shape="box"];2559[label="yu310",fontsize=16,color="green",shape="box"];2560[label="yu411010",fontsize=16,color="green",shape="box"];2561[label="yu310",fontsize=16,color="green",shape="box"];2562[label="yu411010",fontsize=16,color="green",shape="box"];2563[label="yu310",fontsize=16,color="green",shape="box"];2564[label="yu411010",fontsize=16,color="green",shape="box"];2565[label="yu310",fontsize=16,color="green",shape="box"];2566[label="yu411010",fontsize=16,color="green",shape="box"];2567[label="yu310",fontsize=16,color="green",shape="box"];2568[label="yu411010",fontsize=16,color="green",shape="box"];2569[label="yu310",fontsize=16,color="green",shape="box"];2570[label="yu411010",fontsize=16,color="green",shape="box"];2571[label="yu310",fontsize=16,color="green",shape="box"];2572[label="yu411010",fontsize=16,color="green",shape="box"];2573[label="yu310",fontsize=16,color="green",shape="box"];2574[label="yu411010",fontsize=16,color="green",shape="box"];2575[label="yu310",fontsize=16,color="green",shape="box"];2576[label="yu411010",fontsize=16,color="green",shape="box"];2577[label="yu310",fontsize=16,color="green",shape="box"];2578[label="yu411010",fontsize=16,color="green",shape="box"];2579[label="yu310",fontsize=16,color="green",shape="box"];2580[label="yu411010",fontsize=16,color="green",shape="box"];2581[label="yu310",fontsize=16,color="green",shape="box"];2582[label="yu411010",fontsize=16,color="green",shape="box"];2583[label="yu310",fontsize=16,color="green",shape="box"];2584[label="yu411010",fontsize=16,color="green",shape="box"];2585[label="yu310",fontsize=16,color="green",shape="box"];2586[label="yu411010",fontsize=16,color="green",shape="box"];2587[label="yu310",fontsize=16,color="green",shape="box"];2588[label="yu411010",fontsize=16,color="green",shape="box"];2589[label="yu310",fontsize=16,color="green",shape="box"];2590[label="yu411010",fontsize=16,color="green",shape="box"];2591[label="yu310",fontsize=16,color="green",shape="box"];2592[label="yu411010",fontsize=16,color="green",shape="box"];2593[label="yu310",fontsize=16,color="green",shape="box"];2594[label="yu411010",fontsize=16,color="green",shape="box"];2595[label="yu310",fontsize=16,color="green",shape="box"];2596[label="yu411010",fontsize=16,color="green",shape="box"];2597[label="yu310",fontsize=16,color="green",shape="box"];2598[label="yu411010",fontsize=16,color="green",shape="box"];2599[label="yu310",fontsize=16,color="green",shape="box"];2600[label="yu411010",fontsize=16,color="green",shape="box"];2601[label="yu310",fontsize=16,color="green",shape="box"];2602[label="yu411010",fontsize=16,color="green",shape="box"];2603[label="yu310",fontsize=16,color="green",shape="box"];2604[label="yu411010",fontsize=16,color="green",shape="box"];2605[label="yu310",fontsize=16,color="green",shape="box"];2606[label="yu411010",fontsize=16,color="green",shape="box"];2607[label="yu310",fontsize=16,color="green",shape="box"];2608[label="yu411010",fontsize=16,color="green",shape="box"];2609[label="yu310",fontsize=16,color="green",shape="box"];2610[label="yu411010",fontsize=16,color="green",shape="box"];2611[label="yu310",fontsize=16,color="green",shape="box"];2612 -> 2510[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2612[label="yu311 * yu411010",fontsize=16,color="magenta"];2612 -> 2780[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2612 -> 2781[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2613 -> 2510[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2613[label="yu310 * yu411011",fontsize=16,color="magenta"];2613 -> 2782[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2613 -> 2783[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2614 -> 2253[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2614[label="yu311 == yu411011",fontsize=16,color="magenta"];2614 -> 2784[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2614 -> 2785[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2615 -> 2255[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2615[label="yu311 == yu411011",fontsize=16,color="magenta"];2615 -> 2786[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2615 -> 2787[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2616 -> 2253[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2616[label="yu310 == yu411010",fontsize=16,color="magenta"];2616 -> 2788[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2616 -> 2789[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2617 -> 2255[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2617[label="yu310 == yu411010",fontsize=16,color="magenta"];2617 -> 2790[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2617 -> 2791[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2618[label="primEqInt (Pos (Succ yu3100)) (Pos (Succ yu4110100))",fontsize=16,color="black",shape="box"];2618 -> 2792[label="",style="solid", color="black", weight=3]; 18.28/6.70 2619[label="primEqInt (Pos (Succ yu3100)) (Pos Zero)",fontsize=16,color="black",shape="box"];2619 -> 2793[label="",style="solid", color="black", weight=3]; 18.28/6.70 2620[label="False",fontsize=16,color="green",shape="box"];2621[label="primEqInt (Pos Zero) (Pos (Succ yu4110100))",fontsize=16,color="black",shape="box"];2621 -> 2794[label="",style="solid", color="black", weight=3]; 18.28/6.70 2622[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2622 -> 2795[label="",style="solid", color="black", weight=3]; 18.28/6.70 2623[label="primEqInt (Pos Zero) (Neg (Succ yu4110100))",fontsize=16,color="black",shape="box"];2623 -> 2796[label="",style="solid", color="black", weight=3]; 18.28/6.70 2624[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2624 -> 2797[label="",style="solid", color="black", weight=3]; 18.28/6.70 2625[label="False",fontsize=16,color="green",shape="box"];2626[label="primEqInt (Neg (Succ yu3100)) (Neg (Succ yu4110100))",fontsize=16,color="black",shape="box"];2626 -> 2798[label="",style="solid", color="black", weight=3]; 18.28/6.70 2627[label="primEqInt (Neg (Succ yu3100)) (Neg Zero)",fontsize=16,color="black",shape="box"];2627 -> 2799[label="",style="solid", color="black", weight=3]; 18.28/6.70 2628[label="primEqInt (Neg Zero) (Pos (Succ yu4110100))",fontsize=16,color="black",shape="box"];2628 -> 2800[label="",style="solid", color="black", weight=3]; 18.28/6.70 2629[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2629 -> 2801[label="",style="solid", color="black", weight=3]; 18.28/6.70 2630[label="primEqInt (Neg Zero) (Neg (Succ yu4110100))",fontsize=16,color="black",shape="box"];2630 -> 2802[label="",style="solid", color="black", weight=3]; 18.28/6.70 2631[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2631 -> 2803[label="",style="solid", color="black", weight=3]; 18.28/6.70 2325[label="foldr (++) [] (map (List.findIndices0 ((yu87,yu88) ==)) (zipWith zip0 (yu890 : yu891) (enforceWHNF (WHNF (primPlusInt (Pos yu90) (fromInt (Pos (Succ Zero))))) (numericEnumFrom (primPlusInt (Pos yu90) (fromInt (Pos (Succ Zero))))))))",fontsize=16,color="black",shape="box"];2325 -> 2361[label="",style="solid", color="black", weight=3]; 18.28/6.70 2633[label="primEqNat (Succ yu3100) (Succ yu4110100)",fontsize=16,color="black",shape="box"];2633 -> 2809[label="",style="solid", color="black", weight=3]; 18.28/6.70 2634[label="primEqNat (Succ yu3100) Zero",fontsize=16,color="black",shape="box"];2634 -> 2810[label="",style="solid", color="black", weight=3]; 18.28/6.70 2635[label="primEqNat Zero (Succ yu4110100)",fontsize=16,color="black",shape="box"];2635 -> 2811[label="",style="solid", color="black", weight=3]; 18.28/6.70 2636[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];2636 -> 2812[label="",style="solid", color="black", weight=3]; 18.28/6.70 2637[label="yu411010",fontsize=16,color="green",shape="box"];2638[label="yu310",fontsize=16,color="green",shape="box"];2639[label="yu411010",fontsize=16,color="green",shape="box"];2640[label="yu310",fontsize=16,color="green",shape="box"];2641[label="yu411010",fontsize=16,color="green",shape="box"];2642[label="yu310",fontsize=16,color="green",shape="box"];2643[label="yu411010",fontsize=16,color="green",shape="box"];2644[label="yu310",fontsize=16,color="green",shape="box"];2645[label="yu411010",fontsize=16,color="green",shape="box"];2646[label="yu310",fontsize=16,color="green",shape="box"];2647[label="yu411010",fontsize=16,color="green",shape="box"];2648[label="yu310",fontsize=16,color="green",shape="box"];2649[label="yu411010",fontsize=16,color="green",shape="box"];2650[label="yu310",fontsize=16,color="green",shape="box"];2651[label="yu411010",fontsize=16,color="green",shape="box"];2652[label="yu310",fontsize=16,color="green",shape="box"];2653[label="yu411010",fontsize=16,color="green",shape="box"];2654[label="yu310",fontsize=16,color="green",shape="box"];2655[label="yu411010",fontsize=16,color="green",shape="box"];2656[label="yu310",fontsize=16,color="green",shape="box"];2657[label="yu411010",fontsize=16,color="green",shape="box"];2658[label="yu310",fontsize=16,color="green",shape="box"];2659[label="yu411010",fontsize=16,color="green",shape="box"];2660[label="yu310",fontsize=16,color="green",shape="box"];2661[label="yu411010",fontsize=16,color="green",shape="box"];2662[label="yu310",fontsize=16,color="green",shape="box"];2663[label="yu411010",fontsize=16,color="green",shape="box"];2664[label="yu310",fontsize=16,color="green",shape="box"];2665[label="primMulInt yu311 yu411010",fontsize=16,color="burlywood",shape="box"];3190[label="yu311/Pos yu3110",fontsize=10,color="white",style="solid",shape="box"];2665 -> 3190[label="",style="solid", color="burlywood", weight=9]; 18.28/6.70 3190 -> 2813[label="",style="solid", color="burlywood", weight=3]; 18.28/6.70 3191[label="yu311/Neg yu3110",fontsize=10,color="white",style="solid",shape="box"];2665 -> 3191[label="",style="solid", color="burlywood", weight=9]; 18.28/6.70 3191 -> 2814[label="",style="solid", color="burlywood", weight=3]; 18.28/6.70 2666[label="yu310",fontsize=16,color="green",shape="box"];2667[label="yu411011",fontsize=16,color="green",shape="box"];2668[label="yu411011",fontsize=16,color="green",shape="box"];2669[label="yu311",fontsize=16,color="green",shape="box"];2670[label="yu411011",fontsize=16,color="green",shape="box"];2671[label="yu311",fontsize=16,color="green",shape="box"];2672[label="yu411011",fontsize=16,color="green",shape="box"];2673[label="yu311",fontsize=16,color="green",shape="box"];2674[label="yu411011",fontsize=16,color="green",shape="box"];2675[label="yu311",fontsize=16,color="green",shape="box"];2676[label="yu411011",fontsize=16,color="green",shape="box"];2677[label="yu311",fontsize=16,color="green",shape="box"];2678[label="yu411011",fontsize=16,color="green",shape="box"];2679[label="yu311",fontsize=16,color="green",shape="box"];2680[label="yu411011",fontsize=16,color="green",shape="box"];2681[label="yu311",fontsize=16,color="green",shape="box"];2682[label="yu411011",fontsize=16,color="green",shape="box"];2683[label="yu311",fontsize=16,color="green",shape="box"];2684[label="yu411011",fontsize=16,color="green",shape="box"];2685[label="yu311",fontsize=16,color="green",shape="box"];2686[label="yu411011",fontsize=16,color="green",shape="box"];2687[label="yu311",fontsize=16,color="green",shape="box"];2688[label="yu411011",fontsize=16,color="green",shape="box"];2689[label="yu311",fontsize=16,color="green",shape="box"];2690[label="yu411011",fontsize=16,color="green",shape="box"];2691[label="yu311",fontsize=16,color="green",shape="box"];2692[label="yu411011",fontsize=16,color="green",shape="box"];2693[label="yu311",fontsize=16,color="green",shape="box"];2694[label="yu411011",fontsize=16,color="green",shape="box"];2695[label="yu311",fontsize=16,color="green",shape="box"];2696[label="yu411010",fontsize=16,color="green",shape="box"];2697[label="yu310",fontsize=16,color="green",shape="box"];2698[label="yu411010",fontsize=16,color="green",shape="box"];2699[label="yu310",fontsize=16,color="green",shape="box"];2700[label="yu411010",fontsize=16,color="green",shape="box"];2701[label="yu310",fontsize=16,color="green",shape="box"];2702[label="yu411010",fontsize=16,color="green",shape="box"];2703[label="yu310",fontsize=16,color="green",shape="box"];2704[label="yu411010",fontsize=16,color="green",shape="box"];2705[label="yu310",fontsize=16,color="green",shape="box"];2706[label="yu411010",fontsize=16,color="green",shape="box"];2707[label="yu310",fontsize=16,color="green",shape="box"];2708[label="yu411010",fontsize=16,color="green",shape="box"];2709[label="yu310",fontsize=16,color="green",shape="box"];2710[label="yu411010",fontsize=16,color="green",shape="box"];2711[label="yu310",fontsize=16,color="green",shape="box"];2712[label="yu411010",fontsize=16,color="green",shape="box"];2713[label="yu310",fontsize=16,color="green",shape="box"];2714[label="yu411010",fontsize=16,color="green",shape="box"];2715[label="yu310",fontsize=16,color="green",shape="box"];2716[label="yu411010",fontsize=16,color="green",shape="box"];2717[label="yu310",fontsize=16,color="green",shape="box"];2718[label="yu411010",fontsize=16,color="green",shape="box"];2719[label="yu310",fontsize=16,color="green",shape="box"];2720[label="yu411010",fontsize=16,color="green",shape="box"];2721[label="yu310",fontsize=16,color="green",shape="box"];2722[label="yu411010",fontsize=16,color="green",shape="box"];2723[label="yu310",fontsize=16,color="green",shape="box"];2724 -> 2243[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2724[label="yu312 == yu411012",fontsize=16,color="magenta"];2724 -> 2815[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2724 -> 2816[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2725 -> 2244[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2725[label="yu312 == yu411012",fontsize=16,color="magenta"];2725 -> 2817[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2725 -> 2818[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2726 -> 2245[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2726[label="yu312 == yu411012",fontsize=16,color="magenta"];2726 -> 2819[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2726 -> 2820[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2727 -> 2246[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2727[label="yu312 == yu411012",fontsize=16,color="magenta"];2727 -> 2821[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2727 -> 2822[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2728 -> 2247[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2728[label="yu312 == yu411012",fontsize=16,color="magenta"];2728 -> 2823[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2728 -> 2824[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2729 -> 2248[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2729[label="yu312 == yu411012",fontsize=16,color="magenta"];2729 -> 2825[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2729 -> 2826[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2730 -> 2249[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2730[label="yu312 == yu411012",fontsize=16,color="magenta"];2730 -> 2827[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2730 -> 2828[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2731 -> 2250[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2731[label="yu312 == yu411012",fontsize=16,color="magenta"];2731 -> 2829[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2731 -> 2830[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2732 -> 2251[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2732[label="yu312 == yu411012",fontsize=16,color="magenta"];2732 -> 2831[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2732 -> 2832[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2733 -> 2252[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2733[label="yu312 == yu411012",fontsize=16,color="magenta"];2733 -> 2833[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2733 -> 2834[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2734 -> 2253[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2734[label="yu312 == yu411012",fontsize=16,color="magenta"];2734 -> 2835[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2734 -> 2836[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2735 -> 2254[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2735[label="yu312 == yu411012",fontsize=16,color="magenta"];2735 -> 2837[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2735 -> 2838[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2736 -> 2255[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2736[label="yu312 == yu411012",fontsize=16,color="magenta"];2736 -> 2839[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2736 -> 2840[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2737 -> 2256[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2737[label="yu312 == yu411012",fontsize=16,color="magenta"];2737 -> 2841[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2737 -> 2842[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2738 -> 2243[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2738[label="yu311 == yu411011",fontsize=16,color="magenta"];2738 -> 2843[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2738 -> 2844[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2739 -> 2244[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2739[label="yu311 == yu411011",fontsize=16,color="magenta"];2739 -> 2845[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2739 -> 2846[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2740 -> 2245[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2740[label="yu311 == yu411011",fontsize=16,color="magenta"];2740 -> 2847[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2740 -> 2848[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2741 -> 2246[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2741[label="yu311 == yu411011",fontsize=16,color="magenta"];2741 -> 2849[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2741 -> 2850[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2742 -> 2247[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2742[label="yu311 == yu411011",fontsize=16,color="magenta"];2742 -> 2851[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2742 -> 2852[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2743 -> 2248[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2743[label="yu311 == yu411011",fontsize=16,color="magenta"];2743 -> 2853[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2743 -> 2854[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2744 -> 2249[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2744[label="yu311 == yu411011",fontsize=16,color="magenta"];2744 -> 2855[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2744 -> 2856[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2745 -> 2250[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2745[label="yu311 == yu411011",fontsize=16,color="magenta"];2745 -> 2857[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2745 -> 2858[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2746 -> 2251[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2746[label="yu311 == yu411011",fontsize=16,color="magenta"];2746 -> 2859[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2746 -> 2860[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2747 -> 2252[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2747[label="yu311 == yu411011",fontsize=16,color="magenta"];2747 -> 2861[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2747 -> 2862[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2748 -> 2253[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2748[label="yu311 == yu411011",fontsize=16,color="magenta"];2748 -> 2863[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2748 -> 2864[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2749 -> 2254[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2749[label="yu311 == yu411011",fontsize=16,color="magenta"];2749 -> 2865[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2749 -> 2866[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2750 -> 2255[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2750[label="yu311 == yu411011",fontsize=16,color="magenta"];2750 -> 2867[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2750 -> 2868[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2751 -> 2256[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2751[label="yu311 == yu411011",fontsize=16,color="magenta"];2751 -> 2869[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2751 -> 2870[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2752[label="yu411010",fontsize=16,color="green",shape="box"];2753[label="yu310",fontsize=16,color="green",shape="box"];2754[label="yu411010",fontsize=16,color="green",shape="box"];2755[label="yu310",fontsize=16,color="green",shape="box"];2756[label="yu411010",fontsize=16,color="green",shape="box"];2757[label="yu310",fontsize=16,color="green",shape="box"];2758[label="yu411010",fontsize=16,color="green",shape="box"];2759[label="yu310",fontsize=16,color="green",shape="box"];2760[label="yu411010",fontsize=16,color="green",shape="box"];2761[label="yu310",fontsize=16,color="green",shape="box"];2762[label="yu411010",fontsize=16,color="green",shape="box"];2763[label="yu310",fontsize=16,color="green",shape="box"];2764[label="yu411010",fontsize=16,color="green",shape="box"];2765[label="yu310",fontsize=16,color="green",shape="box"];2766[label="yu411010",fontsize=16,color="green",shape="box"];2767[label="yu310",fontsize=16,color="green",shape="box"];2768[label="yu411010",fontsize=16,color="green",shape="box"];2769[label="yu310",fontsize=16,color="green",shape="box"];2770[label="yu411010",fontsize=16,color="green",shape="box"];2771[label="yu310",fontsize=16,color="green",shape="box"];2772[label="yu411010",fontsize=16,color="green",shape="box"];2773[label="yu310",fontsize=16,color="green",shape="box"];2774[label="yu411010",fontsize=16,color="green",shape="box"];2775[label="yu310",fontsize=16,color="green",shape="box"];2776[label="yu411010",fontsize=16,color="green",shape="box"];2777[label="yu310",fontsize=16,color="green",shape="box"];2778[label="yu411010",fontsize=16,color="green",shape="box"];2779[label="yu310",fontsize=16,color="green",shape="box"];2780[label="yu311",fontsize=16,color="green",shape="box"];2781[label="yu411010",fontsize=16,color="green",shape="box"];2782[label="yu310",fontsize=16,color="green",shape="box"];2783[label="yu411011",fontsize=16,color="green",shape="box"];2784[label="yu411011",fontsize=16,color="green",shape="box"];2785[label="yu311",fontsize=16,color="green",shape="box"];2786[label="yu411011",fontsize=16,color="green",shape="box"];2787[label="yu311",fontsize=16,color="green",shape="box"];2788[label="yu411010",fontsize=16,color="green",shape="box"];2789[label="yu310",fontsize=16,color="green",shape="box"];2790[label="yu411010",fontsize=16,color="green",shape="box"];2791[label="yu310",fontsize=16,color="green",shape="box"];2792 -> 2400[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2792[label="primEqNat yu3100 yu4110100",fontsize=16,color="magenta"];2792 -> 2871[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2792 -> 2872[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2793[label="False",fontsize=16,color="green",shape="box"];2794[label="False",fontsize=16,color="green",shape="box"];2795[label="True",fontsize=16,color="green",shape="box"];2796[label="False",fontsize=16,color="green",shape="box"];2797[label="True",fontsize=16,color="green",shape="box"];2798 -> 2400[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2798[label="primEqNat yu3100 yu4110100",fontsize=16,color="magenta"];2798 -> 2873[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2798 -> 2874[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2799[label="False",fontsize=16,color="green",shape="box"];2800[label="False",fontsize=16,color="green",shape="box"];2801[label="True",fontsize=16,color="green",shape="box"];2802[label="False",fontsize=16,color="green",shape="box"];2803[label="True",fontsize=16,color="green",shape="box"];2361[label="foldr (++) [] (map (List.findIndices0 ((yu87,yu88) ==)) (zipWith zip0 (yu890 : yu891) (enforceWHNF (WHNF (primPlusInt (Pos yu90) (Pos (Succ Zero)))) (numericEnumFrom (primPlusInt (Pos yu90) (Pos (Succ Zero)))))))",fontsize=16,color="black",shape="box"];2361 -> 2399[label="",style="solid", color="black", weight=3]; 18.28/6.70 2809 -> 2400[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2809[label="primEqNat yu3100 yu4110100",fontsize=16,color="magenta"];2809 -> 2877[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2809 -> 2878[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2810[label="False",fontsize=16,color="green",shape="box"];2811[label="False",fontsize=16,color="green",shape="box"];2812[label="True",fontsize=16,color="green",shape="box"];2813[label="primMulInt (Pos yu3110) yu411010",fontsize=16,color="burlywood",shape="box"];3192[label="yu411010/Pos yu4110100",fontsize=10,color="white",style="solid",shape="box"];2813 -> 3192[label="",style="solid", color="burlywood", weight=9]; 18.28/6.70 3192 -> 2879[label="",style="solid", color="burlywood", weight=3]; 18.28/6.70 3193[label="yu411010/Neg yu4110100",fontsize=10,color="white",style="solid",shape="box"];2813 -> 3193[label="",style="solid", color="burlywood", weight=9]; 18.28/6.70 3193 -> 2880[label="",style="solid", color="burlywood", weight=3]; 18.28/6.70 2814[label="primMulInt (Neg yu3110) yu411010",fontsize=16,color="burlywood",shape="box"];3194[label="yu411010/Pos yu4110100",fontsize=10,color="white",style="solid",shape="box"];2814 -> 3194[label="",style="solid", color="burlywood", weight=9]; 18.28/6.70 3194 -> 2881[label="",style="solid", color="burlywood", weight=3]; 18.28/6.70 3195[label="yu411010/Neg yu4110100",fontsize=10,color="white",style="solid",shape="box"];2814 -> 3195[label="",style="solid", color="burlywood", weight=9]; 18.28/6.70 3195 -> 2882[label="",style="solid", color="burlywood", weight=3]; 18.28/6.70 2815[label="yu411012",fontsize=16,color="green",shape="box"];2816[label="yu312",fontsize=16,color="green",shape="box"];2817[label="yu411012",fontsize=16,color="green",shape="box"];2818[label="yu312",fontsize=16,color="green",shape="box"];2819[label="yu411012",fontsize=16,color="green",shape="box"];2820[label="yu312",fontsize=16,color="green",shape="box"];2821[label="yu411012",fontsize=16,color="green",shape="box"];2822[label="yu312",fontsize=16,color="green",shape="box"];2823[label="yu411012",fontsize=16,color="green",shape="box"];2824[label="yu312",fontsize=16,color="green",shape="box"];2825[label="yu411012",fontsize=16,color="green",shape="box"];2826[label="yu312",fontsize=16,color="green",shape="box"];2827[label="yu411012",fontsize=16,color="green",shape="box"];2828[label="yu312",fontsize=16,color="green",shape="box"];2829[label="yu411012",fontsize=16,color="green",shape="box"];2830[label="yu312",fontsize=16,color="green",shape="box"];2831[label="yu411012",fontsize=16,color="green",shape="box"];2832[label="yu312",fontsize=16,color="green",shape="box"];2833[label="yu411012",fontsize=16,color="green",shape="box"];2834[label="yu312",fontsize=16,color="green",shape="box"];2835[label="yu411012",fontsize=16,color="green",shape="box"];2836[label="yu312",fontsize=16,color="green",shape="box"];2837[label="yu411012",fontsize=16,color="green",shape="box"];2838[label="yu312",fontsize=16,color="green",shape="box"];2839[label="yu411012",fontsize=16,color="green",shape="box"];2840[label="yu312",fontsize=16,color="green",shape="box"];2841[label="yu411012",fontsize=16,color="green",shape="box"];2842[label="yu312",fontsize=16,color="green",shape="box"];2843[label="yu411011",fontsize=16,color="green",shape="box"];2844[label="yu311",fontsize=16,color="green",shape="box"];2845[label="yu411011",fontsize=16,color="green",shape="box"];2846[label="yu311",fontsize=16,color="green",shape="box"];2847[label="yu411011",fontsize=16,color="green",shape="box"];2848[label="yu311",fontsize=16,color="green",shape="box"];2849[label="yu411011",fontsize=16,color="green",shape="box"];2850[label="yu311",fontsize=16,color="green",shape="box"];2851[label="yu411011",fontsize=16,color="green",shape="box"];2852[label="yu311",fontsize=16,color="green",shape="box"];2853[label="yu411011",fontsize=16,color="green",shape="box"];2854[label="yu311",fontsize=16,color="green",shape="box"];2855[label="yu411011",fontsize=16,color="green",shape="box"];2856[label="yu311",fontsize=16,color="green",shape="box"];2857[label="yu411011",fontsize=16,color="green",shape="box"];2858[label="yu311",fontsize=16,color="green",shape="box"];2859[label="yu411011",fontsize=16,color="green",shape="box"];2860[label="yu311",fontsize=16,color="green",shape="box"];2861[label="yu411011",fontsize=16,color="green",shape="box"];2862[label="yu311",fontsize=16,color="green",shape="box"];2863[label="yu411011",fontsize=16,color="green",shape="box"];2864[label="yu311",fontsize=16,color="green",shape="box"];2865[label="yu411011",fontsize=16,color="green",shape="box"];2866[label="yu311",fontsize=16,color="green",shape="box"];2867[label="yu411011",fontsize=16,color="green",shape="box"];2868[label="yu311",fontsize=16,color="green",shape="box"];2869[label="yu411011",fontsize=16,color="green",shape="box"];2870[label="yu311",fontsize=16,color="green",shape="box"];2871[label="yu4110100",fontsize=16,color="green",shape="box"];2872[label="yu3100",fontsize=16,color="green",shape="box"];2873[label="yu4110100",fontsize=16,color="green",shape="box"];2874[label="yu3100",fontsize=16,color="green",shape="box"];2399[label="foldr (++) [] (map (List.findIndices0 ((yu87,yu88) ==)) (zipWith zip0 (yu890 : yu891) (enforceWHNF (WHNF (Pos (primPlusNat yu90 (Succ Zero)))) (numericEnumFrom (Pos (primPlusNat yu90 (Succ Zero)))))))",fontsize=16,color="black",shape="box"];2399 -> 2463[label="",style="solid", color="black", weight=3]; 18.28/6.70 2877[label="yu4110100",fontsize=16,color="green",shape="box"];2878[label="yu3100",fontsize=16,color="green",shape="box"];2879[label="primMulInt (Pos yu3110) (Pos yu4110100)",fontsize=16,color="black",shape="box"];2879 -> 2885[label="",style="solid", color="black", weight=3]; 18.28/6.70 2880[label="primMulInt (Pos yu3110) (Neg yu4110100)",fontsize=16,color="black",shape="box"];2880 -> 2886[label="",style="solid", color="black", weight=3]; 18.28/6.70 2881[label="primMulInt (Neg yu3110) (Pos yu4110100)",fontsize=16,color="black",shape="box"];2881 -> 2887[label="",style="solid", color="black", weight=3]; 18.28/6.70 2882[label="primMulInt (Neg yu3110) (Neg yu4110100)",fontsize=16,color="black",shape="box"];2882 -> 2888[label="",style="solid", color="black", weight=3]; 18.28/6.70 2463[label="foldr (++) [] (map (List.findIndices0 ((yu87,yu88) ==)) (zipWith zip0 (yu890 : yu891) (numericEnumFrom (Pos (primPlusNat yu90 (Succ Zero))))))",fontsize=16,color="black",shape="box"];2463 -> 2632[label="",style="solid", color="black", weight=3]; 18.28/6.70 2885[label="Pos (primMulNat yu3110 yu4110100)",fontsize=16,color="green",shape="box"];2885 -> 2890[label="",style="dashed", color="green", weight=3]; 18.28/6.70 2886[label="Neg (primMulNat yu3110 yu4110100)",fontsize=16,color="green",shape="box"];2886 -> 2891[label="",style="dashed", color="green", weight=3]; 18.28/6.70 2887[label="Neg (primMulNat yu3110 yu4110100)",fontsize=16,color="green",shape="box"];2887 -> 2892[label="",style="dashed", color="green", weight=3]; 18.28/6.70 2888[label="Pos (primMulNat yu3110 yu4110100)",fontsize=16,color="green",shape="box"];2888 -> 2893[label="",style="dashed", color="green", weight=3]; 18.28/6.70 2632 -> 1898[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2632[label="foldr (++) [] (map (List.findIndices0 ((yu87,yu88) ==)) (zipWith zip0 (yu890 : yu891) (Pos (primPlusNat yu90 (Succ Zero)) : (numericEnumFrom $! Pos (primPlusNat yu90 (Succ Zero)) + fromInt (Pos (Succ Zero))))))",fontsize=16,color="magenta"];2632 -> 2804[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2632 -> 2805[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2632 -> 2806[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2632 -> 2807[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2632 -> 2808[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2890[label="primMulNat yu3110 yu4110100",fontsize=16,color="burlywood",shape="triangle"];3196[label="yu3110/Succ yu31100",fontsize=10,color="white",style="solid",shape="box"];2890 -> 3196[label="",style="solid", color="burlywood", weight=9]; 18.28/6.70 3196 -> 2896[label="",style="solid", color="burlywood", weight=3]; 18.28/6.70 3197[label="yu3110/Zero",fontsize=10,color="white",style="solid",shape="box"];2890 -> 3197[label="",style="solid", color="burlywood", weight=9]; 18.28/6.70 3197 -> 2897[label="",style="solid", color="burlywood", weight=3]; 18.28/6.70 2891 -> 2890[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2891[label="primMulNat yu3110 yu4110100",fontsize=16,color="magenta"];2891 -> 2898[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2892 -> 2890[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2892[label="primMulNat yu3110 yu4110100",fontsize=16,color="magenta"];2892 -> 2899[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2893 -> 2890[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2893[label="primMulNat yu3110 yu4110100",fontsize=16,color="magenta"];2893 -> 2900[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2893 -> 2901[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2804[label="yu890",fontsize=16,color="green",shape="box"];2805 -> 2912[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2805[label="primPlusNat yu90 (Succ Zero)",fontsize=16,color="magenta"];2805 -> 2913[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2805 -> 2914[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2806[label="yu891",fontsize=16,color="green",shape="box"];2807 -> 2912[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2807[label="primPlusNat yu90 (Succ Zero)",fontsize=16,color="magenta"];2807 -> 2915[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2807 -> 2916[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2808[label="(yu87,yu88)",fontsize=16,color="green",shape="box"];2896[label="primMulNat (Succ yu31100) yu4110100",fontsize=16,color="burlywood",shape="box"];3198[label="yu4110100/Succ yu41101000",fontsize=10,color="white",style="solid",shape="box"];2896 -> 3198[label="",style="solid", color="burlywood", weight=9]; 18.28/6.70 3198 -> 2904[label="",style="solid", color="burlywood", weight=3]; 18.28/6.70 3199[label="yu4110100/Zero",fontsize=10,color="white",style="solid",shape="box"];2896 -> 3199[label="",style="solid", color="burlywood", weight=9]; 18.28/6.70 3199 -> 2905[label="",style="solid", color="burlywood", weight=3]; 18.28/6.70 2897[label="primMulNat Zero yu4110100",fontsize=16,color="burlywood",shape="box"];3200[label="yu4110100/Succ yu41101000",fontsize=10,color="white",style="solid",shape="box"];2897 -> 3200[label="",style="solid", color="burlywood", weight=9]; 18.28/6.70 3200 -> 2906[label="",style="solid", color="burlywood", weight=3]; 18.28/6.70 3201[label="yu4110100/Zero",fontsize=10,color="white",style="solid",shape="box"];2897 -> 3201[label="",style="solid", color="burlywood", weight=9]; 18.28/6.70 3201 -> 2907[label="",style="solid", color="burlywood", weight=3]; 18.28/6.70 2898[label="yu4110100",fontsize=16,color="green",shape="box"];2899[label="yu3110",fontsize=16,color="green",shape="box"];2900[label="yu4110100",fontsize=16,color="green",shape="box"];2901[label="yu3110",fontsize=16,color="green",shape="box"];2913[label="yu90",fontsize=16,color="green",shape="box"];2914[label="Zero",fontsize=16,color="green",shape="box"];2912[label="primPlusNat yu104 (Succ yu41101000)",fontsize=16,color="burlywood",shape="triangle"];3202[label="yu104/Succ yu1040",fontsize=10,color="white",style="solid",shape="box"];2912 -> 3202[label="",style="solid", color="burlywood", weight=9]; 18.28/6.70 3202 -> 2918[label="",style="solid", color="burlywood", weight=3]; 18.28/6.70 3203[label="yu104/Zero",fontsize=10,color="white",style="solid",shape="box"];2912 -> 3203[label="",style="solid", color="burlywood", weight=9]; 18.28/6.70 3203 -> 2919[label="",style="solid", color="burlywood", weight=3]; 18.28/6.70 2915[label="yu90",fontsize=16,color="green",shape="box"];2916[label="Zero",fontsize=16,color="green",shape="box"];2904[label="primMulNat (Succ yu31100) (Succ yu41101000)",fontsize=16,color="black",shape="box"];2904 -> 2908[label="",style="solid", color="black", weight=3]; 18.28/6.70 2905[label="primMulNat (Succ yu31100) Zero",fontsize=16,color="black",shape="box"];2905 -> 2909[label="",style="solid", color="black", weight=3]; 18.28/6.70 2906[label="primMulNat Zero (Succ yu41101000)",fontsize=16,color="black",shape="box"];2906 -> 2910[label="",style="solid", color="black", weight=3]; 18.28/6.70 2907[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];2907 -> 2911[label="",style="solid", color="black", weight=3]; 18.28/6.70 2918[label="primPlusNat (Succ yu1040) (Succ yu41101000)",fontsize=16,color="black",shape="box"];2918 -> 2922[label="",style="solid", color="black", weight=3]; 18.28/6.70 2919[label="primPlusNat Zero (Succ yu41101000)",fontsize=16,color="black",shape="box"];2919 -> 2923[label="",style="solid", color="black", weight=3]; 18.28/6.70 2908 -> 2912[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2908[label="primPlusNat (primMulNat yu31100 (Succ yu41101000)) (Succ yu41101000)",fontsize=16,color="magenta"];2908 -> 2917[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2909[label="Zero",fontsize=16,color="green",shape="box"];2910[label="Zero",fontsize=16,color="green",shape="box"];2911[label="Zero",fontsize=16,color="green",shape="box"];2922[label="Succ (Succ (primPlusNat yu1040 yu41101000))",fontsize=16,color="green",shape="box"];2922 -> 2924[label="",style="dashed", color="green", weight=3]; 18.28/6.70 2923[label="Succ yu41101000",fontsize=16,color="green",shape="box"];2917 -> 2890[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2917[label="primMulNat yu31100 (Succ yu41101000)",fontsize=16,color="magenta"];2917 -> 2920[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2917 -> 2921[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2924[label="primPlusNat yu1040 yu41101000",fontsize=16,color="burlywood",shape="triangle"];3204[label="yu1040/Succ yu10400",fontsize=10,color="white",style="solid",shape="box"];2924 -> 3204[label="",style="solid", color="burlywood", weight=9]; 18.28/6.70 3204 -> 2925[label="",style="solid", color="burlywood", weight=3]; 18.28/6.70 3205[label="yu1040/Zero",fontsize=10,color="white",style="solid",shape="box"];2924 -> 3205[label="",style="solid", color="burlywood", weight=9]; 18.28/6.70 3205 -> 2926[label="",style="solid", color="burlywood", weight=3]; 18.28/6.70 2920[label="Succ yu41101000",fontsize=16,color="green",shape="box"];2921[label="yu31100",fontsize=16,color="green",shape="box"];2925[label="primPlusNat (Succ yu10400) yu41101000",fontsize=16,color="burlywood",shape="box"];3206[label="yu41101000/Succ yu411010000",fontsize=10,color="white",style="solid",shape="box"];2925 -> 3206[label="",style="solid", color="burlywood", weight=9]; 18.28/6.70 3206 -> 2927[label="",style="solid", color="burlywood", weight=3]; 18.28/6.70 3207[label="yu41101000/Zero",fontsize=10,color="white",style="solid",shape="box"];2925 -> 3207[label="",style="solid", color="burlywood", weight=9]; 18.28/6.70 3207 -> 2928[label="",style="solid", color="burlywood", weight=3]; 18.28/6.70 2926[label="primPlusNat Zero yu41101000",fontsize=16,color="burlywood",shape="box"];3208[label="yu41101000/Succ yu411010000",fontsize=10,color="white",style="solid",shape="box"];2926 -> 3208[label="",style="solid", color="burlywood", weight=9]; 18.28/6.70 3208 -> 2929[label="",style="solid", color="burlywood", weight=3]; 18.28/6.70 3209[label="yu41101000/Zero",fontsize=10,color="white",style="solid",shape="box"];2926 -> 3209[label="",style="solid", color="burlywood", weight=9]; 18.28/6.70 3209 -> 2930[label="",style="solid", color="burlywood", weight=3]; 18.28/6.70 2927[label="primPlusNat (Succ yu10400) (Succ yu411010000)",fontsize=16,color="black",shape="box"];2927 -> 2931[label="",style="solid", color="black", weight=3]; 18.28/6.70 2928[label="primPlusNat (Succ yu10400) Zero",fontsize=16,color="black",shape="box"];2928 -> 2932[label="",style="solid", color="black", weight=3]; 18.28/6.70 2929[label="primPlusNat Zero (Succ yu411010000)",fontsize=16,color="black",shape="box"];2929 -> 2933[label="",style="solid", color="black", weight=3]; 18.28/6.70 2930[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2930 -> 2934[label="",style="solid", color="black", weight=3]; 18.28/6.70 2931[label="Succ (Succ (primPlusNat yu10400 yu411010000))",fontsize=16,color="green",shape="box"];2931 -> 2935[label="",style="dashed", color="green", weight=3]; 18.28/6.70 2932[label="Succ yu10400",fontsize=16,color="green",shape="box"];2933[label="Succ yu411010000",fontsize=16,color="green",shape="box"];2934[label="Zero",fontsize=16,color="green",shape="box"];2935 -> 2924[label="",style="dashed", color="red", weight=0]; 18.28/6.70 2935[label="primPlusNat yu10400 yu411010000",fontsize=16,color="magenta"];2935 -> 2936[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2935 -> 2937[label="",style="dashed", color="magenta", weight=3]; 18.28/6.70 2936[label="yu411010000",fontsize=16,color="green",shape="box"];2937[label="yu10400",fontsize=16,color="green",shape="box"];} 18.28/6.70 18.28/6.70 ---------------------------------------- 18.28/6.70 18.28/6.70 (14) 18.28/6.70 Complex Obligation (AND) 18.28/6.70 18.28/6.70 ---------------------------------------- 18.28/6.70 18.28/6.70 (15) 18.28/6.70 Obligation: 18.28/6.70 Q DP problem: 18.28/6.70 The TRS P consists of the following rules: 18.28/6.70 18.28/6.70 new_esEs1(@2(yu310, yu311), @2(yu411010, yu411011), de, app(app(app(ty_@3, eb), ec), ed)) -> new_esEs2(yu311, yu411011, eb, ec, ed) 18.28/6.70 new_esEs2(@3(yu310, yu311, yu312), @3(yu411010, yu411011, yu411012), gb, app(app(ty_@2, hh), baa), hf) -> new_esEs1(yu311, yu411011, hh, baa) 18.28/6.70 new_esEs3(Left(yu310), Left(yu411010), app(app(ty_Either, bch), bda), bca) -> new_esEs3(yu310, yu411010, bch, bda) 18.28/6.70 new_esEs2(@3(yu310, yu311, yu312), @3(yu411010, yu411011, yu411012), gb, gc, app(app(ty_@2, gf), gg)) -> new_esEs1(yu312, yu411012, gf, gg) 18.28/6.70 new_esEs(:(yu310, yu311), :(yu411010, yu411011), app(app(ty_@2, bd), be)) -> new_esEs1(yu310, yu411010, bd, be) 18.28/6.70 new_esEs3(Right(yu310), Right(yu411010), bdb, app(ty_[], bdd)) -> new_esEs(yu310, yu411010, bdd) 18.28/6.70 new_esEs1(@2(yu310, yu311), @2(yu411010, yu411011), app(ty_[], fa), eh) -> new_esEs(yu310, yu411010, fa) 18.28/6.70 new_esEs(:(yu310, yu311), :(yu411010, yu411011), ba) -> new_esEs(yu311, yu411011, ba) 18.28/6.70 new_esEs2(@3(yu310, yu311, yu312), @3(yu411010, yu411011, yu411012), gb, gc, app(ty_[], ge)) -> new_esEs(yu312, yu411012, ge) 18.28/6.70 new_esEs0(Just(yu310), Just(yu411010), app(ty_[], cd)) -> new_esEs(yu310, yu411010, cd) 18.28/6.70 new_esEs3(Left(yu310), Left(yu411010), app(ty_[], bcb), bca) -> new_esEs(yu310, yu411010, bcb) 18.28/6.70 new_esEs3(Left(yu310), Left(yu411010), app(app(ty_@2, bcc), bcd), bca) -> new_esEs1(yu310, yu411010, bcc, bcd) 18.28/6.70 new_esEs2(@3(yu310, yu311, yu312), @3(yu411010, yu411011, yu411012), gb, app(ty_[], hg), hf) -> new_esEs(yu311, yu411011, hg) 18.28/6.70 new_esEs2(@3(yu310, yu311, yu312), @3(yu411010, yu411011, yu411012), gb, gc, app(app(ty_Either, hc), hd)) -> new_esEs3(yu312, yu411012, hc, hd) 18.28/6.70 new_esEs(:(yu310, yu311), :(yu411010, yu411011), app(ty_[], bc)) -> new_esEs(yu310, yu411010, bc) 18.28/6.70 new_esEs(:(yu310, yu311), :(yu411010, yu411011), app(app(ty_Either, ca), cb)) -> new_esEs3(yu310, yu411010, ca, cb) 18.28/6.70 new_esEs2(@3(yu310, yu311, yu312), @3(yu411010, yu411011, yu411012), app(ty_[], bah), gc, hf) -> new_esEs(yu310, yu411010, bah) 18.28/6.70 new_esEs0(Just(yu310), Just(yu411010), app(app(ty_Either, dc), dd)) -> new_esEs3(yu310, yu411010, dc, dd) 18.28/6.70 new_esEs2(@3(yu310, yu311, yu312), @3(yu411010, yu411011, yu411012), gb, app(app(app(ty_@3, bab), bac), bad), hf) -> new_esEs2(yu311, yu411011, bab, bac, bad) 18.28/6.70 new_esEs3(Right(yu310), Right(yu411010), bdb, app(app(ty_Either, beb), bec)) -> new_esEs3(yu310, yu411010, beb, bec) 18.28/6.70 new_esEs0(Just(yu310), Just(yu411010), app(app(app(ty_@3, cg), da), db)) -> new_esEs2(yu310, yu411010, cg, da, db) 18.28/6.70 new_esEs0(Just(yu310), Just(yu411010), app(app(ty_@2, ce), cf)) -> new_esEs1(yu310, yu411010, ce, cf) 18.28/6.70 new_esEs2(@3(yu310, yu311, yu312), @3(yu411010, yu411011, yu411012), app(app(app(ty_@3, bbc), bbd), bbe), gc, hf) -> new_esEs2(yu310, yu411010, bbc, bbd, bbe) 18.28/6.70 new_esEs3(Right(yu310), Right(yu411010), bdb, app(ty_Maybe, bdc)) -> new_esEs0(yu310, yu411010, bdc) 18.28/6.70 new_esEs3(Right(yu310), Right(yu411010), bdb, app(app(ty_@2, bde), bdf)) -> new_esEs1(yu310, yu411010, bde, bdf) 18.28/6.70 new_esEs1(@2(yu310, yu311), @2(yu411010, yu411011), app(app(ty_Either, fh), ga), eh) -> new_esEs3(yu310, yu411010, fh, ga) 18.28/6.70 new_esEs2(@3(yu310, yu311, yu312), @3(yu411010, yu411011, yu411012), gb, gc, app(ty_Maybe, gd)) -> new_esEs0(yu312, yu411012, gd) 18.28/6.70 new_esEs3(Right(yu310), Right(yu411010), bdb, app(app(app(ty_@3, bdg), bdh), bea)) -> new_esEs2(yu310, yu411010, bdg, bdh, bea) 18.28/6.70 new_esEs1(@2(yu310, yu311), @2(yu411010, yu411011), app(app(app(ty_@3, fd), ff), fg), eh) -> new_esEs2(yu310, yu411010, fd, ff, fg) 18.28/6.70 new_esEs1(@2(yu310, yu311), @2(yu411010, yu411011), app(app(ty_@2, fb), fc), eh) -> new_esEs1(yu310, yu411010, fb, fc) 18.28/6.70 new_esEs1(@2(yu310, yu311), @2(yu411010, yu411011), de, app(ty_[], dg)) -> new_esEs(yu311, yu411011, dg) 18.28/6.70 new_esEs2(@3(yu310, yu311, yu312), @3(yu411010, yu411011, yu411012), gb, app(app(ty_Either, bae), baf), hf) -> new_esEs3(yu311, yu411011, bae, baf) 18.28/6.70 new_esEs2(@3(yu310, yu311, yu312), @3(yu411010, yu411011, yu411012), app(ty_Maybe, bag), gc, hf) -> new_esEs0(yu310, yu411010, bag) 18.28/6.70 new_esEs1(@2(yu310, yu311), @2(yu411010, yu411011), de, app(ty_Maybe, df)) -> new_esEs0(yu311, yu411011, df) 18.28/6.70 new_esEs3(Left(yu310), Left(yu411010), app(ty_Maybe, bbh), bca) -> new_esEs0(yu310, yu411010, bbh) 18.28/6.70 new_esEs2(@3(yu310, yu311, yu312), @3(yu411010, yu411011, yu411012), gb, app(ty_Maybe, he), hf) -> new_esEs0(yu311, yu411011, he) 18.28/6.70 new_esEs0(Just(yu310), Just(yu411010), app(ty_Maybe, cc)) -> new_esEs0(yu310, yu411010, cc) 18.28/6.70 new_esEs2(@3(yu310, yu311, yu312), @3(yu411010, yu411011, yu411012), gb, gc, app(app(app(ty_@3, gh), ha), hb)) -> new_esEs2(yu312, yu411012, gh, ha, hb) 18.28/6.70 new_esEs1(@2(yu310, yu311), @2(yu411010, yu411011), app(ty_Maybe, eg), eh) -> new_esEs0(yu310, yu411010, eg) 18.28/6.70 new_esEs1(@2(yu310, yu311), @2(yu411010, yu411011), de, app(app(ty_@2, dh), ea)) -> new_esEs1(yu311, yu411011, dh, ea) 18.28/6.70 new_esEs3(Left(yu310), Left(yu411010), app(app(app(ty_@3, bce), bcf), bcg), bca) -> new_esEs2(yu310, yu411010, bce, bcf, bcg) 18.28/6.70 new_esEs(:(yu310, yu311), :(yu411010, yu411011), app(ty_Maybe, bb)) -> new_esEs0(yu310, yu411010, bb) 18.28/6.70 new_esEs(:(yu310, yu311), :(yu411010, yu411011), app(app(app(ty_@3, bf), bg), bh)) -> new_esEs2(yu310, yu411010, bf, bg, bh) 18.28/6.70 new_esEs1(@2(yu310, yu311), @2(yu411010, yu411011), de, app(app(ty_Either, ee), ef)) -> new_esEs3(yu311, yu411011, ee, ef) 18.28/6.70 new_esEs2(@3(yu310, yu311, yu312), @3(yu411010, yu411011, yu411012), app(app(ty_@2, bba), bbb), gc, hf) -> new_esEs1(yu310, yu411010, bba, bbb) 18.28/6.70 new_esEs2(@3(yu310, yu311, yu312), @3(yu411010, yu411011, yu411012), app(app(ty_Either, bbf), bbg), gc, hf) -> new_esEs3(yu310, yu411010, bbf, bbg) 18.28/6.70 18.28/6.70 R is empty. 18.28/6.70 Q is empty. 18.28/6.70 We have to consider all minimal (P,Q,R)-chains. 18.28/6.70 ---------------------------------------- 18.28/6.70 18.28/6.70 (16) QDPSizeChangeProof (EQUIVALENT) 18.28/6.70 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. 18.28/6.70 18.28/6.70 From the DPs we obtained the following set of size-change graphs: 18.28/6.70 *new_esEs(:(yu310, yu311), :(yu411010, yu411011), app(app(ty_@2, bd), be)) -> new_esEs1(yu310, yu411010, bd, be) 18.28/6.70 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 18.28/6.70 18.28/6.70 18.28/6.70 *new_esEs0(Just(yu310), Just(yu411010), app(app(ty_@2, ce), cf)) -> new_esEs1(yu310, yu411010, ce, cf) 18.28/6.70 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 18.28/6.70 18.28/6.70 18.28/6.70 *new_esEs(:(yu310, yu311), :(yu411010, yu411011), app(app(app(ty_@3, bf), bg), bh)) -> new_esEs2(yu310, yu411010, bf, bg, bh) 18.28/6.70 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 18.28/6.70 18.28/6.70 18.28/6.70 *new_esEs0(Just(yu310), Just(yu411010), app(app(app(ty_@3, cg), da), db)) -> new_esEs2(yu310, yu411010, cg, da, db) 18.28/6.70 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 18.28/6.70 18.28/6.70 18.28/6.70 *new_esEs(:(yu310, yu311), :(yu411010, yu411011), app(app(ty_Either, ca), cb)) -> new_esEs3(yu310, yu411010, ca, cb) 18.28/6.70 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 18.28/6.70 18.28/6.70 18.28/6.70 *new_esEs0(Just(yu310), Just(yu411010), app(app(ty_Either, dc), dd)) -> new_esEs3(yu310, yu411010, dc, dd) 18.28/6.70 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 18.28/6.70 18.28/6.70 18.28/6.70 *new_esEs0(Just(yu310), Just(yu411010), app(ty_[], cd)) -> new_esEs(yu310, yu411010, cd) 18.28/6.70 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 18.28/6.70 18.28/6.70 18.28/6.70 *new_esEs(:(yu310, yu311), :(yu411010, yu411011), app(ty_Maybe, bb)) -> new_esEs0(yu310, yu411010, bb) 18.28/6.70 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 18.28/6.70 18.28/6.70 18.28/6.70 *new_esEs0(Just(yu310), Just(yu411010), app(ty_Maybe, cc)) -> new_esEs0(yu310, yu411010, cc) 18.28/6.70 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 18.28/6.70 18.28/6.70 18.28/6.70 *new_esEs2(@3(yu310, yu311, yu312), @3(yu411010, yu411011, yu411012), gb, app(app(ty_@2, hh), baa), hf) -> new_esEs1(yu311, yu411011, hh, baa) 18.28/6.70 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 18.28/6.70 18.28/6.70 18.28/6.70 *new_esEs2(@3(yu310, yu311, yu312), @3(yu411010, yu411011, yu411012), gb, gc, app(app(ty_@2, gf), gg)) -> new_esEs1(yu312, yu411012, gf, gg) 18.28/6.70 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 18.28/6.70 18.28/6.70 18.28/6.70 *new_esEs2(@3(yu310, yu311, yu312), @3(yu411010, yu411011, yu411012), app(app(ty_@2, bba), bbb), gc, hf) -> new_esEs1(yu310, yu411010, bba, bbb) 18.28/6.70 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 18.28/6.70 18.28/6.70 18.28/6.70 *new_esEs2(@3(yu310, yu311, yu312), @3(yu411010, yu411011, yu411012), gb, app(app(app(ty_@3, bab), bac), bad), hf) -> new_esEs2(yu311, yu411011, bab, bac, bad) 18.28/6.70 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 18.28/6.70 18.28/6.70 18.28/6.70 *new_esEs2(@3(yu310, yu311, yu312), @3(yu411010, yu411011, yu411012), app(app(app(ty_@3, bbc), bbd), bbe), gc, hf) -> new_esEs2(yu310, yu411010, bbc, bbd, bbe) 18.28/6.70 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 18.28/6.70 18.28/6.70 18.28/6.70 *new_esEs2(@3(yu310, yu311, yu312), @3(yu411010, yu411011, yu411012), gb, gc, app(app(app(ty_@3, gh), ha), hb)) -> new_esEs2(yu312, yu411012, gh, ha, hb) 18.28/6.70 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 18.28/6.70 18.28/6.70 18.28/6.70 *new_esEs2(@3(yu310, yu311, yu312), @3(yu411010, yu411011, yu411012), gb, gc, app(app(ty_Either, hc), hd)) -> new_esEs3(yu312, yu411012, hc, hd) 18.28/6.70 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 18.28/6.70 18.28/6.70 18.28/6.70 *new_esEs2(@3(yu310, yu311, yu312), @3(yu411010, yu411011, yu411012), gb, app(app(ty_Either, bae), baf), hf) -> new_esEs3(yu311, yu411011, bae, baf) 18.28/6.70 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 18.28/6.70 18.28/6.70 18.28/6.70 *new_esEs2(@3(yu310, yu311, yu312), @3(yu411010, yu411011, yu411012), app(app(ty_Either, bbf), bbg), gc, hf) -> new_esEs3(yu310, yu411010, bbf, bbg) 18.28/6.70 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 18.28/6.70 18.28/6.70 18.28/6.70 *new_esEs2(@3(yu310, yu311, yu312), @3(yu411010, yu411011, yu411012), gb, gc, app(ty_[], ge)) -> new_esEs(yu312, yu411012, ge) 18.28/6.70 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 18.28/6.70 18.28/6.70 18.28/6.70 *new_esEs2(@3(yu310, yu311, yu312), @3(yu411010, yu411011, yu411012), gb, app(ty_[], hg), hf) -> new_esEs(yu311, yu411011, hg) 18.28/6.70 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 18.28/6.70 18.28/6.70 18.28/6.70 *new_esEs2(@3(yu310, yu311, yu312), @3(yu411010, yu411011, yu411012), app(ty_[], bah), gc, hf) -> new_esEs(yu310, yu411010, bah) 18.28/6.70 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 18.28/6.70 18.28/6.70 18.28/6.70 *new_esEs2(@3(yu310, yu311, yu312), @3(yu411010, yu411011, yu411012), gb, gc, app(ty_Maybe, gd)) -> new_esEs0(yu312, yu411012, gd) 18.28/6.70 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 18.28/6.70 18.28/6.70 18.28/6.70 *new_esEs2(@3(yu310, yu311, yu312), @3(yu411010, yu411011, yu411012), app(ty_Maybe, bag), gc, hf) -> new_esEs0(yu310, yu411010, bag) 18.28/6.70 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 18.28/6.70 18.28/6.70 18.28/6.70 *new_esEs2(@3(yu310, yu311, yu312), @3(yu411010, yu411011, yu411012), gb, app(ty_Maybe, he), hf) -> new_esEs0(yu311, yu411011, he) 18.28/6.70 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 18.28/6.70 18.28/6.70 18.28/6.70 *new_esEs1(@2(yu310, yu311), @2(yu411010, yu411011), app(app(ty_@2, fb), fc), eh) -> new_esEs1(yu310, yu411010, fb, fc) 18.28/6.70 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 18.28/6.70 18.28/6.70 18.28/6.70 *new_esEs1(@2(yu310, yu311), @2(yu411010, yu411011), de, app(app(ty_@2, dh), ea)) -> new_esEs1(yu311, yu411011, dh, ea) 18.28/6.70 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 18.28/6.70 18.28/6.70 18.28/6.70 *new_esEs3(Left(yu310), Left(yu411010), app(app(ty_@2, bcc), bcd), bca) -> new_esEs1(yu310, yu411010, bcc, bcd) 18.28/6.70 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 18.28/6.70 18.28/6.70 18.28/6.70 *new_esEs3(Right(yu310), Right(yu411010), bdb, app(app(ty_@2, bde), bdf)) -> new_esEs1(yu310, yu411010, bde, bdf) 18.28/6.70 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 18.28/6.70 18.28/6.70 18.28/6.70 *new_esEs1(@2(yu310, yu311), @2(yu411010, yu411011), de, app(app(app(ty_@3, eb), ec), ed)) -> new_esEs2(yu311, yu411011, eb, ec, ed) 18.28/6.70 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 18.28/6.70 18.28/6.70 18.28/6.70 *new_esEs1(@2(yu310, yu311), @2(yu411010, yu411011), app(app(app(ty_@3, fd), ff), fg), eh) -> new_esEs2(yu310, yu411010, fd, ff, fg) 18.28/6.70 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 18.28/6.70 18.28/6.70 18.28/6.70 *new_esEs1(@2(yu310, yu311), @2(yu411010, yu411011), app(app(ty_Either, fh), ga), eh) -> new_esEs3(yu310, yu411010, fh, ga) 18.28/6.70 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 18.28/6.70 18.28/6.70 18.28/6.70 *new_esEs1(@2(yu310, yu311), @2(yu411010, yu411011), de, app(app(ty_Either, ee), ef)) -> new_esEs3(yu311, yu411011, ee, ef) 18.28/6.70 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 18.28/6.70 18.28/6.70 18.28/6.70 *new_esEs1(@2(yu310, yu311), @2(yu411010, yu411011), app(ty_[], fa), eh) -> new_esEs(yu310, yu411010, fa) 18.28/6.70 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 18.28/6.70 18.28/6.70 18.28/6.70 *new_esEs1(@2(yu310, yu311), @2(yu411010, yu411011), de, app(ty_[], dg)) -> new_esEs(yu311, yu411011, dg) 18.28/6.70 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 18.28/6.70 18.28/6.70 18.28/6.70 *new_esEs1(@2(yu310, yu311), @2(yu411010, yu411011), de, app(ty_Maybe, df)) -> new_esEs0(yu311, yu411011, df) 18.28/6.70 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 18.28/6.70 18.28/6.70 18.28/6.70 *new_esEs1(@2(yu310, yu311), @2(yu411010, yu411011), app(ty_Maybe, eg), eh) -> new_esEs0(yu310, yu411010, eg) 18.28/6.70 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 18.28/6.70 18.28/6.70 18.28/6.70 *new_esEs3(Right(yu310), Right(yu411010), bdb, app(app(app(ty_@3, bdg), bdh), bea)) -> new_esEs2(yu310, yu411010, bdg, bdh, bea) 18.28/6.70 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 18.28/6.70 18.28/6.70 18.28/6.70 *new_esEs3(Left(yu310), Left(yu411010), app(app(app(ty_@3, bce), bcf), bcg), bca) -> new_esEs2(yu310, yu411010, bce, bcf, bcg) 18.28/6.70 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 18.28/6.70 18.28/6.70 18.28/6.70 *new_esEs3(Left(yu310), Left(yu411010), app(app(ty_Either, bch), bda), bca) -> new_esEs3(yu310, yu411010, bch, bda) 18.28/6.70 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 18.28/6.70 18.28/6.70 18.28/6.70 *new_esEs3(Right(yu310), Right(yu411010), bdb, app(app(ty_Either, beb), bec)) -> new_esEs3(yu310, yu411010, beb, bec) 18.28/6.70 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 18.28/6.70 18.28/6.70 18.28/6.70 *new_esEs3(Right(yu310), Right(yu411010), bdb, app(ty_[], bdd)) -> new_esEs(yu310, yu411010, bdd) 18.28/6.70 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 18.28/6.70 18.28/6.70 18.28/6.70 *new_esEs3(Left(yu310), Left(yu411010), app(ty_[], bcb), bca) -> new_esEs(yu310, yu411010, bcb) 18.28/6.70 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 18.28/6.70 18.28/6.70 18.28/6.70 *new_esEs3(Right(yu310), Right(yu411010), bdb, app(ty_Maybe, bdc)) -> new_esEs0(yu310, yu411010, bdc) 18.28/6.70 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 18.28/6.70 18.28/6.70 18.28/6.70 *new_esEs3(Left(yu310), Left(yu411010), app(ty_Maybe, bbh), bca) -> new_esEs0(yu310, yu411010, bbh) 18.28/6.70 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 18.28/6.70 18.28/6.70 18.28/6.70 *new_esEs(:(yu310, yu311), :(yu411010, yu411011), ba) -> new_esEs(yu311, yu411011, ba) 18.28/6.70 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 18.28/6.70 18.28/6.70 18.28/6.70 *new_esEs(:(yu310, yu311), :(yu411010, yu411011), app(ty_[], bc)) -> new_esEs(yu310, yu411010, bc) 18.28/6.70 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 18.28/6.70 18.28/6.70 18.28/6.70 ---------------------------------------- 18.28/6.70 18.28/6.70 (17) 18.28/6.70 YES 18.28/6.70 18.28/6.70 ---------------------------------------- 18.28/6.70 18.28/6.70 (18) 18.28/6.70 Obligation: 18.28/6.70 Q DP problem: 18.28/6.70 The TRS P consists of the following rules: 18.28/6.70 18.28/6.70 new_psPs(yu85, False, yu87, yu88, :(yu890, yu891), yu90, ba, bb) -> new_foldr(@2(yu87, yu88), yu890, yu891, new_primPlusNat0(yu90, Zero), new_primPlusNat0(yu90, Zero), ba, bb) 18.28/6.70 new_foldr(@2(yu30, yu31), @2(yu41100, yu41101), yu4111, yu61, yu62, bc, bd) -> new_psPs(yu61, new_asAs(new_esEs5(yu30, yu41100, bc), new_esEs4(yu31, yu41101, bd)), yu30, yu31, yu4111, yu62, bc, bd) 18.28/6.70 new_psPs(yu85, True, yu87, yu88, yu89, yu90, ba, bb) -> new_psPs0(yu87, yu88, yu89, yu90, ba, bb) 18.28/6.70 new_psPs0(yu87, yu88, :(yu890, yu891), yu90, ba, bb) -> new_foldr(@2(yu87, yu88), yu890, yu891, new_primPlusNat0(yu90, Zero), new_primPlusNat0(yu90, Zero), ba, bb) 18.28/6.70 18.28/6.70 The TRS R consists of the following rules: 18.28/6.70 18.28/6.70 new_esEs21(yu310, yu411010, app(app(ty_Either, bab), bac)) -> new_esEs6(yu310, yu411010, bab, bac) 18.28/6.70 new_esEs25(yu310, yu411010, ty_Integer) -> new_esEs16(yu310, yu411010) 18.28/6.70 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 18.28/6.70 new_esEs6(Right(yu310), Right(yu411010), da, ty_Bool) -> new_esEs7(yu310, yu411010) 18.28/6.70 new_esEs6(Left(yu310), Left(yu411010), ty_Ordering, be) -> new_esEs13(yu310, yu411010) 18.28/6.70 new_esEs25(yu310, yu411010, ty_Ordering) -> new_esEs13(yu310, yu411010) 18.28/6.70 new_esEs6(Right(yu310), Right(yu411010), da, ty_Integer) -> new_esEs16(yu310, yu411010) 18.28/6.70 new_esEs6(Right(yu310), Right(yu411010), da, app(app(ty_Either, ea), eb)) -> new_esEs6(yu310, yu411010, ea, eb) 18.28/6.70 new_esEs25(yu310, yu411010, ty_Bool) -> new_esEs7(yu310, yu411010) 18.28/6.70 new_esEs9(Just(yu310), Just(yu411010), ty_Int) -> new_esEs18(yu310, yu411010) 18.28/6.70 new_esEs21(yu310, yu411010, app(ty_[], hd)) -> new_esEs10(yu310, yu411010, hd) 18.28/6.70 new_esEs20(yu311, yu411011, ty_@0) -> new_esEs19(yu311, yu411011) 18.28/6.70 new_esEs21(yu310, yu411010, app(app(app(ty_@3, hg), hh), baa)) -> new_esEs14(yu310, yu411010, hg, hh, baa) 18.28/6.70 new_esEs6(Left(yu310), Left(yu411010), app(ty_[], bg), be) -> new_esEs10(yu310, yu411010, bg) 18.28/6.70 new_esEs23(yu312, yu411012, ty_Ordering) -> new_esEs13(yu312, yu411012) 18.28/6.70 new_esEs22(yu310, yu411010, ty_Char) -> new_esEs8(yu310, yu411010) 18.28/6.70 new_esEs27(yu310, yu411010, ty_Integer) -> new_esEs16(yu310, yu411010) 18.28/6.70 new_esEs20(yu311, yu411011, ty_Double) -> new_esEs11(yu311, yu411011) 18.28/6.70 new_esEs20(yu311, yu411011, app(app(ty_@2, gc), gd)) -> new_esEs12(yu311, yu411011, gc, gd) 18.28/6.70 new_esEs6(Right(yu310), Right(yu411010), da, ty_Double) -> new_esEs11(yu310, yu411010) 18.28/6.70 new_esEs4(yu31, yu41101, app(app(app(ty_@3, bca), bcb), bcc)) -> new_esEs14(yu31, yu41101, bca, bcb, bcc) 18.28/6.70 new_esEs23(yu312, yu411012, ty_Integer) -> new_esEs16(yu312, yu411012) 18.28/6.70 new_esEs23(yu312, yu411012, ty_Float) -> new_esEs15(yu312, yu411012) 18.28/6.70 new_esEs6(Right(yu310), Right(yu411010), da, ty_Float) -> new_esEs15(yu310, yu411010) 18.28/6.70 new_esEs18(yu31, yu41101) -> new_primEqInt(yu31, yu41101) 18.28/6.70 new_asAs(True, yu103) -> yu103 18.28/6.70 new_esEs25(yu310, yu411010, ty_Double) -> new_esEs11(yu310, yu411010) 18.28/6.70 new_esEs17(:%(yu310, yu311), :%(yu411010, yu411011), bcd) -> new_asAs(new_esEs27(yu310, yu411010, bcd), new_esEs26(yu311, yu411011, bcd)) 18.28/6.70 new_esEs4(yu31, yu41101, app(ty_Ratio, bcd)) -> new_esEs17(yu31, yu41101, bcd) 18.28/6.70 new_primEqInt(Pos(Succ(yu3100)), Pos(Zero)) -> False 18.28/6.70 new_primEqInt(Pos(Zero), Pos(Succ(yu4110100))) -> False 18.28/6.70 new_esEs25(yu310, yu411010, app(ty_Ratio, bgb)) -> new_esEs17(yu310, yu411010, bgb) 18.28/6.70 new_esEs6(Left(yu310), Right(yu411010), da, be) -> False 18.28/6.70 new_esEs6(Right(yu310), Left(yu411010), da, be) -> False 18.28/6.70 new_esEs5(yu30, yu41100, ty_@0) -> new_esEs19(yu30, yu41100) 18.28/6.70 new_esEs6(Left(yu310), Left(yu411010), ty_Integer, be) -> new_esEs16(yu310, yu411010) 18.28/6.70 new_esEs20(yu311, yu411011, ty_Char) -> new_esEs8(yu311, yu411011) 18.28/6.70 new_esEs22(yu310, yu411010, ty_Double) -> new_esEs11(yu310, yu411010) 18.28/6.70 new_esEs6(Left(yu310), Left(yu411010), ty_Double, be) -> new_esEs11(yu310, yu411010) 18.28/6.70 new_esEs6(Left(yu310), Left(yu411010), ty_Float, be) -> new_esEs15(yu310, yu411010) 18.28/6.70 new_esEs9(Just(yu310), Just(yu411010), app(app(app(ty_@3, bgg), bgh), bha)) -> new_esEs14(yu310, yu411010, bgg, bgh, bha) 18.28/6.70 new_primEqNat0(Succ(yu3100), Succ(yu4110100)) -> new_primEqNat0(yu3100, yu4110100) 18.28/6.70 new_esEs21(yu310, yu411010, ty_Ordering) -> new_esEs13(yu310, yu411010) 18.28/6.70 new_esEs20(yu311, yu411011, app(ty_Ratio, hb)) -> new_esEs17(yu311, yu411011, hb) 18.28/6.70 new_esEs4(yu31, yu41101, ty_Float) -> new_esEs15(yu31, yu41101) 18.28/6.70 new_esEs10(:(yu310, yu311), [], bae) -> False 18.28/6.70 new_esEs10([], :(yu411010, yu411011), bae) -> False 18.28/6.70 new_esEs23(yu312, yu411012, app(app(app(ty_@3, bda), bdb), bdc)) -> new_esEs14(yu312, yu411012, bda, bdb, bdc) 18.28/6.70 new_esEs25(yu310, yu411010, ty_Float) -> new_esEs15(yu310, yu411010) 18.28/6.70 new_esEs4(yu31, yu41101, ty_Integer) -> new_esEs16(yu31, yu41101) 18.28/6.70 new_esEs6(Right(yu310), Right(yu411010), da, app(ty_[], dc)) -> new_esEs10(yu310, yu411010, dc) 18.28/6.70 new_esEs23(yu312, yu411012, ty_Double) -> new_esEs11(yu312, yu411012) 18.28/6.70 new_esEs22(yu310, yu411010, app(ty_Ratio, bbg)) -> new_esEs17(yu310, yu411010, bbg) 18.28/6.70 new_primMulNat0(Zero, Zero) -> Zero 18.28/6.70 new_esEs6(Right(yu310), Right(yu411010), da, ty_Char) -> new_esEs8(yu310, yu411010) 18.28/6.70 new_esEs24(yu311, yu411011, app(app(ty_@2, bea), beb)) -> new_esEs12(yu311, yu411011, bea, beb) 18.28/6.70 new_esEs4(yu31, yu41101, ty_Int) -> new_esEs18(yu31, yu41101) 18.28/6.70 new_esEs24(yu311, yu411011, ty_Int) -> new_esEs18(yu311, yu411011) 18.28/6.70 new_esEs22(yu310, yu411010, app(ty_Maybe, baf)) -> new_esEs9(yu310, yu411010, baf) 18.28/6.70 new_esEs4(yu31, yu41101, ty_Double) -> new_esEs11(yu31, yu41101) 18.28/6.70 new_esEs21(yu310, yu411010, app(ty_Ratio, bad)) -> new_esEs17(yu310, yu411010, bad) 18.28/6.70 new_esEs21(yu310, yu411010, ty_Bool) -> new_esEs7(yu310, yu411010) 18.28/6.70 new_esEs6(Right(yu310), Right(yu411010), da, ty_@0) -> new_esEs19(yu310, yu411010) 18.28/6.70 new_esEs20(yu311, yu411011, ty_Integer) -> new_esEs16(yu311, yu411011) 18.28/6.70 new_esEs10(:(yu310, yu311), :(yu411010, yu411011), bae) -> new_asAs(new_esEs22(yu310, yu411010, bae), new_esEs10(yu311, yu411011, bae)) 18.28/6.70 new_primEqNat0(Succ(yu3100), Zero) -> False 18.28/6.70 new_primEqNat0(Zero, Succ(yu4110100)) -> False 18.28/6.70 new_esEs24(yu311, yu411011, ty_Double) -> new_esEs11(yu311, yu411011) 18.28/6.70 new_esEs25(yu310, yu411010, ty_@0) -> new_esEs19(yu310, yu411010) 18.28/6.70 new_esEs23(yu312, yu411012, ty_Int) -> new_esEs18(yu312, yu411012) 18.28/6.70 new_esEs9(Just(yu310), Just(yu411010), ty_Integer) -> new_esEs16(yu310, yu411010) 18.28/6.70 new_esEs23(yu312, yu411012, app(ty_Maybe, bce)) -> new_esEs9(yu312, yu411012, bce) 18.28/6.70 new_esEs25(yu310, yu411010, app(ty_[], bfb)) -> new_esEs10(yu310, yu411010, bfb) 18.28/6.70 new_esEs25(yu310, yu411010, app(app(app(ty_@3, bfe), bff), bfg)) -> new_esEs14(yu310, yu411010, bfe, bff, bfg) 18.28/6.70 new_esEs25(yu310, yu411010, app(app(ty_Either, bfh), bga)) -> new_esEs6(yu310, yu411010, bfh, bga) 18.28/6.70 new_esEs7(False, False) -> True 18.28/6.70 new_esEs13(LT, LT) -> True 18.28/6.70 new_esEs9(Just(yu310), Just(yu411010), ty_Bool) -> new_esEs7(yu310, yu411010) 18.28/6.70 new_esEs22(yu310, yu411010, ty_Ordering) -> new_esEs13(yu310, yu411010) 18.28/6.70 new_esEs9(Just(yu310), Just(yu411010), app(app(ty_Either, bhb), bhc)) -> new_esEs6(yu310, yu411010, bhb, bhc) 18.28/6.70 new_primEqInt(Neg(Succ(yu3100)), Neg(Zero)) -> False 18.28/6.70 new_primEqInt(Neg(Zero), Neg(Succ(yu4110100))) -> False 18.28/6.70 new_esEs6(Left(yu310), Left(yu411010), ty_@0, be) -> new_esEs19(yu310, yu411010) 18.28/6.70 new_esEs24(yu311, yu411011, app(app(app(ty_@3, bec), bed), bee)) -> new_esEs14(yu311, yu411011, bec, bed, bee) 18.28/6.70 new_esEs24(yu311, yu411011, ty_@0) -> new_esEs19(yu311, yu411011) 18.28/6.70 new_primEqInt(Pos(Succ(yu3100)), Pos(Succ(yu4110100))) -> new_primEqNat0(yu3100, yu4110100) 18.28/6.70 new_esEs5(yu30, yu41100, ty_Float) -> new_esEs15(yu30, yu41100) 18.28/6.70 new_esEs6(Left(yu310), Left(yu411010), ty_Bool, be) -> new_esEs7(yu310, yu411010) 18.28/6.70 new_esEs6(Left(yu310), Left(yu411010), app(app(ty_@2, bh), ca), be) -> new_esEs12(yu310, yu411010, bh, ca) 18.28/6.70 new_esEs4(yu31, yu41101, app(ty_Maybe, bbh)) -> new_esEs9(yu31, yu41101, bbh) 18.28/6.70 new_esEs20(yu311, yu411011, app(app(ty_Either, gh), ha)) -> new_esEs6(yu311, yu411011, gh, ha) 18.28/6.70 new_esEs9(Just(yu310), Just(yu411010), app(ty_[], bgd)) -> new_esEs10(yu310, yu411010, bgd) 18.28/6.70 new_sr(Pos(yu3110), Neg(yu4110100)) -> Neg(new_primMulNat0(yu3110, yu4110100)) 18.28/6.70 new_sr(Neg(yu3110), Pos(yu4110100)) -> Neg(new_primMulNat0(yu3110, yu4110100)) 18.28/6.70 new_primPlusNat1(Succ(yu10400), Succ(yu411010000)) -> Succ(Succ(new_primPlusNat1(yu10400, yu411010000))) 18.28/6.70 new_esEs4(yu31, yu41101, ty_Ordering) -> new_esEs13(yu31, yu41101) 18.28/6.70 new_esEs5(yu30, yu41100, ty_Double) -> new_esEs11(yu30, yu41100) 18.28/6.70 new_esEs5(yu30, yu41100, ty_Int) -> new_esEs18(yu30, yu41100) 18.28/6.70 new_primEqInt(Pos(Succ(yu3100)), Neg(yu411010)) -> False 18.28/6.70 new_primEqInt(Neg(Succ(yu3100)), Pos(yu411010)) -> False 18.28/6.70 new_esEs25(yu310, yu411010, app(app(ty_@2, bfc), bfd)) -> new_esEs12(yu310, yu411010, bfc, bfd) 18.28/6.70 new_esEs9(Nothing, Just(yu411010), bbh) -> False 18.28/6.70 new_esEs9(Just(yu310), Nothing, bbh) -> False 18.28/6.70 new_esEs20(yu311, yu411011, ty_Bool) -> new_esEs7(yu311, yu411011) 18.28/6.70 new_esEs13(LT, GT) -> False 18.28/6.70 new_esEs13(GT, LT) -> False 18.28/6.70 new_esEs6(Left(yu310), Left(yu411010), app(app(app(ty_@3, cb), cc), cd), be) -> new_esEs14(yu310, yu411010, cb, cc, cd) 18.28/6.70 new_esEs11(Double(yu310, yu311), Double(yu411010, yu411011)) -> new_esEs18(new_sr(yu310, yu411011), new_sr(yu311, yu411010)) 18.28/6.70 new_esEs9(Nothing, Nothing, bbh) -> True 18.28/6.70 new_esEs21(yu310, yu411010, ty_Integer) -> new_esEs16(yu310, yu411010) 18.28/6.70 new_esEs5(yu30, yu41100, ty_Ordering) -> new_esEs13(yu30, yu41100) 18.28/6.70 new_esEs22(yu310, yu411010, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs14(yu310, yu411010, bbb, bbc, bbd) 18.28/6.70 new_esEs21(yu310, yu411010, ty_Char) -> new_esEs8(yu310, yu411010) 18.28/6.70 new_esEs21(yu310, yu411010, ty_@0) -> new_esEs19(yu310, yu411010) 18.28/6.70 new_esEs7(False, True) -> False 18.28/6.70 new_esEs7(True, False) -> False 18.28/6.70 new_esEs20(yu311, yu411011, app(ty_[], gb)) -> new_esEs10(yu311, yu411011, gb) 18.28/6.70 new_esEs9(Just(yu310), Just(yu411010), app(ty_Maybe, bgc)) -> new_esEs9(yu310, yu411010, bgc) 18.28/6.70 new_esEs6(Left(yu310), Left(yu411010), app(ty_Maybe, bf), be) -> new_esEs9(yu310, yu411010, bf) 18.28/6.70 new_esEs5(yu30, yu41100, ty_Integer) -> new_esEs16(yu30, yu41100) 18.28/6.70 new_esEs22(yu310, yu411010, app(app(ty_Either, bbe), bbf)) -> new_esEs6(yu310, yu411010, bbe, bbf) 18.28/6.70 new_esEs24(yu311, yu411011, ty_Float) -> new_esEs15(yu311, yu411011) 18.28/6.70 new_sr(Neg(yu3110), Neg(yu4110100)) -> Pos(new_primMulNat0(yu3110, yu4110100)) 18.28/6.70 new_esEs9(Just(yu310), Just(yu411010), ty_Double) -> new_esEs11(yu310, yu411010) 18.28/6.70 new_esEs9(Just(yu310), Just(yu411010), app(app(ty_@2, bge), bgf)) -> new_esEs12(yu310, yu411010, bge, bgf) 18.28/6.70 new_esEs22(yu310, yu411010, ty_Float) -> new_esEs15(yu310, yu411010) 18.28/6.70 new_esEs6(Right(yu310), Right(yu411010), da, app(app(ty_@2, dd), de)) -> new_esEs12(yu310, yu411010, dd, de) 18.28/6.70 new_esEs20(yu311, yu411011, ty_Int) -> new_esEs18(yu311, yu411011) 18.28/6.70 new_esEs27(yu310, yu411010, ty_Int) -> new_esEs18(yu310, yu411010) 18.28/6.70 new_esEs6(Left(yu310), Left(yu411010), app(ty_Ratio, cg), be) -> new_esEs17(yu310, yu411010, cg) 18.28/6.70 new_esEs26(yu311, yu411011, ty_Integer) -> new_esEs16(yu311, yu411011) 18.28/6.70 new_esEs13(GT, GT) -> True 18.28/6.70 new_esEs9(Just(yu310), Just(yu411010), app(ty_Ratio, bhd)) -> new_esEs17(yu310, yu411010, bhd) 18.28/6.70 new_primEqInt(Pos(Zero), Neg(Succ(yu4110100))) -> False 18.28/6.70 new_primEqInt(Neg(Zero), Pos(Succ(yu4110100))) -> False 18.28/6.70 new_esEs5(yu30, yu41100, ty_Bool) -> new_esEs7(yu30, yu41100) 18.28/6.70 new_esEs5(yu30, yu41100, app(ty_Ratio, ff)) -> new_esEs17(yu30, yu41100, ff) 18.28/6.70 new_esEs16(Integer(yu310), Integer(yu411010)) -> new_primEqInt(yu310, yu411010) 18.28/6.70 new_esEs6(Right(yu310), Right(yu411010), da, app(ty_Maybe, db)) -> new_esEs9(yu310, yu411010, db) 18.28/6.70 new_esEs4(yu31, yu41101, ty_Char) -> new_esEs8(yu31, yu41101) 18.28/6.70 new_esEs15(Float(yu310, yu311), Float(yu411010, yu411011)) -> new_esEs18(new_sr(yu310, yu411011), new_sr(yu311, yu411010)) 18.28/6.70 new_esEs20(yu311, yu411011, app(app(app(ty_@3, ge), gf), gg)) -> new_esEs14(yu311, yu411011, ge, gf, gg) 18.28/6.70 new_esEs9(Just(yu310), Just(yu411010), ty_Char) -> new_esEs8(yu310, yu411010) 18.28/6.70 new_esEs22(yu310, yu411010, app(ty_[], bag)) -> new_esEs10(yu310, yu411010, bag) 18.28/6.70 new_primEqInt(Neg(Succ(yu3100)), Neg(Succ(yu4110100))) -> new_primEqNat0(yu3100, yu4110100) 18.28/6.70 new_esEs19(@0, @0) -> True 18.28/6.70 new_esEs23(yu312, yu411012, ty_Char) -> new_esEs8(yu312, yu411012) 18.28/6.70 new_primPlusNat0(Succ(yu1040), yu41101000) -> Succ(Succ(new_primPlusNat1(yu1040, yu41101000))) 18.28/6.70 new_esEs24(yu311, yu411011, app(ty_Maybe, bdg)) -> new_esEs9(yu311, yu411011, bdg) 18.28/6.70 new_esEs5(yu30, yu41100, app(ty_Maybe, ed)) -> new_esEs9(yu30, yu41100, ed) 18.28/6.70 new_esEs6(Left(yu310), Left(yu411010), ty_Char, be) -> new_esEs8(yu310, yu411010) 18.28/6.70 new_esEs5(yu30, yu41100, app(app(app(ty_@3, eh), fa), fb)) -> new_esEs14(yu30, yu41100, eh, fa, fb) 18.28/6.70 new_esEs13(EQ, GT) -> False 18.28/6.70 new_esEs13(GT, EQ) -> False 18.28/6.70 new_esEs22(yu310, yu411010, ty_Integer) -> new_esEs16(yu310, yu411010) 18.28/6.70 new_esEs20(yu311, yu411011, ty_Float) -> new_esEs15(yu311, yu411011) 18.28/6.70 new_esEs24(yu311, yu411011, app(app(ty_Either, bef), beg)) -> new_esEs6(yu311, yu411011, bef, beg) 18.28/6.70 new_esEs6(Left(yu310), Left(yu411010), app(app(ty_Either, ce), cf), be) -> new_esEs6(yu310, yu411010, ce, cf) 18.28/6.70 new_esEs6(Right(yu310), Right(yu411010), da, app(app(app(ty_@3, df), dg), dh)) -> new_esEs14(yu310, yu411010, df, dg, dh) 18.28/6.70 new_esEs21(yu310, yu411010, app(app(ty_@2, he), hf)) -> new_esEs12(yu310, yu411010, he, hf) 18.28/6.70 new_esEs25(yu310, yu411010, ty_Int) -> new_esEs18(yu310, yu411010) 18.28/6.70 new_primPlusNat1(Zero, Zero) -> Zero 18.28/6.70 new_esEs22(yu310, yu411010, ty_Int) -> new_esEs18(yu310, yu411010) 18.28/6.70 new_primMulNat0(Succ(yu31100), Zero) -> Zero 18.28/6.70 new_primMulNat0(Zero, Succ(yu41101000)) -> Zero 18.28/6.70 new_esEs10([], [], bae) -> True 18.28/6.70 new_sr(Pos(yu3110), Pos(yu4110100)) -> Pos(new_primMulNat0(yu3110, yu4110100)) 18.28/6.70 new_primPlusNat0(Zero, yu41101000) -> Succ(yu41101000) 18.28/6.70 new_esEs24(yu311, yu411011, ty_Ordering) -> new_esEs13(yu311, yu411011) 18.28/6.70 new_esEs23(yu312, yu411012, ty_@0) -> new_esEs19(yu312, yu411012) 18.28/6.70 new_esEs21(yu310, yu411010, app(ty_Maybe, hc)) -> new_esEs9(yu310, yu411010, hc) 18.28/6.70 new_esEs6(Left(yu310), Left(yu411010), ty_Int, be) -> new_esEs18(yu310, yu411010) 18.28/6.70 new_esEs12(@2(yu310, yu311), @2(yu411010, yu411011), fg, fh) -> new_asAs(new_esEs21(yu310, yu411010, fg), new_esEs20(yu311, yu411011, fh)) 18.28/6.70 new_esEs24(yu311, yu411011, ty_Bool) -> new_esEs7(yu311, yu411011) 18.28/6.70 new_esEs9(Just(yu310), Just(yu411010), ty_@0) -> new_esEs19(yu310, yu411010) 18.28/6.70 new_esEs9(Just(yu310), Just(yu411010), ty_Float) -> new_esEs15(yu310, yu411010) 18.28/6.70 new_esEs5(yu30, yu41100, app(ty_[], ee)) -> new_esEs10(yu30, yu41100, ee) 18.28/6.70 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 18.28/6.70 new_esEs5(yu30, yu41100, app(app(ty_@2, ef), eg)) -> new_esEs12(yu30, yu41100, ef, eg) 18.28/6.70 new_esEs20(yu311, yu411011, ty_Ordering) -> new_esEs13(yu311, yu411011) 18.28/6.70 new_primMulNat0(Succ(yu31100), Succ(yu41101000)) -> new_primPlusNat0(new_primMulNat0(yu31100, Succ(yu41101000)), yu41101000) 18.28/6.70 new_esEs24(yu311, yu411011, app(ty_[], bdh)) -> new_esEs10(yu311, yu411011, bdh) 18.28/6.70 new_esEs4(yu31, yu41101, app(app(ty_@2, fg), fh)) -> new_esEs12(yu31, yu41101, fg, fh) 18.28/6.70 new_esEs25(yu310, yu411010, ty_Char) -> new_esEs8(yu310, yu411010) 18.28/6.70 new_esEs5(yu30, yu41100, app(app(ty_Either, fc), fd)) -> new_esEs6(yu30, yu41100, fc, fd) 18.28/6.70 new_esEs5(yu30, yu41100, ty_Char) -> new_esEs8(yu30, yu41100) 18.28/6.70 new_esEs23(yu312, yu411012, app(app(ty_@2, bcg), bch)) -> new_esEs12(yu312, yu411012, bcg, bch) 18.28/6.70 new_esEs9(Just(yu310), Just(yu411010), ty_Ordering) -> new_esEs13(yu310, yu411010) 18.28/6.70 new_esEs22(yu310, yu411010, ty_Bool) -> new_esEs7(yu310, yu411010) 18.28/6.70 new_primPlusNat1(Succ(yu10400), Zero) -> Succ(yu10400) 18.28/6.70 new_primPlusNat1(Zero, Succ(yu411010000)) -> Succ(yu411010000) 18.28/6.70 new_esEs23(yu312, yu411012, app(ty_Ratio, bdf)) -> new_esEs17(yu312, yu411012, bdf) 18.28/6.70 new_esEs4(yu31, yu41101, app(ty_[], bae)) -> new_esEs10(yu31, yu41101, bae) 18.28/6.70 new_esEs6(Right(yu310), Right(yu411010), da, ty_Int) -> new_esEs18(yu310, yu411010) 18.28/6.70 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 18.28/6.70 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 18.28/6.70 new_esEs4(yu31, yu41101, app(app(ty_Either, da), be)) -> new_esEs6(yu31, yu41101, da, be) 18.28/6.70 new_esEs23(yu312, yu411012, ty_Bool) -> new_esEs7(yu312, yu411012) 18.28/6.70 new_esEs24(yu311, yu411011, app(ty_Ratio, beh)) -> new_esEs17(yu311, yu411011, beh) 18.28/6.70 new_esEs25(yu310, yu411010, app(ty_Maybe, bfa)) -> new_esEs9(yu310, yu411010, bfa) 18.28/6.70 new_esEs26(yu311, yu411011, ty_Int) -> new_esEs18(yu311, yu411011) 18.28/6.70 new_esEs22(yu310, yu411010, app(app(ty_@2, bah), bba)) -> new_esEs12(yu310, yu411010, bah, bba) 18.28/6.70 new_primEqNat0(Zero, Zero) -> True 18.28/6.70 new_esEs21(yu310, yu411010, ty_Double) -> new_esEs11(yu310, yu411010) 18.28/6.70 new_esEs21(yu310, yu411010, ty_Int) -> new_esEs18(yu310, yu411010) 18.28/6.70 new_esEs20(yu311, yu411011, app(ty_Maybe, ga)) -> new_esEs9(yu311, yu411011, ga) 18.28/6.70 new_esEs4(yu31, yu41101, ty_@0) -> new_esEs19(yu31, yu41101) 18.28/6.70 new_esEs4(yu31, yu41101, ty_Bool) -> new_esEs7(yu31, yu41101) 18.28/6.70 new_esEs13(EQ, EQ) -> True 18.28/6.70 new_asAs(False, yu103) -> False 18.28/6.70 new_esEs6(Right(yu310), Right(yu411010), da, app(ty_Ratio, ec)) -> new_esEs17(yu310, yu411010, ec) 18.28/6.70 new_esEs7(True, True) -> True 18.28/6.70 new_esEs13(LT, EQ) -> False 18.28/6.70 new_esEs13(EQ, LT) -> False 18.28/6.70 new_esEs8(Char(yu310), Char(yu411010)) -> new_primEqNat0(yu310, yu411010) 18.28/6.70 new_esEs24(yu311, yu411011, ty_Integer) -> new_esEs16(yu311, yu411011) 18.28/6.70 new_esEs6(Right(yu310), Right(yu411010), da, ty_Ordering) -> new_esEs13(yu310, yu411010) 18.28/6.70 new_esEs22(yu310, yu411010, ty_@0) -> new_esEs19(yu310, yu411010) 18.28/6.70 new_esEs14(@3(yu310, yu311, yu312), @3(yu411010, yu411011, yu411012), bca, bcb, bcc) -> new_asAs(new_esEs25(yu310, yu411010, bca), new_asAs(new_esEs24(yu311, yu411011, bcb), new_esEs23(yu312, yu411012, bcc))) 18.28/6.70 new_esEs23(yu312, yu411012, app(ty_[], bcf)) -> new_esEs10(yu312, yu411012, bcf) 18.28/6.70 new_esEs23(yu312, yu411012, app(app(ty_Either, bdd), bde)) -> new_esEs6(yu312, yu411012, bdd, bde) 18.28/6.70 new_esEs24(yu311, yu411011, ty_Char) -> new_esEs8(yu311, yu411011) 18.28/6.70 new_esEs21(yu310, yu411010, ty_Float) -> new_esEs15(yu310, yu411010) 18.28/6.70 18.28/6.70 The set Q consists of the following terms: 18.28/6.70 18.28/6.70 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 18.28/6.70 new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 18.28/6.70 new_esEs20(x0, x1, ty_Double) 18.28/6.70 new_esEs4(x0, x1, app(ty_Ratio, x2)) 18.28/6.70 new_esEs13(EQ, EQ) 18.28/6.70 new_esEs25(x0, x1, app(ty_[], x2)) 18.28/6.70 new_esEs9(Just(x0), Just(x1), ty_Bool) 18.28/6.70 new_esEs27(x0, x1, ty_Integer) 18.28/6.70 new_esEs9(Just(x0), Just(x1), ty_@0) 18.28/6.70 new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 18.28/6.70 new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) 18.28/6.70 new_esEs20(x0, x1, app(ty_Ratio, x2)) 18.28/6.70 new_esEs21(x0, x1, app(ty_Maybe, x2)) 18.28/6.70 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 18.28/6.70 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 18.28/6.70 new_primMulNat0(Zero, Zero) 18.28/6.70 new_esEs23(x0, x1, ty_Int) 18.28/6.70 new_primPlusNat0(Succ(x0), x1) 18.28/6.70 new_primPlusNat1(Zero, Zero) 18.28/6.70 new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 18.28/6.70 new_primEqNat0(Succ(x0), Zero) 18.28/6.70 new_esEs4(x0, x1, app(ty_[], x2)) 18.28/6.70 new_asAs(False, x0) 18.28/6.70 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 18.28/6.70 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 18.28/6.70 new_esEs23(x0, x1, ty_Ordering) 18.28/6.70 new_esEs6(Right(x0), Right(x1), x2, ty_Int) 18.28/6.70 new_esEs21(x0, x1, app(ty_[], x2)) 18.28/6.70 new_esEs25(x0, x1, ty_Integer) 18.28/6.70 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 18.28/6.70 new_esEs21(x0, x1, ty_Integer) 18.28/6.70 new_primEqInt(Pos(Zero), Pos(Zero)) 18.28/6.70 new_esEs24(x0, x1, ty_Double) 18.28/6.70 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 18.28/6.70 new_esEs6(Right(x0), Right(x1), x2, ty_Double) 18.28/6.70 new_esEs24(x0, x1, ty_Ordering) 18.28/6.70 new_esEs5(x0, x1, ty_Integer) 18.28/6.70 new_esEs24(x0, x1, app(ty_Maybe, x2)) 18.28/6.70 new_esEs23(x0, x1, ty_Float) 18.28/6.70 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 18.28/6.70 new_esEs6(Right(x0), Right(x1), x2, ty_Char) 18.28/6.70 new_primEqNat0(Zero, Succ(x0)) 18.28/6.70 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 18.28/6.70 new_esEs18(x0, x1) 18.28/6.70 new_esEs11(Double(x0, x1), Double(x2, x3)) 18.28/6.70 new_esEs13(LT, LT) 18.28/6.70 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 18.28/6.70 new_primEqInt(Neg(Zero), Neg(Zero)) 18.28/6.70 new_esEs21(x0, x1, ty_Float) 18.28/6.70 new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 18.28/6.70 new_esEs5(x0, x1, ty_@0) 18.28/6.70 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 18.28/6.70 new_esEs15(Float(x0, x1), Float(x2, x3)) 18.28/6.70 new_esEs6(Left(x0), Left(x1), ty_Double, x2) 18.28/6.70 new_esEs7(False, False) 18.28/6.70 new_esEs20(x0, x1, ty_Char) 18.28/6.70 new_esEs21(x0, x1, ty_Bool) 18.28/6.70 new_esEs4(x0, x1, ty_Float) 18.28/6.70 new_primMulNat0(Succ(x0), Succ(x1)) 18.28/6.70 new_esEs9(Just(x0), Just(x1), app(ty_Maybe, x2)) 18.28/6.70 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 18.28/6.70 new_esEs14(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 18.28/6.70 new_esEs7(True, True) 18.28/6.70 new_esEs6(Left(x0), Left(x1), ty_Integer, x2) 18.28/6.70 new_esEs9(Just(x0), Just(x1), ty_Char) 18.28/6.70 new_esEs4(x0, x1, ty_Bool) 18.28/6.70 new_esEs6(Left(x0), Right(x1), x2, x3) 18.28/6.70 new_esEs6(Right(x0), Left(x1), x2, x3) 18.28/6.70 new_esEs17(:%(x0, x1), :%(x2, x3), x4) 18.28/6.70 new_esEs21(x0, x1, ty_@0) 18.28/6.70 new_esEs20(x0, x1, ty_Int) 18.28/6.70 new_esEs24(x0, x1, ty_Integer) 18.28/6.70 new_esEs4(x0, x1, ty_Double) 18.28/6.70 new_primPlusNat1(Zero, Succ(x0)) 18.28/6.70 new_sr(Neg(x0), Neg(x1)) 18.28/6.70 new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) 18.28/6.70 new_esEs21(x0, x1, ty_Int) 18.28/6.70 new_esEs24(x0, x1, ty_Bool) 18.28/6.70 new_esEs9(Just(x0), Just(x1), ty_Integer) 18.28/6.70 new_esEs5(x0, x1, ty_Char) 18.28/6.70 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 18.28/6.70 new_esEs4(x0, x1, ty_Int) 18.28/6.70 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 18.28/6.70 new_primEqInt(Pos(Zero), Neg(Zero)) 18.28/6.70 new_primEqInt(Neg(Zero), Pos(Zero)) 18.28/6.70 new_esEs25(x0, x1, app(ty_Maybe, x2)) 18.28/6.70 new_esEs9(Nothing, Just(x0), x1) 18.28/6.70 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 18.28/6.70 new_esEs25(x0, x1, ty_Ordering) 18.28/6.70 new_esEs22(x0, x1, ty_Integer) 18.28/6.70 new_esEs23(x0, x1, app(ty_Ratio, x2)) 18.28/6.70 new_esEs10([], :(x0, x1), x2) 18.28/6.70 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 18.28/6.70 new_esEs20(x0, x1, app(ty_Maybe, x2)) 18.28/6.70 new_esEs21(x0, x1, ty_Char) 18.28/6.70 new_esEs4(x0, x1, ty_@0) 18.28/6.70 new_esEs21(x0, x1, ty_Double) 18.28/6.70 new_esEs10(:(x0, x1), :(x2, x3), x4) 18.28/6.70 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 18.28/6.70 new_esEs5(x0, x1, ty_Bool) 18.28/6.70 new_esEs22(x0, x1, ty_Ordering) 18.28/6.70 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 18.28/6.70 new_esEs20(x0, x1, ty_Float) 18.28/6.70 new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 18.28/6.70 new_esEs23(x0, x1, ty_Char) 18.28/6.70 new_esEs26(x0, x1, ty_Int) 18.28/6.70 new_esEs6(Right(x0), Right(x1), x2, ty_Integer) 18.28/6.70 new_esEs23(x0, x1, ty_Double) 18.28/6.70 new_esEs9(Just(x0), Just(x1), ty_Float) 18.28/6.70 new_esEs27(x0, x1, ty_Int) 18.28/6.70 new_esEs25(x0, x1, ty_Char) 18.28/6.70 new_primPlusNat1(Succ(x0), Zero) 18.28/6.70 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 18.28/6.70 new_asAs(True, x0) 18.28/6.70 new_esEs9(Just(x0), Just(x1), ty_Ordering) 18.28/6.70 new_esEs9(Just(x0), Just(x1), ty_Double) 18.28/6.70 new_esEs20(x0, x1, ty_@0) 18.28/6.70 new_esEs9(Nothing, Nothing, x0) 18.28/6.70 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 18.28/6.70 new_esEs23(x0, x1, ty_Bool) 18.28/6.70 new_esEs23(x0, x1, app(ty_Maybe, x2)) 18.28/6.70 new_esEs24(x0, x1, ty_@0) 18.28/6.70 new_esEs23(x0, x1, app(ty_[], x2)) 18.28/6.70 new_esEs4(x0, x1, ty_Char) 18.28/6.70 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 18.28/6.70 new_esEs6(Left(x0), Left(x1), ty_@0, x2) 18.28/6.70 new_esEs22(x0, x1, ty_Char) 18.28/6.70 new_esEs22(x0, x1, app(ty_Ratio, x2)) 18.28/6.70 new_esEs5(x0, x1, ty_Double) 18.28/6.70 new_esEs13(LT, GT) 18.28/6.70 new_esEs13(GT, LT) 18.28/6.70 new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 18.28/6.70 new_esEs23(x0, x1, ty_@0) 18.28/6.70 new_esEs9(Just(x0), Just(x1), app(ty_[], x2)) 18.28/6.70 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 18.28/6.70 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 18.28/6.70 new_primPlusNat0(Zero, x0) 18.28/6.70 new_sr(Pos(x0), Pos(x1)) 18.28/6.70 new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 18.28/6.70 new_esEs16(Integer(x0), Integer(x1)) 18.28/6.70 new_esEs23(x0, x1, ty_Integer) 18.28/6.70 new_esEs6(Left(x0), Left(x1), ty_Bool, x2) 18.28/6.70 new_esEs4(x0, x1, app(ty_Maybe, x2)) 18.28/6.70 new_primEqNat0(Succ(x0), Succ(x1)) 18.28/6.70 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 18.28/6.70 new_esEs5(x0, x1, ty_Int) 18.28/6.70 new_esEs24(x0, x1, app(ty_Ratio, x2)) 18.28/6.70 new_esEs5(x0, x1, ty_Float) 18.28/6.70 new_esEs6(Right(x0), Right(x1), x2, ty_Bool) 18.28/6.70 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 18.28/6.70 new_esEs5(x0, x1, ty_Ordering) 18.28/6.70 new_esEs24(x0, x1, ty_Char) 18.28/6.70 new_esEs6(Left(x0), Left(x1), ty_Char, x2) 18.28/6.70 new_esEs20(x0, x1, app(ty_[], x2)) 18.28/6.70 new_esEs20(x0, x1, ty_Bool) 18.28/6.70 new_esEs9(Just(x0), Just(x1), ty_Int) 18.28/6.70 new_primMulNat0(Succ(x0), Zero) 18.28/6.70 new_primEqNat0(Zero, Zero) 18.28/6.70 new_esEs24(x0, x1, ty_Int) 18.28/6.70 new_esEs9(Just(x0), Nothing, x1) 18.28/6.70 new_esEs22(x0, x1, ty_Float) 18.28/6.70 new_esEs8(Char(x0), Char(x1)) 18.28/6.70 new_esEs22(x0, x1, app(ty_[], x2)) 18.28/6.70 new_esEs21(x0, x1, ty_Ordering) 18.28/6.70 new_esEs9(Just(x0), Just(x1), app(ty_Ratio, x2)) 18.28/6.70 new_esEs5(x0, x1, app(ty_[], x2)) 18.28/6.70 new_esEs21(x0, x1, app(ty_Ratio, x2)) 18.28/6.70 new_esEs13(EQ, GT) 18.28/6.70 new_esEs13(GT, EQ) 18.28/6.70 new_esEs12(@2(x0, x1), @2(x2, x3), x4, x5) 18.28/6.70 new_esEs25(x0, x1, ty_@0) 18.28/6.70 new_esEs6(Left(x0), Left(x1), ty_Int, x2) 18.28/6.70 new_primPlusNat1(Succ(x0), Succ(x1)) 18.28/6.70 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 18.28/6.70 new_esEs25(x0, x1, ty_Double) 18.28/6.70 new_esEs5(x0, x1, app(ty_Ratio, x2)) 18.28/6.70 new_esEs22(x0, x1, ty_Bool) 18.28/6.70 new_esEs25(x0, x1, ty_Float) 18.28/6.70 new_esEs25(x0, x1, ty_Bool) 18.28/6.70 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 18.28/6.70 new_esEs26(x0, x1, ty_Integer) 18.28/6.70 new_esEs10(:(x0, x1), [], x2) 18.28/6.70 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 18.28/6.70 new_esEs22(x0, x1, ty_Double) 18.28/6.70 new_esEs25(x0, x1, app(ty_Ratio, x2)) 18.28/6.70 new_sr(Pos(x0), Neg(x1)) 18.28/6.70 new_sr(Neg(x0), Pos(x1)) 18.28/6.70 new_esEs6(Right(x0), Right(x1), x2, ty_@0) 18.28/6.70 new_esEs19(@0, @0) 18.28/6.70 new_esEs22(x0, x1, ty_Int) 18.28/6.70 new_esEs24(x0, x1, ty_Float) 18.28/6.70 new_esEs4(x0, x1, ty_Integer) 18.28/6.70 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 18.28/6.70 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 18.28/6.70 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 18.28/6.70 new_esEs6(Left(x0), Left(x1), ty_Float, x2) 18.28/6.70 new_esEs9(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 18.28/6.70 new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 18.28/6.70 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 18.28/6.70 new_esEs20(x0, x1, ty_Ordering) 18.28/6.70 new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 18.28/6.70 new_primMulNat0(Zero, Succ(x0)) 18.28/6.70 new_esEs20(x0, x1, ty_Integer) 18.28/6.70 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 18.28/6.70 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 18.28/6.70 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 18.28/6.70 new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 18.28/6.70 new_esEs13(GT, GT) 18.28/6.70 new_esEs5(x0, x1, app(ty_Maybe, x2)) 18.28/6.70 new_esEs13(LT, EQ) 18.28/6.70 new_esEs13(EQ, LT) 18.28/6.70 new_esEs9(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 18.28/6.70 new_esEs22(x0, x1, app(ty_Maybe, x2)) 18.28/6.70 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 18.28/6.70 new_esEs4(x0, x1, ty_Ordering) 18.28/6.70 new_esEs25(x0, x1, ty_Int) 18.28/6.70 new_esEs6(Right(x0), Right(x1), x2, ty_Float) 18.28/6.70 new_esEs22(x0, x1, ty_@0) 18.28/6.70 new_esEs7(False, True) 18.28/6.70 new_esEs7(True, False) 18.28/6.70 new_esEs10([], [], x0) 18.28/6.70 new_esEs24(x0, x1, app(ty_[], x2)) 18.28/6.70 new_esEs9(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 18.28/6.70 18.28/6.70 We have to consider all minimal (P,Q,R)-chains. 18.28/6.70 ---------------------------------------- 18.28/6.70 18.28/6.70 (19) QDPSizeChangeProof (EQUIVALENT) 18.28/6.70 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. 18.28/6.70 18.28/6.70 From the DPs we obtained the following set of size-change graphs: 18.28/6.70 *new_foldr(@2(yu30, yu31), @2(yu41100, yu41101), yu4111, yu61, yu62, bc, bd) -> new_psPs(yu61, new_asAs(new_esEs5(yu30, yu41100, bc), new_esEs4(yu31, yu41101, bd)), yu30, yu31, yu4111, yu62, bc, bd) 18.28/6.70 The graph contains the following edges 4 >= 1, 1 > 3, 1 > 4, 3 >= 5, 5 >= 6, 6 >= 7, 7 >= 8 18.28/6.70 18.28/6.70 18.28/6.70 *new_psPs(yu85, False, yu87, yu88, :(yu890, yu891), yu90, ba, bb) -> new_foldr(@2(yu87, yu88), yu890, yu891, new_primPlusNat0(yu90, Zero), new_primPlusNat0(yu90, Zero), ba, bb) 18.28/6.70 The graph contains the following edges 5 > 2, 5 > 3, 7 >= 6, 8 >= 7 18.28/6.70 18.28/6.70 18.28/6.70 *new_psPs(yu85, True, yu87, yu88, yu89, yu90, ba, bb) -> new_psPs0(yu87, yu88, yu89, yu90, ba, bb) 18.28/6.70 The graph contains the following edges 3 >= 1, 4 >= 2, 5 >= 3, 6 >= 4, 7 >= 5, 8 >= 6 18.28/6.70 18.28/6.70 18.28/6.70 *new_psPs0(yu87, yu88, :(yu890, yu891), yu90, ba, bb) -> new_foldr(@2(yu87, yu88), yu890, yu891, new_primPlusNat0(yu90, Zero), new_primPlusNat0(yu90, Zero), ba, bb) 18.28/6.70 The graph contains the following edges 3 > 2, 3 > 3, 5 >= 6, 6 >= 7 18.28/6.70 18.28/6.70 18.28/6.70 ---------------------------------------- 18.28/6.70 18.28/6.70 (20) 18.28/6.70 YES 18.28/6.70 18.28/6.70 ---------------------------------------- 18.28/6.70 18.28/6.70 (21) 18.28/6.70 Obligation: 18.28/6.70 Q DP problem: 18.28/6.70 The TRS P consists of the following rules: 18.28/6.70 18.28/6.70 new_primMulNat(Succ(yu31100), Succ(yu41101000)) -> new_primMulNat(yu31100, Succ(yu41101000)) 18.28/6.70 18.28/6.70 R is empty. 18.28/6.70 Q is empty. 18.28/6.70 We have to consider all minimal (P,Q,R)-chains. 18.28/6.70 ---------------------------------------- 18.28/6.70 18.28/6.70 (22) QDPSizeChangeProof (EQUIVALENT) 18.28/6.70 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. 18.28/6.70 18.28/6.70 From the DPs we obtained the following set of size-change graphs: 18.28/6.70 *new_primMulNat(Succ(yu31100), Succ(yu41101000)) -> new_primMulNat(yu31100, Succ(yu41101000)) 18.28/6.70 The graph contains the following edges 1 > 1, 2 >= 2 18.28/6.70 18.28/6.70 18.28/6.70 ---------------------------------------- 18.28/6.70 18.28/6.70 (23) 18.28/6.70 YES 18.28/6.70 18.28/6.70 ---------------------------------------- 18.28/6.70 18.28/6.70 (24) 18.28/6.70 Obligation: 18.28/6.70 Q DP problem: 18.28/6.70 The TRS P consists of the following rules: 18.28/6.70 18.28/6.70 new_primEqNat(Succ(yu3100), Succ(yu4110100)) -> new_primEqNat(yu3100, yu4110100) 18.28/6.70 18.28/6.70 R is empty. 18.28/6.70 Q is empty. 18.28/6.70 We have to consider all minimal (P,Q,R)-chains. 18.28/6.70 ---------------------------------------- 18.28/6.70 18.28/6.70 (25) QDPSizeChangeProof (EQUIVALENT) 18.28/6.70 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. 18.28/6.70 18.28/6.70 From the DPs we obtained the following set of size-change graphs: 18.28/6.70 *new_primEqNat(Succ(yu3100), Succ(yu4110100)) -> new_primEqNat(yu3100, yu4110100) 18.28/6.70 The graph contains the following edges 1 > 1, 2 > 2 18.28/6.70 18.28/6.70 18.28/6.70 ---------------------------------------- 18.28/6.70 18.28/6.70 (26) 18.28/6.70 YES 18.28/6.70 18.28/6.70 ---------------------------------------- 18.28/6.70 18.28/6.70 (27) 18.28/6.70 Obligation: 18.28/6.70 Q DP problem: 18.28/6.70 The TRS P consists of the following rules: 18.28/6.70 18.28/6.70 new_primPlusNat(Succ(yu10400), Succ(yu411010000)) -> new_primPlusNat(yu10400, yu411010000) 18.28/6.70 18.28/6.70 R is empty. 18.28/6.70 Q is empty. 18.28/6.70 We have to consider all minimal (P,Q,R)-chains. 18.28/6.70 ---------------------------------------- 18.28/6.70 18.28/6.70 (28) QDPSizeChangeProof (EQUIVALENT) 18.28/6.70 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. 18.28/6.70 18.28/6.70 From the DPs we obtained the following set of size-change graphs: 18.28/6.70 *new_primPlusNat(Succ(yu10400), Succ(yu411010000)) -> new_primPlusNat(yu10400, yu411010000) 18.28/6.70 The graph contains the following edges 1 > 1, 2 > 2 18.28/6.70 18.28/6.70 18.28/6.70 ---------------------------------------- 18.28/6.70 18.28/6.70 (29) 18.28/6.70 YES 18.48/9.61 EOF