mirror of
https://github.com/paboyle/Grid.git
synced 2025-04-04 19:25:56 +01:00
Rely on default constructors
This commit is contained in:
parent
3954792f37
commit
0b165afd9e
@ -34,62 +34,64 @@ public:
|
|||||||
|
|
||||||
// Scalar no action
|
// Scalar no action
|
||||||
// template<int Level> using tensor_reduce_level = typename iScalar<GridTypeMapper<vtype>::tensor_reduce_level<Level> >;
|
// template<int Level> using tensor_reduce_level = typename iScalar<GridTypeMapper<vtype>::tensor_reduce_level<Level> >;
|
||||||
iScalar()=default;
|
iScalar() = default;
|
||||||
|
/*
|
||||||
|
iScalar(const iScalar<vtype> ©me)=default;
|
||||||
|
iScalar(iScalar<vtype> &©me)=default;
|
||||||
|
iScalar<vtype> & operator= (const iScalar<vtype> ©me) = default;
|
||||||
|
iScalar<vtype> & operator= (iScalar<vtype> &©me) = default;
|
||||||
|
*/
|
||||||
iScalar(scalar_type s) : _internal(s) {};// recurse down and hit the constructor for vector_type
|
iScalar(scalar_type s) : _internal(s) {};// recurse down and hit the constructor for vector_type
|
||||||
iScalar(const Zero &z){ *this = zero; };
|
iScalar(const Zero &z){ *this = zero; };
|
||||||
|
|
||||||
iScalar<vtype> & operator= (const Zero &hero){
|
iScalar<vtype> & operator= (const Zero &hero){
|
||||||
zeroit(*this);
|
zeroit(*this);
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
friend strong_inline void vstream(iScalar<vtype> &out,const iScalar<vtype> &in){
|
friend strong_inline void vstream(iScalar<vtype> &out,const iScalar<vtype> &in){
|
||||||
vstream(out._internal,in._internal);
|
vstream(out._internal,in._internal);
|
||||||
}
|
}
|
||||||
|
friend strong_inline void zeroit(iScalar<vtype> &that){
|
||||||
|
zeroit(that._internal);
|
||||||
|
}
|
||||||
|
friend strong_inline void prefetch(iScalar<vtype> &that){
|
||||||
|
prefetch(that._internal);
|
||||||
|
}
|
||||||
|
friend strong_inline void permute(iScalar<vtype> &out,const iScalar<vtype> &in,int permutetype){
|
||||||
|
permute(out._internal,in._internal,permutetype);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Unary negation
|
||||||
friend strong_inline void zeroit(iScalar<vtype> &that){
|
friend strong_inline iScalar<vtype> operator -(const iScalar<vtype> &r) {
|
||||||
zeroit(that._internal);
|
iScalar<vtype> ret;
|
||||||
}
|
ret._internal= -r._internal;
|
||||||
friend strong_inline void prefetch(iScalar<vtype> &that){
|
return ret;
|
||||||
prefetch(that._internal);
|
}
|
||||||
}
|
// *=,+=,-= operators inherit from corresponding "*,-,+" behaviour
|
||||||
friend strong_inline void permute(iScalar<vtype> &out,const iScalar<vtype> &in,int permutetype){
|
strong_inline iScalar<vtype> &operator *=(const iScalar<vtype> &r) {
|
||||||
permute(out._internal,in._internal,permutetype);
|
*this = (*this)*r;
|
||||||
}
|
return *this;
|
||||||
|
}
|
||||||
// Unary negation
|
strong_inline iScalar<vtype> &operator -=(const iScalar<vtype> &r) {
|
||||||
friend strong_inline iScalar<vtype> operator -(const iScalar<vtype> &r) {
|
*this = (*this)-r;
|
||||||
iScalar<vtype> ret;
|
return *this;
|
||||||
ret._internal= -r._internal;
|
}
|
||||||
return ret;
|
strong_inline iScalar<vtype> &operator +=(const iScalar<vtype> &r) {
|
||||||
}
|
*this = (*this)+r;
|
||||||
// *=,+=,-= operators inherit from corresponding "*,-,+" behaviour
|
return *this;
|
||||||
strong_inline iScalar<vtype> &operator *=(const iScalar<vtype> &r) {
|
}
|
||||||
*this = (*this)*r;
|
strong_inline vtype & operator ()(void) {
|
||||||
return *this;
|
return _internal;
|
||||||
}
|
}
|
||||||
strong_inline iScalar<vtype> &operator -=(const iScalar<vtype> &r) {
|
strong_inline const vtype & operator ()(void) const {
|
||||||
*this = (*this)-r;
|
return _internal;
|
||||||
return *this;
|
}
|
||||||
}
|
|
||||||
strong_inline iScalar<vtype> &operator +=(const iScalar<vtype> &r) {
|
operator ComplexD () const { return(TensorRemove(_internal)); };
|
||||||
*this = (*this)+r;
|
operator RealD () const { return(real(TensorRemove(_internal))); }
|
||||||
return *this;
|
|
||||||
}
|
// convert from a something to a scalar
|
||||||
|
template<class T,typename std::enable_if<!isGridTensor<T>::value, T>::type* = nullptr > strong_inline auto operator = (T arg) -> iScalar<vtype>
|
||||||
strong_inline vtype & operator ()(void) {
|
|
||||||
return _internal;
|
|
||||||
}
|
|
||||||
|
|
||||||
strong_inline const vtype & operator ()(void) const {
|
|
||||||
return _internal;
|
|
||||||
}
|
|
||||||
|
|
||||||
operator ComplexD () const { return(TensorRemove(_internal)); };
|
|
||||||
operator RealD () const { return(real(TensorRemove(_internal))); }
|
|
||||||
|
|
||||||
// convert from a something to a scalar
|
|
||||||
template<class T,typename std::enable_if<!isGridTensor<T>::value, T>::type* = nullptr > strong_inline auto operator = (T arg) -> iScalar<vtype>
|
|
||||||
{
|
{
|
||||||
_internal = vtype(arg);
|
_internal = vtype(arg);
|
||||||
return *this;
|
return *this;
|
||||||
@ -125,6 +127,12 @@ public:
|
|||||||
enum { TensorLevel = GridTypeMapper<vtype>::TensorLevel + 1};
|
enum { TensorLevel = GridTypeMapper<vtype>::TensorLevel + 1};
|
||||||
iVector(const Zero &z){ *this = zero; };
|
iVector(const Zero &z){ *this = zero; };
|
||||||
iVector() =default;
|
iVector() =default;
|
||||||
|
/*
|
||||||
|
iVector(const iVector<vtype,N> ©me)=default;
|
||||||
|
iVector(iVector<vtype,N> &©me)=default;
|
||||||
|
iVector<vtype,N> & operator= (const iVector<vtype,N> ©me) = default;
|
||||||
|
iVector<vtype,N> & operator= (iVector<vtype,N> &©me) = default;
|
||||||
|
*/
|
||||||
|
|
||||||
iVector<vtype,N> & operator= (const Zero &hero){
|
iVector<vtype,N> & operator= (const Zero &hero){
|
||||||
zeroit(*this);
|
zeroit(*this);
|
||||||
@ -205,8 +213,12 @@ public:
|
|||||||
|
|
||||||
iMatrix(const Zero &z){ *this = zero; };
|
iMatrix(const Zero &z){ *this = zero; };
|
||||||
iMatrix() =default;
|
iMatrix() =default;
|
||||||
|
/*
|
||||||
|
iMatrix(const iMatrix<vtype,N> ©me)=default;
|
||||||
|
iMatrix(iMatrix<vtype,N> &©me)=default;
|
||||||
|
iMatrix<vtype,N> & operator= (const iMatrix<vtype,N> ©me) = default;
|
||||||
|
iMatrix<vtype,N> & operator= (iMatrix<vtype,N> &©me) = default;
|
||||||
|
*/
|
||||||
iMatrix<vtype,N> & operator= (const Zero &hero){
|
iMatrix<vtype,N> & operator= (const Zero &hero){
|
||||||
zeroit(*this);
|
zeroit(*this);
|
||||||
return *this;
|
return *this;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user