Skip to content

Commit

Permalink
PDEBUG 출력에서 변수명 지정이 잘못되어 있던 버그 수정
Browse files Browse the repository at this point in the history
c8f58de 에서 cherry-pick
  • Loading branch information
ikasty committed May 25, 2015
1 parent 541db7c commit 48b9dd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kdtree/exclusion_build.c
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ static void buildTree(KDAccelTree *kdtree, int current_node_idx, BBox *nodeBound
merge_bound(aboveEdges, above_onlys, both_for_above, nA, nBA);
};

PDEBUG("exclusion buildTree depth %d, cost %f, below %d, above %d\n", 10 - depth, bestCost, nLeftEdges, nRightEdges);
PDEBUG("exclusion buildTree depth %d, cost %f, below %d, above %d\n", 10 - depth, bestCost, nBelowEdges, nAboveEdges);

// 재귀적으로 자식 노드 초기화
bbox_below = *nodeBounds;
Expand Down

0 comments on commit 48b9dd6

Please sign in to comment.