tuned signature;
authorwenzelm
Mon, 15 Mar 2021 11:50:58 +0100
changeset 73441 f2167948157e
parent 73440 3696bb4085ed
child 73442 855a3c18b9c8
tuned signature;
src/HOL/Tools/ATP/system_on_tptp.scala
--- a/src/HOL/Tools/ATP/system_on_tptp.scala	Mon Mar 15 11:43:56 2021 +0100
+++ b/src/HOL/Tools/ATP/system_on_tptp.scala	Mon Mar 15 11:50:58 2021 +0100
@@ -22,12 +22,11 @@
     parameters: List[(String, Any)],
     timeout: Time = HTTP.Client.default_timeout): HTTP.Content =
   {
-    val parameters0 =
-      List("NoHTML" -> 1, "QuietFlag" -> "-q0")
-        .filterNot(p0 => parameters.exists(p => p0._1 == p._1))
     try {
-      HTTP.Client.post(url, parameters0 ::: parameters,
-        timeout = timeout, user_agent = "Sledgehammer")
+      HTTP.Client.post(url,
+        ("NoHTML" -> 1) :: parameters,
+        timeout = timeout,
+        user_agent = "Sledgehammer")
     }
     catch { case ERROR(msg) => cat_error("Failed to access SystemOnTPTP server", msg) }
   }
@@ -36,7 +35,10 @@
   /* list systems */
 
   def list_systems(url: URL): HTTP.Content =
-    post_request(url, List("SubmitButton" -> "ListSystems", "ListStatus" -> "READY"))
+    post_request(url,
+      List("SubmitButton" -> "ListSystems",
+        "ListStatus" -> "READY",
+        "QuietFlag" -> "-q0"))
 
   object List_Systems extends Scala.Fun("SystemOnTPTP.list_systems", thread = true)
   {
@@ -74,8 +76,8 @@
     {
       val List(url, system, problem_path, extra, Value.Int(timeout)) = Library.split_strings0(arg)
       val problem = File.read(Path.explode(problem_path))
+
       val res = run_system(Url(url), system, problem, extra = extra, timeout = Time.ms(timeout))
-
       val text = res.text
       val timing = res.elapsed_time.ms