qfall_math/utils.rs
1// Copyright © 2023 Marcel Luca Schmidt, Marvin Beckmann
2//
3// This file is part of qFALL-math.
4//
5// qFALL-math is free software: you can redistribute it and/or modify it under
6// the terms of the Mozilla Public License Version 2.0 as published by the
7// Mozilla Foundation. See <https://mozilla.org/en-US/MPL/2.0/>.
8
9//! Common functions useful across several datatypes and crates.
10//!
11//! This can include functions to pre-process inputs
12//! and similar tasks.
13
14pub(crate) mod dimensions;
15mod factorization;
16pub mod index;
17pub(crate) mod parse;
18pub mod sample;
19
20pub use factorization::Factorization;