Generalize constraints to observables #48
1 changed files with 2 additions and 2 deletions
|
@ -31,8 +31,8 @@ pub struct Element {
|
|||
pub color: ElementColor,
|
||||
pub representation: Signal<DVector<f64>>,
|
||||
|
||||
glen marked this conversation as resolved
Outdated
|
||||
// the regulators that affect this element. the ambient assembly is
|
||||
// responsible for keeping this set up to date
|
||||
// All regulators with this element as a subject. The assembly owning
|
||||
// this element is responsible for keeping this set up to date.
|
||||
pub regulators: Signal<BTreeSet<RegulatorKey>>,
|
||||
|
||||
// a serial number, assigned by `Element::new`, that uniquely identifies
|
||||
|
|
Loading…
Add table
Reference in a new issue
Is it worth commenting that this is intended to be the set of all regulators that have this Element as a subject? Or is that entirely clear? Similarly, I think it should be noted somewhere, perhaps as a comment here, the mechanism/responsibility for maintaining that information. When a regulator is inserted into an Assembly, is it the assembly's responsibility to tell each of the subjects? I imagine that's the design, but it would be good to have it written down somewhere.
I mean, of course by now I have gotten to that section of the code and seen that what I surmised is exactly what's happening, but I think the obligations of the various structures should be made clear not just in the implementing code in case some later coder comes along and doesn't realize that if the Assembly modifies regulators in some way, it's the Assembly's responsibility to update this information on the elements...
I've added a comment to this effect (
7cbd926
). Let me know if I should make it more detailed.Detail level was fine. I just tweaked grammar/explicitness level. Resolving.