AIMA.Core.Logic.Propositional.Parsing.Ast.BinarySentence.getOperator C# (CSharp) Method

getOperator() public method

public getOperator ( ) : String
return String
        public String getOperator()
        {
            return op;
        }

Usage Example

Beispiel #1
0
        public override bool Equals(Object o)
        {
            if (this == o)
            {
                return(true);
            }
            if ((o == null) || !(o is BinarySentence))
            {
                return(false);
            }
            BinarySentence bs = (BinarySentence)o;

            return((bs.getOperator().Equals(getOperator())) &&
                   (bs.getFirst().Equals(first)) && (bs.getSecond()
                                                     .Equals(second)));
        }
All Usage Examples Of AIMA.Core.Logic.Propositional.Parsing.Ast.BinarySentence::getOperator