Skip to content

Commit

Permalink
define tests setter
Browse files Browse the repository at this point in the history
  • Loading branch information
DeltaDizzy committed Jan 29, 2025
1 parent b11572a commit cc4af5b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 5 additions & 1 deletion sysid/src/main/native/cpp/view/Analyzer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
#include <numbers>
#include <string>
#include <thread>
#include <vector>

#include <fmt/format.h>
#include <glass/Context.h>
Expand All @@ -24,7 +25,6 @@
#include "sysid/analysis/AnalysisType.h"
#include "sysid/analysis/FeedbackControllerPreset.h"
#include "sysid/analysis/FilteringUtils.h"
#include "sysid/view/DataSelector.h"
#include "sysid/view/UILayout.h"

using namespace sysid;
Expand Down Expand Up @@ -338,6 +338,10 @@ void Analyzer::HandleError(std::string_view msg) {
PrepareRawGraphs();
}

void Analyzer::SetMissingTests(std::vector<std::string> missingTests) {
m_missingTests = missingTests;
}

void Analyzer::DisplayGraphs() {
ImGui::SetNextWindowPos(ImVec2{kDiagnosticPlotWindowPos},
ImGuiCond_FirstUseEver);
Expand Down
1 change: 0 additions & 1 deletion sysid/src/main/native/cpp/view/DataSelector.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

#include "sysid/Util.h"
#include "sysid/analysis/AnalysisType.h"
#include "sysid/analysis/FilteringUtils.h"
#include "sysid/analysis/Storage.h"

using namespace sysid;
Expand Down

0 comments on commit cc4af5b

Please sign in to comment.