- Bit masking was incorrect: & binds less strong than == !

This caused many of the --experimental switches not to work.
This commit is contained in:
ccremers
2006-02-28 13:41:36 +00:00
parent cf832ca1b1
commit 00616e45ed
5 changed files with 112 additions and 63 deletions

View File

@@ -1645,7 +1645,7 @@ bind_goal_all_options (const Binding b)
}
}
if (switches.experimental & 4 == 0)
if (switches.experimental & 4)
{
// Keylevel lemmas: improves on the previous one
if (!isPossiblySent (b->term))