Skip to content

Commit

Permalink
Merge pull request #243 from Phuire-Research/Refinement
Browse files Browse the repository at this point in the history
Removed Jest-C
  • Loading branch information
REllEK-IO authored Nov 12, 2024
2 parents da2799d + 6b958d0 commit 4d5f48e
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 168 deletions.
Binary file modified .DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion The-Muxified-Turing-Machine.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# The Muxifie Turing Machine
# The Muxified Turing Machine
*This was sole informing document for the creation of Stratimux.*
The original Muxified Turing Machine was made possible by this author's ActionStrategy package whereby one can effectively map the entire run time of an application as it proceeds step by step. But its main unmentioned purpose was to create an equivalent structure to that of Neural Networks that would be explainable logically. As Neural Networks are effectively graphs and a ActionStrategy by default is a binary tree. These trees can be interpolated with one another to create an emergent graph structure. It is interesting to not that this form of application falls outside of the N/NP(deterministic/non-deterministic) scope of classification of applications. As in the NP paradigm, there is some probabilistic means in which the direction of the head changes. But within a Muxified Turing Machine, the head changes mechanically by way of the strategy pattern dictating what node would be ran based on some test of the state presented to that deciding method. And can be described as logically deterministic. As even within a Neural Network where there is some decision being made, that decision is still just a function that chooses the next decisions based on some input.

Expand Down
164 changes: 2 additions & 162 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "stratimux",
"license": "GPL-3.0",
"version": "0.2.42",
"version": "0.2.43",
"description": "Muxified Turing Machine",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down Expand Up @@ -52,7 +52,6 @@
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"jest": "^28.1.3",
"jest-cucumber": "^4.4.0",
"nodemon": "^3.0.1",
"onchange": "^7.1.0",
"prettier": "^2.7.1",
Expand Down
Binary file modified src/.DS_Store
Binary file not shown.
6 changes: 3 additions & 3 deletions src/model/quality.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export function createQuality<S extends Record<string, unknown>, T = void, C = v
keyedSelectors?: KeyedSelector[],
meta?: Record<string,unknown>,
analytics?: Record<string,unknown>,
): Quality<S, T, C> {
): Quality<S, T, any> {
return {
actionType,
actionCreator,
Expand Down Expand Up @@ -95,7 +95,7 @@ export function createQualityCard<S extends Record<string, unknown>, C = void>(q
keyedSelectors?: KeyedSelector[],
meta?: Record<string,unknown>,
analytics?: Record<string,unknown>
}): Quality<S, void, C> {
}): Quality<S, void, any> {
const bucket: [number, number, number, number][] = [[-1, -1, -1, -1]];
const actionCreator = prepareActionCreator(q.type, bucket);
if (q.methodCreator) {
Expand All @@ -115,7 +115,7 @@ export function createQualityCardWithPayload<
keyedSelectors?: KeyedSelector[],
meta?: Record<string,unknown>,
analytics?: Record<string,unknown>
}): Quality<S, T, C> {
}): Quality<S, T, any> {
const bucket: [number, number, number, number][] = [[-1, -1, -1, -1]];
const actionCreatorWithPayload = prepareActionWithPayloadCreator<T>(q.type, bucket);
if (q.methodCreator) {
Expand Down

0 comments on commit 4d5f48e

Please sign in to comment.