diff options
| author | filliatr | 2000-12-04 10:28:55 +0000 |
|---|---|---|
| committer | filliatr | 2000-12-04 10:28:55 +0000 |
| commit | 7cffdbf4f4106950ba958d6f45fc16106069c9f7 (patch) | |
| tree | 572ff87d59b89a1eea82ff4909b7c985d98254bb /tactics | |
| parent | 408a1d674962625dfa90d45bc17f319d3e43c7ff (diff) | |
caractere opaque des constantes repris en compte
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@1045 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'tactics')
| -rw-r--r-- | tactics/leminv.ml | 2 | ||||
| -rw-r--r-- | tactics/tactics.ml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tactics/leminv.ml b/tactics/leminv.ml index 9290fd5a1c..238a1a0c51 100644 --- a/tactics/leminv.ml +++ b/tactics/leminv.ml @@ -232,7 +232,7 @@ let add_inversion_lemma name env sigma t sort dep inv_op = let invProof = inversion_scheme env sigma t sort dep inv_op in declare_constant name (ConstantEntry { const_entry_body = invProof; const_entry_type = None }, - NeverDischarge) + NeverDischarge,false) (* open Pfedit *) diff --git a/tactics/tactics.ml b/tactics/tactics.ml index 0e26d170e4..b45ba9d795 100644 --- a/tactics/tactics.ml +++ b/tactics/tactics.ml @@ -1679,7 +1679,7 @@ let abstract_subproof name tac gls = with e when catchable_exception e -> (delete_current_proof(); raise e) in (* Faudrait un peu fonctionnaliser cela *) - Declare.declare_constant na (ConstantEntry const,strength); + Declare.declare_constant na (ConstantEntry const,strength,true); let newenv = Global.env() in Declare.construct_reference newenv CCI na in |
