Generalize constraints to observables #48

Merged
glen merged 25 commits from Vectornaut/dyna3:observables_on_main into main 2025-03-10 23:43:25 +00:00
2 changed files with 1 additions and 8 deletions
Showing only changes of commit c58fed073d - Show all commits

View file

@ -269,7 +269,7 @@ impl Assembly {
console::log_1(&JsValue::from(
format!("Updated constraint with subjects ({}, {})", subjects.0, subjects.1)
));
if set_point.with(|set_pt| set_pt.is_present()) {
if set_point.with(|set_pt| matches!(set_pt, Present { .. })) {
self.realize();
}
});
glen marked this conversation as resolved Outdated
Outdated
Review

Should this really be pub? Where would a client of Assembly get a "free-floating" regulator to insert? Seems, at least for the moment, like a private helper for insert_new_regulator, and indeed, at the moment it is only called from there.

Should this really be `pub`? Where would a client of Assembly get a "free-floating" regulator to insert? Seems, at least for the moment, like a private helper for `insert_new_regulator`, and indeed, at the moment it is only called from there.

Good point! I've made insert_regulator private for now (c368a38).

Good point! I've made `insert_regulator` private for now (c368a38).

View file

@ -26,13 +26,6 @@ impl SpecifiedValue {
Present { spec, .. } => spec.clone()
}
}
pub fn is_present(&self) -> bool {
match self {
Absent => false,
Present { .. } => true
}
}
}
// we can try to turn a specification string into a `SpecifiedValue`. if the