/****************************************************************************** * Top contributors (to current version): * Andrew Reynolds, Mathias Preiner * * This file is part of the cvc5 project. * * Copyright (c) 2009-2021 by the authors listed in the file AUTHORS * in the top-level source directory and their institutional affiliations. * All rights reserved. See the file COPYING in the top-level source * directory for licensing information. * **************************************************************************** * * SygusInference. */ #ifndef CVC5__PREPROCESSING__PASSES__SYGUS_INFERENCE_H_ #define CVC5__PREPROCESSING__PASSES__SYGUS_INFERENCE_H_ #include #include "expr/node.h" #include "preprocessing/preprocessing_pass.h" namespace cvc5 { namespace preprocessing { namespace passes { /** SygusInference * * A preprocessing utility that turns a set of (quantified) assertions into a * single SyGuS conjecture. If this is possible, we solve for this single Sygus * conjecture using a separate copy of the SMT engine. If sygus successfully * solves the conjecture, we plug the synthesis solutions back into the original * problem, thus obtaining a set of model substitutions under which the * assertions should simplify to true. */ class SygusInference : public PreprocessingPass { public: SygusInference(PreprocessingPassContext* preprocContext); protected: /** * Either replaces all uninterpreted functions in assertions by their * interpretation in a sygus solution, or leaves the assertions unmodified. */ PreprocessingPassResult applyInternal( AssertionPipeline* assertionsToPreprocess) override; /** solve sygus * * Returns true if we can recast the input problem assertions as a sygus * problem and successfully solve it using a separate call to an SMT engine. * * We fail if either a sygus conjecture that corresponds to assertions cannot * be inferred, or the sygus conjecture we infer is infeasible. * * If this function returns true, then we add all uninterpreted symbols s in * assertions to funs and their corresponding solution to sols. */ bool solveSygus(const std::vector& assertions, std::vector& funs, std::vector& sols); }; } // namespace passes } // namespace preprocessing } // namespace cvc5 #endif /* CVC5__PREPROCESSING__PASSES__SYGUS_INFERENCE_H_ */