aboutsummaryrefslogtreecommitdiff
path: root/contrib/setoid_ring/newring.ml4
diff options
context:
space:
mode:
authormsozeau2008-09-03 14:45:58 +0000
committermsozeau2008-09-03 14:45:58 +0000
commitd1372d531ff912fe726ed4a79ac556d378a37375 (patch)
tree1e795415becf2c31251cc07d4fceab19e13d8618 /contrib/setoid_ring/newring.ml4
parent4da5cd28c6080ceeb66acc2163cf10a43e8bcade (diff)
Fix bug #1935, reworking the reflexivity, symmetry... tactics to use
the same typeclass method application tactic that's available to users. Modify a bit the _red tactics to accomodate the new setup and comment some dead code in setoid_replace. Next step is removing it completely. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@11355 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'contrib/setoid_ring/newring.ml4')
-rw-r--r--contrib/setoid_ring/newring.ml46
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/setoid_ring/newring.ml4 b/contrib/setoid_ring/newring.ml4
index a0ef164381..c3bc458e2d 100644
--- a/contrib/setoid_ring/newring.ml4
+++ b/contrib/setoid_ring/newring.ml4
@@ -456,9 +456,9 @@ let setoid_of_relation env a r =
try
lapp coq_mk_Setoid
[|a ; r ;
- Class_tactics.reflexive_proof env evm a r ;
- Class_tactics.symmetric_proof env evm a r ;
- Class_tactics.transitive_proof env evm a r |]
+ Class_tactics.get_reflexive_proof env evm a r ;
+ Class_tactics.get_symmetric_proof env evm a r ;
+ Class_tactics.get_transitive_proof env evm a r |]
with Not_found ->
error "cannot find setoid relation"