Consider the knowledge base
false :- a.
false :- b,c.
a :- d.
b :- e.
c :- d,f.
c :- g.
c :- h.
Given that {d,e,f,g,h} is the set of assumables, what is the set of minimal conflicts for the above clauses?
I got
{d}
{e,f}
{e,g}
{e,h}
Is that correct? Not 100% sure I understand minimal conflict.
2
Answers
But this equal definition may seems more understandable:
And a minimal conflict is a conflict such that no strict subset is also a conflict.
Accordingly the minimal conflict sets for this KB are exactly:
To be sure:
To complete the answer, here is the truth table for p → q
Previous answer is incorrect as far as I know.
The minimal conflict sets for this KB are exactly:
As for the previous answer e,f,d is a conflict but not minimal because of the d subset being a conflict. e,f is nothing.