#include "implicit_f.inc"
Go to the source code of this file.
◆ groups_get_nentity()
| subroutine groups_get_nentity |
( |
integer, intent(inout) | nentity, |
|
|
type(submodel_data), dimension(nsubmod) | lsubmodel ) |
Definition at line 35 of file groups_get_nentity.F.
39
40
41
42#include "implicit_f.inc"
43
44
45
46
47
48
49 INTEGER,INTENT(INOUT) :: NENTITY
50 TYPE(SUBMODEL_DATA) LSUBMODEL(NSUBMOD)
51
52
53
54 INTEGER NENTITY_POS,NENTITY_NEG,JJ,KK
55 LOGICAL IS_AVAILABLE, IS_ENCRYPTED
56
57
58
59 CALL hm_get_intv (
'idsmax' ,nentity_pos,is_available,lsubmodel)
60 CALL hm_get_intv (
'negativeIdsmax' ,nentity_neg,is_available,lsubmodel)
61 nentity = nentity_pos + nentity_neg
62
63
64 RETURN
subroutine hm_get_intv(name, ival, is_available, lsubmodel)