Tue, 25 Oct 2022 23:05:40 +0300
Added NormExponent trait for exponents of norms
| 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 | ||
| 22 | // They don't work: | |
| 23 | //#![feature(negative_impls)] | |
| 24 | //#![feature(specialization)] | |
| 25 | ||
| 26 | pub mod types; | |
| 27 | pub mod nanleast; | |
| 28 | pub mod error; | |
| 29 | pub mod maputil; | |
| 30 | pub mod tuple; | |
| 5 | 31 | pub mod euclidean; |
| 0 | 32 | pub mod norms; |
| 33 | #[macro_use] | |
| 34 | pub mod loc; | |
| 35 | pub mod iter; | |
| 36 | pub mod linops; | |
| 37 | pub mod iterate; | |
| 38 | pub mod tabledump; | |
| 39 | pub mod logger; | |
| 40 | pub mod linsolve; | |
| 41 | pub mod lingrid; | |
| 42 | pub mod sets; | |
| 43 | pub mod mapping; | |
| 44 | pub mod coefficients; | |
| 45 | pub mod fe_model; | |
| 46 | pub mod bisection_tree; | |
| 47 | pub mod nalgebra_support; | |
| 48 | ||
| 49 | ||
| 50 | pub use types::*; |