UNPKG

simc-ast-builder

Version:

Parser and AST generator for SimulationCraft files

22 lines 618 B
"use strict"; /** * This file defines optimizer and parser-related types */ Object.defineProperty(exports, "__esModule", { value: true }); exports.DEFAULT_OPTIMIZER_OPTIONS = void 0; /** * Default optimizer options with all optimizations enabled */ exports.DEFAULT_OPTIMIZER_OPTIONS = { absorptionLaws: true, commonSubexpressions: true, complementaryTerms: true, conditionSorting: true, constantsAndIdentities: true, deMorgansLaw: true, doubleNegation: true, enabled: true, flattenNestedOperations: true, negatedFieldOptimization: false, }; //# sourceMappingURL=index.js.map