AIMA.Core.Logic.Propositional.Algorithms.DPLL.dpllSatisfiable C# (CSharp) 메소드

dpllSatisfiable() 공개 메소드

public dpllSatisfiable ( Sentence s ) : bool
s AIMA.Core.Logic.Propositional.Parsing.Ast.Sentence
리턴 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