Skip to content

Commit

Permalink
Merge pull request #9 from Kei18/feature/no-parent-check
Browse files Browse the repository at this point in the history
Feature/no parent check
  • Loading branch information
Kei18 committed Jul 21, 2022
2 parents 2e228a0 + 3700f09 commit 202dc5c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fast_mapf/src/planner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ Solution Planner::solve()
// check explored list
auto iter = EXPLORED.find(C);
if (iter != EXPLORED.end()) {
if (iter->second != S->parent) OPEN.push(iter->second);
OPEN.push(iter->second);
continue;
}

Expand Down
2 changes: 1 addition & 1 deletion scripts/config/mapf-bench.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
num_min_agents: 100
num_min_agents: 50
num_interval_agents: 50
time_limit_sec: 30
seeds: 5
Expand Down

0 comments on commit 202dc5c

Please sign in to comment.