I'm using Radau.f
Fortran ode-solver and my gfortran
complains about the use of *
For example in:
FF(I)=TI711*Z1I+TI712*Z2I+TI713*Z3I+TI714*Z4I+TI715*Z5I
* +TI716*Z6I+TI717*Z7I
what is *
standing for? Is it an &
such that the line should be:
FF(I)=TI711*Z1I+TI712*Z2I+TI713*Z3I+TI714*Z4I+TI715*Z5I+&
& +TI716*Z6I+TI717*Z7I
Or is it supposed to be a comment or something else?