Skip to content

Commit

Permalink
Merge pull request #33 from MAPF-Competition/develop
Browse files Browse the repository at this point in the history
Patch a missing commit from the broken history
  • Loading branch information
nobodyczcz authored Aug 28, 2023
2 parents fb80201 + 896635f commit 9552289
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

Version 1.1.2 - 2023-08-29
----------------------------
Fixed:
- Parsing 'T' symbol commit missing in the git history.


Version 1.1.1 - 2023-08-27
----------------------------
Added:
Expand Down
6 changes: 3 additions & 3 deletions src/Grid.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,10 @@ Grid::Grid(string fname)
for (int j = 0; j < cols; j++)
{
int id = cols * i + j;
if (line[j] != '@') // free space
map[id] = 0;
else // obstacle
if (line[j] == '@' || line[j] == 'T') // obstacle
map[id] = 1;
else // free space
map[id] = 0;
}
}

Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.1
1.1.2

0 comments on commit 9552289

Please sign in to comment.