Sun, 27 Apr 2025 20:29:43 -0500
Fix build with stable rust.
For optimisations, build.rs now automatically sets a nightly cfg flag,
so problems with the nightly feature are avoided. It is still used for
required for additional nightly-only features.
5 | 1 | /*! |
2 | Simple planar (1D and 2D) finite element discretisation on a single simplex or box. | |
3 | */ | |
0 | 4 | |
5 | pub mod base; | |
6 | pub mod p2_local_model; |