AIMA.Core.Logic.Propositional.Algorithms.DPLL.dpllSatisfiable C# (CSharp) Метод

dpllSatisfiable() публичный Метод

public dpllSatisfiable ( String s ) : bool
s String
Результат bool
        public bool dpllSatisfiable(String s)
        {
            Sentence sen = (Sentence)new PEParser().parse(s);
            return dpllSatisfiable(sen, new Model());
        }

Same methods

DPLL::dpllSatisfiable ( Sentence s ) : bool
DPLL::dpllSatisfiable ( Sentence s, Model m ) : bool