AIMA.Core.Logic.Propositional.Algorithms.DPLL.dpllSatisfiable C# (CSharp) Method

dpllSatisfiable() public method

public dpllSatisfiable ( Sentence s ) : bool
s AIMA.Core.Logic.Propositional.Parsing.Ast.Sentence
return bool
        public bool dpllSatisfiable(Sentence s)
        {

            return dpllSatisfiable(s, new Model());
        }

Same methods

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