From ff88fad23cf92fe6ca56516deccc5c1784971773 Mon Sep 17 00:00:00 2001 From: Hennadii Chernyshchyk Date: Sat, 14 Jan 2023 13:24:04 +0200 Subject: [PATCH] Remove redundant `T::SimdRealField: Zero` --- src/linalg/cholesky.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/linalg/cholesky.rs b/src/linalg/cholesky.rs index eda64134..2ff22914 100644 --- a/src/linalg/cholesky.rs +++ b/src/linalg/cholesky.rs @@ -41,7 +41,6 @@ where impl Cholesky where DefaultAllocator: Allocator, - T::SimdRealField: Zero, { /// Computes the Cholesky decomposition of `matrix` without checking that the matrix is definite-positive. ///