simple-squiggle

A restricted subset of Squiggle
Log | Files | Refs | README

mainAny.js (644B)


      1 // configuration
      2 export { config } from './configReadonly.js'; // functions and constants
      3 
      4 export * from './pureFunctionsAny.generated.js';
      5 export * from './impureFunctionsAny.generated.js';
      6 export * from './typeChecks.js'; // error classes
      7 
      8 export { IndexError } from '../error/IndexError.js';
      9 export { DimensionError } from '../error/DimensionError.js';
     10 export { ArgumentsError } from '../error/ArgumentsError.js'; // dependency groups
     11 
     12 export * from './dependenciesAny.generated.js'; // factory functions
     13 
     14 export * from '../factoriesAny.js'; // core
     15 
     16 export { create } from '../core/create.js';
     17 export { factory } from '../utils/factory.js';