]> granicus.if.org Git - graphviz/commitdiff
remove unused parameter to judge()
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 24 Apr 2021 17:27:59 +0000 (10:27 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 1 May 2021 00:35:17 +0000 (17:35 -0700)
rtest/generate_graph.py

index fe9d21e6926ea204f17a33740a28ab95a6eeecf0..6274d6c41afff4ba66333a8a1d45cadc2159635c 100755 (executable)
@@ -185,7 +185,7 @@ def main(args: List[str]) -> int:
   ) = list(range(3))
 
   # define our criteria for success
-  def judge(g: Graph, r: Result) -> int:
+  def judge(r: Result) -> int:
     if r.status == Result.TIMEOUT:
       return TOO_HOT
     if options.max_runtime is not None and options.max_runtime < r.runtime:
@@ -207,7 +207,7 @@ def main(args: List[str]) -> int:
   # run this to get a baseline
   result = process(argv, graph, options.max_runtime)
 
-  j = judge(graph, result)
+  j = judge(result)
 
   # only do the rest if we do not immediately hit the constraints
   if j != JUST_RIGHT:
@@ -235,7 +235,7 @@ def main(args: List[str]) -> int:
       print(f"graph with {c.nodes} nodes and {c.edges} used {r.rss}KB")
 
       # what did we learn?
-      j = judge(c, r)
+      j = judge(r)
       if j == TOO_COLD:
         lb = c
       elif j == JUST_RIGHT: