Exemplo n.º 1
0
 protected LongTermMemory(IAgent agent, ShortTermMemory shortTermMemory)
     : base(agent)
 {
     this.ShortTermMemory = shortTermMemory;
     this.MaxStates       = this.Scenario.MaxStates;
     this.NumTasks        = new StatisticalQuantity();
 }
Exemplo n.º 2
0
 public StringLTM(CellAgent agent, ShortTermMemory shortTermMemory)
     : base(agent, shortTermMemory)
 {
 }
Exemplo n.º 3
0
 public CellStateLTM(CellAgent agent, ShortTermMemory shortTermMemory)
     : base(agent, shortTermMemory)
 {
 }
 public StochasticTransitionLTM(IAgent agent, ShortTermMemory shortTermMemory)
     : base(agent, shortTermMemory)
 {
 }
Exemplo n.º 5
0
 protected CellAgentLTM(CellAgent agent, ShortTermMemory shortTermMemory)
     : base(agent, shortTermMemory)
 {
 }