3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-06 22:23:22 +00:00
This commit is contained in:
Jakob Rath 2022-03-11 08:33:10 +01:00
parent 8b1f1d0e11
commit 74281fa830

View file

@ -49,7 +49,7 @@ namespace polysat {
class univariate_solver_factory { class univariate_solver_factory {
public: public:
virtual ~univariate_solver_factory(); virtual ~univariate_solver_factory() = default;
virtual scoped_ptr<univariate_solver> operator()(unsigned bit_width) = 0; virtual scoped_ptr<univariate_solver> operator()(unsigned bit_width) = 0;
}; };