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

Refactor: MovingInterquartileMean #13730

Open
wants to merge 4 commits into
base: main
Choose a base branch
from

Commits on Oct 8, 2024

  1. Configuration menu
    Copy the full SHA
    29a46b8 View commit details
    Browse the repository at this point in the history

Commits on Oct 9, 2024

  1. refactor: simplify MovingInterquartileMean

    This should also optimize speed and memory usage for small-ish
    windows (which is the only usecase right now)
    Swiftb0y committed Oct 9, 2024
    Configuration menu
    Copy the full SHA
    c909325 View commit details
    Browse the repository at this point in the history
  2. feat: add replace_sorted algorithm

    This implements the usecase where you want to replace a value in
    a sorted range while keeping the range sorted.
    This serves as an efficient alternative to what would otherwise
    be an erase followed by an insert, which requires unnecessary
    moves.
    Swiftb0y committed Oct 9, 2024
    Configuration menu
    Copy the full SHA
    34301cc View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c4ad157 View commit details
    Browse the repository at this point in the history