UNPKG

@syntest/search

Version:

The common core of the SynTest Framework

202 lines 8.87 kB
"use strict"; /* * Copyright 2020-2021 Delft University of Technology and SynTest contributors * * This file is part of SynTest Framework - SynTest Core. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ Object.defineProperty(exports, "__esModule", { value: true }); exports.MOSAFamily = void 0; const logging_1 = require("@syntest/logging"); const DominanceComparator_1 = require("../../comparators/DominanceComparator"); const CrowdingDistance_1 = require("../../operators/ranking/CrowdingDistance"); const diagnostics_1 = require("../../util/diagnostics"); const EvolutionaryAlgorithm_1 = require("./EvolutionaryAlgorithm"); /** * Many-objective Sorting Algorithm (MOSA) family of search algorithms. * * Based on: * Reformulating Branch Coverage as a Many-Objective Optimization Problem * A. Panichella; F. K. Kifetew; P. Tonella * * Used by MOSA and DynaMOSA. * * @author Mitchell Olsthoorn * @author Annibale Panichella */ class MOSAFamily extends EvolutionaryAlgorithm_1.EvolutionaryAlgorithm { constructor(objectiveManager, encodingSampler, procreation, populationSize) { super(objectiveManager, encodingSampler, procreation, populationSize); MOSAFamily.LOGGER = (0, logging_1.getLogger)("MOSAFamily"); } _environmentalSelection(size) { if (this._objectiveManager.getCurrentObjectives().size === 0 && this._objectiveManager.getUncoveredObjectives().size > 0) throw new Error((0, diagnostics_1.shouldNeverHappen)("Objective Manager")); if (this._objectiveManager.getCurrentObjectives().size === 0 && this._objectiveManager.getUncoveredObjectives().size === 0) return; // the search should end // non-dominated sorting MOSAFamily.LOGGER.debug(`Number of objectives = ${this._objectiveManager.getCurrentObjectives().size}`); const F = this.preferenceSortingAlgorithm(this._population, this._objectiveManager.getCurrentObjectives()); // select new population const nextPopulation = []; let remain = Math.max(size, F[0].length); let index = 0; MOSAFamily.LOGGER.debug(`First front size = ${F[0].length}`); // Obtain the next front let currentFront = F[index]; while (remain > 0 && remain >= currentFront.length) { // Assign crowding distance to individuals (0, CrowdingDistance_1.crowdingDistance)(currentFront, this._objectiveManager.getCurrentObjectives()); // Add the individuals of this front nextPopulation.push(...currentFront); // Decrement remain remain = remain - currentFront.length; // Obtain the next front index++; currentFront = F[index]; } // Remain is less than front(index).size, insert only the best one if (remain > 0 && currentFront.length > 0) { // front contains individuals to insert (0, CrowdingDistance_1.crowdingDistance)(currentFront, this._objectiveManager.getCurrentObjectives()); currentFront = currentFront.sort(function (a, b) { // sort in descending order of crowding distance return b.getCrowdingDistance() - a.getCrowdingDistance(); }); for (const individual of currentFront) { if (remain == 0) break; nextPopulation.push(individual); remain--; } } this._population = nextPopulation; } /** * See: Preference sorting as discussed in the TSE paper for DynaMOSA * * @param population * @param objectiveFunctions */ preferenceSortingAlgorithm(population, objectiveFunctions) { const fronts = [[]]; if (objectiveFunctions === null) { MOSAFamily.LOGGER.debug("It looks like a bug in MOSA: the set of objectives cannot be null"); return fronts; } if (objectiveFunctions.size === 0) { MOSAFamily.LOGGER.debug("Trivial case: no objectives for the sorting"); return fronts; } // compute the first front using the Preference Criteria const frontZero = this.preferenceCriterion(population, objectiveFunctions); for (const individual of frontZero) { fronts[0].push(individual); individual.setRank(0); } MOSAFamily.LOGGER.debug(`First front size: ${frontZero.length}`); MOSAFamily.LOGGER.debug(`Pop size: ${this._populationSize}`); MOSAFamily.LOGGER.debug(`Pop + Off size: ${population.length}`); // compute the remaining non-dominated Fronts const remainingSolutions = population; for (const selected of frontZero) { const index = remainingSolutions.indexOf(selected); remainingSolutions.splice(index, 1); } let selectedSolutions = frontZero.length; let frontIndex = 1; while (selectedSolutions < this._populationSize && remainingSolutions.length > 0) { const front = this.getNonDominatedFront(objectiveFunctions, remainingSolutions); fronts[frontIndex] = front; for (const solution of front) { solution.setRank(frontIndex); } for (const selected of front) { const index = remainingSolutions.indexOf(selected); remainingSolutions.splice(index, 1); } selectedSolutions += front.length; frontIndex += 1; } MOSAFamily.LOGGER.debug(`Number of fronts : ${fronts.length}`); MOSAFamily.LOGGER.debug(`Front zero size: ${fronts[0].length}`); MOSAFamily.LOGGER.debug(`# selected solutions: ${selectedSolutions}`); MOSAFamily.LOGGER.debug(`Pop size: ${this._populationSize}`); return fronts; } /** * It retrieves the front of non-dominated solutions from a list */ getNonDominatedFront(uncoveredObjectives, remainingSolutions) { const front = []; let isDominated; for (const current of remainingSolutions) { isDominated = false; const dominatedSolutions = []; for (const best of front) { const flag = DominanceComparator_1.DominanceComparator.compare(current, best, uncoveredObjectives); if (flag == -1) { dominatedSolutions.push(best); } if (flag == +1) { isDominated = true; } } if (isDominated) continue; for (const dominated of dominatedSolutions) { const index = front.indexOf(dominated); front.splice(index, 1); } front.push(current); } return front; } /** * Preference criterion in MOSA: for each objective, we select the test case closer to cover it. * * @param population * @param objectives list of objective to consider * @protected */ preferenceCriterion(population, objectives) { const frontZero = []; for (const objective of objectives) { let chosen = population[0]; for (let index = 1; index < population.length; index++) { const lowerFitness = population[index].getDistance(objective) < chosen.getDistance(objective); const sameFitness = population[index].getDistance(objective) == chosen.getDistance(objective); const smallerEncoding = population[index].getLength() < chosen.getLength(); // If lower fitness, then it is better // If same fitness, then we look at test case size // Secondary criterion based on tests lengths if (lowerFitness || (sameFitness && smallerEncoding)) { chosen = population[index]; } } // MOSA preference criterion: the best for a target gets Rank 0 chosen.setRank(0); if (!frontZero.includes(chosen)) frontZero.push(chosen); } return frontZero; } } exports.MOSAFamily = MOSAFamily; //# sourceMappingURL=MOSAFamily.js.map