Prev: Ordinary differential equations system: runge-kutta with adaptive step
Next: This implicit statement is not positioned correctly within thescope unit
From: Allamarein on 26 Jul 2010 13:37 What means 'This implicit statement is not positioned correctly within the scope unit'? I have this line in a COMMON (*.cmn): IMPLICIT DOUBLE PRECISION (a-h, o-z), INTEGER (i-n) I use two common, but only one have the previous line. How should I correct my code?
From: robin on 26 Jul 2010 20:15
"Allamarein" <matteo.diplomacy(a)gmail.com> wrote in message news:4a48afb5-5177-4ca1-bc2b-6d4d3339e49f(a)q35g2000yqn.googlegroups.com... | What means 'This implicit statement is not positioned correctly within | the scope unit'? | I have this line in a COMMON (*.cmn): IMPLICIT DOUBLE PRECISION (a-h, | o-z), INTEGER (i-n) | I use two common, but only one have the previous line. | How should I correct my code? IMPLICIT comes before other declarative statements. |