Library Coq.ZArith.Zhints


This file centralizes the lemmas about Z, classifying them according to the way they can be used in automatic search
Lemmas which clearly leads to simplification during proof search are declared as Hints. A definite status (Hint or not) for the other lemmas remains to be given
Structure of the file
  • simplification lemmas (only those are declared as Hints)
  • reversible lemmas relating operators
  • useful Bottom-up lemmas
  • irreversible lemmas with meta-variables
  • unclear or too specific lemmas
  • lemmas to be used as rewrite rules
Lemmas involving positive and compare are not taken into account

Require Import BinInt.
Require Import Zorder.
Require Import Zmin.
Require Import Zabs.
Require Import Zcompare.
Require Import Znat.
Require Import auxiliary.
Require Import Zmisc.
Require Import Wf_Z.

Simplification lemmas

No subgoal or smaller subgoals

Hint Resolve
  

Reversible simplification lemmas (no loss of information)

Should clearly be declared as hints
Lemmas ending by eq
  Zsucc_eq_compat

  
Lemmas ending by Z.gt
Lemmas ending by Z.lt
Lemmas ending by Z.le

Irreversible simplification lemmas

Probably to be declared as hints, when no other simplification is possible
Lemmas ending by eq
Lemmas ending by Z.ge
Lemmas ending by Z.lt
Lemmas ending by Z.le