mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 11:55:51 +00:00
Partial cleanup of util/lp/*
This commit is contained in:
parent
00651f8f21
commit
d61b722b68
109 changed files with 3503 additions and 2023 deletions
|
@ -1,20 +1,35 @@
|
|||
/*
|
||||
Copyright (c) 2017 Microsoft Corporation
|
||||
Author: Lev Nachmanson
|
||||
*/
|
||||
/*++
|
||||
Copyright (c) 2017 Microsoft Corporation
|
||||
|
||||
Module Name:
|
||||
|
||||
<name>
|
||||
|
||||
Abstract:
|
||||
|
||||
<abstract>
|
||||
|
||||
Author:
|
||||
|
||||
Lev Nachmanson (levnach)
|
||||
|
||||
Revision History:
|
||||
|
||||
|
||||
--*/
|
||||
#include <utility>
|
||||
#include <memory>
|
||||
#include <string>
|
||||
#include "util/vector.h"
|
||||
#include <functional>
|
||||
#include "util/lp/lp_primal_simplex.hpp"
|
||||
template bool lean::lp_primal_simplex<double, double>::bounds_hold(std::unordered_map<std::string, double, std::hash<std::string>, std::equal_to<std::string>, std::allocator<std::pair<std::string const, double> > > const&);
|
||||
template bool lean::lp_primal_simplex<double, double>::row_constraints_hold(std::unordered_map<std::string, double, std::hash<std::string>, std::equal_to<std::string>, std::allocator<std::pair<std::string const, double> > > const&);
|
||||
template double lean::lp_primal_simplex<double, double>::get_current_cost() const;
|
||||
template double lean::lp_primal_simplex<double, double>::get_column_value(unsigned int) const;
|
||||
template lean::lp_primal_simplex<double, double>::~lp_primal_simplex();
|
||||
template lean::lp_primal_simplex<lean::mpq, lean::mpq>::~lp_primal_simplex();
|
||||
template lean::mpq lean::lp_primal_simplex<lean::mpq, lean::mpq>::get_current_cost() const;
|
||||
template lean::mpq lean::lp_primal_simplex<lean::mpq, lean::mpq>::get_column_value(unsigned int) const;
|
||||
template void lean::lp_primal_simplex<double, double>::find_maximal_solution();
|
||||
template void lean::lp_primal_simplex<lean::mpq, lean::mpq>::find_maximal_solution();
|
||||
template bool lp::lp_primal_simplex<double, double>::bounds_hold(std::unordered_map<std::string, double, std::hash<std::string>, std::equal_to<std::string>, std::allocator<std::pair<std::string const, double> > > const&);
|
||||
template bool lp::lp_primal_simplex<double, double>::row_constraints_hold(std::unordered_map<std::string, double, std::hash<std::string>, std::equal_to<std::string>, std::allocator<std::pair<std::string const, double> > > const&);
|
||||
template double lp::lp_primal_simplex<double, double>::get_current_cost() const;
|
||||
template double lp::lp_primal_simplex<double, double>::get_column_value(unsigned int) const;
|
||||
template lp::lp_primal_simplex<double, double>::~lp_primal_simplex();
|
||||
template lp::lp_primal_simplex<lp::mpq, lp::mpq>::~lp_primal_simplex();
|
||||
template lp::mpq lp::lp_primal_simplex<lp::mpq, lp::mpq>::get_current_cost() const;
|
||||
template lp::mpq lp::lp_primal_simplex<lp::mpq, lp::mpq>::get_column_value(unsigned int) const;
|
||||
template void lp::lp_primal_simplex<double, double>::find_maximal_solution();
|
||||
template void lp::lp_primal_simplex<lp::mpq, lp::mpq>::find_maximal_solution();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue