UNPKG

@syntest/search

Version:

The common core of the SynTest Framework

94 lines 5.25 kB
"use strict"; /* * Copyright 2020-2023 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. */ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __exportStar = (this && this.__exportStar) || function(m, exports) { for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); }; Object.defineProperty(exports, "__esModule", { value: true }); // Search __exportStar(require("./lib/Archive"), exports); __exportStar(require("./lib/Decoder"), exports); __exportStar(require("./lib/Encoding"), exports); __exportStar(require("./lib/EncodingRunner"), exports); __exportStar(require("./lib/EncodingSampler"), exports); __exportStar(require("./lib/ExecutionResult"), exports); __exportStar(require("./lib/SearchSubject"), exports); // - Budget __exportStar(require("./lib/budget/Budget"), exports); __exportStar(require("./lib/budget/BudgetListener"), exports); __exportStar(require("./lib/budget/BudgetManager"), exports); __exportStar(require("./lib/budget/BudgetType"), exports); __exportStar(require("./lib/budget/EvaluationBudget"), exports); __exportStar(require("./lib/budget/IterationBudget"), exports); __exportStar(require("./lib/budget/SearchTimeBudget"), exports); __exportStar(require("./lib/budget/StagnationBudget"), exports); __exportStar(require("./lib/budget/TotalTimeBudget"), exports); // - Comparators __exportStar(require("./lib/comparators/DominanceComparator"), exports); // - Algorithms __exportStar(require("./lib/algorithms/RandomSearch"), exports); __exportStar(require("./lib/algorithms/SearchAlgorithm"), exports); // - - Evolutionary __exportStar(require("./lib/algorithms/evolutionary/EvolutionaryAlgorithm"), exports); __exportStar(require("./lib/algorithms/evolutionary/NSGAII"), exports); __exportStar(require("./lib/algorithms/evolutionary/MOSAFamily"), exports); // - Objective __exportStar(require("./lib/objective/heuristics/ApproachLevel"), exports); __exportStar(require("./lib/objective/heuristics/BranchDistance"), exports); __exportStar(require("./lib/objective/BranchObjectiveFunction"), exports); __exportStar(require("./lib/objective/ExceptionObjectiveFunction"), exports); __exportStar(require("./lib/objective/FunctionObjectiveFunction"), exports); __exportStar(require("./lib/objective/ImplicitBranchObjectiveFunction"), exports); __exportStar(require("./lib/objective/ObjectiveFunction"), exports); __exportStar(require("./lib/objective/managers/ArchiveBasedObjectiveManager"), exports); __exportStar(require("./lib/objective/managers/ObjectiveManager"), exports); __exportStar(require("./lib/objective/managers/PopulationBasedObjectiveManager"), exports); __exportStar(require("./lib/objective/managers/SimpleObjectiveManager"), exports); __exportStar(require("./lib/objective/managers/StructuralObjectiveManager"), exports); __exportStar(require("./lib/objective/managers/StructuralUncoveredObjectiveManager"), exports); __exportStar(require("./lib/objective/managers/TrackingObjectiveManager"), exports); __exportStar(require("./lib/objective/managers/UncoveredObjectiveManager"), exports); __exportStar(require("./lib/objective/secondary/LengthObjectiveComparator"), exports); __exportStar(require("./lib/objective/secondary/SecondaryObjectiveComparator"), exports); // - Operator __exportStar(require("./lib/operators/crossover/Crossover"), exports); __exportStar(require("./lib/operators/procreation/DefaultProcreation"), exports); __exportStar(require("./lib/operators/procreation/Procreation"), exports); __exportStar(require("./lib/operators/ranking/CrowdingDistance"), exports); __exportStar(require("./lib/operators/ranking/FastNonDomSorting"), exports); __exportStar(require("./lib/operators/selection/TournamentSelection"), exports); // - Termination __exportStar(require("./lib/termination/SignalTerminationTrigger"), exports); __exportStar(require("./lib/termination/TerminationManager"), exports); __exportStar(require("./lib/termination/TerminationTrigger"), exports); // Util __exportStar(require("./lib/Trace"), exports); __exportStar(require("./lib/util/diagnostics"), exports); __exportStar(require("./lib/util/Events"), exports); //# sourceMappingURL=index.js.map