mathhook-core 0.2.0

Core mathematical engine for MathHook - expressions, algebra, and solving
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub struct ParserConfig {
    pub enable_implicit_multiplication: bool,
}

impl Default for ParserConfig {
    fn default() -> Self {
        Self {
            enable_implicit_multiplication: true,
        }
    }
}