Mon, 06 Jan 2025 20:29:25 -0500
More Serialize / Deserialize / Debug derives
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 | ||
55
7b2ee3e84c5f
Add "nightly" feature and provide alternative low-performance implementations of several things when not available.
Tuomo Valkonen <tuomov@iki.fi>
parents:
54
diff
changeset
|
10 | #![cfg_attr(feature = "nightly", |
7b2ee3e84c5f
Add "nightly" feature and provide alternative low-performance implementations of several things when not available.
Tuomo Valkonen <tuomov@iki.fi>
parents:
54
diff
changeset
|
11 | feature(maybe_uninit_uninit_array,maybe_uninit_array_assume_init,maybe_uninit_slice), |
7b2ee3e84c5f
Add "nightly" feature and provide alternative low-performance implementations of several things when not available.
Tuomo Valkonen <tuomov@iki.fi>
parents:
54
diff
changeset
|
12 | feature(float_minimum_maximum), |
7b2ee3e84c5f
Add "nightly" feature and provide alternative low-performance implementations of several things when not available.
Tuomo Valkonen <tuomov@iki.fi>
parents:
54
diff
changeset
|
13 | feature(get_mut_unchecked), |
59
9226980e45a7
Significantly simplify Mapping / Apply through Instance
Tuomo Valkonen <tuomov@iki.fi>
parents:
58
diff
changeset
|
14 | feature(cow_is_borrowed), |
55
7b2ee3e84c5f
Add "nightly" feature and provide alternative low-performance implementations of several things when not available.
Tuomo Valkonen <tuomov@iki.fi>
parents:
54
diff
changeset
|
15 | )] |
9
f40dfaf2166d
Improvements and minor fixes to bisection tree refinement.
Tuomo Valkonen <tuomov@iki.fi>
parents:
8
diff
changeset
|
16 | |
0 | 17 | pub mod types; |
59
9226980e45a7
Significantly simplify Mapping / Apply through Instance
Tuomo Valkonen <tuomov@iki.fi>
parents:
58
diff
changeset
|
18 | pub mod instance; |
9226980e45a7
Significantly simplify Mapping / Apply through Instance
Tuomo Valkonen <tuomov@iki.fi>
parents:
58
diff
changeset
|
19 | pub mod collection; |
0 | 20 | pub mod nanleast; |
21 | pub mod error; | |
8
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
5
diff
changeset
|
22 | pub mod parallelism; |
0 | 23 | pub mod maputil; |
24 | pub mod tuple; | |
5 | 25 | pub mod euclidean; |
0 | 26 | pub mod norms; |
27 | #[macro_use] | |
28 | pub mod loc; | |
29 | pub mod iter; | |
30 | pub mod linops; | |
31 | pub mod iterate; | |
32 | pub mod tabledump; | |
33 | pub mod logger; | |
34 | pub mod linsolve; | |
35 | pub mod lingrid; | |
36 | pub mod sets; | |
37 | pub mod mapping; | |
38 | pub mod coefficients; | |
39 | pub mod fe_model; | |
40 | pub mod bisection_tree; | |
41 | pub mod nalgebra_support; | |
57
1b3b1687b9ed
Add direct products (Pair, RowOp, ColOp, DiagOp)
Tuomo Valkonen <tuomov@iki.fi>
parents:
55
diff
changeset
|
42 | pub(crate) mod metaprogramming; |
1b3b1687b9ed
Add direct products (Pair, RowOp, ColOp, DiagOp)
Tuomo Valkonen <tuomov@iki.fi>
parents:
55
diff
changeset
|
43 | pub mod direct_product; |
58 | 44 | pub mod convex; |
68
c5f70e767511
Split out and generalise Weighted
Tuomo Valkonen <tuomov@iki.fi>
parents:
59
diff
changeset
|
45 | pub mod discrete_gradient; |
c5f70e767511
Split out and generalise Weighted
Tuomo Valkonen <tuomov@iki.fi>
parents:
59
diff
changeset
|
46 | pub mod operator_arithmetic; |
0 | 47 | |
48 | pub use types::*; |