public EchoMotivationManager(IFoodSharingAgent agent)
     : base(agent)
 {
     this.Hunger = new Need("hunger", 1, 0, 0, 0)
     {
         Value = 1
     };
 }
Esempio n. 2
0
 public bool AteFood(IFoodSharingAgent agent)
 {
     return(this.CyclesWithoutEating[agent] < 1);
 }
 public OthersHungerAltruismManager(IFoodSharingAgent agent) : base(agent)
 {
 }
Esempio n. 4
0
 public FoodCyclesPerceptionManager(IFoodSharingAgent agent) : base(agent)
 {
 }
 public FoodCyclesAltruismManager(IFoodSharingAgent agent) : base(agent)
 {
 }
Esempio n. 6
0
 public OthersFitnessPerceptionManager(IFoodSharingAgent agent) : base(agent)
 {
 }
Esempio n. 7
0
 public AltruismPerceptionManager(IFoodSharingAgent agent)
     : base(agent)
 {
 }
 protected FoodSharingSocialManager(IFoodSharingAgent agent) : base(agent)
 {
 }
Esempio n. 9
0
 public OthersFitnessAltruismManager(IFoodSharingAgent agent) : base(agent)
 {
     this.OtherFitAvg = new Dictionary <ISocialAgent, double>();
 }
 public OthersEchoPerceptionManager(IFoodSharingAgent agent)
     : base(agent)
 {
 }