aboutsummaryrefslogtreecommitdiff
path: root/libphobos/testsuite/libphobos.phobos/std_math_hardware.d
blob: c88f59f104195c2a64dec4eef67db1f4d47afab1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
@safe unittest
{
    import std.math.hardware;

    import std.math.rounding : lrint;

    FloatingPointControl fpctrl;

    fpctrl.rounding = FloatingPointControl.roundDown;
    assert(lrint(1.5) == 1.0);

    fpctrl.rounding = FloatingPointControl.roundUp;
    assert(lrint(1.4) == 2.0);

    fpctrl.rounding = FloatingPointControl.roundToNearest;
    assert(lrint(1.5) == 2.0);
}