evaluate() public abstract method

public abstract evaluate ( ObjectWithDynamicAttributes p ) : bool
p AIMA.Core.Agent.Impl.ObjectWithDynamicAttributes
return bool
Example #1
0
 public bool evaluate(ObjectWithDynamicAttributes p)
 {
     return(con.evaluate(p));
 }
Example #2
0
 public override bool evaluate(ObjectWithDynamicAttributes p)
 {
     return(!con.evaluate(p));
 }
Example #3
0
 public override bool evaluate(ObjectWithDynamicAttributes p)
 {
     return(left.evaluate(p) || right.evaluate(p));
 }