Incremental progress
This commit is contained in:
parent
39e6ade142
commit
2000d381a8
2 changed files with 1438 additions and 0 deletions
1436
builder/doc.html
Normal file
1436
builder/doc.html
Normal file
File diff suppressed because it is too large
Load diff
|
@ -1,3 +1,4 @@
|
|||
let all_nodes = [];
|
||||
class ComputeNode {
|
||||
/**
|
||||
* Make a generic compute node.
|
||||
|
@ -16,6 +17,7 @@ class ComputeNode {
|
|||
this.dirty = true;
|
||||
this.inputs_dirty = new Map();
|
||||
this.inputs_dirty_count = 0;
|
||||
all_nodes.push(this);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue