Wed, 07 Dec 2022 07:00:27 +0200
Added tag v0.1.0 for changeset 51bfde513cfa
| 0 | 1 | // The main documentation is in the README. |
| 2 | #![doc = include_str!("../README.md")] | |
| 3 | ||
| 4 | // We use unicode. We would like to use much more of it than Rust allows. | |
| 5 | // Live with it. Embrace it. | |
| 6 | #![allow(uncommon_codepoints)] | |
| 7 | #![allow(mixed_script_confusables)] | |
| 8 | #![allow(confusable_idents)] | |
| 9 | ||
| 10 | // We need BinaryHeap::retain from nightly | |
| 11 | #![feature(binary_heap_retain)] | |
| 12 | ||
| 13 | #![feature(maybe_uninit_uninit_array,maybe_uninit_array_assume_init,maybe_uninit_slice)] | |
| 14 | #![feature(try_trait_v2_residual,try_trait_v2)] | |
| 15 | ||
| 16 | #![feature(array_methods)] | |
| 17 | ||
| 18 | #![feature(arc_unwrap_or_clone)] | |
| 19 | ||
| 20 | #![feature(float_minimum_maximum)] | |
| 21 | ||
|
9
f40dfaf2166d
Improvements and minor fixes to bisection tree refinement.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
22 | #![feature(get_mut_unchecked)] |
|
f40dfaf2166d
Improvements and minor fixes to bisection tree refinement.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
23 | |
| 0 | 24 | // They don't work: |
| 25 | //#![feature(negative_impls)] | |
| 26 | //#![feature(specialization)] | |
| 27 | ||
| 28 | pub mod types; | |
| 29 | pub mod nanleast; | |
| 30 | pub mod error; | |
|
8
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
5
diff
changeset
|
31 | pub mod parallelism; |
| 0 | 32 | pub mod maputil; |
| 33 | pub mod tuple; | |
| 5 | 34 | pub mod euclidean; |
| 0 | 35 | pub mod norms; |
| 36 | #[macro_use] | |
| 37 | pub mod loc; | |
| 38 | pub mod iter; | |
| 39 | pub mod linops; | |
| 40 | pub mod iterate; | |
| 41 | pub mod tabledump; | |
| 42 | pub mod logger; | |
| 43 | pub mod linsolve; | |
| 44 | pub mod lingrid; | |
| 45 | pub mod sets; | |
| 46 | pub mod mapping; | |
| 47 | pub mod coefficients; | |
| 48 | pub mod fe_model; | |
| 49 | pub mod bisection_tree; | |
| 50 | pub mod nalgebra_support; | |
| 51 | ||
| 52 | ||
| 53 | pub use types::*; |