Skip to content

Commit

Permalink
Merge pull request #210 from Phuire-Research/StrongFast
Browse files Browse the repository at this point in the history
v0.1.60
  • Loading branch information
REllEK-IO committed May 6, 2024
2 parents 71ff549 + e66c71c commit 18483f2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/model/axium.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
});
Expand Down
4 changes: 2 additions & 2 deletions src/model/stagePlanner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -765,7 +765,7 @@ export class UnifiedSubject extends Subject<Concepts> {
});
}
}
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);
Expand Down Expand Up @@ -800,7 +800,7 @@ export class UnifiedSubject extends Subject<Concepts> {
}

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
Expand Down

0 comments on commit 18483f2

Please sign in to comment.