-
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.
- Loading branch information
Showing
19 changed files
with
94 additions
and
108 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
Empty file.
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
4 changes: 2 additions & 2 deletions
4
...m/agents/parent/abstract_vision_parent.py → ...abstract_vision/abstract_vision_parent.py
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
File renamed without changes.
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 was deleted.
Oops, something went wrong.
12 changes: 6 additions & 6 deletions
12
infant_abm/agents/infant/actions.py → infant_abm/agents/infant_actions.py
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 |
---|---|---|
@@ -1,27 +1,27 @@ | ||
class Action: | ||
class InfantAction: | ||
def __init__(self, metadata=None): | ||
self.metadata = metadata | ||
|
||
|
||
class Crawl(Action): | ||
class Crawl(InfantAction): | ||
pass | ||
|
||
|
||
class LookForToy(Action): | ||
class LookForToy(InfantAction): | ||
pass | ||
|
||
|
||
class InteractWithToy(Action): | ||
class InteractWithToy(InfantAction): | ||
pass | ||
|
||
|
||
class EvaluateToy(Action): | ||
class EvaluateToy(InfantAction): | ||
def __init__(self, duration=0, metadata=None): | ||
super().__init__(metadata) | ||
self.duration = duration | ||
|
||
|
||
class EvaluateThrow(Action): | ||
class EvaluateThrow(InfantAction): | ||
def __init__(self, duration=0, metadata=None): | ||
super().__init__(metadata) | ||
self.duration = duration |
Empty file.
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
6 changes: 3 additions & 3 deletions
6
infant_abm/agents/parent/mover_parent.py → ..._abm/agents/no_vision/no_vision_parent.py
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
File renamed without changes.
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 was deleted.
Oops, something went wrong.
Empty file.
Oops, something went wrong.