Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!watmath!clyde!caip!lll-crg!seismo!cmcl2!acf4!rosenblg From: rosenblg@acf4.UUCP (Gary J. Rosenblum) Newsgroups: net.micro.att Subject: Re: f77 problem on 3B2/310 Message-ID: <8650002@acf4.UUCP> Date: Thu, 7-Aug-86 12:02:00 EDT Article-I.D.: acf4.8650002 Posted: Thu Aug 7 12:02:00 1986 Date-Received: Sat, 9-Aug-86 08:23:08 EDT References: <8650001@acf4.UUCP> Organization: New York University Lines: 15 Sorry, I jumped the gun. The problem is not with boundaries or alignment, but instead there is a bizarre problem with double precision. for example, try compiling the following: subroutine plot (x, n) double precision x(n) double precision xmin integer w j = (x(i) - xmin) * w <== this works, BUT j = w * (x(i) - xmin) does not! return end changing the minus sign to a division or multication works, as does other random things, like switching xmin with x(i).