= Analyzer = Operators implementing the `IAnalyzer` interface ---- == General == === !BestAverageWorstQualityAnalyzer === An operator which analyzes the best, average and worst quality of solutions in the scope tree. === !MinAverageMaxValueAnalyzer === An operator which analyzes the minimum, average and maximum of a value in the scope tree. === !MultiAnalyzer === An analyzer which applies arbitrary many other analyzers. === !QualityAnalyzer === An operator which analyzes the quality of solutions in the scope tree. === !ValueAnalyzer === An operator which analyzes a value in the scope tree. ---- == Tabu Search == === !TabuNeighborhoodAnalyzer === '''Operator Parameters:''' ||= Parameter =||= Description =|| || !IsTabu || A value that determines if a move is tabu or not. || || !PercentTabu || Indicates how much of the neighborhood is tabu. || || Results || The result collection where the value should be stored. || ---- == Artificial Ant Problem == === !BestAntTrailAnalyzer === An operator for analyzing the best ant trail of an [[Artificial Ant Problem]]. ||= Parameter =||= Description =|| || !BestSolution || || || !MaxTimeSteps || || || Quality || || || Results || The result collection where the value should be stored. || || !SymbolicExpressionTree || || || World || || ---- == Knapsack Problem == === !BestKnapsackSolutionAnalyzer === An operator for analyzing the best solution for a [[Knapsack Problem]]. ||= Parameter =||= Description =|| || !BestKnownQuality || || || !BestKnownSolution || || || !BestSolution || || || !BinaryVector || || || !KnapsackCapacity || || || Maximization || || || Quality || || || Results || The result collection where the value should be stored. || || !SymbolicExpressionTree || || || Values || || || Weights || || ---- == !OneMax Problem == === !BestOneMaxSolutionAnalyzer === An operator for analyzing the best solution for a [[OneMax Problem]]. ||= Parameter =||= Description =|| || !BestKnownQuality || || || !BestKnownSolution || || || !BinaryVector || || || Maximization || || || Quality || || || Results || The result collection where the value should be stored. || ---- == Single Objective Test Function Problem == === !BestSingleObjectiveTestFunctionSolutionAnalyzer === An operator for analyzing the best solution for a !SingleObjectiveTestFunction problem. ---- == Travelling Salesman Problem == === BestTSPSolutionAnalyzer === An operator for analyzing the best solution of a [[Travelling Salesman Problem]] given in path representation using city coordinates.