Trait exmex::DiffDataType

source ·
pub trait DiffDataType: DataType + From<f32> + NeutralElts { }
Expand description

DataTypes of expressions that are differentiable need to implement additionally From<f32>, PartialEq, and NeutralElts. Vice-versa, if you have an expression with a datatype that implements DiffDataType, partial derivatives of that expression can be computed.

Object Safety§

This trait is not object safe.

Implementors§