Clean-up!

Trying to reduce warnings and unused variables in the code. This should
not be in this branch.
This commit is contained in:
Jorge Gonzalez 2024-07-11 15:55:02 +02:00
commit bc8f205287
8 changed files with 23 additions and 22 deletions

View file

@ -30,8 +30,9 @@ MODULE moduleEM
INTEGER, ALLOCATABLE:: nodes(:)
INTEGER:: n
nNodes = 1
nNodes = edge%nNodes
nodes = edge%getNodes(nNodes)
nodes = edge%getNodes(nNodes)
DO n = 1, nNodes
SELECT CASE(self%typeEM)