main
|
Last change
on this file was ea777aa, checked in by Alex Wilton <awilton@…>, 3 years ago |
|
Moved examples, include, build_default.properties, common.xml, and README out from dev.civl.com into the root of the repo.
git-svn-id: svn://vsl.cis.udel.edu/civl/trunk@5704 fb995dde-84ed-4084-dfe6-e5aef3e2452c
|
-
Property mode
set to
100755
|
|
File size:
545 bytes
|
| Line | |
|---|
| 1 | c
|
|---|
| 2 | C OPCTR is a set of arrays for tracking the number of operations,
|
|---|
| 3 | C and number of calls for a particular subroutine
|
|---|
| 4 |
|
|---|
| 5 | integer maxrts
|
|---|
| 6 | parameter (maxrts=1000)
|
|---|
| 7 |
|
|---|
| 8 | character*6 rname(maxrts)
|
|---|
| 9 | common /opctrc/ rname
|
|---|
| 10 | c
|
|---|
| 11 | real*8 dct(maxrts),rct(maxrts),dcount
|
|---|
| 12 | common /opctrd/ dct ,rct ,dcount
|
|---|
| 13 | c
|
|---|
| 14 | integer ncall(maxrts),nrout
|
|---|
| 15 | common /opctri/ ncall ,nrout
|
|---|
| 16 | c
|
|---|
| 17 | integer myrout,isclld
|
|---|
| 18 | save myrout,isclld
|
|---|
| 19 | data myrout /0/
|
|---|
| 20 | data isclld /0/
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.