ALGO: avoid printing KTNil for both childs
This commit is contained in:
parent
968262d935
commit
78a3dd8b95
@ -125,7 +125,9 @@ rangeSearch kd' sq' = (goPt kd' sq', goTree kd' sq' True)
|
|||||||
-- A pretty rose tree suitable for printing.
|
-- A pretty rose tree suitable for printing.
|
||||||
goTree :: KDTree PT -> Square -> Bool -> Tree String
|
goTree :: KDTree PT -> Square -> Bool -> Tree String
|
||||||
goTree KTNil _ _ = Node "nil" []
|
goTree KTNil _ _ = Node "nil" []
|
||||||
goTree (KTNode ln pt dir rn) sq vis =
|
goTree (KTNode ln pt dir rn) sq vis
|
||||||
|
| ln == KTNil && rn == KTNil = Node treeText []
|
||||||
|
| otherwise =
|
||||||
Node treeText
|
Node treeText
|
||||||
[if' (p1' dir sq < (cur' dir . unp2 $ pt))
|
[if' (p1' dir sq < (cur' dir . unp2 $ pt))
|
||||||
(goTree ln sq vis)
|
(goTree ln sq vis)
|
||||||
|
Loading…
Reference in New Issue
Block a user