Skip to content

Commit 39f3215

Browse files
Merge pull request #330 from easifem/new-design
Updates in LineInterpolationUtility
2 parents a1df70b + c332667 commit 39f3215

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

src/submodules/Line/src/[email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ SUBROUTINE handle_increasing
391391
!! layout INCREASING
392392
IF (layout(1:1) .EQ. "I") THEN
393393
DO ii = 1, nrow
394-
CALL HeapSort(ans(ii, :))
394+
CALL HeapSort(ans(ii, 1:ncol))
395395
END DO
396396
END IF
397397
END SUBROUTINE

src/submodules/Line/src/[email protected]

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,11 @@
4242
CASE (qpopt%GaussLegendre, qpopt%GaussChebyshev, &
4343
qpopt%GaussJacobi, qpopt%GaussUltraspherical)
4444
ans = 1_I4B + INT(order / 2, kind=I4B)
45+
CASE (qpopt%GaussLegendreRadauRight, qpopt%GaussLegendreRadauLeft, &
46+
qpopt%GaussChebyshevRadauLeft, qpopt%GaussChebyshevRadauRight, &
47+
qpopt%GaussJacobiRadauLeft, qpopt%GaussJacobiRadauRight, &
48+
qpopt%GaussUltraSphericalRadauLeft, qpopt%GaussUltraSphericalRadauRight)
49+
ans = 2_I4B + INT((order - 1) / 2, kind=I4B)
4550
CASE DEFAULT
4651
ans = 2_I4B + INT(order / 2, kind=I4B)
4752
END SELECT

0 commit comments

Comments
 (0)