forked from J-morag/MAPF
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
renamed many references to map "cell"s to be called "location"s, to f…
…it current naming
- Loading branch information
Showing
34 changed files
with
579 additions
and
538 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 0 additions & 14 deletions
14
src/main/java/BasicCBS/Instances/Maps/Enum_MapCellType.java
This file was deleted.
Oops, something went wrong.
23 changes: 23 additions & 0 deletions
23
src/main/java/BasicCBS/Instances/Maps/Enum_MapLocationType.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
package BasicCBS.Instances.Maps; | ||
|
||
/** | ||
* Represents the type of {@link I_Location location}. | ||
* The type could determine whether an agent can traverse or occupy a location. | ||
* | ||
* The basic implementation has EMPTY to denote traversable location, and WALL to denote impassable locations. Other | ||
* types may be added to represent more complex domains. | ||
*/ | ||
public enum Enum_MapLocationType { | ||
/** | ||
* Standard empty, traversable, location. | ||
*/ | ||
EMPTY, | ||
/** | ||
* Traversable by some agents but impassable for other (undefined). | ||
*/ | ||
TREE, | ||
/** | ||
* Impassable location. | ||
*/ | ||
WALL | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.