mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 05:18:44 +00:00
157 lines
4 KiB
C++
157 lines
4 KiB
C++
/*++
|
|
Copyright (c) 2017 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
<name>
|
|
|
|
Abstract:
|
|
|
|
<abstract>
|
|
|
|
Author:
|
|
|
|
Lev Nachmanson (levnach)
|
|
|
|
Revision History:
|
|
|
|
|
|
--*/
|
|
#pragma once
|
|
#include "math/lp/indexed_vector.h"
|
|
#include "util/map.h"
|
|
namespace lp {
|
|
class lar_term {
|
|
// the term evaluates to sum of m_coeffs
|
|
u_map<mpq> m_coeffs;
|
|
public:
|
|
lar_term() {}
|
|
void add_monomial(const mpq& c, unsigned j) {
|
|
if (c.is_zero())
|
|
return;
|
|
auto *e = m_coeffs.find_core(j);
|
|
if (e == nullptr) {
|
|
m_coeffs.insert(j, c);
|
|
} else {
|
|
e->get_data().m_value += c;
|
|
if (e->get_data().m_value.is_zero())
|
|
m_coeffs.erase(j);
|
|
}
|
|
}
|
|
|
|
void add_var(lpvar j) {
|
|
rational c(1);
|
|
add_monomial(c, j);
|
|
}
|
|
|
|
bool is_empty() const {
|
|
return m_coeffs.empty(); // && is_zero(m_v);
|
|
}
|
|
|
|
unsigned size() const { return static_cast<unsigned>(m_coeffs.size()); }
|
|
|
|
template <typename T>
|
|
const T & coeffs() const {
|
|
return m_coeffs;
|
|
}
|
|
|
|
lar_term(const vector<std::pair<mpq, unsigned>>& coeffs) {
|
|
for (const auto & p : coeffs) {
|
|
add_monomial(p.first, p.second);
|
|
}
|
|
}
|
|
bool operator==(const lar_term & a) const { return false; } // take care not to create identical terms
|
|
bool operator!=(const lar_term & a) const { return ! (*this == a);}
|
|
// some terms get used in add constraint
|
|
// it is the same as the offset in the m_constraints
|
|
|
|
vector<std::pair<mpq, lpvar>> coeffs_as_vector() const {
|
|
vector<std::pair<mpq, lpvar>> ret;
|
|
for (const auto & p : m_coeffs) {
|
|
ret.push_back(std::make_pair(p.m_value, p.m_key));
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
// j is the basic variable to substitute
|
|
void subst(unsigned j, indexed_vector<mpq> & li) {
|
|
auto* it = m_coeffs.find_core(j);
|
|
if (it == nullptr) return;
|
|
const mpq & b = it->get_data().m_value;
|
|
for (unsigned it_j :li.m_index) {
|
|
add_monomial(- b * li.m_data[it_j], it_j);
|
|
}
|
|
m_coeffs.erase(j);
|
|
}
|
|
|
|
// the monomial ax[j] is substituted by ax[k]
|
|
void subst_index(unsigned j, unsigned k) {
|
|
auto* it = m_coeffs.find_core(j);
|
|
if (it == nullptr) return;
|
|
mpq b = it->get_data().m_value;
|
|
m_coeffs.erase(j);
|
|
m_coeffs.insert(k, b);
|
|
}
|
|
|
|
bool contains(lpvar j) const {
|
|
return m_coeffs.contains(j);
|
|
}
|
|
|
|
void negate() {
|
|
for (auto & t : m_coeffs)
|
|
t.m_value.neg();
|
|
}
|
|
|
|
template <typename T>
|
|
T apply(const vector<T>& x) const {
|
|
T ret(0);
|
|
for (const auto & t : m_coeffs) {
|
|
ret += t.m_value * x[t.m_key];
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
void clear() {
|
|
m_coeffs.reset();
|
|
}
|
|
|
|
struct ival {
|
|
lpvar m_var;
|
|
const mpq & m_coeff;
|
|
ival(lpvar var, const mpq & val) : m_var(var), m_coeff(val) {
|
|
}
|
|
lpvar var() const { return m_var;}
|
|
const mpq & coeff() const { return m_coeff; }
|
|
};
|
|
|
|
struct const_iterator {
|
|
//fields
|
|
u_map< mpq>::iterator m_it;
|
|
|
|
typedef const_iterator self_type;
|
|
typedef ival value_type;
|
|
typedef ival reference;
|
|
// typedef std::pair<const unsigned, mpq>* pointer;
|
|
typedef int difference_type;
|
|
typedef std::forward_iterator_tag iterator_category;
|
|
|
|
reference operator*() const {
|
|
return ival(m_it->m_key, m_it->m_value);
|
|
}
|
|
|
|
self_type operator++() { self_type i = *this; m_it++; return i; }
|
|
self_type operator++(int) { m_it++; return *this; }
|
|
|
|
const_iterator(u_map<mpq>::iterator it) : m_it(it) {}
|
|
bool operator==(const self_type &other) const {
|
|
return m_it == other.m_it;
|
|
}
|
|
bool operator!=(const self_type &other) const { return !(*this == other); }
|
|
};
|
|
|
|
|
|
const_iterator begin() const { return m_coeffs.begin();}
|
|
const_iterator end() const { return m_coeffs.end(); }
|
|
};
|
|
}
|