UNPKG

@barfinex/types

Version:

Core TypeScript type definitions and shared interfaces for the Barfinex ecosystem. Provides strongly-typed contracts for modules, services, and plugins.

24 lines 954 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.GeneticType = exports.GeneticWFOType = void 0; /** * Enum for walk-forward optimization (WFO) types in the genetic algorithm. */ var GeneticWFOType; (function (GeneticWFOType) { /** Rolling walk-forward optimization type. */ GeneticWFOType["Rolling"] = "rolling"; /** Anchored walk-forward optimization type. */ GeneticWFOType["Anchored"] = "anchored"; })(GeneticWFOType || (exports.GeneticWFOType = GeneticWFOType = {})); /** * Enum for genetic algorithm types representing biological behavior models. */ var GeneticType; (function (GeneticType) { /** Island model for distributed populations. */ GeneticType["Island"] = "island"; /** Classic genetic algorithm without additional grouping. */ GeneticType["None"] = "classic"; })(GeneticType || (exports.GeneticType = GeneticType = {})); //# sourceMappingURL=genetic.interface.js.map