ParetoFront.AddSolutionFilter(String, Variable) Method

Top 

Description

Prevents solutions that do not meet the specified threshold from appearing in the ParetoFront.FilteredSolutions array. For maximizing objectives, only solutions with objective values greater than or equal to the threshold argument will pass the filter. For minimizing objectives, only solutions with objective values less than or equal to the threshold argument will pass the filter. Use the ParetoFront.ClearObjectiveFilters method to remove all filters.

 

Timing Precision Mode

This page describes functionality in nanosecond timing precision mode.

Click here to see the documentation for this object in millisecond timing precision mode.

 

Method Signature

ParetoFront.AddSolutionFilter(

String label,


Variable threshold)

 

 

Arguments

label


Description:

The label for the objective to filter by.

 

 

threshold


Description:

The value to compare the objective value to.

 

 

 

Syntax

myParetoFront1.AddSolutionFilter(myString1, myVariable1);

 

 

See also

ParetoFront Object