Skip to content

Commit d90b6cf

Browse files
committed
Formatting
1 parent 85ebc61 commit d90b6cf

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

ops/fmod.rkt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,7 @@
108108
(or (ival-err x) (ival-err y) (and (bf=? (ival-lo-val y) 0.bf) (bf=? (ival-hi-val y) 0.bf))))
109109
(define y* (ival-fabs y))
110110
(cond
111-
[(= (mpfr-sign (ival-hi-val x)) -1)
112-
(ival-neg (ival-remainder-pos (ival-neg x) y* err? err))]
111+
[(= (mpfr-sign (ival-hi-val x)) -1) (ival-neg (ival-remainder-pos (ival-neg x) y* err? err))]
113112
[(= (mpfr-sign (ival-lo-val x)) 1) (ival-remainder-pos x y* err? err)]
114113
[else
115114
(define-values (neg pos) (split-ival x 0.bf))

0 commit comments

Comments
 (0)