Skip to content

Commit

Permalink
fix: Fix mapping of schema RBF quintic variant to core variant (#108)
Browse files Browse the repository at this point in the history
  • Loading branch information
Batch21 authored Feb 13, 2024
1 parent 909a1a4 commit a4760f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pywr-schema/src/parameters/profiles.rs
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ impl RadialBasisFunction {
let rbf = match self {
Self::Linear => pywr_core::parameters::RadialBasisFunction::Linear,
Self::Cubic => pywr_core::parameters::RadialBasisFunction::Cubic,
Self::Quintic => pywr_core::parameters::RadialBasisFunction::Cubic,
Self::Quintic => pywr_core::parameters::RadialBasisFunction::Quintic,
Self::ThinPlateSpline => pywr_core::parameters::RadialBasisFunction::ThinPlateSpline,
Self::Gaussian { epsilon } => {
let epsilon = match epsilon {
Expand Down

0 comments on commit a4760f2

Please sign in to comment.