AIMA.Core.Logic.Propositional.Parsing.Ast.Symbol.getValue C# (CSharp) Method

getValue() public method

public getValue ( ) : String
return String
        public String getValue()
        {
            return value;
        }

Usage Example

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

            return(sym.getValue().Equals(getValue()));
        }
All Usage Examples Of AIMA.Core.Logic.Propositional.Parsing.Ast.Symbol::getValue