1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-06-19 16:27:05 +01:00

Merge branch 'develop' of https://github.com/paboyle/Grid into feature/rmhmc

This commit is contained in:
Chulwoo Jung
2020-07-22 15:54:07 -04:00
142 changed files with 6677 additions and 2755 deletions

View File

@ -35,7 +35,7 @@ directory
int main(int argc, char **argv) {
#ifndef GRID_NVCC
#ifndef GRID_CUDA
using namespace Grid;

View File

@ -31,7 +31,6 @@ Author: paboyle <paboyle@ph.ed.ac.uk>
using namespace std;
using namespace Grid;
;
template<class Field> class DumbOperator : public LinearOperatorBase<Field> {
public:
@ -57,7 +56,7 @@ public:
// Support for coarsening to a multigrid
void OpDiag (const Field &in, Field &out) {};
void OpDir (const Field &in, Field &out,int dir,int disp){};
void OpDirAll (const Field &in, std::vector<Field> &out) {}; // Abstract base
void OpDirAll (const Field &in, std::vector<Field> &out) {};
void Op (const Field &in, Field &out){
out = scale * in;
@ -105,7 +104,7 @@ int main (int argc, char ** argv)
GridDefaultMpi());
double lo=0.001;
double hi=1.0;
double hi=20.0;
int precision=64;
int degree=10;
AlgRemez remez(lo,hi,precision);