mod.rs

1.9 kB · rust · 66 lines

1mod moire;2mod registry_integers;3mod roulette;4mod spin;56use crate::registry::{Cost, Entry};78pub fn table() -> &'static [Entry] {9    &[10        (11            "flat-carpet-stack/the-moire-correlation-law-for-odd",12            Cost::Cheap,13            moire::the_moire_correlation_law_for_odd,14        ),15        (16            "flat-carpet-stack/the-stack-is-an-exact-prime",17            Cost::Cheap,18            moire::the_stack_is_an_exact_prime,19        ),20        (21            "the-spirograph-nodes/one-curve-of-a-circle-roulette",22            Cost::Cheap,23            roulette::one_curve_of_a_circle_roulette,24        ),25        (26            "the-spirograph-nodes/two-distinct-curves-of-one-wheel",27            Cost::Cheap,28            roulette::two_distinct_curves_of_one_wheel,29        ),30        (31            "the-spirograph-nodes/a-whole-design-carries-one-node",32            Cost::Cheap,33            roulette::a_whole_design_carries_one_node,34        ),35        (36            "the-spirograph-nodes/a-roulette-cuts-the-plane-into",37            Cost::Cheap,38            roulette::a_roulette_cuts_the_plane_into,39        ),40        (41            "the-spirograph-nodes/the-loop-threshold-is-not-where",42            Cost::Cheap,43            roulette::the_loop_threshold_is_not_where,44        ),45        (46            "the-spirograph-nodes/the-self-law-ends-at-the",47            Cost::Cheap,48            roulette::the_self_law_ends_at_the,49        ),50        (51            "spin/the-coprime-law-survives-the-spin",52            Cost::Cheap,53            spin::the_coprime_law_survives_the_spin,54        ),55        (56            "the-registry-s-integers/the-census-of-1-100000-over-the",57            Cost::Cheap,58            registry_integers::the_census_of_1_100000_over_the,59        ),60        (61            "the-registry-s-integers/the-miss-set-s-arithmetic-269-a",62            Cost::Dear,63            registry_integers::the_miss_set_s_arithmetic_269_a,64        ),65    ]66}