diff options
| author | msozeau | 2008-04-21 13:57:03 +0000 |
|---|---|---|
| committer | msozeau | 2008-04-21 13:57:03 +0000 |
| commit | 880a83169c1d1df8726d301a9f8a9fc845cc7d1e (patch) | |
| tree | 11f101429c8d8759b11a5b6589ec28e70585abcd /contrib/firstorder | |
| parent | 6a8e2a2e13978b40f246563d7cfda0ec58370006 (diff) | |
- Parameterize unification by two sets of transparent_state, one for open
term unification (for constant and variable delta unfolding) and one to
parameterize closed-term conversion. Most of the time conversion uses
full delta and unification does no delta. This fine-grain is used in
rewrite/setoid_rewrite, where only closed-term delta on global constants
is allowed.
- Interpret Hint Unfold as a directive for delta conversion in
auto/eauto when applying lemmas (i.e., for Resolve and Immediate hints).
- Remove ad-hoc support for this in typeclasses. Now setoid_rewrite
works correctly w.r.t. the old version regarding local definitions.
- Fix closed bugs which needed updating due to syntax modifications.
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@10824 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'contrib/firstorder')
| -rw-r--r-- | contrib/firstorder/sequent.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/firstorder/sequent.ml b/contrib/firstorder/sequent.ml index fd5972fb74..e540058f14 100644 --- a/contrib/firstorder/sequent.ml +++ b/contrib/firstorder/sequent.ml @@ -281,7 +281,7 @@ let create_with_auto_hints l depth gl= searchtable_map dbname with Not_found-> error ("Firstorder: "^dbname^" : No such Hint database") in - Hint_db.iter g hdb in + Hint_db.iter g (snd hdb) in List.iter h l; !seqref |
