AIMA.Core.Logic.Propositional.Parsing.PEParser.detectAtomicSentence C# (CSharp) Method

detectAtomicSentence() private method

private detectAtomicSentence ( ) : bool
return bool
        private bool detectAtomicSentence()
        {
            int type = lookAhead(1).getType();
            return (type == (int)LogicTokenTypes.TRUE)
                    || (type == (int)LogicTokenTypes.FALSE)
                    || (type == (int)LogicTokenTypes.SYMBOL);
        }
    }