File tree 3 files changed +7
-1
lines changed
3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,11 @@ class ParquetTestSet(TestSet):
21
21
"""Test set read from a Parquet file."""
22
22
23
23
def __init__ (self , path : Union [str , Path ]):
24
+ """Initialize test set.
25
+
26
+ Args:
27
+ path: Path to Parquet file to read problems from.
28
+ """
24
29
super ().__init__ ()
25
30
self .__df = pandas .read_parquet (path , engine = "pyarrow" )
26
31
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ def extend(
41
41
"""Extend problem list with another.
42
42
43
43
Args:
44
- problems : Other problem list.
44
+ problem_list : Other problem list.
45
45
"""
46
46
if isinstance (problem_list , ProblemList ):
47
47
for key in self .KEYS :
Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ def run(
39
39
only_solver: If set, only run that specific solver.
40
40
rerun: If set, rerun instances that already have a result.
41
41
rerun_timeouts: If set, also rerun known timeouts.
42
+ verbose: If set, log info messages for each QP solver call.
42
43
"""
43
44
if only_settings and only_settings not in test_set .solver_settings :
44
45
raise ValueError (
You can’t perform that action at this time.
0 commit comments