pub type AutoFloat1<T> = AutoFloat<T, 1>;
pub struct AutoFloat1<T> { pub x: T, pub dx: [T; 1], }
x: T
The value of the variable.
dx: [T; 1]
The gradient of the variable.