diffsl 0.11.1

A compiler for a domain-specific language for ordinary differential equations (ODE).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod discrete_model;
pub use discrete_model::DiscreteModel;

pub mod error;
pub use error::{ValidationError, ValidationErrors};

pub mod env;
pub use env::Env;

pub mod layout;
pub use layout::{ArcLayout, Layout, LayoutKind, TensorType};

pub mod shape;
pub use shape::{broadcast_shapes, can_broadcast_to, Shape};

pub mod tensor;
pub use tensor::{Index, Tensor, TensorBlock};