
 This directory (tactics/) contains dynamically loaded tactics. Its content
 is organized as follows:

   .  Files for Coq basic tactics (available when running coq or coqtop),
      that is ProPre, Inv, Program, Equality.

   .  `include.ml' which install pretty-printers for Objective Caml
      (for debugging purposes only).

   .  A directory contrib/ containing tactics contributions in subdirectories.
      Load the file `path.v' (or insert it in your .coqrc) to add those
      directories to the loadpath of Coq.

	. linear/
		The Linear tactic which implements a decision procedure
	    	for Direct Predicate Calculus (see the Reference Manual,
		chapter 4).

	. extraction/
		A translation of extracted terms into ML syntax (see
		the documentation Extraction.dvi in doc/).

	. omega/
		The arithmetic tactic Omega.
	
	. natural/
		The Natural tactic (Translation of proofs into natural
		languages).

   . DHyp.{v,ml}   : Tacticals for associating tactics to term patterns,
     so that different action may be performed on a hypothesis (or the 
     conclusion) depending on the form of the type of the assumption.

   . GElim.{v,ml}  : A specialized form of (recursive) inversion.

