Merge pull request #725 from rustsim/fix-no-std

This commit is contained in:
Sébastien Crozet 2020-04-21 10:46:04 +02:00 committed by GitHub
commit 3e73da38da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 7 deletions

View File

@ -405,15 +405,13 @@ where
D: Dim,
DefaultAllocator: Allocator<N, D, D>,
{
let mut col_sums = vec![N::zero(); m.ncols()];
let mut max = N::zero();
for i in 0..m.ncols() {
let col = m.column(i);
col.iter().for_each(|v| col_sums[i] += v.abs());
}
let mut max = col_sums[0];
for i in 1..col_sums.len() {
max = N::max(max, col_sums[i]);
max = max.max(col.iter().fold(N::zero(), |a, b| a + b.abs()));
}
max
}
@ -427,7 +425,7 @@ where
pub fn exp(&self) -> Self {
// Simple case
if self.nrows() == 1 {
return self.clone().map(|v| v.exp());
return self.map(|v| v.exp());
}
let mut h = ExpmPadeHelper::new(self.clone(), true);