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

Common: add generic checker for trending plots #2383

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Commits on Sep 20, 2024

  1. [Common] handle std::string types in configuration helper function

    The `std::string` type was not correctly handled because the standard
    library does not provide an "identity" override for `std::to_string()`
    aferrero2707 committed Sep 20, 2024
    Configuration menu
    Copy the full SHA
    57965ff View commit details
    Browse the repository at this point in the history
  2. [Common] add utility class to handle the checker thresholds

    The ultility class provides the following functionalities:
    * stores interaction-rate-dependent threshold values
    * stores optional axis ranges on which the check should be restricted
    * provides the code to retrieve the threshold and range values from the custom parameters
    * provides a function to retrieve the optimal threshold values for a given interaction rate
    aferrero2707 committed Sep 20, 2024
    Configuration menu
    Copy the full SHA
    ce72c93 View commit details
    Browse the repository at this point in the history
  3. [Common] added generic checker from trend graphs

    The checker is designed to verify that the values of trend graphs are
    within given minimum and maximum limits.
    The limits can be specified as fixed values, or values relative to either
    the mean or the standard deviation of a given set of graph points.
    aferrero2707 committed Sep 20, 2024
    Configuration menu
    Copy the full SHA
    83fdd47 View commit details
    Browse the repository at this point in the history