// if sygus is enabled, we must enable UF, datatypes, integer arithmetic and
// higher-order
if(sygus()) {
+ if (!d_logic.isQuantified())
+ {
+ warning("Logics in sygus are assumed to contain quantifiers.");
+ warning("Omit QF_ from the logic to avoid this warning.");
+ }
// get unlocked copy, modify, copy and relock
LogicInfo log(d_logic.getUnlockedCopy());
+ log.enableQuantifiers();
log.enableTheory(theory::THEORY_UF);
log.enableTheory(theory::THEORY_DATATYPES);
log.enableIntegers();