generatePairwiseAlternative abstract method

Future<List<PairwiseAlternativeInput>> generatePairwiseAlternative(
  1. List<AhpHierarchy> nodes
)

Generates pairwise comparison templates for alternatives under each criteria.

For each criteria in the hierarchy, creates pairwise combinations of alternatives that need to be compared.

Parameters:

  • nodes: Hierarchy structure containing criteria and alternatives

Returns: List of PairwiseAlternativeInput templates

Throws:

  • Exception if generation fails

Implementation

Future<List<PairwiseAlternativeInput>> generatePairwiseAlternative(
  List<AhpHierarchy> nodes,
);