Merge pull request #706 from dayrover/master

Unnecessary Trait bound DimSub<Dynamic> in impl Cholesky
This commit is contained in:
Sébastien Crozet 2020-03-31 17:22:34 +02:00 committed by GitHub
commit bcf00b95c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ where
{
}
impl<N: ComplexField, D: DimSub<Dynamic>> Cholesky<N, D>
impl<N: ComplexField, D: Dim> Cholesky<N, D>
where
DefaultAllocator: Allocator<N, D, D>,
{