mirror of
https://github.com/Z3Prover/z3
synced 2025-06-22 05:43:39 +00:00
Merge branch 'master' of https://github.com/z3prover/z3
This commit is contained in:
commit
efe440839e
22 changed files with 215 additions and 85 deletions
|
@ -26,17 +26,6 @@ Notes:
|
|||
#include "util/scoped_timer.h"
|
||||
#include "ast/expr2var.h"
|
||||
|
||||
namespace api {
|
||||
|
||||
pmanager::pmanager(reslimit& lim):
|
||||
m_pm(lim, m_nm) {
|
||||
}
|
||||
|
||||
pmanager::~pmanager() {
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
extern "C" {
|
||||
|
||||
Z3_ast_vector Z3_API Z3_polynomial_subresultants(Z3_context c, Z3_ast p, Z3_ast q, Z3_ast x) {
|
||||
|
|
|
@ -23,13 +23,13 @@ Notes:
|
|||
|
||||
namespace api {
|
||||
|
||||
class pmanager {
|
||||
class pmanager final {
|
||||
unsynch_mpz_manager m_nm;
|
||||
polynomial::manager m_pm;
|
||||
// TODO: add support for caching expressions -> polynomial and back
|
||||
public:
|
||||
pmanager(reslimit& limx);
|
||||
virtual ~pmanager();
|
||||
pmanager(reslimit& lim) : m_pm(lim, m_nm) {}
|
||||
~pmanager() {}
|
||||
polynomial::manager & pm() { return m_pm; }
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue