diffsol 0.12.3

A library for solving ordinary differential equations (ODEs) in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use faer::{get_global_parallelism, Par};

#[derive(Copy, Clone, Debug, PartialEq)]
pub struct FaerContext {
    pub par: Par,
}

impl Default for FaerContext {
    fn default() -> Self {
        Self {
            par: get_global_parallelism(),
        }
    }
}