Skip to content

Commit

Permalink
PR requested changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mmarineBlueQuartz committed Oct 24, 2023
1 parent f462bc7 commit b53f1fe
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 7 deletions.
4 changes: 0 additions & 4 deletions src/Plugins/ComplexCore/test/FindArrayStatisticsTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -317,13 +317,9 @@ TEST_CASE("ComplexCore::FindArrayStatisticsFilter: Test Algorithm By Index", "[C
auto preflightResult = filter.preflight(dataStructure, args);
REQUIRE(preflightResult.outputActions.valid());

std::cout << "Before Execution" << std::endl;

// Execute the filter and check the result
auto executeResult = filter.execute(dataStructure, args);
REQUIRE(executeResult.result.valid());

std::cout << "After Execution" << std::endl;
}

// Check resulting values
Expand Down
1 change: 0 additions & 1 deletion src/Plugins/ComplexCore/test/FindSurfaceFeaturesTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ void test_impl(const std::vector<uint64>& geometryDims, const std::string& featu

// Change Feature 470 to 0
REQUIRE(dataStructure.getDataAs<Int32Array>(k_FeatureIDsPath) != nullptr);
// REQUIRE_NOTHROW(dataStructure.getDataRefAs<Int32Array>(k_FeatureIDsPath));
Int32Array& featureIds = dataStructure.getDataRefAs<Int32Array>(k_FeatureIDsPath);
std::replace(featureIds.begin(), featureIds.end(), 470, 0);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,6 @@ Result<> FindKernelAvgMisorientations::operator()()

ParallelData3DAlgorithm parallelAlgorithm;
parallelAlgorithm.setRange(Range3D(0, udims[0], 0, udims[1], 0, udims[2]));
parallelAlgorithm.setParallelizationEnabled(false);
parallelAlgorithm.execute(FindKernelAvgMisorientationsImpl(this, m_DataStructure, m_InputValues, m_ShouldCancel));

return {};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,6 @@ Result<> GenerateFZQuaternions::executeImpl(DataStructure& dataStructure, const
// Parallel algorithm to find duplicate nodes
ParallelDataAlgorithm dataAlg;
dataAlg.setRange(0ULL, static_cast<size_t>(quatArray.getNumberOfTuples()));
dataAlg.setParallelizationEnabled(false);

if(pUseGoodVoxelsValue)
{
Expand Down

0 comments on commit b53f1fe

Please sign in to comment.