diff options
| author | Vincent Laporte | 2018-10-10 07:49:51 +0000 |
|---|---|---|
| committer | Vincent Laporte | 2018-10-10 07:49:51 +0000 |
| commit | 71280c8f38824e28bb0464ed15d951b542e33b48 (patch) | |
| tree | 5d17b1761dcde23a4204544f0d2c97fa38f8ca04 /plugins/micromega/simplex.mli | |
| parent | 66aa2d714f821593d24ab3959c22bc083b949815 (diff) | |
| parent | 7f445d1027cbcedf91f446bc86afea36840728ba (diff) | |
Merge PR #8457: Refactoring of Micromega plugin (including new Simplex based solver)
Diffstat (limited to 'plugins/micromega/simplex.mli')
| -rw-r--r-- | plugins/micromega/simplex.mli | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/plugins/micromega/simplex.mli b/plugins/micromega/simplex.mli new file mode 100644 index 0000000000..9f87e745eb --- /dev/null +++ b/plugins/micromega/simplex.mli @@ -0,0 +1,18 @@ +(************************************************************************) +(* * The Coq Proof Assistant / The Coq Development Team *) +(* v * INRIA, CNRS and contributors - Copyright 1999-2018 *) +(* <O___,, * (see CREDITS file for the list of authors) *) +(* \VV/ **************************************************************) +(* // * This file is distributed under the terms of the *) +(* * GNU Lesser General Public License Version 2.1 *) +(* * (see LICENSE file for the text of the license) *) +(************************************************************************) +open Polynomial + +val optimise : Vect.t -> cstr list -> (Num.num option * Num.num option) option + +val find_point : cstr list -> Vect.t option + +val find_unsat_certificate : cstr list -> Vect.t option + +val integer_solver : (cstr * ProofFormat.prf_rule) list -> ProofFormat.proof option |
