10std::map<int, std::vector<Warning>> WarningLogger::warnings;
11std::mutex WarningLogger::warnings_mutex;
18 return "GENERIC_WARNING";
20 return "DEPRECATED_FEATURE";
22 return "MAXIT_REACHED";
24 return "LINE_SEARCH_FAILED";
26 return "UNKNOWN_WARNING";
35 thread_id = omp_get_thread_num();
38 std::lock_guard<std::mutex> lock(warnings_mutex);
39 warnings[thread_id].emplace_back(code, message);
45 std::lock_guard<std::mutex> lock(warnings_mutex);
46 std::vector<Warning> all_warnings;
47 for (
const auto& thread_warnings : warnings) {
48 all_warnings.insert(all_warnings.end(),
49 thread_warnings.second.begin(),
50 thread_warnings.second.end());
58 std::lock_guard<std::mutex> lock(warnings_mutex);
65 std::lock_guard<std::mutex> lock(warnings_mutex);
66 for (
const auto& thread_warnings : warnings) {
67 if (!thread_warnings.second.empty()) {
77 std::lock_guard<std::mutex> lock(warnings_mutex);
78 if (warnings.find(thread_id) != warnings.end()) {
79 return warnings[thread_id];
81 return std::vector<Warning>();
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.
Thread-safe warning logging facility for the slope library.
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.