diff options
| author | ppedrot | 2012-10-29 13:02:23 +0000 |
|---|---|---|
| committer | ppedrot | 2012-10-29 13:02:23 +0000 |
| commit | 278517722988d040cb8da822e319d723670ac519 (patch) | |
| tree | 92316184aec004570c6567f0d585167e47dd52ae /tactics | |
| parent | 0699ef2ffba984e7b7552787894b142dd924f66a (diff) | |
Removed many calls to OCaml generic equality. This was done by
writing our own comparison functions, and enforcing monomorphization
in many places. This should be more efficient, btw. Still a work
in progress.
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@15932 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'tactics')
| -rw-r--r-- | tactics/autorewrite.ml | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tactics/autorewrite.ml b/tactics/autorewrite.ml index 6a96d5bb7c..e1a4d4f36e 100644 --- a/tactics/autorewrite.ml +++ b/tactics/autorewrite.ml @@ -41,9 +41,7 @@ module HintIdent = struct type t = int * rew_rule - let compare (i,t) (i',t') = - Pervasives.compare i i' -(* Pervasives.compare t.rew_lemma t'.rew_lemma *) + let compare (i, t) (j, t') = i - j let subst s (i,t) = (i,subst_hint s t) |
