Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rounding Inexact Exception #7

Open
csprogrammer001 opened this issue May 24, 2019 · 1 comment
Open

Rounding Inexact Exception #7

csprogrammer001 opened this issue May 24, 2019 · 1 comment

Comments

@csprogrammer001
Copy link

I'm using QPFloat in my C# Winforms application, targeting .NET Framework 4.5.2 and building with Visual Studio 2017. The value of quad gets rounded to some value even when it shouldn't. If Quadruple.EnableInexactException is set to true then it throws that exception. Would greatly appreciate if you could look into this. Below is code to reproduce the issue and an attached screenshot of the values when debugging.

Type: Functional

Reproducible: Always

Expected Behaviour: quad equals 5.099 quad.ToString(); returns 5.099

Actual Behaviour: quad equals 0 quad.ToString(); returns 5.099000000000000198951966012828052

    System.Quadruple quad = 0;
    string mystring = "";

    private void setquad()
    {
        //   Quadruple.EnableInexactException = true;
        quad = 5.099;
        mystring = quad.ToString();
        Console.WriteLine(mystring);
    }

devenv_L7ZdvjRprX

Many Thanks.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants