2016-01-02 14:51:32 +00:00
|
|
|
/*************************************************************************************
|
|
|
|
|
|
|
|
Grid physics library, www.github.com/paboyle/Grid
|
|
|
|
|
|
|
|
Source file: ./lib/algorithms/iterative/EigenSort.h
|
|
|
|
|
|
|
|
Copyright (C) 2015
|
|
|
|
|
|
|
|
Author: Peter Boyle <paboyle@ph.ed.ac.uk>
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along
|
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
|
|
|
|
See the full license in the file "LICENSE" in the top level distribution directory
|
|
|
|
*************************************************************************************/
|
|
|
|
/* END LEGAL */
|
2015-10-08 23:40:25 +01:00
|
|
|
#ifndef GRID_EIGENSORT_H
|
|
|
|
#define GRID_EIGENSORT_H
|
|
|
|
|
|
|
|
|
|
|
|
namespace Grid {
|
|
|
|
/////////////////////////////////////////////////////////////
|
|
|
|
// Eigen sorter to begin with
|
|
|
|
/////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
template<class Field>
|
|
|
|
class SortEigen {
|
|
|
|
private:
|
|
|
|
|
2016-01-25 06:26:25 +00:00
|
|
|
//hacking for testing for now
|
2016-03-30 08:16:02 +01:00
|
|
|
private:
|
2016-01-25 06:26:25 +00:00
|
|
|
static bool less_lmd(RealD left,RealD right){
|
|
|
|
return left > right;
|
|
|
|
}
|
2016-03-30 08:16:02 +01:00
|
|
|
static bool less_pair(std::pair<RealD,Field const*>& left,
|
|
|
|
std::pair<RealD,Field const*>& right){
|
2016-01-25 06:26:25 +00:00
|
|
|
return left.first > (right.first);
|
|
|
|
}
|
2016-03-30 08:16:02 +01:00
|
|
|
|
2015-10-08 23:40:25 +01:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
void push(DenseVector<RealD>& lmd,
|
2016-03-30 08:16:02 +01:00
|
|
|
DenseVector<Field>& evec,int N) {
|
|
|
|
DenseVector<Field> cpy(lmd.size(),evec[0]._grid);
|
|
|
|
for(int i=0;i<lmd.size();i++) cpy[i] = evec[i];
|
2015-10-08 23:40:25 +01:00
|
|
|
|
2016-03-30 08:16:02 +01:00
|
|
|
DenseVector<std::pair<RealD, Field const*> > emod(lmd.size());
|
|
|
|
for(int i=0;i<lmd.size();++i)
|
|
|
|
emod[i] = std::pair<RealD,Field const*>(lmd[i],&cpy[i]);
|
2015-10-08 23:40:25 +01:00
|
|
|
|
|
|
|
partial_sort(emod.begin(),emod.begin()+N,emod.end(),less_pair);
|
|
|
|
|
2016-03-30 08:16:02 +01:00
|
|
|
typename DenseVector<std::pair<RealD, Field const*> >::iterator it = emod.begin();
|
2015-10-08 23:40:25 +01:00
|
|
|
for(int i=0;i<N;++i){
|
|
|
|
lmd[i]=it->first;
|
2016-03-30 08:16:02 +01:00
|
|
|
evec[i]=*(it->second);
|
2015-10-08 23:40:25 +01:00
|
|
|
++it;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
void push(DenseVector<RealD>& lmd,int N) {
|
|
|
|
std::partial_sort(lmd.begin(),lmd.begin()+N,lmd.end(),less_lmd);
|
|
|
|
}
|
|
|
|
bool saturated(RealD lmd, RealD thrs) {
|
|
|
|
return fabs(lmd) > fabs(thrs);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
#endif
|