Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/submodules/Line/src/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ SUBROUTINE handle_increasing
!! layout INCREASING
IF (layout(1:1) .EQ. "I") THEN
DO ii = 1, nrow
CALL HeapSort(ans(ii, :))
CALL HeapSort(ans(ii, 1:ncol))
END DO
END IF
END SUBROUTINE
Expand Down
5 changes: 5 additions & 0 deletions src/submodules/Line/src/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@
CASE (qpopt%GaussLegendre, qpopt%GaussChebyshev, &
qpopt%GaussJacobi, qpopt%GaussUltraspherical)
ans = 1_I4B + INT(order / 2, kind=I4B)
CASE (qpopt%GaussLegendreRadauRight, qpopt%GaussLegendreRadauLeft, &
qpopt%GaussChebyshevRadauLeft, qpopt%GaussChebyshevRadauRight, &
qpopt%GaussJacobiRadauLeft, qpopt%GaussJacobiRadauRight, &
qpopt%GaussUltraSphericalRadauLeft, qpopt%GaussUltraSphericalRadauRight)
ans = 2_I4B + INT((order - 1) / 2, kind=I4B)
CASE DEFAULT
ans = 2_I4B + INT(order / 2, kind=I4B)
END SELECT
Expand Down
Loading