From 456a5a84e7974e01aaec0ac7a25e853c65f70c4f Mon Sep 17 00:00:00 2001 From: Nestor Demeure Date: Sat, 2 Nov 2019 09:08:16 +0100 Subject: [PATCH] Used Storage trait for solve method See issue 667 : https://github.com/rustsim/nalgebra/issues/667 --- src/linalg/full_piv_lu.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/linalg/full_piv_lu.rs b/src/linalg/full_piv_lu.rs index 04f61faf..f2bfc874 100644 --- a/src/linalg/full_piv_lu.rs +++ b/src/linalg/full_piv_lu.rs @@ -167,7 +167,7 @@ where DefaultAllocator: Allocator + Allocator<(usize, usize), D> b: &Matrix, ) -> Option> where - S2: StorageMut, + S2: Storage, ShapeConstraint: SameNumberOfRows, DefaultAllocator: Allocator, {