To Whom It May Concern:<br><br>The current version of GROMACS-4.0.7 has
an incorrectly working g_dih function. When producing its .out file, it
only writes the headings into the file, and none of the data. The error
(and correction) in the code can be found in gmx_dih.c at line 264,
where it is as follows:<br>


<br>for (i=0; i&gt;xr-&gt;ndih); i++) {<br><br>This is incorrect, as i
is automatically not greater than xr-&gt;ndih, and the resulting for
loop does not run, leading to the loss of output of the ana_dih
function (ln 266). My correction (what I assume was meant) is below:<br>

<br>for (i=0; i&lt; xr-&gt;ndih; i++) {<br><br>This produces a correctly running for loop, and ends up with the desired output when g_dih is run.<br><br>Please confirm that this email has been received and the problem is being addressed.<br>



<br>Best,<br><br>Alan Hutchison