Open benbrastmckie opened 4 months ago
These were all resolved previously, but I'm now getting false premise models for the following:
# FALSE PREMISE
N = 3
premises = ["(A \\leftrightarrow B)", "\\possible A"]
conclusions = ["C"]
contingent_bool = False
disjoint_bool = False
# FALSE PREMISE
# CF_CM19: COUNTERFACTUAL EXPORTATION WITH POSSIBILITY
N = 3
premises = ['((A \\wedge B) \\boxright C)','\\possible (A \\wedge B)']
conclusions = ['(A \\boxright (B \\boxright C))']
contingent_bool = True
disjoint_bool = False
Whereas before the false premise models were eliminated without finding their cause, perhaps these examples will be some clue to what is causing this behavior.
The
testing.py
file contains various examples which either include a false premise or true conclusion. For instance, consider the following cases:False Premise
True Conclusion
I'm not sure what explains either of these cases.