Remove unused allocator bound.

This commit is contained in:
sebcrozet 2020-04-21 10:37:14 +02:00
parent f4c0897764
commit 6dc739b70b
1 changed files with 1 additions and 2 deletions

View File

@ -42,8 +42,7 @@ impl<N, D> ExpmPadeHelper<N, D>
where where
N: RealField, N: RealField,
D: DimMin<D>, D: DimMin<D>,
DefaultAllocator: DefaultAllocator: Allocator<N, D, D> + Allocator<(usize, usize), DimMinimum<D, D>>,
Allocator<N, D, D> + Allocator<N, D> + Allocator<(usize, usize), DimMinimum<D, D>>,
{ {
fn new(a: MatrixN<N, D>, use_exact_norm: bool) -> Self { fn new(a: MatrixN<N, D>, use_exact_norm: bool) -> Self {
let (nrows, ncols) = a.data.shape(); let (nrows, ncols) = a.data.shape();