swh:1:snp:a72e953ecd624a7df6e6196bbdd05851996c5e40
Raw File
Tip revision: e58d3ecfbd48ac457ca3b5ef64653d47f2a6a8aa authored by Valentin Churavy on 13 October 2016, 05:26:14 UTC
workaround 32bit platforms not having support for 128bit integers
Tip revision: e58d3ec
floatfuncs.jl
# This file is a part of Julia. License is MIT: http://julialang.org/license

using Base.Test

# test the basic floating point functions

# flipsign

for elty in (Float32,Float64)
    x = convert(elty,-2.0)
    x = flipsign(x,-1.0)
    @test flipsign(x,big(-1.0)) == convert(elty,-2.0)
end

# maxintfloat

@test maxintfloat(Float16) == Float16(2048f0)
for elty in (Float16,Float32,Float64)
    @test maxintfloat(rand(elty)) == maxintfloat(elty)
end
@test maxintfloat() == maxintfloat(Float64)

# isinteger
for elty in (Float16,Float32,Float64)
    @test !isinteger(elty(1.2))
    @test isinteger(elty(12))
    @test isinteger(zero(elty))
    @test isinteger(-zero(elty))
    @test !isinteger(nextfloat(zero(elty)))
    @test !isinteger(prevfloat(zero(elty)))
    @test isinteger(maxintfloat(elty))
    @test isinteger(-maxintfloat(elty))
    @test !isinteger(elty(Inf))
    @test !isinteger(-elty(Inf))
    @test !isinteger(elty(NaN))
end

# num2hex, hex2num
for elty in (Float16,Float32,Float64), _ = 1:10
    x = rand(elty)
    @test hex2num(num2hex(x)) ≈ x
end

# round
for elty in (Float32,Float64)
    x = rand(elty)
    A = fill(x,(10,10))
    @test round(A,RoundToZero) == fill(trunc(x),(10,10))
    @test round(A,RoundUp) == fill(ceil(x),(10,10))
    @test round(A,RoundDown) == fill(floor(x),(10,10))
    A = fill(x,(10,10,10))
    @test round(A,RoundToZero) == fill(trunc(x),(10,10,10))
    @test round(A,RoundUp) == fill(ceil(x),(10,10,10))
    @test round(A,RoundDown) == fill(floor(x),(10,10,10))
    for elty2 in (Int32,Int64)
        A = fill(x,(10,))
        @test round(elty2,A,RoundToZero) == fill(trunc(elty2,x),(10,))
        @test round(elty2,A,RoundUp) == fill(ceil(elty2,x),(10,))
        @test round(elty2,A,RoundDown) == fill(floor(elty2,x),(10,))
        A = fill(x,(10,10))
        @test round(elty2,A,RoundToZero) == fill(trunc(elty2,x),(10,10))
        @test round(elty2,A,RoundUp) == fill(ceil(elty2,x),(10,10))
        @test round(elty2,A,RoundDown) == fill(floor(elty2,x),(10,10))
        A = fill(x,(10,10,10))
        @test round(elty2,A,RoundToZero) == fill(trunc(elty2,x),(10,10,10))
        @test round(elty2,A,RoundUp) == fill(ceil(elty2,x),(10,10,10))
        @test round(elty2,A,RoundDown) == fill(floor(elty2,x),(10,10,10))
        @test round(elty2,A) == fill(round(elty2,x),(10,10,10))
    end
end
back to top