1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
//! Property-based tests: randomized invariants checked with the crate's
//! own deterministic `Rng`, one module per library area.
// Same style allowances as the library: index loops mirror the maths, and
// table-driven cases carry deliberately explicit types.
#![allow(clippy::needless_range_loop)]
#![allow(clippy::type_complexity)]
mod cluster_props;
mod core_props;
mod discrete_props;
mod epidemiology_props;
mod fdtd_props;
mod fem1d_props;
mod fem2d_props;
mod fractals_props;
mod game_theory_props;
mod geometry_props;
mod gp_props;
mod graph_flow_props;
mod graph_props;
mod graph_structure_props;
mod kinetics_props;
mod linalg_props;
mod md_props;
mod kepler_props;
mod lambert_props;
mod coords_props;
mod mesh_props;
mod neuro_props;
mod nn_props;
mod numerical_props;
mod options_props;
mod optimization_continuous_props;
mod optimization_discrete_props;
mod optimization_lp_props;
mod phylo_props;
mod population_props;
mod portfolio_props;
mod quantum_circuit_props;
mod quantum_matter_props;
mod quantum_props;
mod rates_props;
mod seq_align_props;
mod signal_props;
mod spatial_props;
mod spectral_pde_props;
mod special_props;
mod monte_carlo_props;
mod patterns_props;
mod statistics_props;
mod statmech_props;
mod stochastic_extremes_props;
mod stochastic_process_props;
mod transforms_props;
mod units_props;
mod tree_props;