Skip to content

Commit fd54b08

Browse files
fixup
1 parent 1d67498 commit fd54b08

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/math/ops/op_dbfp_db.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
@inline function add_dbfp_db(x::DoubleFloat{T}, y::T) where {T<:AbstractFloat}
22
res = DoubleFloat{T}(add_ddfp_dd(HILO(x), y))
3-
isnan(HI(res)) ? add_dbdb_db_nonfinite(x,y) : res
3+
isnan(HI(res)) ? add_dbfp_db_nonfinite(x,y) : res
44
end
55

66
@inline function sub_dbfp_db(x::DoubleFloat{T}, y::T) where {T<:AbstractFloat}
77
res = DoubleFloat{T}(sub_ddfp_dd(HILO(x), y))
8-
isnan(HI(res)) ? sub_dbdb_db_nonfinite(x,y) : res
8+
isnan(HI(res)) ? sub_dbfp_db_nonfinite(x,y) : res
99
end
1010

1111
@inline function mul_dbfp_db(x::DoubleFloat{T}, y::T) where {T<:AbstractFloat}
1212
res = DoubleFloat{T}(mul_ddfp_dd(HILO(x), y))
13-
isnan(HI(res)) ? mul_dbdb_db_nonfinite(x,y) : res
13+
isnan(HI(res)) ? mul_dbfp_db_nonfinite(x,y) : res
1414
end
1515

1616
@inline function dvi_dbfp_db(x::DoubleFloat{T}, y::T) where {T<:AbstractFloat}
1717
res = DoubleFloat{T}(dvi_ddfp_dd(HILO(x), y))
18-
isnan(HI(res)) ? dvi_dbdb_db_nonfinite(x,y) : res
18+
isnan(HI(res)) ? dvi_dbfp_db_nonfinite(x,y) : res
1919
end
2020

2121

0 commit comments

Comments
 (0)