I'm working with a large fortran program that has a number of improvements that I'm trying to backport into a different fortran program. Unfortunately, the one program has no consistent tabbing and ...
program tpoly dimension pol(100) real pol integer i,j,n real su,pu,mu real x real etime real elapsed(2) real total n = 50000000 x = 0.2 mu = 10.0 pu = 0.0 do i = 1,n do j=1,100 mu = (mu + 2.0) / 2.0 ...