7.85/3.59 YES 9.40/4.11 proof of /export/starexec/sandbox/benchmark/theBenchmark.hs 9.40/4.11 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 9.40/4.11 9.40/4.11 9.40/4.11 H-Termination with start terms of the given HASKELL could be proven: 9.40/4.11 9.40/4.11 (0) HASKELL 9.40/4.11 (1) BR [EQUIVALENT, 0 ms] 9.40/4.11 (2) HASKELL 9.40/4.11 (3) COR [EQUIVALENT, 0 ms] 9.40/4.11 (4) HASKELL 9.40/4.11 (5) Narrow [EQUIVALENT, 36 ms] 9.40/4.11 (6) YES 9.40/4.11 9.40/4.11 9.40/4.11 ---------------------------------------- 9.40/4.11 9.40/4.11 (0) 9.40/4.11 Obligation: 9.40/4.11 mainModule Main 9.40/4.11 module Main where { 9.40/4.11 import qualified Prelude; 9.40/4.11 data MyBool = MyTrue | MyFalse ; 9.40/4.11 9.40/4.11 data Ordering = LT | EQ | GT ; 9.40/4.11 9.40/4.11 data Tup2 b a = Tup2 b a ; 9.40/4.11 9.40/4.11 asAs :: MyBool -> MyBool -> MyBool; 9.40/4.11 asAs MyFalse x = MyFalse; 9.40/4.11 asAs MyTrue x = x; 9.40/4.11 9.40/4.11 compare0 x y MyTrue = GT; 9.40/4.11 9.40/4.11 compare1 x y MyTrue = LT; 9.40/4.11 compare1 x y MyFalse = compare0 x y otherwise; 9.40/4.11 9.40/4.11 compare2 x y MyTrue = EQ; 9.40/4.11 compare2 x y MyFalse = compare1 x y (ltEsOrdering x y); 9.40/4.11 9.40/4.11 compare3 x y = compare2 x y (esEsOrdering x y); 9.40/4.11 9.40/4.11 compareOrdering :: Ordering -> Ordering -> Ordering; 9.40/4.11 compareOrdering x y = compare3 x y; 9.40/4.11 9.40/4.11 esEsOrdering :: Ordering -> Ordering -> MyBool; 9.40/4.11 esEsOrdering LT LT = MyTrue; 9.40/4.11 esEsOrdering LT EQ = MyFalse; 9.40/4.11 esEsOrdering LT GT = MyFalse; 9.40/4.11 esEsOrdering EQ LT = MyFalse; 9.40/4.11 esEsOrdering EQ EQ = MyTrue; 9.40/4.11 esEsOrdering EQ GT = MyFalse; 9.40/4.11 esEsOrdering GT LT = MyFalse; 9.40/4.11 esEsOrdering GT EQ = MyFalse; 9.40/4.11 esEsOrdering GT GT = MyTrue; 9.40/4.11 9.40/4.11 fsEsOrdering :: Ordering -> Ordering -> MyBool; 9.40/4.11 fsEsOrdering x y = not (esEsOrdering x y); 9.40/4.11 9.40/4.11 gtEsOrdering :: Ordering -> Ordering -> MyBool; 9.40/4.11 gtEsOrdering x y = fsEsOrdering (compareOrdering x y) LT; 9.40/4.11 9.40/4.11 inRangeOrdering :: Tup2 Ordering Ordering -> Ordering -> MyBool; 9.40/4.11 inRangeOrdering (Tup2 x y) z = asAs (gtEsOrdering y z) (gtEsOrdering z x); 9.40/4.11 9.40/4.11 ltEsOrdering :: Ordering -> Ordering -> MyBool; 9.40/4.11 ltEsOrdering LT LT = MyTrue; 9.40/4.11 ltEsOrdering LT EQ = MyTrue; 9.40/4.11 ltEsOrdering LT GT = MyTrue; 9.40/4.11 ltEsOrdering EQ LT = MyFalse; 9.40/4.11 ltEsOrdering EQ EQ = MyTrue; 9.40/4.11 ltEsOrdering EQ GT = MyTrue; 9.40/4.11 ltEsOrdering GT LT = MyFalse; 9.40/4.11 ltEsOrdering GT EQ = MyFalse; 9.40/4.11 ltEsOrdering GT GT = MyTrue; 9.40/4.11 9.40/4.11 not :: MyBool -> MyBool; 9.40/4.11 not MyTrue = MyFalse; 9.40/4.11 not MyFalse = MyTrue; 9.40/4.11 9.40/4.11 otherwise :: MyBool; 9.40/4.11 otherwise = MyTrue; 9.40/4.11 9.40/4.11 } 9.40/4.11 9.40/4.11 ---------------------------------------- 9.40/4.11 9.40/4.11 (1) BR (EQUIVALENT) 9.40/4.11 Replaced joker patterns by fresh variables and removed binding patterns. 9.40/4.11 ---------------------------------------- 9.40/4.11 9.40/4.11 (2) 9.40/4.11 Obligation: 9.40/4.11 mainModule Main 9.40/4.11 module Main where { 9.40/4.11 import qualified Prelude; 9.40/4.11 data MyBool = MyTrue | MyFalse ; 9.40/4.11 9.40/4.11 data Ordering = LT | EQ | GT ; 9.40/4.11 9.40/4.11 data Tup2 a b = Tup2 a b ; 9.40/4.11 9.40/4.11 asAs :: MyBool -> MyBool -> MyBool; 9.40/4.11 asAs MyFalse x = MyFalse; 9.40/4.11 asAs MyTrue x = x; 9.40/4.11 9.40/4.11 compare0 x y MyTrue = GT; 9.40/4.11 9.40/4.11 compare1 x y MyTrue = LT; 9.40/4.11 compare1 x y MyFalse = compare0 x y otherwise; 9.40/4.11 9.40/4.11 compare2 x y MyTrue = EQ; 9.40/4.11 compare2 x y MyFalse = compare1 x y (ltEsOrdering x y); 9.40/4.11 9.40/4.11 compare3 x y = compare2 x y (esEsOrdering x y); 9.40/4.11 9.40/4.11 compareOrdering :: Ordering -> Ordering -> Ordering; 9.40/4.11 compareOrdering x y = compare3 x y; 9.40/4.11 9.40/4.11 esEsOrdering :: Ordering -> Ordering -> MyBool; 9.40/4.11 esEsOrdering LT LT = MyTrue; 9.40/4.11 esEsOrdering LT EQ = MyFalse; 9.40/4.11 esEsOrdering LT GT = MyFalse; 9.40/4.11 esEsOrdering EQ LT = MyFalse; 9.40/4.11 esEsOrdering EQ EQ = MyTrue; 9.40/4.11 esEsOrdering EQ GT = MyFalse; 9.40/4.11 esEsOrdering GT LT = MyFalse; 9.40/4.11 esEsOrdering GT EQ = MyFalse; 9.40/4.11 esEsOrdering GT GT = MyTrue; 9.40/4.11 9.40/4.11 fsEsOrdering :: Ordering -> Ordering -> MyBool; 9.40/4.11 fsEsOrdering x y = not (esEsOrdering x y); 9.40/4.11 9.40/4.11 gtEsOrdering :: Ordering -> Ordering -> MyBool; 9.40/4.11 gtEsOrdering x y = fsEsOrdering (compareOrdering x y) LT; 9.40/4.11 9.40/4.11 inRangeOrdering :: Tup2 Ordering Ordering -> Ordering -> MyBool; 9.40/4.11 inRangeOrdering (Tup2 x y) z = asAs (gtEsOrdering y z) (gtEsOrdering z x); 9.40/4.11 9.40/4.11 ltEsOrdering :: Ordering -> Ordering -> MyBool; 9.40/4.11 ltEsOrdering LT LT = MyTrue; 9.40/4.11 ltEsOrdering LT EQ = MyTrue; 9.40/4.11 ltEsOrdering LT GT = MyTrue; 9.40/4.11 ltEsOrdering EQ LT = MyFalse; 9.40/4.11 ltEsOrdering EQ EQ = MyTrue; 9.40/4.11 ltEsOrdering EQ GT = MyTrue; 9.40/4.11 ltEsOrdering GT LT = MyFalse; 9.40/4.11 ltEsOrdering GT EQ = MyFalse; 9.40/4.11 ltEsOrdering GT GT = MyTrue; 9.40/4.11 9.40/4.11 not :: MyBool -> MyBool; 9.40/4.11 not MyTrue = MyFalse; 9.40/4.11 not MyFalse = MyTrue; 9.40/4.11 9.40/4.11 otherwise :: MyBool; 9.40/4.11 otherwise = MyTrue; 9.40/4.11 9.40/4.11 } 9.40/4.11 9.40/4.11 ---------------------------------------- 9.40/4.11 9.40/4.11 (3) COR (EQUIVALENT) 9.40/4.11 Cond Reductions: 9.40/4.11 The following Function with conditions 9.40/4.11 "undefined |Falseundefined; 9.40/4.11 " 9.40/4.11 is transformed to 9.40/4.11 "undefined = undefined1; 9.40/4.11 " 9.40/4.11 "undefined0 True = undefined; 9.40/4.11 " 9.40/4.11 "undefined1 = undefined0 False; 9.40/4.11 " 9.40/4.11 9.40/4.11 ---------------------------------------- 9.40/4.11 9.40/4.11 (4) 9.40/4.11 Obligation: 9.40/4.11 mainModule Main 9.40/4.11 module Main where { 9.40/4.11 import qualified Prelude; 9.40/4.11 data MyBool = MyTrue | MyFalse ; 9.40/4.11 9.40/4.11 data Ordering = LT | EQ | GT ; 9.40/4.11 9.40/4.11 data Tup2 a b = Tup2 a b ; 9.40/4.11 9.40/4.11 asAs :: MyBool -> MyBool -> MyBool; 9.40/4.11 asAs MyFalse x = MyFalse; 9.40/4.11 asAs MyTrue x = x; 9.40/4.11 9.40/4.11 compare0 x y MyTrue = GT; 9.40/4.11 9.40/4.11 compare1 x y MyTrue = LT; 9.40/4.11 compare1 x y MyFalse = compare0 x y otherwise; 9.40/4.11 9.40/4.11 compare2 x y MyTrue = EQ; 9.40/4.11 compare2 x y MyFalse = compare1 x y (ltEsOrdering x y); 9.40/4.11 9.40/4.11 compare3 x y = compare2 x y (esEsOrdering x y); 9.40/4.11 9.40/4.11 compareOrdering :: Ordering -> Ordering -> Ordering; 9.40/4.11 compareOrdering x y = compare3 x y; 9.40/4.11 9.40/4.11 esEsOrdering :: Ordering -> Ordering -> MyBool; 9.40/4.11 esEsOrdering LT LT = MyTrue; 9.40/4.11 esEsOrdering LT EQ = MyFalse; 9.40/4.11 esEsOrdering LT GT = MyFalse; 9.40/4.11 esEsOrdering EQ LT = MyFalse; 9.40/4.11 esEsOrdering EQ EQ = MyTrue; 9.40/4.11 esEsOrdering EQ GT = MyFalse; 9.40/4.11 esEsOrdering GT LT = MyFalse; 9.40/4.11 esEsOrdering GT EQ = MyFalse; 9.40/4.11 esEsOrdering GT GT = MyTrue; 9.40/4.11 9.40/4.11 fsEsOrdering :: Ordering -> Ordering -> MyBool; 9.40/4.11 fsEsOrdering x y = not (esEsOrdering x y); 9.40/4.11 9.40/4.11 gtEsOrdering :: Ordering -> Ordering -> MyBool; 9.40/4.11 gtEsOrdering x y = fsEsOrdering (compareOrdering x y) LT; 9.40/4.11 9.40/4.11 inRangeOrdering :: Tup2 Ordering Ordering -> Ordering -> MyBool; 9.40/4.11 inRangeOrdering (Tup2 x y) z = asAs (gtEsOrdering y z) (gtEsOrdering z x); 9.40/4.11 9.40/4.11 ltEsOrdering :: Ordering -> Ordering -> MyBool; 9.40/4.11 ltEsOrdering LT LT = MyTrue; 9.40/4.11 ltEsOrdering LT EQ = MyTrue; 9.40/4.11 ltEsOrdering LT GT = MyTrue; 9.40/4.11 ltEsOrdering EQ LT = MyFalse; 9.40/4.11 ltEsOrdering EQ EQ = MyTrue; 9.40/4.11 ltEsOrdering EQ GT = MyTrue; 9.40/4.11 ltEsOrdering GT LT = MyFalse; 9.40/4.11 ltEsOrdering GT EQ = MyFalse; 9.40/4.11 ltEsOrdering GT GT = MyTrue; 9.40/4.11 9.40/4.11 not :: MyBool -> MyBool; 9.40/4.11 not MyTrue = MyFalse; 9.40/4.11 not MyFalse = MyTrue; 9.40/4.11 9.40/4.11 otherwise :: MyBool; 9.40/4.11 otherwise = MyTrue; 9.40/4.11 9.40/4.11 } 9.40/4.11 9.40/4.11 ---------------------------------------- 9.40/4.11 9.40/4.11 (5) Narrow (EQUIVALENT) 9.40/4.11 Haskell To QDPs 9.40/4.11 9.40/4.11 digraph dp_graph { 9.40/4.11 node [outthreshold=100, inthreshold=100];1[label="inRangeOrdering",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 9.40/4.11 3[label="inRangeOrdering vx3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 9.40/4.11 4[label="inRangeOrdering vx3 vx4",fontsize=16,color="burlywood",shape="triangle"];149[label="vx3/Tup2 vx30 vx31",fontsize=10,color="white",style="solid",shape="box"];4 -> 149[label="",style="solid", color="burlywood", weight=9]; 9.40/4.11 149 -> 5[label="",style="solid", color="burlywood", weight=3]; 9.40/4.11 5[label="inRangeOrdering (Tup2 vx30 vx31) vx4",fontsize=16,color="black",shape="box"];5 -> 6[label="",style="solid", color="black", weight=3]; 9.40/4.11 6[label="asAs (gtEsOrdering vx31 vx4) (gtEsOrdering vx4 vx30)",fontsize=16,color="black",shape="box"];6 -> 7[label="",style="solid", color="black", weight=3]; 9.40/4.11 7[label="asAs (fsEsOrdering (compareOrdering vx31 vx4) LT) (gtEsOrdering vx4 vx30)",fontsize=16,color="black",shape="box"];7 -> 8[label="",style="solid", color="black", weight=3]; 9.40/4.11 8[label="asAs (not (esEsOrdering (compareOrdering vx31 vx4) LT)) (gtEsOrdering vx4 vx30)",fontsize=16,color="black",shape="box"];8 -> 9[label="",style="solid", color="black", weight=3]; 9.40/4.11 9[label="asAs (not (esEsOrdering (compare3 vx31 vx4) LT)) (gtEsOrdering vx4 vx30)",fontsize=16,color="black",shape="box"];9 -> 10[label="",style="solid", color="black", weight=3]; 9.40/4.11 10[label="asAs (not (esEsOrdering (compare2 vx31 vx4 (esEsOrdering vx31 vx4)) LT)) (gtEsOrdering vx4 vx30)",fontsize=16,color="burlywood",shape="box"];150[label="vx31/LT",fontsize=10,color="white",style="solid",shape="box"];10 -> 150[label="",style="solid", color="burlywood", weight=9]; 9.40/4.11 150 -> 11[label="",style="solid", color="burlywood", weight=3]; 9.40/4.11 151[label="vx31/EQ",fontsize=10,color="white",style="solid",shape="box"];10 -> 151[label="",style="solid", color="burlywood", weight=9]; 9.40/4.11 151 -> 12[label="",style="solid", color="burlywood", weight=3]; 9.40/4.11 152[label="vx31/GT",fontsize=10,color="white",style="solid",shape="box"];10 -> 152[label="",style="solid", color="burlywood", weight=9]; 9.40/4.11 152 -> 13[label="",style="solid", color="burlywood", weight=3]; 9.40/4.11 11[label="asAs (not (esEsOrdering (compare2 LT vx4 (esEsOrdering LT vx4)) LT)) (gtEsOrdering vx4 vx30)",fontsize=16,color="burlywood",shape="box"];153[label="vx4/LT",fontsize=10,color="white",style="solid",shape="box"];11 -> 153[label="",style="solid", color="burlywood", weight=9]; 9.40/4.11 153 -> 14[label="",style="solid", color="burlywood", weight=3]; 9.40/4.11 154[label="vx4/EQ",fontsize=10,color="white",style="solid",shape="box"];11 -> 154[label="",style="solid", color="burlywood", weight=9]; 9.40/4.11 154 -> 15[label="",style="solid", color="burlywood", weight=3]; 9.40/4.11 155[label="vx4/GT",fontsize=10,color="white",style="solid",shape="box"];11 -> 155[label="",style="solid", color="burlywood", weight=9]; 9.40/4.11 155 -> 16[label="",style="solid", color="burlywood", weight=3]; 9.40/4.11 12[label="asAs (not (esEsOrdering (compare2 EQ vx4 (esEsOrdering EQ vx4)) LT)) (gtEsOrdering vx4 vx30)",fontsize=16,color="burlywood",shape="box"];156[label="vx4/LT",fontsize=10,color="white",style="solid",shape="box"];12 -> 156[label="",style="solid", color="burlywood", weight=9]; 9.40/4.11 156 -> 17[label="",style="solid", color="burlywood", weight=3]; 9.40/4.11 157[label="vx4/EQ",fontsize=10,color="white",style="solid",shape="box"];12 -> 157[label="",style="solid", color="burlywood", weight=9]; 9.40/4.11 157 -> 18[label="",style="solid", color="burlywood", weight=3]; 9.40/4.11 158[label="vx4/GT",fontsize=10,color="white",style="solid",shape="box"];12 -> 158[label="",style="solid", color="burlywood", weight=9]; 9.40/4.11 158 -> 19[label="",style="solid", color="burlywood", weight=3]; 9.40/4.11 13[label="asAs (not (esEsOrdering (compare2 GT vx4 (esEsOrdering GT vx4)) LT)) (gtEsOrdering vx4 vx30)",fontsize=16,color="burlywood",shape="box"];159[label="vx4/LT",fontsize=10,color="white",style="solid",shape="box"];13 -> 159[label="",style="solid", color="burlywood", weight=9]; 9.40/4.11 159 -> 20[label="",style="solid", color="burlywood", weight=3]; 9.40/4.11 160[label="vx4/EQ",fontsize=10,color="white",style="solid",shape="box"];13 -> 160[label="",style="solid", color="burlywood", weight=9]; 9.40/4.11 160 -> 21[label="",style="solid", color="burlywood", weight=3]; 9.40/4.11 161[label="vx4/GT",fontsize=10,color="white",style="solid",shape="box"];13 -> 161[label="",style="solid", color="burlywood", weight=9]; 9.40/4.11 161 -> 22[label="",style="solid", color="burlywood", weight=3]; 9.40/4.11 14[label="asAs (not (esEsOrdering (compare2 LT LT (esEsOrdering LT LT)) LT)) (gtEsOrdering LT vx30)",fontsize=16,color="black",shape="box"];14 -> 23[label="",style="solid", color="black", weight=3]; 9.40/4.11 15[label="asAs (not (esEsOrdering (compare2 LT EQ (esEsOrdering LT EQ)) LT)) (gtEsOrdering EQ vx30)",fontsize=16,color="black",shape="box"];15 -> 24[label="",style="solid", color="black", weight=3]; 9.40/4.11 16[label="asAs (not (esEsOrdering (compare2 LT GT (esEsOrdering LT GT)) LT)) (gtEsOrdering GT vx30)",fontsize=16,color="black",shape="box"];16 -> 25[label="",style="solid", color="black", weight=3]; 9.40/4.11 17[label="asAs (not (esEsOrdering (compare2 EQ LT (esEsOrdering EQ LT)) LT)) (gtEsOrdering LT vx30)",fontsize=16,color="black",shape="box"];17 -> 26[label="",style="solid", color="black", weight=3]; 9.40/4.11 18[label="asAs (not (esEsOrdering (compare2 EQ EQ (esEsOrdering EQ EQ)) LT)) (gtEsOrdering EQ vx30)",fontsize=16,color="black",shape="box"];18 -> 27[label="",style="solid", color="black", weight=3]; 9.40/4.11 19[label="asAs (not (esEsOrdering (compare2 EQ GT (esEsOrdering EQ GT)) LT)) (gtEsOrdering GT vx30)",fontsize=16,color="black",shape="box"];19 -> 28[label="",style="solid", color="black", weight=3]; 9.40/4.11 20[label="asAs (not (esEsOrdering (compare2 GT LT (esEsOrdering GT LT)) LT)) (gtEsOrdering LT vx30)",fontsize=16,color="black",shape="box"];20 -> 29[label="",style="solid", color="black", weight=3]; 9.40/4.11 21[label="asAs (not (esEsOrdering (compare2 GT EQ (esEsOrdering GT EQ)) LT)) (gtEsOrdering EQ vx30)",fontsize=16,color="black",shape="box"];21 -> 30[label="",style="solid", color="black", weight=3]; 9.40/4.11 22[label="asAs (not (esEsOrdering (compare2 GT GT (esEsOrdering GT GT)) LT)) (gtEsOrdering GT vx30)",fontsize=16,color="black",shape="box"];22 -> 31[label="",style="solid", color="black", weight=3]; 9.40/4.11 23[label="asAs (not (esEsOrdering (compare2 LT LT MyTrue) LT)) (gtEsOrdering LT vx30)",fontsize=16,color="black",shape="box"];23 -> 32[label="",style="solid", color="black", weight=3]; 9.40/4.11 24[label="asAs (not (esEsOrdering (compare2 LT EQ MyFalse) LT)) (gtEsOrdering EQ vx30)",fontsize=16,color="black",shape="box"];24 -> 33[label="",style="solid", color="black", weight=3]; 9.40/4.11 25[label="asAs (not (esEsOrdering (compare2 LT GT MyFalse) LT)) (gtEsOrdering GT vx30)",fontsize=16,color="black",shape="box"];25 -> 34[label="",style="solid", color="black", weight=3]; 9.40/4.11 26[label="asAs (not (esEsOrdering (compare2 EQ LT MyFalse) LT)) (gtEsOrdering LT vx30)",fontsize=16,color="black",shape="box"];26 -> 35[label="",style="solid", color="black", weight=3]; 9.40/4.11 27[label="asAs (not (esEsOrdering (compare2 EQ EQ MyTrue) LT)) (gtEsOrdering EQ vx30)",fontsize=16,color="black",shape="box"];27 -> 36[label="",style="solid", color="black", weight=3]; 9.40/4.11 28[label="asAs (not (esEsOrdering (compare2 EQ GT MyFalse) LT)) (gtEsOrdering GT vx30)",fontsize=16,color="black",shape="box"];28 -> 37[label="",style="solid", color="black", weight=3]; 9.40/4.11 29[label="asAs (not (esEsOrdering (compare2 GT LT MyFalse) LT)) (gtEsOrdering LT vx30)",fontsize=16,color="black",shape="box"];29 -> 38[label="",style="solid", color="black", weight=3]; 9.40/4.11 30[label="asAs (not (esEsOrdering (compare2 GT EQ MyFalse) LT)) (gtEsOrdering EQ vx30)",fontsize=16,color="black",shape="box"];30 -> 39[label="",style="solid", color="black", weight=3]; 9.40/4.11 31[label="asAs (not (esEsOrdering (compare2 GT GT MyTrue) LT)) (gtEsOrdering GT vx30)",fontsize=16,color="black",shape="box"];31 -> 40[label="",style="solid", color="black", weight=3]; 9.40/4.11 32[label="asAs (not (esEsOrdering EQ LT)) (gtEsOrdering LT vx30)",fontsize=16,color="black",shape="box"];32 -> 41[label="",style="solid", color="black", weight=3]; 9.40/4.11 33[label="asAs (not (esEsOrdering (compare1 LT EQ (ltEsOrdering LT EQ)) LT)) (gtEsOrdering EQ vx30)",fontsize=16,color="black",shape="box"];33 -> 42[label="",style="solid", color="black", weight=3]; 9.40/4.11 34[label="asAs (not (esEsOrdering (compare1 LT GT (ltEsOrdering LT GT)) LT)) (gtEsOrdering GT vx30)",fontsize=16,color="black",shape="box"];34 -> 43[label="",style="solid", color="black", weight=3]; 9.40/4.11 35[label="asAs (not (esEsOrdering (compare1 EQ LT (ltEsOrdering EQ LT)) LT)) (gtEsOrdering LT vx30)",fontsize=16,color="black",shape="box"];35 -> 44[label="",style="solid", color="black", weight=3]; 9.40/4.11 36[label="asAs (not (esEsOrdering EQ LT)) (gtEsOrdering EQ vx30)",fontsize=16,color="black",shape="box"];36 -> 45[label="",style="solid", color="black", weight=3]; 9.40/4.11 37[label="asAs (not (esEsOrdering (compare1 EQ GT (ltEsOrdering EQ GT)) LT)) (gtEsOrdering GT vx30)",fontsize=16,color="black",shape="box"];37 -> 46[label="",style="solid", color="black", weight=3]; 9.40/4.11 38[label="asAs (not (esEsOrdering (compare1 GT LT (ltEsOrdering GT LT)) LT)) (gtEsOrdering LT vx30)",fontsize=16,color="black",shape="box"];38 -> 47[label="",style="solid", color="black", weight=3]; 9.40/4.11 39[label="asAs (not (esEsOrdering (compare1 GT EQ (ltEsOrdering GT EQ)) LT)) (gtEsOrdering EQ vx30)",fontsize=16,color="black",shape="box"];39 -> 48[label="",style="solid", color="black", weight=3]; 9.40/4.11 40[label="asAs (not (esEsOrdering EQ LT)) (gtEsOrdering GT vx30)",fontsize=16,color="black",shape="box"];40 -> 49[label="",style="solid", color="black", weight=3]; 9.40/4.11 41[label="asAs (not MyFalse) (gtEsOrdering LT vx30)",fontsize=16,color="black",shape="box"];41 -> 50[label="",style="solid", color="black", weight=3]; 9.40/4.11 42[label="asAs (not (esEsOrdering (compare1 LT EQ MyTrue) LT)) (gtEsOrdering EQ vx30)",fontsize=16,color="black",shape="box"];42 -> 51[label="",style="solid", color="black", weight=3]; 9.40/4.11 43[label="asAs (not (esEsOrdering (compare1 LT GT MyTrue) LT)) (gtEsOrdering GT vx30)",fontsize=16,color="black",shape="box"];43 -> 52[label="",style="solid", color="black", weight=3]; 9.40/4.11 44[label="asAs (not (esEsOrdering (compare1 EQ LT MyFalse) LT)) (gtEsOrdering LT vx30)",fontsize=16,color="black",shape="box"];44 -> 53[label="",style="solid", color="black", weight=3]; 9.40/4.11 45[label="asAs (not MyFalse) (gtEsOrdering EQ vx30)",fontsize=16,color="black",shape="box"];45 -> 54[label="",style="solid", color="black", weight=3]; 9.40/4.11 46[label="asAs (not (esEsOrdering (compare1 EQ GT MyTrue) LT)) (gtEsOrdering GT vx30)",fontsize=16,color="black",shape="box"];46 -> 55[label="",style="solid", color="black", weight=3]; 9.40/4.11 47[label="asAs (not (esEsOrdering (compare1 GT LT MyFalse) LT)) (gtEsOrdering LT vx30)",fontsize=16,color="black",shape="box"];47 -> 56[label="",style="solid", color="black", weight=3]; 9.40/4.11 48[label="asAs (not (esEsOrdering (compare1 GT EQ MyFalse) LT)) (gtEsOrdering EQ vx30)",fontsize=16,color="black",shape="box"];48 -> 57[label="",style="solid", color="black", weight=3]; 9.40/4.11 49[label="asAs (not MyFalse) (gtEsOrdering GT vx30)",fontsize=16,color="black",shape="box"];49 -> 58[label="",style="solid", color="black", weight=3]; 9.40/4.11 50[label="asAs MyTrue (gtEsOrdering LT vx30)",fontsize=16,color="black",shape="box"];50 -> 59[label="",style="solid", color="black", weight=3]; 9.40/4.11 51[label="asAs (not (esEsOrdering LT LT)) (gtEsOrdering EQ vx30)",fontsize=16,color="black",shape="box"];51 -> 60[label="",style="solid", color="black", weight=3]; 9.40/4.11 52[label="asAs (not (esEsOrdering LT LT)) (gtEsOrdering GT vx30)",fontsize=16,color="black",shape="triangle"];52 -> 61[label="",style="solid", color="black", weight=3]; 9.40/4.11 53[label="asAs (not (esEsOrdering (compare0 EQ LT otherwise) LT)) (gtEsOrdering LT vx30)",fontsize=16,color="black",shape="box"];53 -> 62[label="",style="solid", color="black", weight=3]; 9.40/4.11 54[label="asAs MyTrue (gtEsOrdering EQ vx30)",fontsize=16,color="black",shape="box"];54 -> 63[label="",style="solid", color="black", weight=3]; 9.40/4.11 55 -> 52[label="",style="dashed", color="red", weight=0]; 9.40/4.11 55[label="asAs (not (esEsOrdering LT LT)) (gtEsOrdering GT vx30)",fontsize=16,color="magenta"];56[label="asAs (not (esEsOrdering (compare0 GT LT otherwise) LT)) (gtEsOrdering LT vx30)",fontsize=16,color="black",shape="box"];56 -> 64[label="",style="solid", color="black", weight=3]; 9.40/4.11 57[label="asAs (not (esEsOrdering (compare0 GT EQ otherwise) LT)) (gtEsOrdering EQ vx30)",fontsize=16,color="black",shape="box"];57 -> 65[label="",style="solid", color="black", weight=3]; 9.40/4.11 58[label="asAs MyTrue (gtEsOrdering GT vx30)",fontsize=16,color="black",shape="box"];58 -> 66[label="",style="solid", color="black", weight=3]; 9.40/4.11 59[label="gtEsOrdering LT vx30",fontsize=16,color="black",shape="triangle"];59 -> 67[label="",style="solid", color="black", weight=3]; 9.40/4.11 60[label="asAs (not MyTrue) (gtEsOrdering EQ vx30)",fontsize=16,color="black",shape="box"];60 -> 68[label="",style="solid", color="black", weight=3]; 9.40/4.11 61[label="asAs (not MyTrue) (gtEsOrdering GT vx30)",fontsize=16,color="black",shape="box"];61 -> 69[label="",style="solid", color="black", weight=3]; 9.40/4.11 62 -> 70[label="",style="dashed", color="red", weight=0]; 9.40/4.11 62[label="asAs (not (esEsOrdering (compare0 EQ LT MyTrue) LT)) (gtEsOrdering LT vx30)",fontsize=16,color="magenta"];62 -> 71[label="",style="dashed", color="magenta", weight=3]; 9.40/4.11 63[label="gtEsOrdering EQ vx30",fontsize=16,color="black",shape="triangle"];63 -> 72[label="",style="solid", color="black", weight=3]; 9.40/4.11 64 -> 73[label="",style="dashed", color="red", weight=0]; 9.40/4.11 64[label="asAs (not (esEsOrdering (compare0 GT LT MyTrue) LT)) (gtEsOrdering LT vx30)",fontsize=16,color="magenta"];64 -> 74[label="",style="dashed", color="magenta", weight=3]; 9.40/4.11 65 -> 75[label="",style="dashed", color="red", weight=0]; 9.40/4.11 65[label="asAs (not (esEsOrdering (compare0 GT EQ MyTrue) LT)) (gtEsOrdering EQ vx30)",fontsize=16,color="magenta"];65 -> 76[label="",style="dashed", color="magenta", weight=3]; 9.40/4.11 66[label="gtEsOrdering GT vx30",fontsize=16,color="black",shape="triangle"];66 -> 77[label="",style="solid", color="black", weight=3]; 9.40/4.11 67[label="fsEsOrdering (compareOrdering LT vx30) LT",fontsize=16,color="black",shape="box"];67 -> 78[label="",style="solid", color="black", weight=3]; 9.40/4.11 68 -> 79[label="",style="dashed", color="red", weight=0]; 9.40/4.11 68[label="asAs MyFalse (gtEsOrdering EQ vx30)",fontsize=16,color="magenta"];68 -> 80[label="",style="dashed", color="magenta", weight=3]; 9.40/4.11 69 -> 79[label="",style="dashed", color="red", weight=0]; 9.40/4.11 69[label="asAs MyFalse (gtEsOrdering GT vx30)",fontsize=16,color="magenta"];69 -> 81[label="",style="dashed", color="magenta", weight=3]; 9.40/4.11 71 -> 59[label="",style="dashed", color="red", weight=0]; 9.40/4.11 71[label="gtEsOrdering LT vx30",fontsize=16,color="magenta"];70[label="asAs (not (esEsOrdering (compare0 EQ LT MyTrue) LT)) vx5",fontsize=16,color="black",shape="triangle"];70 -> 82[label="",style="solid", color="black", weight=3]; 9.40/4.11 72[label="fsEsOrdering (compareOrdering EQ vx30) LT",fontsize=16,color="black",shape="box"];72 -> 83[label="",style="solid", color="black", weight=3]; 9.40/4.11 74 -> 59[label="",style="dashed", color="red", weight=0]; 9.40/4.11 74[label="gtEsOrdering LT vx30",fontsize=16,color="magenta"];73[label="asAs (not (esEsOrdering (compare0 GT LT MyTrue) LT)) vx6",fontsize=16,color="black",shape="triangle"];73 -> 84[label="",style="solid", color="black", weight=3]; 9.40/4.11 76 -> 63[label="",style="dashed", color="red", weight=0]; 9.40/4.11 76[label="gtEsOrdering EQ vx30",fontsize=16,color="magenta"];75[label="asAs (not (esEsOrdering (compare0 GT EQ MyTrue) LT)) vx7",fontsize=16,color="black",shape="triangle"];75 -> 85[label="",style="solid", color="black", weight=3]; 9.40/4.11 77[label="fsEsOrdering (compareOrdering GT vx30) LT",fontsize=16,color="black",shape="box"];77 -> 86[label="",style="solid", color="black", weight=3]; 9.40/4.11 78[label="not (esEsOrdering (compareOrdering LT vx30) LT)",fontsize=16,color="black",shape="box"];78 -> 87[label="",style="solid", color="black", weight=3]; 9.40/4.11 80 -> 63[label="",style="dashed", color="red", weight=0]; 9.40/4.11 80[label="gtEsOrdering EQ vx30",fontsize=16,color="magenta"];79[label="asAs MyFalse vx8",fontsize=16,color="black",shape="triangle"];79 -> 88[label="",style="solid", color="black", weight=3]; 9.40/4.11 81 -> 66[label="",style="dashed", color="red", weight=0]; 9.40/4.11 81[label="gtEsOrdering GT vx30",fontsize=16,color="magenta"];82[label="asAs (not (esEsOrdering GT LT)) vx5",fontsize=16,color="black",shape="triangle"];82 -> 89[label="",style="solid", color="black", weight=3]; 9.40/4.11 83[label="not (esEsOrdering (compareOrdering EQ vx30) LT)",fontsize=16,color="black",shape="box"];83 -> 90[label="",style="solid", color="black", weight=3]; 9.40/4.11 84 -> 82[label="",style="dashed", color="red", weight=0]; 9.40/4.11 84[label="asAs (not (esEsOrdering GT LT)) vx6",fontsize=16,color="magenta"];84 -> 91[label="",style="dashed", color="magenta", weight=3]; 9.40/4.11 85 -> 82[label="",style="dashed", color="red", weight=0]; 9.40/4.11 85[label="asAs (not (esEsOrdering GT LT)) vx7",fontsize=16,color="magenta"];85 -> 92[label="",style="dashed", color="magenta", weight=3]; 9.40/4.11 86[label="not (esEsOrdering (compareOrdering GT vx30) LT)",fontsize=16,color="black",shape="box"];86 -> 93[label="",style="solid", color="black", weight=3]; 9.40/4.11 87[label="not (esEsOrdering (compare3 LT vx30) LT)",fontsize=16,color="black",shape="box"];87 -> 94[label="",style="solid", color="black", weight=3]; 9.40/4.11 88[label="MyFalse",fontsize=16,color="green",shape="box"];89[label="asAs (not MyFalse) vx5",fontsize=16,color="black",shape="box"];89 -> 95[label="",style="solid", color="black", weight=3]; 9.40/4.11 90[label="not (esEsOrdering (compare3 EQ vx30) LT)",fontsize=16,color="black",shape="box"];90 -> 96[label="",style="solid", color="black", weight=3]; 9.40/4.11 91[label="vx6",fontsize=16,color="green",shape="box"];92[label="vx7",fontsize=16,color="green",shape="box"];93[label="not (esEsOrdering (compare3 GT vx30) LT)",fontsize=16,color="black",shape="box"];93 -> 97[label="",style="solid", color="black", weight=3]; 9.40/4.11 94[label="not (esEsOrdering (compare2 LT vx30 (esEsOrdering LT vx30)) LT)",fontsize=16,color="burlywood",shape="box"];162[label="vx30/LT",fontsize=10,color="white",style="solid",shape="box"];94 -> 162[label="",style="solid", color="burlywood", weight=9]; 9.40/4.11 162 -> 98[label="",style="solid", color="burlywood", weight=3]; 9.40/4.11 163[label="vx30/EQ",fontsize=10,color="white",style="solid",shape="box"];94 -> 163[label="",style="solid", color="burlywood", weight=9]; 9.40/4.11 163 -> 99[label="",style="solid", color="burlywood", weight=3]; 9.40/4.11 164[label="vx30/GT",fontsize=10,color="white",style="solid",shape="box"];94 -> 164[label="",style="solid", color="burlywood", weight=9]; 9.40/4.11 164 -> 100[label="",style="solid", color="burlywood", weight=3]; 9.40/4.11 95[label="asAs MyTrue vx5",fontsize=16,color="black",shape="box"];95 -> 101[label="",style="solid", color="black", weight=3]; 9.40/4.11 96[label="not (esEsOrdering (compare2 EQ vx30 (esEsOrdering EQ vx30)) LT)",fontsize=16,color="burlywood",shape="box"];165[label="vx30/LT",fontsize=10,color="white",style="solid",shape="box"];96 -> 165[label="",style="solid", color="burlywood", weight=9]; 9.40/4.11 165 -> 102[label="",style="solid", color="burlywood", weight=3]; 9.40/4.11 166[label="vx30/EQ",fontsize=10,color="white",style="solid",shape="box"];96 -> 166[label="",style="solid", color="burlywood", weight=9]; 9.40/4.11 166 -> 103[label="",style="solid", color="burlywood", weight=3]; 9.40/4.11 167[label="vx30/GT",fontsize=10,color="white",style="solid",shape="box"];96 -> 167[label="",style="solid", color="burlywood", weight=9]; 9.40/4.11 167 -> 104[label="",style="solid", color="burlywood", weight=3]; 9.40/4.11 97[label="not (esEsOrdering (compare2 GT vx30 (esEsOrdering GT vx30)) LT)",fontsize=16,color="burlywood",shape="box"];168[label="vx30/LT",fontsize=10,color="white",style="solid",shape="box"];97 -> 168[label="",style="solid", color="burlywood", weight=9]; 9.40/4.11 168 -> 105[label="",style="solid", color="burlywood", weight=3]; 9.40/4.11 169[label="vx30/EQ",fontsize=10,color="white",style="solid",shape="box"];97 -> 169[label="",style="solid", color="burlywood", weight=9]; 9.40/4.11 169 -> 106[label="",style="solid", color="burlywood", weight=3]; 9.40/4.11 170[label="vx30/GT",fontsize=10,color="white",style="solid",shape="box"];97 -> 170[label="",style="solid", color="burlywood", weight=9]; 9.40/4.11 170 -> 107[label="",style="solid", color="burlywood", weight=3]; 9.40/4.11 98[label="not (esEsOrdering (compare2 LT LT (esEsOrdering LT LT)) LT)",fontsize=16,color="black",shape="box"];98 -> 108[label="",style="solid", color="black", weight=3]; 9.40/4.11 99[label="not (esEsOrdering (compare2 LT EQ (esEsOrdering LT EQ)) LT)",fontsize=16,color="black",shape="box"];99 -> 109[label="",style="solid", color="black", weight=3]; 9.40/4.11 100[label="not (esEsOrdering (compare2 LT GT (esEsOrdering LT GT)) LT)",fontsize=16,color="black",shape="box"];100 -> 110[label="",style="solid", color="black", weight=3]; 9.40/4.11 101[label="vx5",fontsize=16,color="green",shape="box"];102[label="not (esEsOrdering (compare2 EQ LT (esEsOrdering EQ LT)) LT)",fontsize=16,color="black",shape="box"];102 -> 111[label="",style="solid", color="black", weight=3]; 9.40/4.11 103[label="not (esEsOrdering (compare2 EQ EQ (esEsOrdering EQ EQ)) LT)",fontsize=16,color="black",shape="box"];103 -> 112[label="",style="solid", color="black", weight=3]; 9.40/4.11 104[label="not (esEsOrdering (compare2 EQ GT (esEsOrdering EQ GT)) LT)",fontsize=16,color="black",shape="box"];104 -> 113[label="",style="solid", color="black", weight=3]; 9.40/4.11 105[label="not (esEsOrdering (compare2 GT LT (esEsOrdering GT LT)) LT)",fontsize=16,color="black",shape="box"];105 -> 114[label="",style="solid", color="black", weight=3]; 9.40/4.11 106[label="not (esEsOrdering (compare2 GT EQ (esEsOrdering GT EQ)) LT)",fontsize=16,color="black",shape="box"];106 -> 115[label="",style="solid", color="black", weight=3]; 9.40/4.11 107[label="not (esEsOrdering (compare2 GT GT (esEsOrdering GT GT)) LT)",fontsize=16,color="black",shape="box"];107 -> 116[label="",style="solid", color="black", weight=3]; 9.40/4.11 108[label="not (esEsOrdering (compare2 LT LT MyTrue) LT)",fontsize=16,color="black",shape="box"];108 -> 117[label="",style="solid", color="black", weight=3]; 9.40/4.11 109[label="not (esEsOrdering (compare2 LT EQ MyFalse) LT)",fontsize=16,color="black",shape="box"];109 -> 118[label="",style="solid", color="black", weight=3]; 9.40/4.11 110[label="not (esEsOrdering (compare2 LT GT MyFalse) LT)",fontsize=16,color="black",shape="box"];110 -> 119[label="",style="solid", color="black", weight=3]; 9.40/4.11 111[label="not (esEsOrdering (compare2 EQ LT MyFalse) LT)",fontsize=16,color="black",shape="box"];111 -> 120[label="",style="solid", color="black", weight=3]; 9.40/4.11 112[label="not (esEsOrdering (compare2 EQ EQ MyTrue) LT)",fontsize=16,color="black",shape="box"];112 -> 121[label="",style="solid", color="black", weight=3]; 9.40/4.11 113[label="not (esEsOrdering (compare2 EQ GT MyFalse) LT)",fontsize=16,color="black",shape="box"];113 -> 122[label="",style="solid", color="black", weight=3]; 9.40/4.11 114[label="not (esEsOrdering (compare2 GT LT MyFalse) LT)",fontsize=16,color="black",shape="box"];114 -> 123[label="",style="solid", color="black", weight=3]; 9.40/4.11 115[label="not (esEsOrdering (compare2 GT EQ MyFalse) LT)",fontsize=16,color="black",shape="box"];115 -> 124[label="",style="solid", color="black", weight=3]; 9.40/4.11 116[label="not (esEsOrdering (compare2 GT GT MyTrue) LT)",fontsize=16,color="black",shape="box"];116 -> 125[label="",style="solid", color="black", weight=3]; 9.40/4.11 117[label="not (esEsOrdering EQ LT)",fontsize=16,color="black",shape="triangle"];117 -> 126[label="",style="solid", color="black", weight=3]; 9.40/4.11 118[label="not (esEsOrdering (compare1 LT EQ (ltEsOrdering LT EQ)) LT)",fontsize=16,color="black",shape="box"];118 -> 127[label="",style="solid", color="black", weight=3]; 9.40/4.11 119[label="not (esEsOrdering (compare1 LT GT (ltEsOrdering LT GT)) LT)",fontsize=16,color="black",shape="box"];119 -> 128[label="",style="solid", color="black", weight=3]; 9.40/4.11 120[label="not (esEsOrdering (compare1 EQ LT (ltEsOrdering EQ LT)) LT)",fontsize=16,color="black",shape="box"];120 -> 129[label="",style="solid", color="black", weight=3]; 9.40/4.11 121 -> 117[label="",style="dashed", color="red", weight=0]; 9.40/4.11 121[label="not (esEsOrdering EQ LT)",fontsize=16,color="magenta"];122[label="not (esEsOrdering (compare1 EQ GT (ltEsOrdering EQ GT)) LT)",fontsize=16,color="black",shape="box"];122 -> 130[label="",style="solid", color="black", weight=3]; 9.40/4.11 123[label="not (esEsOrdering (compare1 GT LT (ltEsOrdering GT LT)) LT)",fontsize=16,color="black",shape="box"];123 -> 131[label="",style="solid", color="black", weight=3]; 9.40/4.11 124[label="not (esEsOrdering (compare1 GT EQ (ltEsOrdering GT EQ)) LT)",fontsize=16,color="black",shape="box"];124 -> 132[label="",style="solid", color="black", weight=3]; 9.40/4.11 125 -> 117[label="",style="dashed", color="red", weight=0]; 9.40/4.11 125[label="not (esEsOrdering EQ LT)",fontsize=16,color="magenta"];126[label="not MyFalse",fontsize=16,color="black",shape="triangle"];126 -> 133[label="",style="solid", color="black", weight=3]; 9.40/4.11 127[label="not (esEsOrdering (compare1 LT EQ MyTrue) LT)",fontsize=16,color="black",shape="box"];127 -> 134[label="",style="solid", color="black", weight=3]; 9.40/4.11 128[label="not (esEsOrdering (compare1 LT GT MyTrue) LT)",fontsize=16,color="black",shape="box"];128 -> 135[label="",style="solid", color="black", weight=3]; 9.40/4.11 129[label="not (esEsOrdering (compare1 EQ LT MyFalse) LT)",fontsize=16,color="black",shape="box"];129 -> 136[label="",style="solid", color="black", weight=3]; 9.40/4.11 130[label="not (esEsOrdering (compare1 EQ GT MyTrue) LT)",fontsize=16,color="black",shape="box"];130 -> 137[label="",style="solid", color="black", weight=3]; 9.40/4.11 131[label="not (esEsOrdering (compare1 GT LT MyFalse) LT)",fontsize=16,color="black",shape="box"];131 -> 138[label="",style="solid", color="black", weight=3]; 9.40/4.11 132[label="not (esEsOrdering (compare1 GT EQ MyFalse) LT)",fontsize=16,color="black",shape="box"];132 -> 139[label="",style="solid", color="black", weight=3]; 9.40/4.11 133[label="MyTrue",fontsize=16,color="green",shape="box"];134[label="not (esEsOrdering LT LT)",fontsize=16,color="black",shape="triangle"];134 -> 140[label="",style="solid", color="black", weight=3]; 9.40/4.11 135 -> 134[label="",style="dashed", color="red", weight=0]; 9.40/4.11 135[label="not (esEsOrdering LT LT)",fontsize=16,color="magenta"];136[label="not (esEsOrdering (compare0 EQ LT otherwise) LT)",fontsize=16,color="black",shape="box"];136 -> 141[label="",style="solid", color="black", weight=3]; 9.40/4.11 137 -> 134[label="",style="dashed", color="red", weight=0]; 9.40/4.11 137[label="not (esEsOrdering LT LT)",fontsize=16,color="magenta"];138[label="not (esEsOrdering (compare0 GT LT otherwise) LT)",fontsize=16,color="black",shape="box"];138 -> 142[label="",style="solid", color="black", weight=3]; 9.40/4.11 139[label="not (esEsOrdering (compare0 GT EQ otherwise) LT)",fontsize=16,color="black",shape="box"];139 -> 143[label="",style="solid", color="black", weight=3]; 9.40/4.11 140[label="not MyTrue",fontsize=16,color="black",shape="box"];140 -> 144[label="",style="solid", color="black", weight=3]; 9.40/4.11 141[label="not (esEsOrdering (compare0 EQ LT MyTrue) LT)",fontsize=16,color="black",shape="box"];141 -> 145[label="",style="solid", color="black", weight=3]; 9.40/4.11 142[label="not (esEsOrdering (compare0 GT LT MyTrue) LT)",fontsize=16,color="black",shape="box"];142 -> 146[label="",style="solid", color="black", weight=3]; 9.40/4.11 143[label="not (esEsOrdering (compare0 GT EQ MyTrue) LT)",fontsize=16,color="black",shape="box"];143 -> 147[label="",style="solid", color="black", weight=3]; 9.40/4.11 144[label="MyFalse",fontsize=16,color="green",shape="box"];145[label="not (esEsOrdering GT LT)",fontsize=16,color="black",shape="triangle"];145 -> 148[label="",style="solid", color="black", weight=3]; 9.40/4.11 146 -> 145[label="",style="dashed", color="red", weight=0]; 9.40/4.11 146[label="not (esEsOrdering GT LT)",fontsize=16,color="magenta"];147 -> 145[label="",style="dashed", color="red", weight=0]; 9.40/4.11 147[label="not (esEsOrdering GT LT)",fontsize=16,color="magenta"];148 -> 126[label="",style="dashed", color="red", weight=0]; 9.40/4.11 148[label="not MyFalse",fontsize=16,color="magenta"];} 9.40/4.11 9.40/4.11 ---------------------------------------- 9.40/4.11 9.40/4.11 (6) 9.40/4.11 YES 9.74/4.15 EOF