Skip to content

Commit

Permalink
Changed MemoryObject to Memory in AgentMind
Browse files Browse the repository at this point in the history
  • Loading branch information
rgudwin committed Jul 6, 2019
1 parent ccf6ba4 commit 5559af8
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/main/java/AgentMind.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*****************************************************************************/

import br.unicamp.cst.core.entities.Codelet;
import br.unicamp.cst.core.entities.MemoryObject;
import br.unicamp.cst.core.entities.Memory;
import br.unicamp.cst.core.entities.Mind;
import codelets.behaviors.EatClosestApple;
import codelets.behaviors.Forage;
Expand Down Expand Up @@ -49,12 +49,12 @@ public AgentMind(Environment env) {
super();

// Declare Memory Objects
MemoryObject legsMO;
MemoryObject handsMO;
MemoryObject visionMO;
MemoryObject innerSenseMO;
MemoryObject closestAppleMO;
MemoryObject knownApplesMO;
Memory legsMO;
Memory handsMO;
Memory visionMO;
Memory innerSenseMO;
Memory closestAppleMO;
Memory knownApplesMO;

//Initialize Memory Objects
legsMO=createMemoryObject("LEGS", "");
Expand Down

0 comments on commit 5559af8

Please sign in to comment.