From: Claudio Sacerdoti Coen Date: Tue, 10 Oct 2006 08:00:32 +0000 (+0000) Subject: Sorry, bug introduced by me yesterday now fixed. X-Git-Tag: 0.4.95@7852~913 X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=commitdiff_plain;h=46f89a89b444b0f1e6b25773c59127ccfbe07d0e;hp=3234ad630868fed918d9f3408da53e39e507d3d9;p=helm.git Sorry, bug introduced by me yesterday now fixed. auto should be the new one even when the paramodulation flag is given. --- diff --git a/components/tactics/autoTactic.ml b/components/tactics/autoTactic.ml index 25696d794..cdfcf8c73 100644 --- a/components/tactics/autoTactic.ml +++ b/components/tactics/autoTactic.ml @@ -322,6 +322,8 @@ let auto_tac ~params ~(dbd:HMysql.dbd) (proof, goal) = let int = int params in let bool = bool params in let newauto = bool "new" false in + let use_only_paramod = bool "paramodulation" false in + let newauto = if use_only_paramod then true else newauto in let depth = int "depth" ((AutoTypes.default_flags()).AutoTypes.maxdepth) in let width = int "width" ((AutoTypes.default_flags()).AutoTypes.maxwidth) in if not newauto then