Skip to content

Commit 1074d30

Browse files
committed
remove the using of refine_results because it is changed to private
1 parent 1924582 commit 1074d30

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

rundemo.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,7 @@
7373
str(routing_options['source']['value']['y']), 'red') + " to " + \
7474
colored(str(routing_options['target']['value']['x']) + ',' +
7575
str(routing_options['target']['value']['y']), 'red')
76-
rough_results = route_planner.batch_find_path(routing_plans)
77-
final_results = route_planner.refine_results(rough_results)
76+
final_results = route_planner.batch_find_path(routing_plans)
7877
print colored("Finish doing routing plan!", "green")
7978
print "Final refined routing results are: "
8079
for i, r in enumerate(final_results["routes"]):

0 commit comments

Comments
 (0)