Module Ltac_plugin.Rewrite
val rewrite_attributes : rewrite_attributes Attributes.attribute
type unary_strategy=|Subterms|Subterm|Innermost|Outermost|Bottomup|Topdown|Progress|Try|Any|Repeattype binary_strategy=|Composetype nary_strategy=|Choicetype ('constr, 'redexpr) strategy_ast=|StratId|StratFail|StratRefl|StratUnary of unary_strategy * ('constr, 'redexpr) strategy_ast|StratBinary of binary_strategy * ('constr, 'redexpr) strategy_ast * ('constr, 'redexpr) strategy_ast|StratNAry of nary_strategy * ('constr, 'redexpr) strategy_ast list|StratConstr of 'constr * bool|StratTerms of 'constr list|StratHints of bool * string|StratEval of 'redexpr|StratFold of 'constrtype rewrite_proof=|RewPrf of EConstr.constr * EConstr.constr|RewCast of Constr.cast_kindtype evars= Evd.evar_map * Evar.Set.ttype rewrite_result_info={rew_car : EConstr.constr;rew_from : EConstr.constr;rew_to : EConstr.constr;rew_prf : rewrite_proof;rew_evars : evars;}type rewrite_result=|Fail|Identity|Success of rewrite_result_infotype strategy
val strategy_of_ast : Tacinterp.interp_sign -> (Genintern.glob_constr_and_expr, Tacexpr.glob_red_expr) strategy_ast -> strategyval map_strategy : ('a -> 'b) -> ('c -> 'd) -> ('a, 'c) strategy_ast -> ('b, 'd) strategy_astval pr_strategy : ('a -> Pp.t) -> ('b -> Pp.t) -> ('a, 'b) strategy_ast -> Pp.tval cl_rewrite_clause_strat : strategy -> Names.Id.t option -> unit Proofview.tacticEntry point for user-level "rewrite_strat"
val cl_rewrite_clause : (Tacinterp.interp_sign * (Genintern.glob_constr_and_expr * Genintern.glob_constr_and_expr Tactypes.bindings)) -> bool -> Locus.occurrences -> Names.Id.t option -> unit Proofview.tacticEntry point for user-level "setoid_rewrite"
val is_applied_rewrite_relation : Environ.env -> Evd.evar_map -> EConstr.rel_context -> EConstr.constr -> EConstr.types optionval declare_relation : rewrite_attributes -> ?binders:Constrexpr.local_binder_expr list -> Constrexpr.constr_expr -> Constrexpr.constr_expr -> Names.Id.t -> Constrexpr.constr_expr option -> Constrexpr.constr_expr option -> Constrexpr.constr_expr option -> unitval add_setoid : rewrite_attributes -> Constrexpr.local_binder_expr list -> Constrexpr.constr_expr -> Constrexpr.constr_expr -> Constrexpr.constr_expr -> Names.Id.t -> unitval add_morphism_interactive : rewrite_attributes -> Constrexpr.constr_expr -> Names.Id.t -> Declare.Proof.tval add_morphism_as_parameter : rewrite_attributes -> Constrexpr.constr_expr -> Names.Id.t -> unitval add_morphism : rewrite_attributes -> Constrexpr.local_binder_expr list -> Constrexpr.constr_expr -> Constrexpr.constr_expr -> Names.Id.t -> Declare.Proof.tval get_reflexive_proof : Environ.env -> Evd.evar_map -> EConstr.constr -> EConstr.constr -> Evd.evar_map * EConstr.constrval get_symmetric_proof : Environ.env -> Evd.evar_map -> EConstr.constr -> EConstr.constr -> Evd.evar_map * EConstr.constrval get_transitive_proof : Environ.env -> Evd.evar_map -> EConstr.constr -> EConstr.constr -> Evd.evar_map * EConstr.constrval default_morphism : ((EConstr.types * EConstr.constr option) option list * (EConstr.types * EConstr.types option) option) -> EConstr.constr -> EConstr.constr * EConstr.constrval setoid_symmetry : unit Proofview.tacticval setoid_symmetry_in : Names.Id.t -> unit Proofview.tacticval setoid_reflexivity : unit Proofview.tacticval setoid_transitivity : EConstr.constr option -> unit Proofview.tacticval apply_strategy : strategy -> Environ.env -> Names.Id.Set.t -> EConstr.constr -> (bool * EConstr.constr) -> evars -> rewrite_result