Reputation: 970
Ltac is used for automating proofs and modifying proof environment, outputting strings and defining complex notations. Can it be also used for "smart" modifications of Coq environment? Here are two failed attempts:
Variable Phy: Set.
Fail Let pp (x:Type) := ltac: (match type of x with
| Set => constr: (Reset Phy)
| _ => idtac end).
(*Cannot infer an internal placeholder of type "Type" in environment: x : Type*)
Fail Ltac pp x := match type of x with
| Set => constr: (Reset Phy)
| _ => idtac end.
(*The reference Reset was not found in the current environment.*)
Also, if this isn't a job for Ltac, maybe there's another way?
Upvotes: 0
Views: 151
Reputation: 6852
Short answer: No.
Even if you would achieve to do that using some hack, it will stop working in the next Coq version.
The reason is because the interpretation of ltac commands happens at a lower level than document interpretation. This choice could be debatable, but it is the way it is. Tactics run in a constant environment and have only access to the proof. Thus, the most you can do from ltac is to modify the current proof.
Your error happens because Reset
is indeed parsed at a higher level which ltac doesn't have access to.
For programmatic manipulation of the environment and documents themselves, the you need to rely in ML code or maybe you could try to script some interfacing tool such as SerAPI to achieve what you want.
Upvotes: 2