|
Last change
on this file since 141 was
57,
checked in by aslmd, 15 years ago
|
|
mineur LMD_MM_MARS: ajout du GCM ancienne physique, systeme maintenant complet sur SVN (ne manque que la base de donnees d'etats initiaux)
|
|
File size:
310 bytes
|
| Line | |
|---|
| 1 | FUNCTION ilsum(n, logic, inc) |
|---|
| 2 | c |
|---|
| 3 | IMPLICIT NONE |
|---|
| 4 | c |
|---|
| 5 | integer ilsum |
|---|
| 6 | integer n, inc |
|---|
| 7 | logical logic((n-1)*inc+1) |
|---|
| 8 | c |
|---|
| 9 | integer i, in |
|---|
| 10 | c |
|---|
| 11 | ilsum = 0. |
|---|
| 12 | in = 1 |
|---|
| 13 | do 10 i = 1, n |
|---|
| 14 | if (logic(in)) ilsum = ilsum + 1 |
|---|
| 15 | in=in+inc |
|---|
| 16 | 10 continue |
|---|
| 17 | c |
|---|
| 18 | return |
|---|
| 19 | end |
|---|
Note: See
TracBrowser
for help on using the repository browser.