Skip to content

Commit

Permalink
remove solvler results test
Browse files Browse the repository at this point in the history
  • Loading branch information
boulderdaze committed Jun 18, 2024
1 parent 91dc9fd commit ed4834a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/musica/micm.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
#include <memory>
#include <string>
#include <vector>
#include <cstddef>

namespace musica
{
Expand Down Expand Up @@ -44,8 +45,7 @@ namespace musica
int64_t decompositions_;
/// @brief The number of linear solves
int64_t solves_;
/// @brief The number of times a singular matrix is detected. For now, this will always be zero as we assume the matrix
/// is never singular
/// @brief The number of times a singular matrix is detected.
int64_t singular_;
/// @brief The final time the solver iterated to
double final_time_;
Expand Down
1 change: 1 addition & 0 deletions src/micm/micm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,7 @@ namespace musica

solver_->CalculateRateConstants(state);
auto result = solver_->Solve(time_step, state);

*solver_stats = SolverStats(
result.stats_.function_calls_,
result.stats_.jacobian_updates_,
Expand Down
1 change: 1 addition & 0 deletions src/test/unit/micm/micm_c_api.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ class MicmCApiTest : public ::testing::Test
micm = nullptr;
Error error;
micm = CreateMicm(config_path, &error);

ASSERT_TRUE(IsSuccess(error));
DeleteError(&error);
}
Expand Down

0 comments on commit ed4834a

Please sign in to comment.