16 lines
319 B
Fortran
16 lines
319 B
Fortran
|
|
!##############################################################
|
|
MODULE FEsolving
|
|
!##############################################################
|
|
|
|
use prec, only: pInt
|
|
implicit none
|
|
|
|
integer(pInt) cycleCounter
|
|
integer(pInt) theInc, theCycle, theLovl
|
|
logical :: outdatedByNewInc = .false.
|
|
|
|
|
|
|
|
END MODULE FEsolving
|