pub fn round_rrule<R: Float>(_x: R, _cotangent: R) -> R
Reverse rule for round.
round
The cotangent is always zero.
use chainrules::round_rrule; assert_eq!(round_rrule(1.0_f64, 0.5), 0.0);