Skip to content

Commit 372a504

Browse files
committed
fix: default to iso
1 parent 40fe543 commit 372a504

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

evaluation_function/evaluation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -649,7 +649,7 @@ def _err(msg: str) -> Result:
649649
eval_params_dict['evaluation_type'] = answer_dict['evaluation_type']
650650
else:
651651
# return _err("evaluation_type is required in answer object")
652-
eval_params_dict['evaluation_type'] = None
652+
eval_params_dict['evaluation_type'] = "isomorphism" # default to isomorphism for backward compatibility with old tests that don't specify it
653653

654654
# Get graph structure flags from answer (with defaults)
655655
eval_params_dict['directed'] = ans.directed if ans.directed is not None else False

0 commit comments

Comments
 (0)