Skip to content

Commit

Permalink
fix interpolation logic (#516)
Browse files Browse the repository at this point in the history
Co-authored-by: Solomon Wiznitzer <solomon.wiznitzer@resquared.com>
(cherry picked from commit 7cc3434)
  • Loading branch information
swiz23 authored and mergify[bot] committed Feb 10, 2023
1 parent c28d2a6 commit 40cc97a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const std::unordered_map<InterpolationMethod, std::string> InterpolationMethodMa
return InterpolationMethod::NONE;
}
else if (
!interpolation_method.compare(
interpolation_method.compare(
InterpolationMethodMap.at(InterpolationMethod::VARIABLE_DEGREE_SPLINE)) == 0)
{
return InterpolationMethod::VARIABLE_DEGREE_SPLINE;
Expand Down

0 comments on commit 40cc97a

Please sign in to comment.