From e66c71c8e024492e74b2e5dfba50def8db69b42a Mon Sep 17 00:00:00 2001 From: REllEK-IO Date: Mon, 6 May 2024 10:26:35 -0700 Subject: [PATCH] v0.1.60 --- package.json | 2 +- src/model/axium.ts | 2 +- src/model/stagePlanner.ts | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index e2ce96e..ee65279 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "stratimux", "license": "GPL-3.0", - "version": "0.1.59", + "version": "0.1.60", "description": "Unified Turing Machine", "main": "dist/index.js", "module": "dist/index.mjs", diff --git a/src/model/axium.ts b/src/model/axium.ts index 1bf95be..19dc240 100644 --- a/src/model/axium.ts +++ b/src/model/axium.ts @@ -159,7 +159,7 @@ export function createAxium( mode([action, _concepts, _axiumState.action$, _axiumState.concepts$]); const nextAction = getAxiumState(concepts).tail.shift(); if (nextAction) { - console.log('CHECK NEXT ACTION', nextAction, getAxiumState(concepts).tail); + // console.log('CHECK NEXT ACTION', nextAction, getAxiumState(concepts).tail); getAxiumState(concepts).action$.next(nextAction); } }); diff --git a/src/model/stagePlanner.ts b/src/model/stagePlanner.ts index 2ef9c53..d4cd31a 100644 --- a/src/model/stagePlanner.ts +++ b/src/model/stagePlanner.ts @@ -765,7 +765,7 @@ export class UnifiedSubject extends Subject { }); } } - console.log('CHECK BLOCKING', blocking, this.ques); + // console.log('CHECK BLOCKING', blocking, this.ques); const notification = (id: number) => { const ready = notifyIds.get(id); const plan = this.currentPlans.get(id); @@ -800,7 +800,7 @@ export class UnifiedSubject extends Subject { } next(concepts: Concepts) { - console.log('NEXT', getAxiumState(concepts).tail); + // console.log('NEXT', getAxiumState(concepts).tail); if (!this.closed) { this.handleChange(concepts); // We notify subs last to encourage actions being acted upon observations