We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11d676f commit 8d7f43aCopy full SHA for 8d7f43a
ndarray-linalg/src/solve.rs
@@ -150,9 +150,9 @@ pub trait Solve<A: Scalar> {
150
pub struct LUFactorized<S: Data + RawDataClone> {
151
/// The factors `L` and `U`; the unit diagonal elements of `L` are not
152
/// stored.
153
- pub a: ArrayBase<S, Ix2>,
+ a: ArrayBase<S, Ix2>,
154
/// The pivot indices that define the permutation matrix `P`.
155
- pub ipiv: Pivot,
+ ipiv: Pivot,
156
}
157
158
impl<A, S> Solve<A> for LUFactorized<S>
0 commit comments