示例#1
0
 public EchoGPMotivationManager(IGPAgent agent, double[] constants) : base(agent, constants)
 {
     //agent starts hungry
     this.Hunger = new Need("Hunger", 1, 0, 0, 0)
     {
         Value = 1
     };
 }
 protected GPMotivationManager(IGPAgent agent, double[] constants)
     : base(agent)
 {
     this.constants = constants;
 }