Skip to content

Commit

Permalink
🩹 Removed dangling #endif
Browse files Browse the repository at this point in the history
  • Loading branch information
wlambooy committed Jan 14, 2025
1 parent 058ec48 commit 20b647d
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions test/algorithms/simulation/sidb/clustercomplete.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -207,9 +207,9 @@ TEMPLATE_TEST_CASE(
std::set<double> ground_state{};
std::set<uint64_t> charge_index{};
#ifdef NDEBUG
for (auto i = 0; i < 100; i++)
#else // NDEBUG
for (auto i = 0; i < 10000; i++)
#else // NDEBUG
for (auto i = 0; i < 100; i++)
#endif // NDEBUG
{
const auto simulation_results = clustercomplete<TestType>(lyt, params);
Expand All @@ -221,7 +221,6 @@ TEMPLATE_TEST_CASE(
CHECK(ground_state.size() == 1);
CHECK(charge_index.size() == 1);
}
#endif

SECTION("Add SiDBs which are positively charged in the ground state, layout does not fulfill the logic anymore.")
{
Expand Down

0 comments on commit 20b647d

Please sign in to comment.