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
Is your feature request related to a problem? Please describe.
Currently a lot of care has to be taken when caching quantities during an iteration of the ProbabilisticLinearSolver. With the described changes below this can be made less error-prone in the component implementations making use of the state. Ideally, someone who designs a new component should not need to be aware of the details of the cache. The points below can improve this.
Describe the solution you'd like.
The following if implemented would improve the current state implementation:
Is your feature request related to a problem? Please describe.
Currently a lot of care has to be taken when caching quantities during an iteration of the
ProbabilisticLinearSolver
. With the described changes below this can be made less error-prone in the component implementations making use of the state. Ideally, someone who designs a new component should not need to be aware of the details of the cache. The points below can improve this.Describe the solution you'd like.
The following if implemented would improve the current state implementation:
state.cache
into acollections.defaultdict(list)
to avoid having to check for initialization of caches Reorthogonalization for a stable implementation of the probabilistic linear solver #580 (comment)_The text was updated successfully, but these errors were encountered: