polydat_core/numeric/mod.rs
1// Copyright 2024-2026 Jonathan Shook
2// SPDX-License-Identifier: Apache-2.0
3
4//! The numeric bodies the node library and the native lowerings
5//! share. A node in `polydat-nodes` is a thin wrapper over a function
6//! here, and the JIT helper for that node calls the same function, so
7//! the interpreter and native code compute the same bits by
8//! construction (compiled_handles.md ยง6, the corner suite).
9
10pub mod hash;
11pub mod n_of_m;
12pub mod noise;
13pub mod pcg;
14pub mod register;
15pub mod round_numbers;
16pub mod vector;