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.
|
||||
goTree :: KDTree PT -> Square -> Bool -> Tree String
|
||||
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
|
||||
[if' (p1' dir sq < (cur' dir . unp2 $ pt))
|
||||
(goTree ln sq vis)
|
||||
|
Loading…
Reference in New Issue
Block a user