mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 20:05:51 +00:00
34 lines
674 B
C++
34 lines
674 B
C++
/*++
|
|
Copyright (c) 2017 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
<name>
|
|
|
|
Abstract:
|
|
|
|
<abstract>
|
|
|
|
Author:
|
|
Nikolaj Bjorner (nbjorner)
|
|
Lev Nachmanson (levnach)
|
|
|
|
Revision History:
|
|
|
|
|
|
--*/
|
|
#pragma once
|
|
#include "util/lp/factorization.h"
|
|
namespace nla {
|
|
struct core;
|
|
struct rooted_mon;
|
|
struct factorization_factory_imp: factorization_factory {
|
|
const core& m_core;
|
|
const monomial *m_mon;
|
|
const rooted_mon& m_rm;
|
|
|
|
factorization_factory_imp(const rooted_mon& rm, const core& s);
|
|
bool find_rm_monomial_of_vars(const svector<lpvar>& vars, unsigned & i) const;
|
|
const monomial* find_monomial_of_vars(const svector<lpvar>& vars) const;
|
|
};
|
|
}
|