Skip to content

Commit

Permalink
Merge pull request #292 from nyx-space/deps/nalgebra-0.33
Browse files Browse the repository at this point in the history
Update nalgebra
  • Loading branch information
ChristopherRabotin authored Aug 7, 2024
2 parents bf93bd5 + 2e1deab commit e74f3e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ log = "0.4"
pretty_env_logger = "0.5"
tabled = "=0.16"
const_format = "0.2"
nalgebra = { version = "0.32", default-features = true, features = [
nalgebra = { version = "0.33", default-features = true, features = [
"serde-serialize",
] }
approx = "0.5.1"
Expand Down
2 changes: 1 addition & 1 deletion anise/src/math/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ use nalgebra::{DefaultAllocator, DimName, OVector};
/// Returns the root mean squared (RSS) between two vectors of any dimension N.
pub fn root_mean_squared<N: DimName>(vec_a: &OVector<f64, N>, vec_b: &OVector<f64, N>) -> f64
where
DefaultAllocator: Allocator<f64, N>,
DefaultAllocator: Allocator<N>,
{
vec_a
.iter()
Expand Down

0 comments on commit e74f3e4

Please sign in to comment.