Skip to content

Commit 3d5f081

Browse files
committed
fix: fix RLConv order
1 parent 4531d87 commit 3d5f081

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pycaputo/quadrature/riemann_liouville.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -476,7 +476,8 @@ def name(self) -> str:
476476

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

481482

482483
@quad.register(RiemannLiouvilleConvolutionMethod)

0 commit comments

Comments
 (0)