This repository has been archived on 2026-01-05. You can view files and clone it, but cannot push or open issues/pull-requests.
|
namespace ARMeilleure.State
|
|
{
|
|
enum FPException
|
|
{
|
|
InvalidOp = 0,
|
|
DivideByZero = 1,
|
|
Overflow = 2,
|
|
Underflow = 3,
|
|
Inexact = 4,
|
|
InputDenorm = 7
|
|
}
|
|
}
|