~ubuntu-branches/ubuntu/wily/coq-doc/wily

« back to all changes in this revision

Viewing changes to contrib/omega/Omega.v

  • Committer: Bazaar Package Importer
  • Author(s): Stéphane Glondu, Stéphane Glondu, Samuel Mimram
  • Date: 2010-01-07 22:50:39 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20100107225039-n3cq82589u0qt0s2
Tags: 8.2pl1-1
[ Stéphane Glondu ]
* New upstream release (Closes: #563669)
  - remove patches
* Packaging overhaul:
  - use git, advertise it in Vcs-* fields of debian/control
  - use debhelper 7 and dh with override
  - use source format 3.0 (quilt)
* debian/control:
  - set Maintainer to d-o-m, set Uploaders to Sam and myself
  - add Homepage field
  - bump Standards-Version to 3.8.3
* Register PDF documentation into doc-base
* Add debian/watch
* Update debian/copyright

[ Samuel Mimram ]
* Change coq-doc's description to mention that it provides documentation in
  pdf format, not postscript, closes: #543545.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
(************************************************************************)
 
2
(*  v      *   The Coq Proof Assistant  /  The Coq Development Team     *)
 
3
(* <O___,, * CNRS-Ecole Polytechnique-INRIA Futurs-Universite Paris Sud *)
 
4
(*   \VV/  **************************************************************)
 
5
(*    //   *      This file is distributed under the terms of the       *)
 
6
(*         *       GNU Lesser General Public License Version 2.1        *)
 
7
(************************************************************************)
 
8
(**************************************************************************)
 
9
(*                                                                        *)
 
10
(* Omega: a solver of quantifier-free problems in Presburger Arithmetic   *)
 
11
(*                                                                        *)
 
12
(* Pierre Crégut (CNET, Lannion, France)                                  *)
 
13
(*                                                                        *)
 
14
(**************************************************************************)
 
15
 
 
16
(* $Id: Omega.v 10028 2007-07-18 22:38:06Z letouzey $ *)
 
17
 
 
18
(* We do not require [ZArith] anymore, but only what's necessary for Omega *)
 
19
Require Export ZArith_base.
 
20
Require Export OmegaLemmas.
 
21
Require Export PreOmega.
 
22
 
 
23
Hint Resolve Zle_refl Zplus_comm Zplus_assoc Zmult_comm Zmult_assoc Zplus_0_l
 
24
  Zplus_0_r Zmult_1_l Zplus_opp_l Zplus_opp_r Zmult_plus_distr_l
 
25
  Zmult_plus_distr_r: zarith.
 
26
 
 
27
Require Export Zhints.
 
28
 
 
29
(*
 
30
(* The constant minus is required in coq_omega.ml *)
 
31
Require Minus.
 
32
*)
 
33
 
 
34
Hint Extern 10 (_ = _ :>nat) => abstract omega: zarith.
 
35
Hint Extern 10 (_ <= _) => abstract omega: zarith.
 
36
Hint Extern 10 (_ < _) => abstract omega: zarith.
 
37
Hint Extern 10 (_ >= _) => abstract omega: zarith.
 
38
Hint Extern 10 (_ > _) => abstract omega: zarith.
 
39
 
 
40
Hint Extern 10 (_ <> _ :>nat) => abstract omega: zarith.
 
41
Hint Extern 10 (~ _ <= _) => abstract omega: zarith.
 
42
Hint Extern 10 (~ _ < _) => abstract omega: zarith.
 
43
Hint Extern 10 (~ _ >= _) => abstract omega: zarith.
 
44
Hint Extern 10 (~ _ > _) => abstract omega: zarith.
 
45
 
 
46
Hint Extern 10 (_ = _ :>Z) => abstract omega: zarith.
 
47
Hint Extern 10 (_ <= _)%Z => abstract omega: zarith.
 
48
Hint Extern 10 (_ < _)%Z => abstract omega: zarith.
 
49
Hint Extern 10 (_ >= _)%Z => abstract omega: zarith.
 
50
Hint Extern 10 (_ > _)%Z => abstract omega: zarith.
 
51
 
 
52
Hint Extern 10 (_ <> _ :>Z) => abstract omega: zarith.
 
53
Hint Extern 10 (~ (_ <= _)%Z) => abstract omega: zarith.
 
54
Hint Extern 10 (~ (_ < _)%Z) => abstract omega: zarith.
 
55
Hint Extern 10 (~ (_ >= _)%Z) => abstract omega: zarith.
 
56
Hint Extern 10 (~ (_ > _)%Z) => abstract omega: zarith.
 
57
 
 
58
Hint Extern 10 False => abstract omega: zarith.
 
 
b'\\ No newline at end of file'