I have goal
quad X Y
, but I don't remember definition of "quad" and I don't want to start searching of its definition.
Is there a tactic that allow me rapidly substitute quad with its definition?
Record quad (X Y:Type):= { x:X; y:Y}.
Or I have to remember and use
refine (@Build_quad _ _).
?
constructor
should work is most cases. You may also findHint Constructors
useful. – ejgallegoPrint quad.
will give you the desired information. If you're using ProofGeneral, you need to move the cursor (point) over the entity of interest and hitC-c C-a C-p
andEnter
. – Anton Trunov