Skip to content

Commit c4ece15

Browse files
committed
BUG: Add empty implementation to convert SIMPL Json parameters to SIMPLNX Parameters
1 parent a5fd9ab commit c4ece15

7 files changed

+2
-10
lines changed

src/SimplnxReview/Filters/ComputeGroupingDensityFilter.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,5 +251,4 @@ Result<Arguments> ComputeGroupingDensityFilter::FromSIMPLJson(const nlohmann::js
251251

252252
return ConvertResultTo<Arguments>(std::move(conversionResult), std::move(args));
253253
}
254-
255254
} // namespace nx::core

src/SimplnxReview/Filters/ComputeLocalAverageCAxisMisalignmentsFilter.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,5 +295,4 @@ Result<Arguments> ComputeLocalAverageCAxisMisalignmentsFilter::FromSIMPLJson(con
295295

296296
return ConvertResultTo<Arguments>(std::move(conversionResult), std::move(args));
297297
}
298-
299298
} // namespace nx::core

src/SimplnxReview/Filters/ComputeMicroTextureRegionsFilter.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,5 +159,4 @@ Result<Arguments> ComputeMicroTextureRegionsFilter::FromSIMPLJson(const nlohmann
159159

160160
return ConvertResultTo<Arguments>(std::move(conversionResult), std::move(args));
161161
}
162-
163162
} // namespace nx::core

src/SimplnxReview/Filters/ComputeSaltykovSizesFilter.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,5 +147,4 @@ Result<Arguments> ComputeSaltykovSizesFilter::FromSIMPLJson(const nlohmann::json
147147

148148
return ConvertResultTo<Arguments>(std::move(conversionResult), std::move(args));
149149
}
150-
151150
} // namespace nx::core

src/SimplnxReview/Filters/GroupMicroTextureRegionsFilter.cpp

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,16 +62,15 @@ Parameters GroupMicroTextureRegionsFilter::parameters() const
6262
params.insert(std::make_unique<NeighborListSelectionParameter>(k_ContiguousNeighborListArrayPath_Key, "Contiguous Neighbor List", "List of contiguous neighbors for each Feature.", DataPath{},
6363
NeighborListSelectionParameter::AllowedTypes{DataType::int32}));
6464

65-
params.insertSeparator(Parameters::Separator{"Non-Contiguous Neighborhood Option"});
65+
params.insertSeparator(Parameters::Separator{"Non-Contiguous Neighborhood Option"});
6666
params.insertLinkableParameter(std::make_unique<BoolParameter>(k_UseNonContiguousNeighbors_Key, "Use Non-Contiguous Neighbors", "Use non-contiguous neighborhoods", false));
6767
params.insert(std::make_unique<NeighborListSelectionParameter>(k_NonContiguousNeighborListArrayPath_Key, "Non-Contiguous Neighbor List", "List of non-contiguous neighbors for each Feature.",
6868
DataPath{}, NeighborListSelectionParameter::AllowedTypes{DataType::int32}));
6969

70-
7170
params.insertSeparator(Parameters::Separator{"Random Number Seed Parameters"});
7271
params.insertLinkableParameter(std::make_unique<BoolParameter>(k_UseSeed_Key, "Use Seed for Random Generation", "When true the user will be able to put in a seed for random generation", false));
7372
params.insert(std::make_unique<NumberParameter<uint64>>(k_SeedValue_Key, "Seed", "The seed fed into the random generator", std::mt19937::default_seed));
74-
params.insert(std::make_unique<DataObjectNameParameter>(k_SeedArrayName_Key, "Stored Seed Value Array Name", "", "_Group_MicroTexture_Regions_Seed_Value_"));
73+
params.insert(std::make_unique<DataObjectNameParameter>(k_SeedArrayName_Key, "Stored Seed Value Array Name", "Name of array holding the seed value", "_Group_MicroTexture_Regions_Seed_Value_"));
7574

7675
params.insertSeparator(Parameters::Separator{"Input Cell Data"});
7776
params.insert(std::make_unique<ArraySelectionParameter>(k_FeatureIdsArrayPath_Key, "Cell Feature Ids", "Data Array that specifies to which Feature each Element belongs", DataPath{},
@@ -246,5 +245,4 @@ Result<Arguments> GroupMicroTextureRegionsFilter::FromSIMPLJson(const nlohmann::
246245

247246
return ConvertResultTo<Arguments>(std::move(conversionResult), std::move(args));
248247
}
249-
250248
} // namespace nx::core

src/SimplnxReview/Filters/InterpolateValuesToUnstructuredGridFilter.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,5 +172,4 @@ Result<Arguments> InterpolateValuesToUnstructuredGridFilter::FromSIMPLJson(const
172172

173173
return ConvertResultTo<Arguments>(std::move(conversionResult), std::move(args));
174174
}
175-
176175
} // namespace nx::core

src/SimplnxReview/Filters/MergeColoniesFilter.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,5 +250,4 @@ Result<Arguments> MergeColoniesFilter::FromSIMPLJson(const nlohmann::json& json)
250250

251251
return ConvertResultTo<Arguments>(std::move(conversionResult), std::move(args));
252252
}
253-
254253
} // namespace nx::core

0 commit comments

Comments
 (0)