We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40fe543 commit 372a504Copy full SHA for 372a504
1 file changed
evaluation_function/evaluation.py
@@ -649,7 +649,7 @@ def _err(msg: str) -> Result:
649
eval_params_dict['evaluation_type'] = answer_dict['evaluation_type']
650
else:
651
# return _err("evaluation_type is required in answer object")
652
- eval_params_dict['evaluation_type'] = None
+ eval_params_dict['evaluation_type'] = "isomorphism" # default to isomorphism for backward compatibility with old tests that don't specify it
653
654
# Get graph structure flags from answer (with defaults)
655
eval_params_dict['directed'] = ans.directed if ans.directed is not None else False
0 commit comments