Skip to content

Commit

Permalink
fix: fix RLConv order
Browse files Browse the repository at this point in the history
  • Loading branch information
alexfikl committed Oct 9, 2023
1 parent 4531d87 commit 3d5f081
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pycaputo/quadrature/riemann_liouville.py
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,8 @@ def name(self) -> str:

@property
def order(self) -> float:
return self.d.order
# FIXME: this is not the corect order!
return min(1.0, -self.d.order)


@quad.register(RiemannLiouvilleConvolutionMethod)
Expand Down

0 comments on commit 3d5f081

Please sign in to comment.