Skip to main content

solver/core/
mod.rs

1//! Core data structures for the solver.
2//!
3//! This module defines the fundamental structures used for discretizing the state space:
4//! * `Grid`: Represents the N-dimensional discretized domain.
5//! * `Tensor`: Handles indexing and coordinate mapping for N-dimensional arrays flattened into 1D vectors.
6
7pub mod grid;
8pub mod tensor;