Skip to content

Commit

Permalink
Update nalgebra
Browse files Browse the repository at this point in the history
  • Loading branch information
avsaase committed Sep 29, 2024
1 parent de7eb3c commit d5fba2f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ std = ["nalgebra/std"]
no_std = ["nalgebra/libm", "dep:num-traits"]

[dependencies]
nalgebra = { version = "0.32.3", default-features = false }
nalgebra = { version = "0.33.0", default-features = false }
num-traits = { version = "0.2.17", optional = true, default-features = false, features = [
"libm",
] }

[dev-dependencies]
approx = "0.5.0"
nalgebra = { version = "0.32", features = ["serde-serialize", "debug"] }
nalgebra = { version = "0.33.0", features = ["serde-serialize", "debug"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
plotly = "0.6.0"
Expand Down
5 changes: 1 addition & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -334,10 +334,7 @@ impl ESKF {
variance: OMatrix<f32, R, R>,
) -> Result<()>
where
DefaultAllocator: Allocator<f32, R>
+ Allocator<f32, R, R>
+ Allocator<f32, R, U18>
+ Allocator<f32, U18, R>,
DefaultAllocator: Allocator<R> + Allocator<R, R> + Allocator<R, U18> + Allocator<U18, R>,
{
// Correct filter based on Kalman gain
let kalman_gain = self.covariance
Expand Down

0 comments on commit d5fba2f

Please sign in to comment.