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

plfcEntails() public method

public plfcEntails ( KnowledgeBase kb, String s ) : bool
kb KnowledgeBase
s String
return bool
        public bool plfcEntails(KnowledgeBase kb, String s)
        {
            return plfcEntails(kb, new Symbol(s));
        }

Same methods

PLFCEntails::plfcEntails ( KnowledgeBase kb, Symbol q ) : bool