mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 11:25:51 +00:00
24 lines
520 B
C++
24 lines
520 B
C++
/*++
|
|
Copyright (c) 2017 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
<name>
|
|
|
|
Abstract:
|
|
|
|
<abstract>
|
|
|
|
Author:
|
|
|
|
Lev Nachmanson (levnach)
|
|
|
|
Revision History:
|
|
|
|
|
|
--*/
|
|
#include "math/lp/lp_dual_simplex_def.h"
|
|
template lp::mpq lp::lp_dual_simplex<lp::mpq, lp::mpq>::get_current_cost() const;
|
|
template void lp::lp_dual_simplex<lp::mpq, lp::mpq>::find_maximal_solution();
|
|
template double lp::lp_dual_simplex<double, double>::get_current_cost() const;
|
|
template void lp::lp_dual_simplex<double, double>::find_maximal_solution();
|