generateHierarchy abstract method
Generates the hierarchical structure for AHP analysis.
Creates a hierarchy where each criteria is linked to all alternatives, representing the decision structure for pairwise comparisons.
Parameters:
criteria: List of validated criteriaalternative: List of validated alternatives
Returns: List of AhpHierarchy nodes
Throws:
- Exception if hierarchy generation fails
Implementation
Future<List<AhpHierarchy>> generateHierarchy(
List<AhpItem> criteria,
List<AhpItem> alternative,
);