Generalize constraints to observables #48
1 changed files with 6 additions and 9 deletions
|
@ -292,15 +292,12 @@ impl Assembly {
|
|||
self.regulators.with_untracked(|regs| {
|
||||
for (_, reg) in regs {
|
||||
reg.set_point.with_untracked(|set_pt| {
|
||||
match set_pt {
|
||||
Absent => (),
|
||||
Present { value, .. } => {
|
||||
let subjects = reg.subjects;
|
||||
let row = elts[subjects.0].column_index.unwrap();
|
||||
let col = elts[subjects.1].column_index.unwrap();
|
||||
gram_to_be.push_sym(row, col, *value);
|
||||
}
|
||||
};
|
||||
if let Present { value, .. } = set_pt {
|
||||
let subjects = reg.subjects;
|
||||
glen marked this conversation as resolved
Outdated
|
||||
let row = elts[subjects.0].column_index.unwrap();
|
||||
let col = elts[subjects.1].column_index.unwrap();
|
||||
gram_to_be.push_sym(row, col, *value);
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue
Please illuminate me: Why do we not need to write
SpecifiedValue::Absent
here? I mean, I like the brevity, but I think I am unclear about when the bare variants are in scope...The declaration
puts all variants in scope. I currently have it just after the definition of
SpecifiedValue
, because it felt out of context elsewhere. For example, I usually expect use declarations at the top of the file to be external.Ah, the fact that
use
is sort of "lost" in the midst of the file suggests that SpecifiedValue should be in its own source file and imported here, so the relevantuse
is up where one would generally look. assembly.rs is getting pretty huge anyway... What are your thought about that factoring?Specified values and assemblies do seem like pretty independent concepts, so putting
SpecifiedValue
in its own module might be reasonable.Are you doing so in this PR? That's my (relatively mild) recommendation.
Yes, I'll do this—I was just waiting for a go-ahead from you. I should've mentioned that in the last comment.
Done (
309b088
).