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
Adds a trait which is generic around its input parameters for computing
linear combinations.
This allows for different strategies depending on the input parameter
type, for example using stack-allocated intermediates sized to match an
input array, which works on `no_std` targets.
Or, if a slice is passed, intermediate `Vec`s can be used when the
`alloc` feature is available.
Also adds a blanket impl for the old `LinearCombination` trait which
calls the new trait.
0 commit comments