Skip to content

Commit

Permalink
Add support for creating zero-like nalgebra matrices
Browse files Browse the repository at this point in the history
  • Loading branch information
Maher Sallam committed Aug 14, 2020
1 parent b793a06 commit e95ae63
Show file tree
Hide file tree
Showing 2 changed files with 98 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/core/math/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,8 @@ mod transpose_ndarray;
mod transpose_vec;
mod weighteddot;
mod zero;
#[cfg(feature = "nalgebral")]
mod zero_nalgebra;
#[cfg(feature = "ndarrayl")]
mod zero_ndarray;
mod zero_vec;
Expand Down
96 changes: 96 additions & 0 deletions src/core/math/zero_nalgebra.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
// Copyright 2018-2020 argmin developers
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or
// http://opensource.org/licenses/MIT>, at your option. This file may not be
// copied, modified, or distributed except according to those terms.

use crate::core::math::{ArgminZero, ArgminZeroLike};

use num::Zero;

use nalgebra::{
base::{allocator::Allocator, dimension::Dim},
DefaultAllocator, MatrixMN, Scalar,
};

impl<N, R, C> ArgminZeroLike for MatrixMN<N, R, C>
where
N: Scalar + Zero + ArgminZero,
R: Dim,
C: Dim,
DefaultAllocator: Allocator<N, R, C>,
{
#[inline]
fn zero_like(&self) -> MatrixMN<N, R, C> {
Self::zeros_generic(R::from_usize(self.nrows()), C::from_usize(self.ncols()))
}
}

#[cfg(test)]
mod tests {
use super::*;
use nalgebra::{DVector, Matrix2, Vector2, Vector4};
use paste::item;

macro_rules! make_test {
($t:ty) => {
item! {
#[test]
fn [<test_zero_like_ $t>]() {
let t: DVector<$t> = DVector::from_vec(vec![]);
let a = t.zero_like();
assert_eq!(t, a);
}
}

item! {
#[test]
fn [<test_zero_like_2_ $t>]() {
let a = Vector4::new(42 as $t, 42 as $t, 42 as $t, 42 as $t).zero_like();
for i in 0..4 {
assert!(((0 as $t - a[i]) as f64).abs() < std::f64::EPSILON);
}
}
}

item! {
#[test]
fn [<test_2d_zero_like_ $t>]() {
let t: Vector2<$t> = Vector2::zeros();
let a = t.zero_like();
assert_eq!(t, a);
}
}

item! {
#[test]
fn [<test_2d_zero_like_2_ $t>]() {
let a = Matrix2::new(
42 as $t, 42 as $t,
42 as $t, 42 as $t
).zero_like();

for i in 0..2 {
for j in 0..2 {
assert!(((0 as $t - a[(i, j)]) as f64).abs() < std::f64::EPSILON);
}
}
}
}
};
}

make_test!(isize);
make_test!(usize);
make_test!(i8);
make_test!(u8);
make_test!(i16);
make_test!(u16);
make_test!(i32);
make_test!(u32);
make_test!(i64);
make_test!(u64);
make_test!(f32);
make_test!(f64);
}

0 comments on commit e95ae63

Please sign in to comment.