********> bugfix.49 Author: David Veenstra Date: 10/2/92 Program: EDIT Problem: Reorienting waters to the electric field of the rest of the system results in some NaN water coordinates on some machines (HP). Cause: The program relied on the compiler to initialize an array to 0. Fix: Make the following change to edb.f: -------------------- *** OLD edb.f --- NEW edb.f *************** *** 673,678 **** --- 673,684 ---- DATA MAIN/1HM / DATA IXYZ/3HXYZ / C + c initialize X0 for HP (Veenstra, 10/92) + c + X0(1) = 0.0 + X0(2) = 0.0 + X0(3) = 0.0 + c NMOLW = NMOL+1 NMOLWA = NMOL+2 C -------------------