diff options
Diffstat (limited to 'contrib/fourier/Fourier.v')
-rw-r--r-- | contrib/fourier/Fourier.v | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/contrib/fourier/Fourier.v b/contrib/fourier/Fourier.v new file mode 100644 index 00000000..f6faf94c --- /dev/null +++ b/contrib/fourier/Fourier.v @@ -0,0 +1,25 @@ +(************************************************************************) +(* v * The Coq Proof Assistant / The Coq Development Team *) +(* <O___,, * CNRS-Ecole Polytechnique-INRIA Futurs-Universite Paris Sud *) +(* \VV/ **************************************************************) +(* // * This file is distributed under the terms of the *) +(* * GNU Lesser General Public License Version 2.1 *) +(************************************************************************) + +(* $Id: Fourier.v,v 1.4.2.1 2004/07/16 19:30:11 herbelin Exp $ *) + +(* "Fourier's method to solve linear inequations/equations systems.".*) + +Declare ML Module "quote". +Declare ML Module "ring". +Declare ML Module "fourier". +Declare ML Module "fourierR". +Declare ML Module "field". + +Require Export Fourier_util. +Require Export Field. +Require Export DiscrR. + +Ltac fourier := abstract (fourierz; field; discrR). + +Ltac fourier_eq := apply Rge_antisym; fourier. |