Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -67,18 +67,6 @@ enum class InterpolationMethod
*/
const InterpolationMethod DEFAULT_INTERPOLATION = InterpolationMethod::VARIABLE_DEGREE_SPLINE;

/**
* @brief Maps string representations to their corresponding InterpolationMethod enum values.
*
* @deprecated This map is deprecated. Use the direct lookup methods instead.
* (Original use: Converting strings into the InterpolationMethod).
*/
[[deprecated(
"InterpolationMethodMap will be removed in future releases. "
"Instead, use the direct lookup methods.")]]
const std::unordered_map<std::string, InterpolationMethod> InterpolationMethodMap(
{{"none", InterpolationMethod::NONE}, {"splines", InterpolationMethod::VARIABLE_DEGREE_SPLINE}});

/**
* \brief Returns corresponding string value for the `InterpolationMethod`.
* This function uses simple switch-case lookup to directly assign string value to
Expand Down