You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It was a mistake to have FpChip contain RangeChip as a reference. This makes it near-impossible to create a struct that stores both FpChip and RangeChip at the same time (without using Rust crates like ouroboros or rental).
We should have either just had FpChip own RangeChip, or have it own Arc<RangeChip> (some minor performance impact).
The text was updated successfully, but these errors were encountered:
It was a mistake to have
FpChip
containRangeChip
as a reference. This makes it near-impossible to create a struct that stores bothFpChip
andRangeChip
at the same time (without using Rust crates likeouroboros
orrental
).We should have either just had
FpChip
ownRangeChip
, or have it ownArc<RangeChip>
(some minor performance impact).The text was updated successfully, but these errors were encountered: