From 46f89a89b444b0f1e6b25773c59127ccfbe07d0e Mon Sep 17 00:00:00 2001 From: Claudio Sacerdoti Coen Date: Tue, 10 Oct 2006 08:00:32 +0000 Subject: [PATCH 1/1] Sorry, bug introduced by me yesterday now fixed. auto should be the new one even when the paramodulation flag is given. --- components/tactics/autoTactic.ml | 2 ++ 1 file changed, 2 insertions(+) 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 -- 2.39.2