Skip to content

Commit

Permalink
AffineSpace: extern crate added
Browse files Browse the repository at this point in the history
  • Loading branch information
alphaville committed Oct 29, 2023
1 parent 6fb5b8b commit 16e6d6b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ Note: This is the main Changelog file for the Rust solver. The Changelog file fo
--------------------- -->
## Unreleased

### Added

- Implementation of `AffineSpace`

### Fixed

- Clippy fixes
Expand Down
4 changes: 4 additions & 0 deletions src/constraints/affine_space.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
use super::Constraint;

extern crate modcholesky;
extern crate ndarray;

use modcholesky::ModCholeskySE99;
use ndarray::{Array1, Array2, ArrayBase, Dim, OwnedRepr};

Expand Down

0 comments on commit 16e6d6b

Please sign in to comment.