mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-09 23:45:36 +00:00
For Mirs preconditioner solver
This commit is contained in:
parent
4efa042f50
commit
8aa1a37aad
@ -145,6 +145,44 @@ public:
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////
|
||||||
|
// Create a shifted HermOp
|
||||||
|
////////////////////////////////////////////////////////////////////
|
||||||
|
template<class Field>
|
||||||
|
class ShiftedHermOpLinearOperator : public LinearOperatorBase<Field> {
|
||||||
|
LinearOperatorBase<Field> &_Mat;
|
||||||
|
RealD _shift;
|
||||||
|
public:
|
||||||
|
ShiftedHermOpLinearOperator(LinearOperatorBase<Field> &Mat,RealD shift): _Mat(Mat), _shift(shift){};
|
||||||
|
// Support for coarsening to a multigrid
|
||||||
|
void OpDiag (const Field &in, Field &out) {
|
||||||
|
assert(0);
|
||||||
|
}
|
||||||
|
void OpDir (const Field &in, Field &out,int dir,int disp) {
|
||||||
|
assert(0);
|
||||||
|
}
|
||||||
|
void OpDirAll (const Field &in, std::vector<Field> &out){
|
||||||
|
assert(0);
|
||||||
|
};
|
||||||
|
void Op (const Field &in, Field &out){
|
||||||
|
assert(0);
|
||||||
|
}
|
||||||
|
void AdjOp (const Field &in, Field &out){
|
||||||
|
assert(0);
|
||||||
|
}
|
||||||
|
void HermOpAndNorm(const Field &in, Field &out,RealD &n1,RealD &n2){
|
||||||
|
HermOp(in,out);
|
||||||
|
ComplexD dot = innerProduct(in,out);
|
||||||
|
n1=real(dot);
|
||||||
|
n2=norm2(out);
|
||||||
|
}
|
||||||
|
void HermOp(const Field &in, Field &out){
|
||||||
|
_Mat.HermOp(in,out);
|
||||||
|
out = out + _shift*in;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
// Wrap an already herm matrix
|
// Wrap an already herm matrix
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
|
Loading…
Reference in New Issue
Block a user