generatePairwiseCriteria abstract method

Future<List<PairwiseComparisonInput>> generatePairwiseCriteria(
  1. List<AhpItem> criteria
)

Generates pairwise comparison templates for criteria.

Creates all possible pairwise combinations of criteria that need to be compared. Each comparison will be filled with preference values during the decision-making process.

Parameters:

  • criteria: List of criteria to compare

Returns: List of PairwiseComparisonInput templates

Throws:

  • Exception if generation fails

Implementation

Future<List<PairwiseComparisonInput>> generatePairwiseCriteria(
  List<AhpItem> criteria,
);