blob: 281e940630d80f24e474ed9bdbfc770d8f9ed781 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
(***********************************************************************)
(* v * The Coq Proof Assistant / The Coq Development Team *)
(* <O___,, * INRIA-Rocquencourt & LRI-CNRS-Orsay *)
(* \VV/ *************************************************************)
(* // * This file is distributed under the terms of the *)
(* * GNU Lesser General Public License Version 2.1 *)
(***********************************************************************)
(* $Id$ *)
open Libnames
open Term
type instance=
Real of constr*int (* instance*valeur heuristique*)
| Phantom of constr (* domaine de quantification *)
val unif_atoms : int -> constr -> constr -> constr -> instance option
val give_right_instances : int -> constr -> (bool * constr) list ->
Sequent.t -> (constr*int) list option
val give_left_instances : Formula.left_formula list-> Sequent.t ->
(instance*global_reference) list
|