AIMA.Core.Logic.Propositional.Algorithms.PLFCEntails.HornClause.isImpliedSentence C# (CSharp) Method

isImpliedSentence() private method

private isImpliedSentence ( Sentence sentence ) : bool
sentence AIMA.Core.Logic.Propositional.Parsing.Ast.Sentence
return bool
            private bool isImpliedSentence(Sentence sentence)
            {
                return ((sentence is BinarySentence) && ((BinarySentence)sentence)
                        .getOperator().Equals("=>"));
            }