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