Skip to content
This repository was archived by the owner on Dec 10, 2023. It is now read-only.

Commit 295941d

Browse files
authoredMay 12, 2017
Merge pull request #21 from GregPlowman/master
Remove explicit methods for zero and one
2 parents 7c4e979 + 10662a1 commit 295941d

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed
 

‎src/DoubleDouble.jl

+1-7
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ import Base:
55
convert,
66
*, +, -, /, sqrt, <,
77
rem, abs, rand, promote_rule,
8-
show, big,
9-
zero, one
8+
show, big
109

1110
abstract AbstractDouble{T} <: Real
1211

@@ -52,11 +51,6 @@ function splitprec(x::AbstractFloat)
5251
end
5352

5453

55-
zero{T<:AbstractFloat}(::Type{Double{T}}) = Double(zero(T))
56-
one{T<:AbstractFloat}(::Type{Double{T}}) = Double(one(T))
57-
zero(a::Double) = Double(zero(a.hi))
58-
one(a::Double) = Double(one(a.hi))
59-
6054
# ones(T::Double, dims...) = fill!(Array(T, dims...), (one)(T))
6155
# zeros(T::Double, dims...) = fill!(Array(T, dims...), (zero)(T))
6256

0 commit comments

Comments
 (0)
This repository has been archived.