diff --git a/t.cc b/t.cc index 22bc995..1f9c871 100644 --- a/t.cc +++ b/t.cc @@ -3350,4 +3350,6 @@ for(int i=0; i(nn,mm,kk,&data[0],&u.data[0], &rhsu.data[0],alpha,beta); } +template +static const PermutationAlgebra *help_pa; + +static bool help_inverse; + +template +static T help_alpha; + +template +static void permutationalgebra_callback(const SUPERINDEX &I, T *v) +{ +FLATINDEX J = superindex2flat(I); +for(int p=0; p->size(); ++p) + { + FLATINDEX Jp = J.permuted((*help_pa)[p].perm,help_inverse); + *v += help_alpha * (*help_pa)[p].weight * (*help_t)(Jp); + } +} + + + +template +void Tensor::apply_permutation_algebra(const Tensor &rhs, const PermutationAlgebra &pa, bool inverse, T alpha, T beta) +{ +if(beta!=(T)0) *this *= beta; else clear(); +if(alpha==(T)0) return; + +help_t = const_cast *>(&rhs); +help_pa = &pa; +help_inverse = inverse; +help_alpha = alpha; +loopover(permutationalgebra_callback); +} template class Tensor; diff --git a/tensor.h b/tensor.h index 6f727c0..9926dae 100644 --- a/tensor.h +++ b/tensor.h @@ -183,8 +183,12 @@ public: void addcontraction(const Tensor &rhs1, int group, int index, const Tensor &rhs, int rhsgroup, int rhsindex, T alpha=1, T beta=1, bool doresize=false); inline Tensor contraction(int group, int index, const Tensor &rhs, int rhsgroup, int rhsindex, T alpha=1) const {Tensor r; r.addcontraction(*this,group,index,rhs,rhsgroup,rhsindex,alpha,0,true); return r; } - //@@@ general antisymmetrization operator Kucharski style - or that will be left to a code generator? - //@@@symmetrize a group, antisymmetrize a group, expand a (anti)symmetric group - obecne symmetry change krome +1 na -1 vse mozne + void apply_permutation_algebra(const Tensor &rhs, const PermutationAlgebra &pa, bool inverse=false, T alpha=1, T beta=0); //general (not optimally efficient) symmetrizers, antisymmetrizers etc. acting on the flattened index list: +// this *=beta; for I over this: this(I) += alpha * sum_P c_P rhs(P(I)) +// PermutationAlgebra can represent e.g. general_antisymmetrizer in Kucharski-Bartlett notation + + + //TODO perhaps implement application of a permutation algebra to a product of several tensors };