AIMA.Core.Logic.Propositional.Parsing.PEParser.detectAtomicSentence C# (CSharp) 메소드

detectAtomicSentence() 개인적인 메소드

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