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();
}
});

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