Incremental progress

This commit is contained in:
hppeng 2022-06-24 20:26:26 -07:00
parent 39e6ade142
commit 2000d381a8
2 changed files with 1438 additions and 0 deletions

1436
builder/doc.html Normal file

File diff suppressed because it is too large Load diff

View file

@ -1,3 +1,4 @@
let all_nodes = [];
class ComputeNode { class ComputeNode {
/** /**
* Make a generic compute node. * Make a generic compute node.
@ -16,6 +17,7 @@ class ComputeNode {
this.dirty = true; this.dirty = true;
this.inputs_dirty = new Map(); this.inputs_dirty = new Map();
this.inputs_dirty_count = 0; this.inputs_dirty_count = 0;
all_nodes.push(this);
} }
/** /**