- Turned 'hidden' term lemma back on by default.

This commit is contained in:
ccremers 2006-02-28 13:57:38 +00:00
parent 00616e45ed
commit a4429d548f

View File

@ -296,7 +296,7 @@ prune_theorems (const System sys)
/*
* Check for correct orderings involving local constants
*/
if (switches.experimental & 8)
if (!(switches.experimental & 8))
{
if (!correctLocalOrder (sys))
{
@ -320,8 +320,6 @@ prune_theorems (const System sys)
b = bl->data;
if (switches.experimental & 4)
{
// Check for "Hidden" interm goals
//!@TODO in the future, this can be subsumed by adding TERM_Hidden to the hidelevel constructs
if (termInTerm (b->term, TERM_Hidden))
@ -336,7 +334,6 @@ prune_theorems (const System sys)
}
return true;
}
}
if (switches.experimental & 4)
{