Interface ComputationSystem

interface ComputationSystem {
    asTuple(): unknown;
    clone(): ComputationSystem;
    getConfiguration(): unknown;
    isStopped(): boolean;
    proceed(step): void;
    start(arg): void;
}

Implemented by

Methods

Generated using TypeDoc