aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar ppedrot <ppedrot@85f007b7-540e-0410-9357-904b9bb8a0f7>2012-07-20 09:05:48 +0000
committerGravatar ppedrot <ppedrot@85f007b7-540e-0410-9357-904b9bb8a0f7>2012-07-20 09:05:48 +0000
commit2285dae8af54043090ce5f8a59aa4162679714c6 (patch)
tree8d33b54855127e9183a158629e8432ae9fa7e5dd
parent476d70df227f6880e7fce29c30f2158f83ce05b9 (diff)
Let coqtop be a little more stupid in hint answer: otherwise, that
may blow up computation time by carelessly reducing potentially huge terms. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@15628 85f007b7-540e-0410-9357-904b9bb8a0f7
-rw-r--r--toplevel/ide_slave.ml10
1 files changed, 5 insertions, 5 deletions
diff --git a/toplevel/ide_slave.ml b/toplevel/ide_slave.ml
index 7c7738af3..03a30efa6 100644
--- a/toplevel/ide_slave.ml
+++ b/toplevel/ide_slave.ml
@@ -131,13 +131,13 @@ let hyp_next_tac sigma env (id,_,ast) =
("exact "^id_s),("exact "^id_s^".\n");
("generalize "^id_s),("generalize "^id_s^".\n");
("absurd <"^id_s^">"),("absurd "^type_s^".\n")
- ] @ (if Hipattern.is_equality_type ast then [
+ ] @ [
("discriminate "^id_s),("discriminate "^id_s^".\n");
("injection "^id_s),("injection "^id_s^".\n")
- ] else []) @ (if Hipattern.is_equality_type (snd (Reductionops.splay_prod env sigma ast)) then [
+ ] @ [
("rewrite "^id_s),("rewrite "^id_s^".\n");
("rewrite <- "^id_s),("rewrite <- "^id_s^".\n")
- ] else []) @ [
+ ] @ [
("elim "^id_s), ("elim "^id_s^".\n");
("inversion "^id_s), ("inversion "^id_s^".\n");
("inversion clear "^id_s), ("inversion_clear "^id_s^".\n")
@@ -149,11 +149,11 @@ let concl_next_tac sigma concl =
"intro";
"intros";
"intuition"
- ] @ (if Hipattern.is_equality_type (Goal.V82.concl sigma concl) then [
+ ] @ [
"reflexivity";
"discriminate";
"symmetry"
- ] else []) @ [
+ ] @ [
"assumption";
"omega";
"ring";