From 7f79e55a633661a30e16c0b839700696641905a6 Mon Sep 17 00:00:00 2001 From: jiri Date: Fri, 25 Feb 2005 23:37:26 +0000 Subject: [PATCH] *** empty log message *** --- nonclass.cc | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/nonclass.cc b/nonclass.cc index 4fa04f5..e60cdc0 100644 --- a/nonclass.cc +++ b/nonclass.cc @@ -340,11 +340,21 @@ extern "C" void FORNAME(dggev)(const char *JOBVL, const char *JOBVR, const int * //statics for sorting static int *gdperm; -static double *gdwr, *gdwi; +static double *gdwr, *gdwi, *gdbeta; //compare methods static double realonly(const int i, const int j) { +if(gdbeta) + { + if(gdbeta[i]==0. && gdbeta[j]!=0) return 1.; + if(gdbeta[j]==0. && gdbeta[i]!=0) return -1.; + if(gdbeta[i]==0. && gdbeta[j]==0) return 0.; + double tmp = gdwr[i]/gdbeta[i]-gdwr[j]/gdbeta[j]; + if(tmp) return tmp; + return gdwi[j]/gdbeta[j]-gdwi[i]/gdbeta[i]; + } +//else double tmp = gdwr[i]-gdwr[j]; if(tmp) return tmp; return gdwi[j]-gdwi[i]; @@ -354,9 +364,7 @@ static double realfirst(const int i, const int j) { if(gdwi[i] && ! gdwi[j]) return 1.; if(!gdwi[i] && gdwi[j]) return -1.; -double tmp = gdwr[i]-gdwr[j]; -if(tmp) return tmp; -return gdwi[j]-gdwi[i]; +return realonly(i,j); } static double (* gdcompar[2])(const int, const int) = {&realonly, &realfirst}; @@ -369,6 +377,7 @@ int itmp; itmp=gdperm[i]; gdperm[i]=gdperm[j]; gdperm[j]=itmp; tmp=gdwr[i]; gdwr[i]=gdwr[j]; gdwr[j]=tmp; tmp=gdwi[i]; gdwi[i]=gdwi[j]; gdwi[j]=tmp; +if(gdbeta) {tmp=gdbeta[i]; gdbeta[i]=gdbeta[j]; gdbeta[j]=tmp;} } @@ -426,7 +435,7 @@ void gdiagonalize(NRMat &a, NRVec &wr, NRVec &wi, if(biorthonormalize && vl && vr) { - if(b || beta) laerror("biorthonormalize not implemented yet for generalized non-symmetric eiugenproblem");//metric b would be needed + if(b || beta) laerror("@@@ biorthonormalize not implemented yet for generalized non-symmetric eigenproblem");//metric b would be needed int i=0; while(i &a, NRVec &wr, NRVec &wi, if(sorttype>0) { - if(b || beta) laerror("sort not implemented yet for generalized non-symmetric eiugenproblem"); NRVec perm(n); for(int i=0; i