You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.1 KiB
33 lines
1.1 KiB
2 years ago
|
C Copyright(C) 1999-2020 National Technology & Engineering Solutions
|
||
|
C of Sandia, LLC (NTESS). Under the terms of Contract DE-NA0003525 with
|
||
|
C NTESS, the U.S. Government retains certain rights in this software.
|
||
|
C
|
||
|
C See packages/seacas/LICENSE for details
|
||
|
|
||
|
C=======================================================================
|
||
|
INTEGER FUNCTION NUMEQL (TORF, LENLST, LOGLST)
|
||
|
C=======================================================================
|
||
|
|
||
|
C --*** NUMEQL *** (ETCLIB) Count number of occurrences of logical in list
|
||
|
C -- Written by Amy Gilkey - revised 12/21/87
|
||
|
C --
|
||
|
C --NUMEQL returns the number of times the given logical occurs in a list
|
||
|
C --of logicals.
|
||
|
C --
|
||
|
C --Parameters:
|
||
|
C -- TORF - IN - the logical to be counted
|
||
|
C -- LENLST - IN - the number of logicals in the list
|
||
|
C -- LOGLST - IN - the list of logicals to be searched
|
||
|
|
||
|
LOGICAL TORF
|
||
|
INTEGER LENLST
|
||
|
LOGICAL LOGLST(*)
|
||
|
|
||
|
NUMEQL = 0
|
||
|
DO 10 I = 1, LENLST
|
||
|
IF (TORF .EQV. LOGLST(I)) NUMEQL = NUMEQL + 1
|
||
|
10 CONTINUE
|
||
|
|
||
|
RETURN
|
||
|
END
|