From 3b2e95bc79ff6b6dad31c250a75a714fd618a3e6 Mon Sep 17 00:00:00 2001 From: Mark Abraham Date: Thu, 13 Oct 2011 14:14:54 +1100 Subject: [PATCH] Changed default value for g_anaeig -last to -1 The old default for -last was 8, which is pretty arbitrary. There are so many different operations for g_anaeig that requiring the user to make an active choice about any eigenvector subset seems wise. The new default is to do the operation on all of the eigenvectors. Change-Id: I52ba7539d70e559712b52e5ec46dff6731c99094 --- src/tools/gmx_anaeig.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/gmx_anaeig.c b/src/tools/gmx_anaeig.c index 81627fc1cc..4c2e3fa949 100644 --- a/src/tools/gmx_anaeig.c +++ b/src/tools/gmx_anaeig.c @@ -820,7 +820,7 @@ int gmx_anaeig(int argc,char *argv[]) "computed based on the Quasiharmonic approach and based on", "Schlitter's formula." }; - static int first=1,last=8,skip=1,nextr=2,nskip=6; + static int first=1,last=-1,skip=1,nextr=2,nskip=6; static real max=0.0,temp=298.15; static gmx_bool bSplit=FALSE,bEntropy=FALSE; t_pargs pa[] = { -- 2.11.4.GIT