78 static std::map<int, std::vector<Warning>> warnings;
81 static std::mutex warnings_mutex;
Thread-safe warning logger for tracking runtime warnings.
static void clearWarnings()
Clear all warnings.
static bool hasWarnings()
Check if any warnings have been logged.
static std::vector< Warning > getThreadWarnings(int thread_id)
Get warnings from a specific thread.
static std::vector< Warning > getWarnings()
Retrieve all warnings from all threads.
static void addWarning(WarningCode code, const std::string &message)
Log a new warning.
Namespace containing SLOPE regression implementation.
std::string warningCodeToString(WarningCode code)
Convert a warning code to its string representation.
WarningCode
Standard warning codes used throughout the slope library.
@ MAXIT_REACHED
Maximum iterations reached without convergence.
@ GENERIC_WARNING
General uncategorized warning.
@ LINE_SEARCH_FAILED
Line search algorithm failed to converge.
@ DEPRECATED_FEATURE
Feature marked for deprecation.
Structure representing a warning with its code and message.
Warning(WarningCode code, const std::string &message)
Constructs a new Warning object.
WarningCode code
The type of warning.
std::string message
Descriptive message for the warning.