Skip to content

Commit

Permalink
Fix: issue #98. Add impl of required abstract method
Browse files Browse the repository at this point in the history
  • Loading branch information
jmhorcas committed Aug 1, 2024
1 parent 360dfca commit 5007026
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions flamapy/metamodels/fm_metamodel/operations/fm_metrics.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ def __init__(self) -> None:
self._constraints_per_features: list[int] = []
self._feature_ancestors: list[int] = []

def model_type_extension(self) -> str:
return 'fm'

def get_result(self) -> list[dict[str, Any]]:
return self.result

Expand Down

0 comments on commit 5007026

Please sign in to comment.