File: setint.f

package info (click to toggle)
x13as 1.1-b59-1
  • links: PTS, VCS
  • area: non-free
  • in suites: bookworm
  • size: 9,088 kB
  • sloc: fortran: 114,121; makefile: 14
file content (14 lines) | stat: -rw-r--r-- 584 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
**==setint.f    processed by SPAG 4.03F  at 09:53 on  1 Mar 1994
      SUBROUTINE setint(Intcnt,Nh,H)
      IMPLICIT NONE
c-----------------------------------------------------------------------
c     Subroutine to set an integer vector to intcnt*J
c-----------------------------------------------------------------------
      INTEGER i,Intcnt,Nh,H(*)
c     ------------------------------------------------------------------
      DO i=1,Nh
       H(i)=Intcnt
      END DO
c     ------------------------------------------------------------------
      RETURN
      END