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

Add addition, subtraction, multiplication, and compare operations for f128 #606

Merged
merged 8 commits into from
May 16, 2024

Commits on May 15, 2024

  1. Split Int into Int and MinInt

    `MinInt` contains the basic methods that are only needed by integers
    involved in widening operations, i.e. big integers. `Int` retains all
    other operations and convenience methods.
    tgross35 committed May 15, 2024
    Configuration menu
    Copy the full SHA
    9c6fcb5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2868c26 View commit details
    Browse the repository at this point in the history
  3. Refactor float test macros to have a fallback

    Change float test macros to fall back to testing against `rustc_apfloat`
    when system implementations are not available, rather than just skipping
    tests.
    
    This allows for easier debugging where operations may not be supported.
    tgross35 committed May 15, 2024
    Configuration menu
    Copy the full SHA
    77faba1 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    255c9f3 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    c8cc819 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    58ad317 View commit details
    Browse the repository at this point in the history
  7. Implement f128 comparison

    tgross35 committed May 15, 2024
    Configuration menu
    Copy the full SHA
    9bea196 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    6a847ab View commit details
    Browse the repository at this point in the history