src/HOL/Tools/ATP/atp_systems.ML
changeset 42521 02df3b78a438
parent 42449 494e4ac5b0f8
child 42535 3c1f302b3ee6
--- a/src/HOL/Tools/ATP/atp_systems.ML	Sun May 01 18:37:23 2011 +0200
+++ b/src/HOL/Tools/ATP/atp_systems.ML	Sun May 01 18:37:23 2011 +0200
@@ -16,7 +16,6 @@
      slices: unit -> (real * (bool * int)) list,
      proof_delims: (string * string) list,
      known_failures: (failure * string) list,
-     explicit_forall: bool,
      use_conjecture_for_hypotheses: bool}
 
   datatype e_weight_method =
@@ -63,7 +62,6 @@
    slices: unit -> (real * (bool * int)) list,
    proof_delims: (string * string) list,
    known_failures: (failure * string) list,
-   explicit_forall: bool,
    use_conjecture_for_hypotheses: bool}
 
 val known_perl_failures =
@@ -188,7 +186,6 @@
        "# Cannot determine problem status within resource limit"),
       (OutOfResources, "SZS status: ResourceOut"),
       (OutOfResources, "SZS status ResourceOut")],
-   explicit_forall = false,
    use_conjecture_for_hypotheses = true}
 
 val e = (eN, e_config)
@@ -217,7 +214,6 @@
       (MalformedInput, "Free Variable"),
       (SpassTooOld, "tptp2dfg"),
       (InternalError, "Please report this error")],
-   explicit_forall = true,
    use_conjecture_for_hypotheses = true}
 
 val spass = (spassN, spass_config)
@@ -251,7 +247,6 @@
       (Unprovable, "Termination reason: Satisfiable"),
       (VampireTooOld, "not a valid option"),
       (Interrupted, "Aborted by signal SIGINT")],
-   explicit_forall = false,
    use_conjecture_for_hypotheses = true}
 
 val vampire = (vampireN, vampire_config)
@@ -272,7 +267,6 @@
       (IncompleteUnprovable, "SZS status Satisfiable"),
       (ProofMissing, "\nunsat"),
       (ProofMissing, "SZS status Unsatisfiable")],
-   explicit_forall = true,
    use_conjecture_for_hypotheses = false}
 
 val z3_atp = (z3_atpN, z3_atp_config)
@@ -322,7 +316,6 @@
    known_failures =
      known_failures @ known_perl_failures @
      [(TimedOut, "says Timeout")],
-   explicit_forall = true,
    use_conjecture_for_hypotheses = use_conjecture_for_hypotheses}
 
 fun int_average f xs = fold (Integer.add o f) xs 0 div length xs