aboutsummaryrefslogtreecommitdiff
path: root/src/ARMeilleure/State/FPRoundingMode.cs
blob: 0913175e726a205e1b8f265fba0dd9d5db508767 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
namespace ARMeilleure.State
{
    public enum FPRoundingMode
    {
        ToNearest = 0, // With ties to even.
        TowardsPlusInfinity = 1,
        TowardsMinusInfinity = 2,
        TowardsZero = 3,
        ToNearestAway = 4, // With ties to away.
    }
}