UNPKG

automata-metaverse

Version:

Automaton execution engines for self-referential CanvasL/JSONL systems

23 lines 1.55 kB
/** * Automata Metaverse - Browser Entry Point * * Browser-compatible exports (excludes Node.js-specific features) */ export { AdvancedSelfReferencingAutomaton } from '../engines/advanced-automaton.js'; export { ContinuousAutomatonRunner } from '../engines/continuous-automaton.js'; export { OllamaAutomatonRunner } from '../engines/ollama-automaton.js'; export { MemoryOptimizedAutomaton } from '../engines/automaton-memory-optimized.js'; export { EvolvedAutomaton } from '../engines/automaton-evolved.js'; export { ScalableAutomaton } from '../engines/automaton-scalable.js'; export { LearningAutomaton } from '../engines/learning-automaton.js'; export { VectorClock } from '../vector-clock/vector-clock.js'; export { VectorClockAutomaton } from '../vector-clock/vector-clock-automaton.js'; export type { MetaLog, AutomatonMessage, SwarmContext } from '../vector-clock/vector-clock-automaton.js'; export type { AutomatonState as VectorClockAutomatonState } from '../vector-clock/vector-clock-automaton.js'; export { MLVectorClockAutomaton } from '../vector-clock/ml-vector-clock-automaton.js'; export { A0_TopologyAutomaton } from '../vector-clock/dimension-automata/0d-topology-automaton.js'; export { ObjectPool } from '../memory/object-pool.js'; export { assessMemoryPressure, formatMemory } from '../memory/memory-utils.js'; export type { MemoryPressure } from '../memory/memory-utils.js'; export type { AutomatonState, Transition, VerticalTransition, CanvasObject } from '../types/automaton-state.js'; //# sourceMappingURL=index.d.ts.map