Module type Coq.Arg
val prove_hyp : Format.formatter -> string -> hyp -> unitval prove_lemma : Format.formatter -> string -> lemma -> unitval prove_assumption : Format.formatter -> string -> assumption -> unitProving function for hypotheses, lemmas and assumptions.
prove_x fmt name xshould provex, and be such that after executing it,xis among the coq hypotheses under the namename. The hypothesis should be the encoding of the given clause, i.e for a clausea \/ not b \/ c, the proved hypothesis should be:~ a -> ~ ~ b -> ~ c -> False, keeping the same order as the one in the atoms array of the clause.