From 6dc739b70b44a0806d3b10bcc5646cea94696a95 Mon Sep 17 00:00:00 2001 From: sebcrozet Date: Tue, 21 Apr 2020 10:37:14 +0200 Subject: [PATCH] Remove unused allocator bound. --- src/linalg/exp.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/linalg/exp.rs b/src/linalg/exp.rs index df375ac9..c11fd757 100644 --- a/src/linalg/exp.rs +++ b/src/linalg/exp.rs @@ -42,8 +42,7 @@ impl ExpmPadeHelper where N: RealField, D: DimMin, - DefaultAllocator: - Allocator + Allocator + Allocator<(usize, usize), DimMinimum>, + DefaultAllocator: Allocator + Allocator<(usize, usize), DimMinimum>, { fn new(a: MatrixN, use_exact_norm: bool) -> Self { let (nrows, ncols) = a.data.shape();