File tree 3 files changed +3
-6
lines changed
3 files changed +3
-6
lines changed Original file line number Diff line number Diff line change 15
15
DECLARE PLUGIN "coq-paramcoq.plugin"
16
16
17
17
{
18
- open Ltac_plugin
19
18
open Feedback
20
19
open Stdarg
21
- open Tacarg
22
20
open Parametricity
23
21
open Declare_translation
24
22
}
25
23
26
24
VERNAC COMMAND EXTEND SetParametricityTactic CLASSIFIED AS SIDEFF
27
25
| #[ locality = Tactic_option.tac_option_locality; ]
28
- [ "Parametricity" "Tactic" ":=" tactic (t) ] -> {
26
+ [ "Parametricity" "Tactic" ":=" generic_tactic (t) ] -> {
29
27
Relations.set_parametricity_tactic
30
28
locality
31
- (Tacintern.glob_tactic t) }
29
+ (Gentactic.intern (Global.env()) t) }
32
30
END
33
31
34
32
VERNAC COMMAND EXTEND ShowTable CLASSIFIED AS QUERY
Original file line number Diff line number Diff line change 3
3
(public_name coq-paramcoq.plugin)
4
4
(synopsis "Plugin for generating parametricity statements to perform refinement proofs")
5
5
(flags :standard -rectypes -w -9-27)
6
- (libraries coq-core.plugins.ltac))
6
+ (libraries coq-core.plugins.ltac)) ; not sure if ltac dep is real
7
7
8
8
(coq.pp (modules abstraction))
Original file line number Diff line number Diff line change 10
10
(* *************************************************************************)
11
11
12
12
13
- open Ltac_plugin
14
13
open Names
15
14
open Globnames
16
15
open Libobject
You can’t perform that action at this time.
0 commit comments