Skip to content

Commit d9746e3

Browse files
committed
Make add_contexts an optional parameter. Default value is False.
1 parent e5ca89c commit d9746e3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cfpq_cli/run_all_pairs_cflr.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ def run_all_pairs_cflr(
2020
algo_name: str,
2121
graph_path: str,
2222
grammar_path: str,
23-
add_contexts: bool,
2423
time_limit_sec: Optional[int],
2524
out_path: Optional[str],
26-
settings: List[AlgoSetting]
25+
settings: List[AlgoSetting],
26+
add_contexts: bool = False,
2727
):
2828
algo = get_all_pairs_cfl_reachability_algo(algo_name)
2929
if add_contexts:

0 commit comments

Comments
 (0)