summaryrefslogtreecommitdiff
path: root/theories/Arith/Max.v
blob: b4c4d7ad95edc69d0a5e574981b4ea2de320b621 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
(************************************************************************)
(*  v      *   The Coq Proof Assistant  /  The Coq Development Team     *)
(* <O___,, *   INRIA - CNRS - LIX - LRI - PPS - Copyright 1999-2010     *)
(*   \VV/  **************************************************************)
(*    //   *      This file is distributed under the terms of the       *)
(*         *       GNU Lesser General Public License Version 2.1        *)
(************************************************************************)

(*i $Id: Max.v 13323 2010-07-24 15:57:30Z herbelin $ i*)

(** THIS FILE IS DEPRECATED. Use [MinMax] instead. *)

Require Export MinMax.

Local Open Scope nat_scope.
Implicit Types m n p : nat.

Notation max := MinMax.max (only parsing).

Definition max_0_l := max_0_l.
Definition max_0_r := max_0_r.
Definition succ_max_distr := succ_max_distr.
Definition plus_max_distr_l := plus_max_distr_l.
Definition plus_max_distr_r := plus_max_distr_r.
Definition max_case_strong := max_case_strong.
Definition max_spec := max_spec.
Definition max_dec := max_dec.
Definition max_case := max_case.
Definition max_idempotent := max_id.
Definition max_assoc := max_assoc.
Definition max_comm := max_comm.
Definition max_l := max_l.
Definition max_r := max_r.
Definition le_max_l := le_max_l.
Definition le_max_r := le_max_r.
Definition max_lub_l := max_lub_l.
Definition max_lub_r := max_lub_r.
Definition max_lub := max_lub.

(* begin hide *)
(* Compatibility *)
Notation max_case2 := max_case (only parsing).
Notation max_SS := succ_max_distr (only parsing).
(* end hide *)