feat: first working version of new allocator

This commit is contained in:
Max Richter
2026-01-22 18:48:16 +01:00
committed by Max Richter
parent ff8c6637f8
commit 25ceb6e94f
18 changed files with 1614 additions and 217 deletions

View File

@@ -65,7 +65,7 @@ export const NodeSchema = z.object({
export type SerializedNode = z.infer<typeof NodeSchema>;
export type NodeDefinition = z.infer<typeof NodeDefinitionSchema> & {
execute(input: Int32Array): Int32Array;
execute(outputPos: number, args: number[]): number;
};
export type Socket = {