From: Andrew Reynolds Date: Thu, 2 Dec 2021 17:12:10 +0000 (-0600) Subject: Fixes for sygus-rr-synth-input (#7716) X-Git-Tag: cvc5-1.0.0~735 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4270c3d6b8fa45e66a79c928267a0757954d8004;p=cvc5.git Fixes for sygus-rr-synth-input (#7716) Includes aborting when no non-constant subterms exist, a spurious assertion failure, and bad variable names. Fixes cvc5/cvc5-projects#351 Fixes cvc5/cvc5-projects#353 --- diff --git a/src/preprocessing/passes/synth_rew_rules.cpp b/src/preprocessing/passes/synth_rew_rules.cpp index a54d220e5..4adfa1fd6 100644 --- a/src/preprocessing/passes/synth_rew_rules.cpp +++ b/src/preprocessing/passes/synth_rew_rules.cpp @@ -146,13 +146,13 @@ PreprocessingPassResult SynthRewRulesPass::applyInternal( Trace("srs-input") << "Make synth variables for types..." << std::endl; // We will generate a fixed number of variables per type. These are the // variables that appear as free variables in the rewrites we generate. - unsigned nvars = options().quantifiers.sygusRewSynthInputNVars; + uint64_t nvars = options().quantifiers.sygusRewSynthInputNVars; // must have at least one variable per type nvars = nvars < 1 ? 1 : nvars; std::map > tvars; std::vector allVarTypes; std::vector allVars; - unsigned varCounter = 0; + uint64_t varCounter = 0; for (std::pair tfp : typesFound) { TypeNode tn = tfp.first; @@ -161,11 +161,11 @@ PreprocessingPassResult SynthRewRulesPass::applyInternal( // This ensures that no type in our grammar has zero constructors. If // our input does not contain a Boolean variable, we need not allocate any // Boolean variables here. - unsigned useNVars = + uint64_t useNVars = (options().quantifiers.sygusRewSynthInputUseBool || !tn.isBoolean()) ? nvars : (hasBoolVar ? 1 : 0); - for (unsigned i = 0; i < useNVars; i++) + for (uint64_t i = 0; i < useNVars; i++) { // We must have a good name for these variables, these are // the ones output in rewrite rules. We choose @@ -173,7 +173,7 @@ PreprocessingPassResult SynthRewRulesPass::applyInternal( std::stringstream ssv; if (varCounter < 26) { - ssv << static_cast(varCounter + 61); + ssv << static_cast(varCounter + static_cast('A')); } else { @@ -188,6 +188,14 @@ PreprocessingPassResult SynthRewRulesPass::applyInternal( } Trace("srs-input") << "...finished." << std::endl; + // if the problem is trivial, e.g. contains no non-constant terms, then we + // exit with an exception. + if (allVars.empty()) + { + throw Exception("No terms to consider for synthesizing rewrites"); + return PreprocessingPassResult::NO_CONFLICT; + } + Trace("srs-input") << "Convert subterms to free variable form..." << std::endl; // Replace all free variables with bound variables. This ensures that @@ -271,7 +279,6 @@ PreprocessingPassResult SynthRewRulesPass::applyInternal( // add the variables for the type TypeNode ctt = ct.getType(); - Assert(tvars.find(ctt) != tvars.end()); std::vector argList; // we add variable constructors if we are not Boolean, we are interested // in purely propositional rewrites (via the option), or this term is @@ -279,6 +286,8 @@ PreprocessingPassResult SynthRewRulesPass::applyInternal( if (!ctt.isBoolean() || options().quantifiers.sygusRewSynthInputUseBool || ct.getKind() == BOUND_VARIABLE) { + Assert(tvars.find(ctt) != tvars.end()) + << "Unexpected type " << ctt << " for " << ct; for (const Node& v : tvars[ctt]) { std::stringstream ssc;