AlgaLib icon indicating copy to clipboard operation
AlgaLib copied to clipboard

Reduce number of `IdentityDictionaries` in `AlgaNode` by having sub-classes

Open vitreo12 opened this issue 3 years ago • 0 comments

Basically, develop subclasses that pair common functionalities, and use those in IdentityDictionaries:

AlgaInOutNodes {
    var <inNodes;
    var <outNodes;
}

AlgaNode {
    var inOutNodes = IdentityDictionary(param -> AlgainOutNodes);
}

vitreo12 avatar Oct 23 '20 10:10 vitreo12