- Better setup for --experimental= switch using bit masks.
This commit is contained in:
parent
10b6793d97
commit
dbc0a3583d
@ -801,7 +801,7 @@ bindings_c_minimal ()
|
||||
{
|
||||
List bl;
|
||||
|
||||
if (switches.experimental == 1)
|
||||
if (switches.experimental & 1 > 0)
|
||||
{
|
||||
if (unique_origination () == 0)
|
||||
{
|
||||
|
@ -262,7 +262,7 @@ prune_theorems (const System sys)
|
||||
* if (switches.match < 2
|
||||
*!@TODO Doesn't work yet as desired for Tickets. Prove lemma first.
|
||||
*/
|
||||
if (switches.experimental)
|
||||
if (switches.experimental & 2 > 0)
|
||||
{
|
||||
if (!hasTicketSubterm (b->term))
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user