Skip to content

Commit

Permalink
Use CRlibm 0.5 that does not export functions (#238)
Browse files Browse the repository at this point in the history
* Use CRlibm 0.5 that does not export functions

* Use CRlibm 0.5 that does not export functions
  • Loading branch information
dpsanders authored Mar 6, 2017
1 parent 2bd3b82 commit dc436bc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion REQUIRE
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
julia 0.4
CRlibm 0.2.2 0.4
CRlibm 0.5
Compat 0.7.11
FixedSizeArrays 0.1.2
ForwardDiff 0.2.0
Expand Down
5 changes: 5 additions & 0 deletions src/intervals/rounding.jl
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,9 @@ for mode in (:Down, :Up)
end
end


for f in CRlibm.functions
@eval $f{T<:AbstractFloat}(a::T, $mode1) = CRlibm.$f(a, $mode2)
end

end

0 comments on commit dc436bc

Please # to comment.