Skip to content

Commit

Permalink
start adding quadrature
Browse files Browse the repository at this point in the history
  • Loading branch information
mscroggs committed Aug 30, 2024
1 parent da5c553 commit e6c387c
Show file tree
Hide file tree
Showing 6 changed files with 966 additions and 0 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ mpi = { version = "0.8.*", optional = true }
num = "0.4"
rlst = "0.2.0"
serde = { version = "1", features = ["derive"], optional = true }
libm = "0.2"

[dev-dependencies]
bempp = "0.1.0"
Expand Down
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ pub mod polynomials;
pub mod reference_cell;
pub mod traits;
pub mod types;
pub mod quadrature;

Check warning on line 10 in src/lib.rs

View workflow job for this annotation

GitHub Actions / Rust style checks (--features "strict")

Diff in /home/runner/work/ndelement/ndelement/src/lib.rs

Check warning on line 10 in src/lib.rs

View workflow job for this annotation

GitHub Actions / Rust style checks (--features "mpi,serde,strict")

Diff in /home/runner/work/ndelement/ndelement/src/lib.rs
2 changes: 2 additions & 0 deletions src/quadrature.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
//! Quadrature
mod gl;
Loading

0 comments on commit e6c387c

Please sign in to comment.