You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following decomposition in a truth tree results in an error:
forall x forall y P(y)
forall y P(y)
This is because the code does not know to what constant the user is trying to assign x. If the variable does not appear in the formula, the assignment code should assume an arbitrary value (which will necessarily be valid since the constant will not appear in the resulting formula).
The text was updated successfully, but these errors were encountered:
The following decomposition in a truth tree results in an error:
This is because the code does not know to what constant the user is trying to assign
x
. If the variable does not appear in the formula, the assignment code should assume an arbitrary value (which will necessarily be valid since the constant will not appear in the resulting formula).The text was updated successfully, but these errors were encountered: