blob: 3a50001b1f5717e975ca22362985e216e86e5175 (
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
|
(************************************************************************)
(* * The Coq Proof Assistant / The Coq Development Team *)
(* v * Copyright INRIA, CNRS and contributors *)
(* <O___,, * (see version control and CREDITS file for authors & dates) *)
(* \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) *)
(************************************************************************)
Require Import ZifyClasses ZifyInst.
Declare ML Module "zify_plugin".
(** [zify_pre_hook] and [zify_post_hook] are there to be redefined. *)
Ltac zify_pre_hook := idtac.
Ltac zify_post_hook := idtac.
Ltac zify_convert_to_euclidean_division_equations_flag := constr:(false).
(** [zify_internal_to_euclidean_division_equations] is bound in [PreOmega] *)
Ltac zify_internal_to_euclidean_division_equations := idtac.
Ltac zify_to_euclidean_division_equations :=
lazymatch zify_convert_to_euclidean_division_equations_flag with
| true => zify_internal_to_euclidean_division_equations
| false => idtac
end.
Ltac zify := intros;
zify_pre_hook ;
zify_elim_let ;
zify_op ;
(zify_iter_specs) ;
zify_to_euclidean_division_equations ;
zify_post_hook;
zify_saturate.
|