ForestClaw / forestclaw

Quadtree/octree adaptive PDE solver based based on p4est.
http://www.forestclaw.org
BSD 2-Clause "Simplified" License
58 stars 21 forks source link

(clawpack/apps) Fix common blocks so all declarations are consistent #162

Closed donnaaboise closed 2 years ago

donnaaboise commented 2 years ago

Fixed numerous places where I defined

double precision pi, pi2
common /compi/ pi, pi2

in one file, but then only referenced

double precision pi
common /compi/ pi 

in another file, when pi2 was not needed. It seems that that latest versions of gfortran pick this up.