Skip to content

Commit

Permalink
Merge branch 'main' into dev/rb/global_time_bc
Browse files Browse the repository at this point in the history
  • Loading branch information
SallySoul committed Feb 3, 2025
2 parents 00e4ddd + 59543fc commit 084df88
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 13 deletions.
File renamed without changes.
13 changes: 0 additions & 13 deletions src/domain/bc/periodic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,17 +68,4 @@ mod unit_tests {
}
}
}

#[test]
fn periodic_domain_swap() {
let bound = AABB::new(matrix![0, 5; 0, 5]);
let n_r = bound.buffer_size();
let mut buffer_a = fftw::array::AlignedVec::new(n_r);
let mut buffer_b = fftw::array::AlignedVec::new(n_r);
for i in 0..n_r {
buffer_a[i] = i as f64;
buffer_b[i] = (n_r - i) as f64;
}
// TODO: Not sure what I wanted to do here, but clearly didn't finish
}
}

0 comments on commit 084df88

Please sign in to comment.