PROMETHEE-PROMSORT_assignments

Version:1.0.0
Provider:PUT
SOAP service’s name:
 PROMETHEE-PROMSORT_assignments-PUT (see SOAP requests for details)

Description

Computes class assignment for given alternatives using PromSort method. This method consists of two separated steps. In the first step alternatives are being assigned to categories basing on their relations with boundary profiles. This relations are computed using positive and negative flows. After first step alternative can be assigned to one or two categories. In the second step final assignment is calculated for each alternative assigned to two categories as a distance function between this alternative and alternatives assigned in first step to exactly one category. For other alternatives assignment from first step is final.

Contact: Maciej Uniejewski <maciej.uniejewski@gmail.com>

Web page: https://github.com/maciej7777/PrometheeDiviz

Inputs

(For outputs, see below)

criteria

Definitions of criteria, their scales and preference thresholds.

The input value should be a valid XMCDA document whose main tag is <criteria>.


alternatives

Alternatives to consider.

The input value should be a valid XMCDA document whose main tag is <alternatives>.


categories

Definitions of categories.

The input value should be a valid XMCDA document whose main tag is <categories>.


performance_table

The performances of boundary profiles.

The input value should be a valid XMCDA document whose main tag is <performanceTable>.


positive_flows

Positive flows of given alternatives and boundary profiles.

The input value should be a valid XMCDA document whose main tag is <alternativesValues>.


negative_flows

Negative flows of given alternatives and boundary profiles.

The input value should be a valid XMCDA document whose main tag is <alternativesValues>.


categories_profiles

Definitions of boundary profiles which should be used for classes (categories) representation.

The input value should be a valid XMCDA document whose main tag is <categoriesProfiles>.


categories_values

Marks of categories (higher mark means better category). Each category need to have unique mark from 1 to C, where C is a number of categories.

The input value should be a valid XMCDA document whose main tag is <categoriesValues>.


method_parameters

A set of parameters provided to tune up the module’s operation.

The input value should be a valid XMCDA document whose main tag is <methodParameters>. It must have the following form:

<methodParameters>
    <parameter id="cutPoint">
        <value>
            <real>%1</real>
        </value>
    </parameter>
    <parameter id="assignToABetterClass">
        <value>
            <boolean>%2</boolean>
        </value>
    </parameter>
</methodParameters>

where:

  • %1 is a parameter named “cut point”. This is a float, and the value should conform to the following constraint: The value should be between -1.0 and 1.0 (both included).. More formally, the constraint is:

    %1 <= 1.0 && %1 >= -1.0
    
  • %2 is a parameter named “assign to a better class”. This is a boolean. The default value is true.


Outputs

first_step_assignments

Assignments made in a first step of PromSort method. The assignment is imprecise, as some of alternatives can need next steps of PromSort method to return the final (precise) assignment.

The returned value is a XMCDA document whose main tag is <alternativesAffectations>.


final_assignments

Final assignments made in a PromSort method.

The returned value is a XMCDA document whose main tag is <alternativesAffectations>.


messages

Messages or errors generated by this module.

The returned value is a XMCDA document whose main tag is <methodMessages>.


Original xml description