Skip to content

Commit

Permalink
[fix] Fixed complex matrix test
Browse files Browse the repository at this point in the history
- Added missing imports in test_seq
  • Loading branch information
soumyasen1809 committed Sep 30, 2024
1 parent f277895 commit 60f9e54
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/complex_matrix.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ use peroxide::fuga::*;
#[cfg(feature = "complex")]
#[test]
fn test_seq() {
use num_complex::Complex64;
use peroxide::complex::matrix::ComplexMatrix;

let v1 = ComplexMatrix {
data: vec![
Complex64::new(1f64, 1f64),
Expand Down

0 comments on commit 60f9e54

Please sign in to comment.