@turing-machine-js/machine 2.0.1 → 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -6,3 +6,7 @@ export { default as Tape } from './classes/Tape';
6
6
  export { default as TapeBlock } from './classes/TapeBlock';
7
7
  export { default as TapeCommand, movements, symbolCommands } from './classes/TapeCommand';
8
8
  export { default as TuringMachine } from './classes/TuringMachine';
9
+ export { type Graph, type GraphNode, type GraphTransition, type GraphCommand } from './utilities/graph';
10
+ export { toMermaid, fromMermaid } from './utilities/graphFormats';
11
+ export { summarize, summarizeGraph, type GraphSummary } from './utilities/introspection';
12
+ export { equivalentOn, type Runnable, type EquivalenceCase, type EquivalenceResult, type EquivalenceReport, } from './utilities/equivalence';
package/dist/index.js CHANGED
@@ -6,3 +6,6 @@ export { default as Tape } from './classes/Tape';
6
6
  export { default as TapeBlock } from './classes/TapeBlock';
7
7
  export { default as TapeCommand, movements, symbolCommands } from './classes/TapeCommand';
8
8
  export { default as TuringMachine } from './classes/TuringMachine';
9
+ export { toMermaid, fromMermaid } from './utilities/graphFormats';
10
+ export { summarize, summarizeGraph } from './utilities/introspection';
11
+ export { equivalentOn, } from './utilities/equivalence';