Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update #201

Merged
merged 1 commit into from
Jun 21, 2023
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 CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ ENABLE_LANGUAGE(C)
ENABLE_LANGUAGE(Fortran)
ENABLE_LANGUAGE(CXX)
SET(VERSION_MAJOR "23")
SET(VERSION_MINOR "4")
SET(VERSION_MINOR "6")
SET(VERSION_BugFix "0")
SET(PROJECT_VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_BugFix})
SET(CMAKE_PROJECT_DESCRIPTION "Expandable and Scalable Infrastructure for Finite Element Methods")
Expand Down
12 changes: 6 additions & 6 deletions src/modules/QuadraturePoint/src/QuadraturePoint_Method.F90
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ MODULE SUBROUTINE quad_initiate3(obj, refElem, order, quadratureType)
!! Reference element
INTEGER(I4B), INTENT(IN) :: order
!! order of integrand
CHARACTER(LEN=*), INTENT(IN) :: quadratureType
CHARACTER(*), INTENT(IN) :: quadratureType
!! Total number quadrature points
END SUBROUTINE quad_initiate3
END INTERFACE
Expand All @@ -115,7 +115,7 @@ MODULE SUBROUTINE quad_initiate4(obj, refElem, nips, quadratureType)
!! Reference element
INTEGER(I4B), INTENT(IN) :: nips(1)
!! order of integrand
CHARACTER(LEN=*), INTENT(IN) :: quadratureType
CHARACTER(*), INTENT(IN) :: quadratureType
!! Total number quadrature points
END SUBROUTINE quad_initiate4
END INTERFACE
Expand Down Expand Up @@ -180,11 +180,11 @@ MODULE PURE SUBROUTINE quad_Deallocate(obj)
END SUBROUTINE quad_Deallocate
END INTERFACE

INTERFACE Deallocate
INTERFACE DEALLOCATE
MODULE PROCEDURE quad_Deallocate
END INTERFACE Deallocate
END INTERFACE DEALLOCATE

PUBLIC :: Deallocate
PUBLIC :: DEALLOCATE

!----------------------------------------------------------------------------
! GaussLegendreQuadrature@GaussLegendre
Expand Down Expand Up @@ -386,7 +386,7 @@ END FUNCTION quad_Outerprod
INTERFACE
MODULE SUBROUTINE quad_Display(obj, msg, unitno)
CLASS(QuadraturePoint_), INTENT(IN) :: obj
CHARACTER(LEN=*), INTENT(IN) :: msg
CHARACTER(*), INTENT(IN) :: msg
INTEGER(I4B), INTENT(IN), OPTIONAL :: unitno
END SUBROUTINE quad_Display
END INTERFACE
Expand Down
7 changes: 3 additions & 4 deletions src/modules/Utility/src/InvUtility.F90
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ MODULE InvUtility
IMPLICIT NONE
PRIVATE

PUBLIC :: DET
PUBLIC :: INV

!----------------------------------------------------------------------------
! Det@InverseMethods
!----------------------------------------------------------------------------
Expand All @@ -35,8 +38,6 @@ END FUNCTION det_2D
MODULE PROCEDURE det_2D
END INTERFACE Det

PUBLIC :: DET

!----------------------------------------------------------------------------
! Det@InverseMethods
!----------------------------------------------------------------------------
Expand Down Expand Up @@ -71,8 +72,6 @@ MODULE PURE SUBROUTINE Inv_2D(invA, A)
MODULE PROCEDURE Inv_2D
END INTERFACE Inv

PUBLIC :: INV

!----------------------------------------------------------------------------
! INV@InverseMethods
!----------------------------------------------------------------------------
Expand Down