mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 03:45:51 +00:00
add stand-alone simplex
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
c6a9dae00a
commit
26a3d2ca31
9 changed files with 1560 additions and 20 deletions
26
src/math/simplex/simplex.cpp
Normal file
26
src/math/simplex/simplex.cpp
Normal file
|
@ -0,0 +1,26 @@
|
|||
/*++
|
||||
Copyright (c) 2014 Microsoft Corporation
|
||||
|
||||
Module Name:
|
||||
|
||||
simplex.h
|
||||
|
||||
Abstract:
|
||||
|
||||
Multi-precision simplex tableau.
|
||||
|
||||
Author:
|
||||
|
||||
Nikolaj Bjorner (nbjorner) 2014-01-15
|
||||
|
||||
Notes:
|
||||
|
||||
--*/
|
||||
|
||||
#include"simplex.h"
|
||||
#include"sparse_matrix_def.h"
|
||||
#include"simplex_def.h"
|
||||
namespace simplex {
|
||||
template class simplex<mpz_ext>;
|
||||
template class simplex<mpq_ext>;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue