File: where_table.h

package info (click to toggle)
aces3 3.0.6-7
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 82,460 kB
  • sloc: fortran: 225,647; ansic: 20,413; cpp: 4,349; makefile: 953; sh: 137
file content (14 lines) | stat: -rw-r--r-- 437 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
      integer iwhere
      integer nwhere
      integer max_where_table
      parameter (max_where_table = 500)
      integer c_where_ind1
      parameter (c_where_ind1 = 1)
      integer c_where_cond
      parameter (c_where_cond = 2)
      integer c_where_ind2
      parameter (c_where_ind2 = 3)
      integer where_table

      common /where_table_block/iwhere, nwhere, 
     *                          where_table(max_where_table,3)