32#ifndef MADNESS_MRA_OPERATOR_H__INCLUDED
33#define MADNESS_MRA_OPERATOR_H__INCLUDED
56 template<
typename T, std::
size_t NDIM>
59 template<
typename T, std::
size_t NDIM>
60 class SeparatedConvolution;
62 template<
typename T, std::
size_t NDIM>
65 template <
typename T,
typename R, std::
size_t NDIM, std::
size_t KDIM>
67 apply(
const SeparatedConvolution<T,KDIM>&
op,
const std::vector< Function<R,NDIM> >
f);
69 template<
typename T, std::
size_t NDIM>
70 std::vector<CCPairFunction<T,NDIM>>
apply(
const SeparatedConvolution<T,NDIM>&
op,
const std::vector<CCPairFunction<T,NDIM>>& argument);
72 template<
typename T, std::
size_t NDIM>
73 std::vector<CCPairFunction<T,NDIM>>
apply(
const SeparatedConvolution<T,NDIM/2>&
op,
const std::vector<CCPairFunction<T,NDIM>>& argument);
75 template<
typename T, std::
size_t NDIM>
76 CCPairFunction<T,NDIM>
apply(
const SeparatedConvolution<T,NDIM>&
op,
const CCPairFunction<T,NDIM>& argument);
78 template<
typename T, std::
size_t NDIM>
79 CCPairFunction<T,NDIM>
apply(
const SeparatedConvolution<T,NDIM/2>&
op,
const CCPairFunction<T,NDIM>& argument);
83 template <
typename Q, std::
size_t NDIM>
92 template <
typename Q, std::
size_t NDIM>
94 std::vector< SeparatedConvolutionInternal<Q,NDIM> >
muops;
138 template <
typename Q, std::
size_t NDIM>
154 std::array<KernelRange, NDIM>
range;
172 mutable std::vector< ConvolutionND<Q,NDIM> >
ops;
176 const std::vector<long>
vk;
177 const std::vector<long>
v2k;
178 const std::vector<Slice>
s0;
192 if (
p!=1 and
p!=2)
throw std::runtime_error(
"particle must be 1 or 2");
204 const std::vector<ConvolutionND<Q,NDIM>>&
get_ops()
const {
return ops; }
227 const std::array<LatticeRange, NDIM>& lattice_ranges) {
231 double hi = cell_width.
normf();
234 bool lattice_summed_any = std::any_of(
235 lattice_ranges.begin(), lattice_ranges.end(), [](
const LatticeRange&
b){ return static_cast<bool>(b); });
236 bool infinite_summed_any =
false;
237 for (
size_t i = 0; i <
NDIM; i++) {
238 if (lattice_ranges[i].infinite() &&
info.
range[i].infinite()) {
239 infinite_summed_any =
true;
256 double max_lattice_spacing = 0;
258 if (lattice_ranges[
d])
259 max_lattice_spacing =
260 std::max(max_lattice_spacing, cell_width(
d));
264 fit.truncate_periodic_expansion(coeff, expnt, max_lattice_spacing,
269 return std::make_pair(coeff, expnt);
306 template <
typename T,
typename R>
317 for (std::size_t i=0; i<
NDIM; ++i) size *= dimk;
318 long dimi = size/dimk;
323 mTxmq(dimi, trans[0].r, dimk, w1,
f.ptr(), trans[0].U, dimk);
325 size = trans[0].r * size / dimk;
327 for (std::size_t
d=1;
d<
NDIM; ++
d) {
328 mTxmq(dimi, trans[
d].r, dimk, w2, w1, trans[
d].U, dimk);
329 size = trans[
d].r * size / dimk;
339 for (std::size_t
d=0;
d<
NDIM; ++
d) {
341 dimi = size/trans[
d].r;
342 mTxmq(dimi, dimk, trans[
d].r, w2, w1, trans[
d].VT);
343 size = dimk*size/trans[
d].r;
357 template <
typename T,
typename R>
366 result2.
scale(mufac);
374 template <
typename T,
typename R>
392 for (std::size_t i=0; i<
NDIM; ++i) size *= dimk;
393 long dimi = size/dimk;
398 mTxmq(dimi, trans[0].r, dimk, w1,
f.ptr(), trans[0].U, dimk);
399 size = trans[0].r * size / dimk;
401 for (std::size_t
d=1;
d<
NDIM; ++
d) {
402 mTxmq(dimi, trans[
d].r, dimk, w2, w1, trans[
d].U, dimk);
403 size = trans[
d].r * size / dimk;
413 for (std::size_t
d=0;
d<
NDIM; ++
d) {
415 dimi = size/trans[
d].r;
416 mTxmq(dimi, dimk, trans[
d].r, w2, w1, trans[
d].VT);
417 size = dimk*size/trans[
d].r;
434 template <
typename T>
450 for (std::size_t
d=0;
d<
NDIM; ++
d) Rnorm *= ops_1d[
d]->Rnorm;
452 if (at.
r_term and (Rnorm > 1.e-20)) {
454 const auto tol_Rs = tol/(Rnorm*
NDIM);
461 if (
NDIM==1) break_even = long(0.5*twok);
462 else if (
NDIM==2) break_even = long(0.6*twok);
463 else if (
NDIM==3) break_even=long(0.65*twok);
464 else break_even=long(0.7*twok);
465 bool rank_is_zero =
false;
466 for (std::size_t
d=0;
d<
NDIM; ++
d) {
468 for (r=0; r<twok; ++r) {
469 if (ops_1d[
d]->Rs[r] < tol_Rs)
break;
471 if (r >= break_even) {
473 trans[
d].
U = ops_1d[
d]->R.ptr();
479 r = std::max(2L,r+(r&1L));
486 trans[
d].
U = ops_1d[
d]->RU.ptr();
487 trans[
d].
VT = ops_1d[
d]->RVT.ptr();
489 trans2[
d]=ops_1d[
d]->R;
500 for (std::size_t
d=0;
d<
NDIM; ++
d) Tnorm *= ops_1d[
d]->Tnorm;
502 if (at.
t_term and (Tnorm>0.0)) {
503 const auto tol_Ts = tol/(Tnorm*
NDIM);
506 if (
NDIM==1) break_even = long(0.5*
k);
507 else if (
NDIM==2) break_even = long(0.6*
k);
508 else if (
NDIM==3) break_even=long(0.65*
k);
509 else break_even=long(0.7*
k);
510 bool rank_is_zero =
false;
511 for (std::size_t
d=0;
d<
NDIM; ++
d) {
513 for (r=0; r<
k; ++r) {
514 if (ops_1d[
d]->Ts[r] < tol_Ts)
break;
516 if (r >= break_even) {
518 trans[
d].
U = ops_1d[
d]->T.ptr();
524 r = std::max(2L,r+(r&1L));
531 trans[
d].
U = ops_1d[
d]->TU.ptr();
532 trans[
d].
VT = ops_1d[
d]->TVT.ptr();
534 trans2[
d]=ops_1d[
d]->T;
545 template <
typename T>
562 for (std::size_t
d=0;
d<
NDIM; ++
d) Rnorm *= ops_1d[
d]->Rnorm;
563 if (Rnorm == 0.0)
return;
565 if (Rnorm > 1.e-20) {
567 tol = tol/(Rnorm*
NDIM);
577 for (std::size_t
d=0;
d<
NDIM; ++
d) {
593 trans2[
d]=ops_1d[
d]->R;
599 for (std::size_t
d=0;
d<
NDIM; ++
d) Tnorm *= ops_1d[
d]->Tnorm;
601 if (n > 0 and (Tnorm>1.e-20)) {
608 for (std::size_t
d=0;
d<
NDIM; ++
d) {
624 trans2[
d]=ops_1d[
d]->T;
644 double prod=1.0,
sum=0.0;
645 for (std::size_t
d=0;
d<
NDIM; ++
d) {
646 double a =
ops[
d]->NSnormf;
647 double b =
ops[
d]->Tnormf;
648 double aa = std::min(
a,
b);
649 double bb = std::max(
a,
b);
651 if (bb > 0.0)
sum +=(
aa/bb);
677 for (
size_t d=0;
d<
NDIM; ++
d) {
678 double dff_tmp = ops_1d[
d]->
N_diff;
679 double duu_tmp = ops_1d[
d]->
N_diff;
680 double udf_tmp = ops_1d[
d]->
N_diff;
683 for (
size_t dd=0; dd<
NDIM; ++dd) {
685 dff_tmp *= ops_1d[dd]->
N_F;
686 duu_tmp *= ops_1d[dd]->
N_up;
688 udf_tmp *= ops_1d[dd]->
N_F;
689 for (
size_t ddd=0; ddd<
NDIM; ++ddd) {
690 if (ddd!=dd) udf += udf_tmp * ops_1d[ddd]->
N_up;
701 for (
int i=1; i<static_cast<int>(
NDIM)-1; ++i)
factorial*=
double(i);
728 for (std::size_t
d=0;
d<
NDIM; ++
d) {
766 for (std::size_t
d=0;
d<
NDIM; ++
d) {
771 op.ops[
d] =
ops[
mu].getop(
d)->mod_nonstandard(op_key);
810 const double munorm =
op.muops[
mu].norm;
811 norm += munorm*munorm;
816 return data.getptr(n,
d);
834 for (
size_t i=0; i<
NDIM; ++i) t[i]=t[i]%2;
848 const double munorm =
op.muops[
mu].norm;
849 norm += munorm*munorm;
862 for (std::size_t
d=1;
d<
NDIM; ++
d) {
875 template<
typename T,
size_t FDIM>
892 for (
int i=0; i<
k; ++i) identity(i,i)=1.0;
898 for (
size_t ii=0; ii<
NDIM; ++ii) matrices[ii+
NDIM]=identity;
900 for (
size_t ii=0; ii<
NDIM; ++ii) matrices[ii]=identity;
918 template<
typename T,
size_t FDIM>
927 for (
size_t ii=0; ii<FDIM; ++ii) matrices[ii]=
h[key.
translation()[ii]%2];
938 for (
int d = 0;
d !=
NDIM; ++
d) {
939 for(
const auto &
op:
ops) {
951 for (
int d = 0;
d !=
NDIM; ++
d) {
952 for (
const auto &
op :
ops) {
954 ops[0].lattice_summed());
977 ,
rank(argops.size())
983 for (
unsigned int mu=0;
mu < argops.size(); ++
mu) {
1007 ,
rank(argops.size())
1030 range =
info.template range_as_array<NDIM>();
1052 ,
rank(coeff.dim(0))
1066 Q c = std::pow(sqrt(expnt(
mu)/
pi),
static_cast<int>(
NDIM));
1072 for (std::size_t
d=0;
d<
NDIM; ++
d) {
1074 lattice_range[
d], bloch_k[
d],
range[
d]));
1083 timer_full.
print(
"op full tensor ");
1114 return getop(n,
d, source_key)->norm;
1124 template<
size_t FDIM>
1125 typename std::enable_if<FDIM!=NDIM, Key<NDIM> >
::type
1141 template<
size_t FDIM>
1142 typename std::enable_if<FDIM==NDIM, Key<NDIM> >
::type
1154 template <
typename T,
size_t FDIM>
1160 template <
typename T,
size_t FDIM>
1170 template <
typename T,
size_t LDIM>
1182 template <
typename T,
size_t LDIM>
1191 template<
typename argT>
1204 template <
typename T>
1219 if (coeff.
dim(0) ==
k) {
1235 tol = 0.01*tol/
rank;
1258 if (muop.
norm > tol) {
1260 Q fac =
ops[
mu].getfac();
1266 r(
s0).gaxpy(1.0,r0,1.0);
1286 template<
typename T>
1297 const std::vector<Slice> s00(coeff.
ndim(),
Slice(0,
k-1));
1317 tol = tol/
rank*0.01;
1325 for (
int r=0; r<coeff.
rank(); ++r) {
1345 Q fac =
ops[
mu].getfac();
1347 tol/
std::abs(fac), fac, work1, work2);
1352 final.get_svdtensor().ref_vector(
particle()-1)(s)=result;
1367 final.reduce_rank(tol2*0.5);
1382 template <
typename T>
1386 double tol,
double tol2)
const {
1399 if (coeff.
dim(0) ==
k) {
1430 std::list<GenTensor<T> > r_list;
1431 std::list<GenTensor<T> > r0_list;
1440 if (muop.
norm > tol) {
1455 Q fac =
ops[
mu].getfac();
1457 tol/
std::abs(fac), fac, work1, work2);
1461 r_list.push_back(r);
1462 r0_list.push_back(r0);
1471 if (r_list.size()>0) r_list.front()(
s0)+=result0;
1490 template<
typename T>
1494 double tol,
double tol2)
const {
1497 if (2*
NDIM==coeff.
ndim())
return 1.5;
1506 const double full_operator_cost=
pow(coeff.
dim(0),
NDIM+1);
1507 const double low_operator_cost=
pow(coeff.
dim(0),
NDIM/2+1);
1508 const double low_reduction_cost=
pow(coeff.
dim(0),
NDIM/2);
1510 double full_cost=0.0;
1511 double low_cost=0.0;
1513 long initial_rank=0;
1514 long final_rank=sqrt(coeff.
size())*0.05;
1520 if (muop.
norm > tol) {
1526 initial_rank+=nterms;
1528 full_cost+=full_operator_cost;
1531 low_cost=initial_rank*low_operator_cost + initial_rank*final_rank*low_reduction_cost;
1535 if (low_cost>0.0) ratio=full_cost/low_cost;
1551 const Key<NDIM>&
shift,
double tol,
bool do_R,
bool do_T)
const {
1553 if (not (do_R or do_T)) {
1554 print(
"no operator requested in make_tt_representation??");
1566 for (std::size_t
d=0;
d<
NDIM; ++
d) Rnorm *=
op->muops[
mu].ops[
d]->Rnorm;
1567 if (Rnorm>1.e-20) hi=
mu;
1568 if ((Rnorm<1.e-20) and (
mu<hi))
lo=
mu;
1573 long rank_eff=(hi-
lo);
1575 if (do_R and do_T) {
1590 for (
int mu=
lo, r=0;
mu<hi; ++
mu, ++r) {
1592 const Q fac =
ops[
mu].getfac();
1593 const Slice sr0(step*r, step*r, 0);
1594 const Slice sr1(step*r+step-1,step*r+step-1,0);
1595 const Slice s00(0,
k-1,1);
1598 cores[0](
_,
_ ,sr0)=muop.
ops[0]->R;
1599 for (std::size_t idim=1; idim<
NDIM-1; ++idim) {
1600 cores[idim](sr0,
_ ,
_ ,sr0)=muop.
ops[idim]->R;
1606 cores[0](s00,s00,sr1)=muop.
ops[0]->T;
1607 for (std::size_t idim=1; idim<
NDIM-1; ++idim) {
1608 cores[idim](sr1,s00,s00,sr1)=muop.
ops[idim]->T;
1610 cores[
NDIM-1](sr1,s00,s00)=muop.
ops[
NDIM-1]->T*(-fac);
1661 MADNESS_EXCEPTION(
"unknown combination of SeparatedConvolutions: feel free to extend in operator.h",1);
1675 for (std::size_t i = 0; i <
NDIM; ++i) {
1687 if (left and right) {
1688 return combine(*left, *right);
1712 const std::array<KernelRange, 3>& kernel_ranges = std::array<KernelRange, 3>(),
1716 lattice_ranges,
k,
false, bloch_k);
1729 const std::array<KernelRange, 3>& kernel_ranges = std::array<KernelRange, 3>(),
1733 lattice_ranges,
k,
false, bloch_k);
1763 template <std::
size_t NDIM>
1765 SeparatedConvolution<double,NDIM>
1770 if (world.
rank()==0)
print(
"the accuracy in BSHOperator is too small, tighten the threshold",eps);
1777 template <std::
size_t NDIM>
1779 SeparatedConvolution<double,NDIM>*
1784 if (world.
rank()==0)
print(
"the accuracy in BSHOperator is too small, tighten the threshold",eps);
1792 static inline SeparatedConvolution<double,3>
1807 const std::array<KernelRange, 3>& kernel_ranges = std::array<KernelRange, 3>(),
1813 lattice_ranges,
k,
false, bloch_k);
1823 const std::array<KernelRange, 3>& kernel_ranges = std::array<KernelRange, 3>(),
1829 lattice_ranges,
k,
false, bloch_k);
1833 static inline SeparatedConvolution<double,3>
1841 double mu,
double lo,
double eps,
1848 double mu,
double lo,
double eps,
1855 template<std::
size_t NDIM=3>
1857 double mu,
double lo,
double eps,
1866 template<std::
size_t NDIM>
1868 double mu,
double lo=0.0,
double eps=0.0,
1877 template<std::
size_t NDIM>
1879 double mu,
double lo=0.0,
double eps=0.0,
1888 template<std::
size_t NDIM>
1890 double mu,
double lo,
double eps,
1899 double mu,
double lo,
double eps,
1909 double mu,
double lo,
double eps,
1920 static inline SeparatedConvolution<double,3>
1931 static inline SeparatedConvolution<double,3>*
1943 static inline SeparatedConvolution<double,3>*
1955 static inline SeparatedConvolution<double,3>
1970 double exponent = 1.0/(2.0*eps);
1972 exponents(0
L) = exponent;
1973 coeffs(0
L)=
pow(exponent/M_PI,0.5*3.0);
1979 template<std::
size_t NDIM>
1985 double exponent = 1.0/(2.0*eps);
1987 exponents(0
L) = exponent;
1988 coeffs(0
L)=
pow(exponent/M_PI,0.5*
NDIM);
2002 double hi = cell_width.
normf();
2005 const auto lattice_summed_any = std::any_of(lattice_ranges.begin(), lattice_ranges.end(), [](
const auto&
b) { return static_cast<bool>(b);});
2006 const auto infinite_any = std::any_of(lattice_ranges.begin(), lattice_ranges.end(), [](
const auto&
b) { return b.infinite();});
2007 if (lattice_summed_any) {
2018 double max_lattice_spacing = 0;
2019 for(
int d=0;
d!=3; ++
d) {
2020 if (lattice_ranges[
d])
2021 max_lattice_spacing =
2022 std::max(max_lattice_spacing, cell_width(
d));
2026 fit.truncate_periodic_expansion(coeff, expnt, max_lattice_spacing,
2040 std::vector< std::shared_ptr< SeparatedConvolution<double,3> > >
2050 double hi = width.
normf();
2052 const auto lattice_sum_any = std::any_of(lattice_ranges.begin(), lattice_ranges.end(), [](
const LatticeRange&
b){ return static_cast<bool>(b); });
2053 if (lattice_sum_any) {
2061 if (lattice_sum_any) {
2062 fit.truncate_periodic_expansion(coeff, expnt, width.
max(),
true);
2065 int rank = coeff.
dim(0);
2067 std::vector<real_convolution_3d_ptr> gradG(3);
2070 std::vector<ConvolutionND<double, 3>> ops(rank);
2071 for (
int mu = 0;
mu < rank;
mu++) {
2073 double c = std::pow(sqrt(expnt(
mu) /
pi), 3);
2074 ops[
mu].setfac(coeff(
mu) /
c / width[
dir]);
2076 for (
int d = 0;
d < 3;
d++) {
2079 k, expnt(
mu) * width[
d] * width[
d], 0,
2080 lattice_ranges[
d]));
2083 k, expnt(
mu) * width[
dir] * width[
dir], 1,
2084 lattice_ranges[
dir]));
2099 std::vector< std::shared_ptr< SeparatedConvolution<double,3> > >
2110 double hi = width.
normf();
2112 bool lattice_sum_any = std::any_of(lattice_ranges.begin(), lattice_ranges.end(), [](
const LatticeRange&
b){ return b.get_range(); });
2113 if (lattice_sum_any) {
2121 if (lattice_sum_any) {
2122 fit.truncate_periodic_expansion(coeff, expnt, width.
max(),
true);
2125 int rank = coeff.
dim(0);
2127 std::vector<real_convolution_3d_ptr> gradG(3);
2130 std::vector<ConvolutionND<double, 3>> ops(rank);
2131 for (
int mu = 0;
mu < rank;
mu++) {
2133 double c = std::pow(sqrt(expnt(
mu) /
pi), 3);
2134 ops[
mu].setfac(coeff(
mu) /
c / width[
dir]);
2136 for (
int d = 0;
d < 3;
d++) {
2139 k, expnt(
mu) * width[
d] * width[
d], 0,
2140 lattice_ranges[
d]));
2143 k, expnt(
mu) * width[
dir] * width[
dir], 1,
2144 lattice_ranges[
dir]));
2156 template <
class Archive,
class T, std::
size_t NDIM>
2165 template <
class Archive,
class T, std::
size_t NDIM>
double q(double t)
Definition DKops.h:18
Provides routines for internal use optimized for aligned data.
long dim(int i) const
Returns the size of dimension i.
Definition basetensor.h:147
long ndim() const
Returns the number of dimensions in the tensor.
Definition basetensor.h:144
Provides the common functionality/interface of all 1D convolutions.
Definition convolution1d.h:259
Array of 1D convolutions (one / dimension)
Definition convolution1d.h:585
Holds displacements for applying operators to avoid replicating for all operators.
Definition displacements.h:66
const std::vector< Key< NDIM > > & get_disp(Level n, const array_of_bools< NDIM > &kernel_lattice_sum_axes)
Definition displacements.h:237
FunctionCommonData holds all Function data common for given k.
Definition function_common_data.h:52
Tensor< double > h0
Definition function_common_data.h:105
Tensor< double > h1
Definition function_common_data.h:105
FunctionDefaults holds default paramaters as static class members.
Definition funcdefaults.h:101
static const Tensor< double > & get_cell_width()
Returns the width of each user cell dimension.
Definition funcdefaults.h:390
A multiresolution adaptive numerical function.
Definition mra.h:144
static GFit BSHFit(double mu, double lo, double hi, double eps, bool prnt=false)
return a fit for the bound-state Helmholtz function
Definition gfit.h:117
static GFit CoulombFit(double lo, double hi, double eps, bool prnt=false)
return a fit for the Coulomb function
Definition gfit.h:102
Definition lowranktensor.h:59
long dim(const int i) const
return the number of entries in dimension i
Definition lowranktensor.h:391
long ndim() const
Definition lowranktensor.h:386
constexpr bool is_full_tensor() const
Definition gentensor.h:224
void reduce_rank(const double &)
Definition gentensor.h:217
long rank() const
Definition gentensor.h:212
long size() const
Definition lowranktensor.h:488
SVDTensor< T > & get_svdtensor()
Definition gentensor.h:228
const BaseTensor * ptr() const
might return a NULL pointer!
Definition lowranktensor.h:715
IsSupported< TensorTypeData< Q >, GenTensor< T > & >::type scale(Q fac)
Inplace multiplication by scalar of supported type (legacy name)
Definition lowranktensor.h:426
constexpr bool is_svd_tensor() const
Definition gentensor.h:222
Key is the index for a node of the 2^NDIM-tree.
Definition key.h:70
Key< NDIM+LDIM > merge_with(const Key< LDIM > &rhs) const
merge with other key (ie concatenate), use level of rhs, not of this
Definition key.h:487
const Vector< Translation, NDIM > & translation() const
Definition key.h:174
void break_apart(Key< LDIM > &key1, Key< KDIM > &key2) const
break key into two low-dimensional keys
Definition key.h:424
Denotes lattice summation over range [-N, N]; N=0 is equivalent to including the simulation cell only...
Definition kernelrange.h:17
Tensor< T > & ref_vector(const unsigned int &idim)
return reference to one of the vectors F
Definition srconf.h:530
int dim_per_vector(int idim) const
return the number of physical dimensions
Definition srconf.h:665
static int max_sigma(const double &thresh, const long &rank, const Tensor< double > &w)
Definition srconf.h:109
Definition SVDTensor.h:42
Convolutions in separated form (including Gaussian)
Definition operator.h:139
SeparatedConvolution(World &world, const Tensor< Q > &coeff, const Tensor< double > &expnt, double lo, double thresh, const std::array< LatticeRange, NDIM > &lattice_ranges=FunctionDefaults< NDIM >::get_bc().lattice_range(), int k=FunctionDefaults< NDIM >::get_k(), bool doleaves=false, double mu=0.0)
Constructor for Gaussian Convolutions (mostly for backward compatability)
Definition operator.h:1037
Timer timer_low_transf
Definition operator.h:165
bool destructive_
destroy the argument or restore it (expensive for 6d functions)
Definition operator.h:159
GenTensor< TENSOR_RESULT_TYPE(T, Q)> apply2(const Key< NDIM > &source, const Key< NDIM > &shift, const GenTensor< T > &coeff, double tol, double tol2) const
apply this operator on coefficients in low rank form
Definition operator.h:1383
std::array< KernelRange, NDIM > range
kernel range is along axis d is limited by range[d] if it's nonnull
Definition operator.h:154
const array_of_bools< NDIM > & lattice_summed() const
Definition operator.h:1102
int particle_
must only be 1 or 2
Definition operator.h:158
void muopxv_fast2(Level n, const ConvolutionData1D< Q > *const ops_1d[NDIM], const GenTensor< T > &f, const GenTensor< T > &f0, GenTensor< TENSOR_RESULT_TYPE(T, Q)> &result, GenTensor< TENSOR_RESULT_TYPE(T, Q)> &result0, double tol, const Q mufac, GenTensor< TENSOR_RESULT_TYPE(T, Q)> &work1, GenTensor< TENSOR_RESULT_TYPE(T, Q)> &work2) const
Apply one of the separated terms, accumulating into the result.
Definition operator.h:546
const double & gamma() const
Definition operator.h:200
GenTensor< TENSOR_RESULT_TYPE(T, Q)> apply2_lowdim(const Key< NDIM > &source, const Key< NDIM > &shift, const GenTensor< T > &coeff, double tol, double tol2) const
apply this operator on only 1 particle of the coefficients in low rank form
Definition operator.h:1287
std::vector< ConvolutionND< Q, NDIM > > ops
ConvolutionND keeps data for 1 term, all dimensions, 1 displacement.
Definition operator.h:172
Function< TENSOR_RESULT_TYPE(T, Q), LDIM+LDIM > operator()(const Function< T, LDIM > &f1, const Function< Q, LDIM > &f2) const
apply this operator on a separable function f(1,2) = f(1) f(2)
Definition operator.h:1172
const SeparatedConvolutionData< Q, NDIM > * getop(Level n, const Key< NDIM > &d, const Key< NDIM > &source) const
get the data for all terms and all dimensions for one displacement
Definition operator.h:781
void set_domain_periodicity(const array_of_bools< NDIM > &domain_is_periodic)
Definition operator.h:1108
const double & mu() const
Definition operator.h:201
double munorm2(Level n, const ConvolutionData1D< Q > *ops[]) const
Definition operator.h:633
const bool & destructive() const
Definition operator.h:198
Timer timer_stats_accumulate
Definition operator.h:167
SimpleCache< SeparatedConvolutionData< Q, NDIM >, NDIM > data
cache for all terms, dims and displacements
Definition operator.h:181
std::enable_if< FDIM!=NDIM, Key< NDIM > >::type get_source_key(const Key< FDIM > key) const
return that part of a hi-dim key that serves as the base for displacements of this operator
Definition operator.h:1126
double munorm2_ns(Level n, const ConvolutionData1D< Q > *ops[]) const
Definition operator.h:641
std::enable_if< FDIM==NDIM, Key< NDIM > >::type get_source_key(const Key< FDIM > key) const
return that part of a hi-dim key that serves as the base for displacements of this operator
Definition operator.h:1143
virtual ~SeparatedConvolution()
Definition operator.h:1079
void muopxv_fast(ApplyTerms at, const ConvolutionData1D< Q > *const ops_1d[NDIM], const Tensor< T > &f, const Tensor< T > &f0, Tensor< TENSOR_RESULT_TYPE(T, Q)> &result, Tensor< TENSOR_RESULT_TYPE(T, Q)> &result0, const double tol, const Q mufac, Tensor< TENSOR_RESULT_TYPE(T, Q)> &work1, Tensor< TENSOR_RESULT_TYPE(T, Q)> &work2) const
Apply one of the separated terms, accumulating into the result.
Definition operator.h:435
SimpleCache< SeparatedConvolutionData< Q, NDIM >, 2 *NDIM > mod_data
cache for all terms, dims and displacements
Definition operator.h:182
argT operator()(const argT &argument) const
apply this onto another suitable argument, returning the same type
Definition operator.h:1192
Timer timer_full
Definition operator.h:164
const array_of_bools< NDIM > & func_domain_is_periodic() const
Definition operator.h:1105
SeparatedConvolution< Q, NDIM > & set_particle(const int p)
Definition operator.h:191
SeparatedConvolution(World &world, const std::vector< std::shared_ptr< Convolution1D< Q > > > &argops, long k=FunctionDefaults< NDIM >::get_k(), bool doleaves=false)
Definition operator.h:964
Function< TENSOR_RESULT_TYPE(T, Q), LDIM+LDIM > operator()(const std::vector< Function< T, LDIM > > &f1, const std::vector< Function< Q, LDIM > > &f2) const
apply this operator on a sum of separable functions f(1,2) = \sum_i f_i(1) f_i(2)
Definition operator.h:1184
void init_lattice_summed()
Definition operator.h:949
Q opT
The apply function uses this to infer resultT=opT*inputT.
Definition operator.h:142
void initialize(const Tensor< Q > &coeff, const Tensor< double > &expnt, std::array< LatticeRange, NDIM > lattice_range, std::array< KernelRange, NDIM > range={}, const Vector< double, NDIM > &bloch_k=Vector< double, NDIM >(0.0))
Definition operator.h:1061
const SeparatedConvolutionInternal< Q, NDIM > getmuop(int mu, Level n, const Key< NDIM > &disp) const
get the transformation matrices for 1 term and all dimensions and one displacement
Definition operator.h:725
const SeparatedConvolutionData< Q, NDIM > * getop_ns(Level n, const Key< NDIM > &d) const
get the data for all terms and all dimensions for one displacement
Definition operator.h:795
const std::vector< long > v2k
Definition operator.h:177
const std::array< KernelRange, NDIM > & get_range() const
Definition operator.h:205
int get_rank() const
Definition operator.h:202
Function< TENSOR_RESULT_TYPE(T, Q), FDIM > operator()(const Function< T, FDIM > &f) const
apply this operator on a function f
Definition operator.h:1155
bool doleaves
If should be applied to leaf coefficients ... false by default.
Definition operator.h:146
void print_timer() const
Definition operator.h:1081
SeparatedConvolution(World &world, const std::vector< ConvolutionND< Q, NDIM > > &argops, long k=FunctionDefaults< NDIM >::get_k(), bool doleaves=false)
Definition operator.h:993
const std::vector< Key< NDIM > > & get_disp(Level n) const
Definition operator.h:1097
void apply_transformation3(const Tensor< T > trans2[NDIM], const Tensor< T > &f, const Q mufac, Tensor< R > &result) const
accumulate into result
Definition operator.h:358
static SeparatedConvolution< Q, NDIM > combine(const SeparatedConvolution< Q, NDIM > &left, const SeparatedConvolution< Q, NDIM > &right)
Definition operator.h:1669
const std::vector< long > vk
Definition operator.h:176
double norm(Level n, const Key< NDIM > &d, const Key< NDIM > &source_key) const
return the operator norm for all terms, all dimensions and 1 displacement
Definition operator.h:1111
TensorTrain< double > make_tt_representation(const Key< NDIM > &source, const Key< NDIM > &shift, double tol, bool do_R, bool do_T) const
construct the tensortrain representation of the operator
Definition operator.h:1550
void reset_timer() const
Definition operator.h:1089
static OperatorInfo combine_OT(const SeparatedConvolution< Q, NDIM > &left, const SeparatedConvolution< Q, NDIM > &right)
return operator type and other info of the combined operator (e.g. fg = f(1,2)* g(1,...
Definition operator.h:1631
GenTensor< T > upsample(const Key< FDIM > &key, const GenTensor< T > &coeff) const
upsample the sum coefficients of level 1 to sum coeffs on level n+1
Definition operator.h:919
bool print_timings
Definition operator.h:160
Timer timer_low_accumulate
Definition operator.h:166
double estimate_costs(const Key< NDIM > &source, const Key< NDIM > &shift, const GenTensor< T > &coeff, double tol, double tol2) const
estimate the ratio of cost of full rank versus low rank
Definition operator.h:1491
bool range_restricted() const
Definition operator.h:206
int get_k() const
Definition operator.h:203
Tensor< TENSOR_RESULT_TYPE(T, Q)> apply(const Key< NDIM > &source, const Key< NDIM > &shift, const Tensor< T > &coeff, double tol) const
apply this operator on coefficients in full rank form
Definition operator.h:1205
const std::vector< Slice > s0
Definition operator.h:178
array_of_bools< NDIM > lattice_summed_
Definition operator.h:150
void apply_transformation2(Level n, long dimk, double tol, const Tensor< T > trans2[NDIM], const GenTensor< T > &f, GenTensor< R > &work1, GenTensor< R > &work2, const Q mufac, GenTensor< R > &result) const
don't accumulate, since we want to do this at apply()
Definition operator.h:375
const int & particle() const
Definition operator.h:190
std::vector< Function< TENSOR_RESULT_TYPE(T, Q), FDIM > > operator()(const std::vector< Function< T, FDIM > > &f) const
apply this on a vector of functions
Definition operator.h:1161
const bool & modified() const
Definition operator.h:187
const FunctionCommonData< Q, NDIM > & cdata
Definition operator.h:174
bool & modified()
Definition operator.h:186
const int k
Definition operator.h:173
friend SeparatedConvolution< Q, NDIM > combine(const std::shared_ptr< SeparatedConvolution< Q, NDIM > > left, const std::shared_ptr< SeparatedConvolution< Q, NDIM > > right)
combine 2 convolution operators to one
Definition operator.h:1684
OperatorInfo info
Definition operator.h:144
Key< NDIM > keyT
Definition operator.h:162
void init_range()
Definition operator.h:936
static const size_t opdim
Definition operator.h:163
bool & destructive()
Definition operator.h:197
void apply_transformation(long dimk, const Transformation trans[NDIM], const Tensor< T > &f, Tensor< R > &work1, Tensor< R > &work2, const Q mufac, Tensor< R > &result) const
Definition operator.h:307
static std::pair< Tensor< double >, Tensor< double > > make_coeff_for_operator(World &world, OperatorInfo &info, const std::array< LatticeRange, NDIM > &lattice_ranges)
Definition operator.h:226
void check_cubic()
Definition operator.h:858
bool modified_
use modified NS form
Definition operator.h:157
int rank
Definition operator.h:175
SeparatedConvolution(World &world, const OperatorInfo info1, const std::array< LatticeRange, NDIM > &lattice_ranges=FunctionDefaults< NDIM >::get_bc().lattice_range(), int k=FunctionDefaults< NDIM >::get_k(), bool doleaves=false, const Vector< double, NDIM > &bloch_k=Vector< double, NDIM >(0.0))
Definition operator.h:1019
GenTensor< T > partial_upsample(const Key< FDIM > &key, const GenTensor< T > &coeff, const int particle) const
upsample some of the dimensions of coeff to its child indicated by key
Definition operator.h:876
double munorm2_modified(Level n, const ConvolutionData1D< Q > *ops_1d[]) const
Definition operator.h:662
int & particle()
Definition operator.h:189
static bool can_combine(const SeparatedConvolution< Q, NDIM > &left, const SeparatedConvolution< Q, NDIM > &right)
Definition operator.h:1626
const std::vector< ConvolutionND< Q, NDIM > > & get_ops() const
Definition operator.h:204
const SeparatedConvolutionData< Q, NDIM > * getop_modified(Level n, const Key< NDIM > &disp, const Key< NDIM > &source) const
get the data for all terms and all dimensions for one displacement (modified NS form)
Definition operator.h:829
array_of_bools< NDIM > func_domain_is_periodic_
ignore periodicity of BC when applying this to function
Definition operator.h:152
const SeparatedConvolutionInternal< Q, NDIM > getmuop_modified(int mu, Level n, const Key< NDIM > &disp, const Key< NDIM > &source) const
get the transformation matrices for 1 term and all dimensions and one displacement
Definition operator.h:754
Simplified interface around hash_map to cache stuff for 1D.
Definition simplecache.h:46
A slice defines a sub-range or patch of a dimension.
Definition slice.h:103
Definition tensortrain.h:123
std::enable_if<!std::is_arithmetic< R >::value, void >::type truncate(double eps)
recompress and truncate this TT representation
Definition tensortrain.h:882
TensorTrain< T > & make_operator()
convert this into an operator representation (r,k',k,r)
Definition tensortrain.h:1187
TensorTrain< T > & make_tensor()
convert this into a tensor representation (r,k,r)
Definition tensortrain.h:1175
A tensor is a multidimensional array.
Definition tensor.h:318
float_scalar_type normf() const
Returns the Frobenius norm of the tensor.
Definition tensor.h:1727
T * ptr()
Returns a pointer to the internal data.
Definition tensor.h:1841
IsSupported< TensorTypeData< Q >, Tensor< T > & >::type scale(Q x)
Inplace multiplication by scalar of supported type (legacy name)
Definition tensor.h:687
T max(long *ind=0) const
Return the maximum value (and if ind is non-null, its index) in the Tensor.
Definition tensor.h:1704
Definition function_common_data.h:169
void print(std::string line="") const
print timer
Definition function_common_data.h:216
void accumulate(const double time) const
accumulate timer
Definition function_common_data.h:183
void reset() const
Definition function_common_data.h:210
A simple, fixed dimension vector.
Definition vector.h:64
Implements most parts of a globally addressable object (via unique ID).
Definition world_object.h:491
void process_pending()
To be called from derived constructor to process pending messages.
Definition world_object.h:787
A parallel world class.
Definition world.h:134
ProcessID rank() const
Returns the process rank in this World (same as MPI_Comm_rank()).
Definition world.h:344
unsigned long id() const
Definition world.h:324
syntactic sugar for std::array<bool, N>
Definition array_of_bools.h:19
Defines common mathematical and physical constants.
Computes most matrix elements over 1D operators (including Gaussians)
static const double R
Definition csqrt.cc:46
double(* f1)(const coord_3d &)
Definition derivatives.cc:55
char * p(char *buf, const char *name, int k, int initial_level, double thresh, int order)
Definition derivatives.cc:72
double(* f2)(const coord_3d &)
Definition derivatives.cc:56
static double lo
Definition dirac-hatom.cc:23
static double shift
Definition dirac-hatom.cc:19
fit isotropic functions to a set of Gaussians with controlled precision
static const double v
Definition hatom_sf_dirac.cc:20
Tensor< double > op(const Tensor< double > &x)
Definition kain.cc:508
static double pow(const double *a, const double *b)
Definition lda.h:74
#define max(a, b)
Definition lda.h:51
#define MADNESS_RESTRICT
Definition mTxmq.h:37
#define MADNESS_CHECK(condition)
Check a condition — even in a release build the condition is always evaluated so it can have side eff...
Definition madness_exception.h:182
#define MADNESS_EXCEPTION(msg, value)
Macro for throwing a MADNESS exception.
Definition madness_exception.h:119
#define MADNESS_ASSERT(condition)
Assert a condition that should be free of side-effects since in release builds this might be a no-op.
Definition madness_exception.h:134
constexpr double pi
Mathematical constant .
Definition constants.h:48
Namespace for all elements and tools of MADNESS.
Definition DFConvergence.h:9
static SeparatedConvolution< double, 3 > SlaterF12Operator(World &world, double mu, double lo, double eps, const std::array< LatticeRange, 3 > &lattice_ranges=FunctionDefaults< 3 >::get_bc().lattice_range(), int k=FunctionDefaults< 3 >::get_k())
Definition operator.h:1834
static SeparatedConvolution< double_complex, 3 > PeriodicBSHOperator3D(World &world, Vector< double, 3 > bloch_k, double mu, double lo, double eps, const std::array< KernelRange, 3 > &kernel_ranges=std::array< KernelRange, 3 >(), const std::array< LatticeRange, 3 > &lattice_ranges=FunctionDefaults< 3 >::get_bc().lattice_range(), int k=FunctionDefaults< 3 >::get_k())
Factory function generating separated kernel for convolution with exp(-mu*r)/(4*pi*r) in 3D.
Definition operator.h:1802
std::shared_ptr< real_convolution_3d > real_convolution_3d_ptr
Definition functypedefs.h:150
static double cpu_time()
Returns the cpu time in seconds relative to an arbitrary origin.
Definition timers.h:128
SeparatedConvolution< double, 3 > real_convolution_3d
Definition functypedefs.h:136
GenTensor< TENSOR_RESULT_TYPE(R, Q)> general_transform(const GenTensor< R > &t, const Tensor< Q > c[])
Definition gentensor.h:274
void fast_transpose(long n, long m, const T *a, T *MADNESS_RESTRICT b)
a(n,m) --> b(m,n) ... optimized for smallish matrices
Definition convolution1d.h:71
static SeparatedConvolution< double, NDIM > SmoothingOperator(World &world, double eps, const std::array< LatticeRange, NDIM > &lattice_ranges=FunctionDefaults< NDIM >::get_bc().lattice_range(), int k=FunctionDefaults< NDIM >::get_k())
Definition operator.h:1980
static SeparatedConvolution< double, 3 > F2GOperator(World &world, double mu, double lo, double eps, const std::array< LatticeRange, 3 > &lattice_ranges=FunctionDefaults< 3 >::get_bc().lattice_range(), int k=FunctionDefaults< 3 >::get_k())
Factory function generating separated kernel for convolution with (1/(2 mu)*(1 - exp(-mu*r)))^2/r in ...
Definition operator.h:1956
static SeparatedConvolution< double, 3 > CoulombOperator(World &world, double lo, double eps, const std::array< LatticeRange, 3 > &lattice_ranges=FunctionDefaults< 3 >::get_bc().lattice_range(), int k=FunctionDefaults< 3 >::get_k())
Factory function generating separated kernel for convolution with 1/r in 3D.
Definition operator.h:1739
static SeparatedConvolution< double_complex, 3 > * PeriodicHFExchangeOperatorPtr(World &world, Vector< double, 3 > bloch_k, double lo, double eps, const std::array< KernelRange, 3 > &kernel_ranges=std::array< KernelRange, 3 >(), const std::array< LatticeRange, 3 > &lattice_ranges=FunctionDefaults< 3 >::get_bc().lattice_range(), int k=FunctionDefaults< 3 >::get_k())
Definition operator.h:1725
static SeparatedConvolution< double, NDIM > * BSHOperatorPtr(World &world, double mu, double lo, double eps, const std::array< LatticeRange, NDIM > &lattice_ranges=FunctionDefaults< NDIM >::get_bc().lattice_range(), int k=FunctionDefaults< NDIM >::get_k())
Factory function generating separated kernel for convolution with BSH kernel in general NDIM.
Definition operator.h:1780
static SeparatedConvolution< double, 3 > * F2GOperatorPtr(World &world, double mu, double lo, double eps, const std::array< LatticeRange, 3 > &lattice_ranges=FunctionDefaults< 3 >::get_bc().lattice_range(), int k=FunctionDefaults< 3 >::get_k())
Factory function generating separated kernel for convolution with (1/(2 mu)*(1 - exp(-mu*r)))^2/r in ...
Definition operator.h:1944
int64_t Translation
Definition key.h:58
static SeparatedConvolution< double, 3 > * SlaterOperatorPtr(World &world, double mu, double lo, double eps, const std::array< LatticeRange, 3 > &lattice_ranges=FunctionDefaults< 3 >::get_bc().lattice_range(), int k=FunctionDefaults< 3 >::get_k())
Definition operator.h:1898
static SeparatedConvolution< double, 3 > SlaterF12sqOperator(World &world, double mu, double lo, double eps, const std::array< LatticeRange, 3 > &lattice_ranges=FunctionDefaults< 3 >::get_bc().lattice_range(), int k=FunctionDefaults< 3 >::get_k())
Definition operator.h:1840
static SeparatedConvolution< double, 3 > SmoothingOperator3D(World &world, double eps, const std::array< LatticeRange, 3 > &lattice_ranges=FunctionDefaults< 3 >::get_bc().lattice_range(), int k=FunctionDefaults< 3 >::get_k())
Definition operator.h:1965
static SeparatedConvolution< double, NDIM > * SlaterOperatorPtr_ND(World &world, double mu, double lo, double eps, const std::array< LatticeRange, NDIM > &lattice_ranges=FunctionDefaults< NDIM >::get_bc().lattice_range(), int k=FunctionDefaults< NDIM >::get_k())
Definition operator.h:1889
static const Slice _(0,-1, 1)
static SeparatedConvolution< double, 3 > * SlaterF12OperatorPtr(World &world, double mu, double lo, double eps, const std::array< LatticeRange, 3 > &lattice_ranges=FunctionDefaults< 3 >::get_bc().lattice_range(), int k=FunctionDefaults< 3 >::get_k())
Factory function generating separated kernel for convolution with (1 - exp(-mu*r))/(2 mu) in 3D.
Definition operator.h:1908
int Level
Definition key.h:59
@ OT_FG12
1-exp(-r)
Definition operatorinfo.h:18
@ OT_SLATER
1/r
Definition operatorinfo.h:15
@ OT_GAUSS
exp(-r)
Definition operatorinfo.h:16
@ OT_BSH
(1-exp(-r))^2/r = 1/r + exp(-2r)/r - 2 exp(-r)/r
Definition operatorinfo.h:21
@ OT_F12
exp(-r2)
Definition operatorinfo.h:17
@ OT_F212
(1-exp(-r))/r
Definition operatorinfo.h:19
@ OT_UNDEFINED
Definition operatorinfo.h:12
@ OT_G12
indicates the identity
Definition operatorinfo.h:14
@ OT_F2G12
(1-exp(-r))^2
Definition operatorinfo.h:20
static SeparatedConvolution< double_complex, 3 > PeriodicHFExchangeOperator(World &world, Vector< double, 3 > bloch_k, double lo, double eps, const std::array< KernelRange, 3 > &kernel_ranges=std::array< KernelRange, 3 >(), const std::array< LatticeRange, 3 > &lattice_ranges=FunctionDefaults< 3 >::get_bc().lattice_range(), int k=FunctionDefaults< 3 >::get_k())
Definition operator.h:1708
void print(const T &t, const Ts &... ts)
Print items to std::cout (items separated by spaces) and terminate with a new line.
Definition print.h:227
static std::vector< std::shared_ptr< SeparatedConvolution< double, 3 > > > GradBSHOperator(World &world, double mu, double lo, double eps, const std::array< LatticeRange, 3 > &lattice_ranges=FunctionDefaults< 3 >::get_bc().lattice_range(), int k=FunctionDefaults< 3 >::get_k())
Factory function generating operator for convolution with grad(bsh) in 3D.
Definition operator.h:2100
static SeparatedConvolution< double, 3 > * SlaterF12sqOperatorPtr(World &world, double mu, double lo, double eps, const std::array< LatticeRange, 3 > &lattice_ranges=FunctionDefaults< 3 >::get_bc().lattice_range(), int k=FunctionDefaults< 3 >::get_k())
Definition operator.h:1847
TensorType
low rank representations of tensors (see gentensor.h)
Definition gentensor.h:120
@ TT_2D
Definition gentensor.h:120
NDIM & f
Definition mra.h:2668
static SeparatedConvolution< double, NDIM > SlaterOperator(World &world, double mu, double lo, double eps, const std::array< LatticeRange, NDIM > &lattice_ranges=FunctionDefaults< NDIM >::get_bc().lattice_range(), int k=FunctionDefaults< NDIM >::get_k())
Factory function generating separated kernel for convolution with exp(-mu*r) in 3D.
Definition operator.h:1856
GenTensor< T > reduce(std::list< GenTensor< T > > &addends, double, bool=false)
add all the GenTensors of a given list
Definition gentensor.h:246
static SeparatedConvolution< double, NDIM > BSHOperator(World &world, double mu, double lo, double eps, const std::array< LatticeRange, NDIM > &lattice_ranges=FunctionDefaults< NDIM >::get_bc().lattice_range(), int k=FunctionDefaults< NDIM >::get_k())
Factory function generating separated kernel for convolution with BSH kernel in general NDIM.
Definition operator.h:1766
static SeparatedConvolution< double, 3 > * CoulombOperatorPtr(World &world, double lo, double eps, const std::array< LatticeRange, 3 > &lattice_ranges=FunctionDefaults< 3 >::get_bc().lattice_range(), int k=FunctionDefaults< 3 >::get_k())
Factory function generating separated kernel for convolution with 1/r in 3D.
Definition operator.h:1752
std::string type(const PairType &n)
Definition PNOParameters.h:18
CCPairFunction< T, NDIM > apply(const SeparatedConvolution< T, NDIM/2 > &op, const CCPairFunction< T, NDIM > &arg)
apply the operator to the argument
Definition ccpairfunction.h:896
static SeparatedConvolution< double, 3 > FGOperator(World &world, double mu, double lo, double eps, const std::array< LatticeRange, 3 > &lattice_ranges=FunctionDefaults< 3 >::get_bc().lattice_range(), int k=FunctionDefaults< 3 >::get_k())
Factory function generating separated kernel for convolution with 1/(2 mu)*(1 - exp(-mu*r))/r in 3D.
Definition operator.h:1921
static SeparatedConvolution< double_complex, 3 > * PeriodicBSHOperatorPtr3D(World &world, Vector< double, 3 > bloch_k, double mu, double lo, double eps, const std::array< KernelRange, 3 > &kernel_ranges=std::array< KernelRange, 3 >(), const std::array< LatticeRange, 3 > &lattice_ranges=FunctionDefaults< 3 >::get_bc().lattice_range(), int k=FunctionDefaults< 3 >::get_k())
Factory function generating separated kernel for convolution with exp(-mu*r)/(4*pi*r) in 3D.
Definition operator.h:1818
static SeparatedConvolution< double, NDIM > GaussOperator(World &world, double mu, double lo=0.0, double eps=0.0, const std::array< LatticeRange, NDIM > &lattice_ranges=FunctionDefaults< NDIM >::get_bc().lattice_range(), int k=FunctionDefaults< NDIM >::get_k())
Factory function generating separated kernel for convolution with exp(-mu*r*r)
Definition operator.h:1867
static SeparatedConvolution< double, 3 > * BSHOperatorPtr3D(World &world, double mu, double lo, double eps, const std::array< LatticeRange, 3 > &lattice_ranges=FunctionDefaults< 3 >::get_bc().lattice_range(), int k=FunctionDefaults< 3 >::get_k())
Factory function generating separated kernel for convolution with exp(-mu*r)/(4*pi*r) in 3D.
Definition operator.h:1995
static SeparatedConvolution< double, NDIM > * GaussOperatorPtr(World &world, double mu, double lo=0.0, double eps=0.0, const std::array< LatticeRange, NDIM > &lattice_ranges=FunctionDefaults< NDIM >::get_bc().lattice_range(), int k=FunctionDefaults< NDIM >::get_k())
Factory function generating separated kernel for convolution with exp(-mu*r*r) in 3D.
Definition operator.h:1878
static SeparatedConvolution< double, 3 > BSHOperator3D(World &world, double mu, double lo, double eps, const std::array< LatticeRange, 3 > &lattice_ranges=FunctionDefaults< 3 >::get_bc().lattice_range(), int k=FunctionDefaults< 3 >::get_k())
Factory function generating separated kernel for convolution with exp(-mu*r)/(4*pi*r) in 3D.
Definition operator.h:1793
static SeparatedConvolution< double, 3 > * FGOperatorPtr(World &world, double mu, double lo, double eps, const std::array< LatticeRange, 3 > &lattice_ranges=FunctionDefaults< 3 >::get_bc().lattice_range(), int k=FunctionDefaults< 3 >::get_k())
Factory function generating separated kernel for convolution with 1/(2 mu)*(1 - exp(-mu*r))/r in 3D.
Definition operator.h:1932
static std::vector< std::shared_ptr< SeparatedConvolution< double, 3 > > > GradCoulombOperator(World &world, double lo, double eps, const std::array< LatticeRange, 3 > &lattice_ranges=FunctionDefaults< 3 >::get_bc().lattice_range(), int k=FunctionDefaults< 3 >::get_k())
Factory function generating operator for convolution with grad(1/r) in 3D.
Definition operator.h:2041
Function< T, NDIM > copy(const Function< T, NDIM > &f, const std::shared_ptr< WorldDCPmapInterface< Key< NDIM > > > &pmap, bool fence=true)
Create a new copy of the function with different distribution and optional fence.
Definition mra.h:2233
void mTxmq(long dimi, long dimj, long dimk, double *MADNESS_RESTRICT c, const double *a, const double *b, long ldb)
Explicit template specializations for homogeneous types (implemented in mTxmq.cc)
Definition mTxmq.cc:551
static const string dir
Definition corepotential.cc:249
static void aligned_axpy(long n, T *MADNESS_RESTRICT a, const T *MADNESS_RESTRICT b, Q s)
Definition aligned.h:75
static long abs(long a)
Definition tensor.h:219
const double mu
Definition navstokes_cosines.cc:95
static const double b
Definition nonlinschro.cc:119
static const double d
Definition nonlinschro.cc:121
static const double a
Definition nonlinschro.cc:118
double Q(double a)
Definition relops.cc:20
static const double c
Definition relops.cc:10
static const double L
Definition rk.cc:46
static const double thresh
Definition rk.cc:45
static const long k
Definition rk.cc:44
Definition test_ccpairfunction.cc:22
!!! Note that if Rnormf is zero then ALL of the tensors are empty
Definition convolution1d.h:163
double N_up
Definition convolution1d.h:174
double N_F
the norms according to Beylkin 2008, Eq. (21) ff
Definition convolution1d.h:174
double N_diff
Definition convolution1d.h:174
Definition convolution1d.h:989
Definition operatorinfo.h:58
double hi
Definition operatorinfo.h:67
OpType type
introspection
Definition operatorinfo.h:66
double mu
some introspection
Definition operatorinfo.h:63
std::vector< KernelRange > range
Definition operatorinfo.h:68
std::optional< bool > truncate_lowexp_gaussians
Definition operatorinfo.h:70
SeparatedConvolutionData keeps data for all terms, all dimensions.
Definition operator.h:93
std::vector< SeparatedConvolutionInternal< Q, NDIM > > muops
Definition operator.h:94
SeparatedConvolutionData(int rank)
Definition operator.h:97
double norm
Definition operator.h:95
SeparatedConvolutionData(const SeparatedConvolutionData< Q, NDIM > &q)
Definition operator.h:98
double norm
Definition operator.h:85
const ConvolutionData1D< Q > * ops[NDIM]
Definition operator.h:86
laziness for calling lists: which terms to apply
Definition operator.h:211
bool t_term
Definition operator.h:214
bool r_term
Definition operator.h:213
bool any_terms() const
Definition operator.h:215
ApplyTerms()
Definition operator.h:212
World & world
Memoized reference to the world to which this object belongs.
Definition world_object.h:348
World & get_world() const
Definition world_object.h:446
static void load(const Archive &ar, const SeparatedConvolution< T, NDIM > *&ptr)
Definition operator.h:2158
Default load of an object via serialize(ar, t).
Definition archive.h:667
static void store(const Archive &ar, const SeparatedConvolution< T, NDIM > *const &ptr)
Definition operator.h:2167
Default store of an object via serialize(ar, t).
Definition archive.h:612
Definition lowrankfunction.h:336
void doit(World &world)
Definition tdse.cc:921
Prototypes for a partial interface from Tensor to LAPACK.
int factorial(int n)
Definition test_BSHApply.cc:14
AtomicInt sum
Definition test_atomicint.cc:46
void e()
Definition test_sig.cc:75
double aa
Definition testbsh.cc:68
static const double pi
Definition testcosine.cc:6
std::vector< double > fit(size_t m, size_t n, const std::vector< double > N, const std::vector< double > &f)
Definition testfuns.cc:36
constexpr std::size_t NDIM
Definition testgconv.cc:54
double h(const coord_1d &r)
Definition testgconv.cc:175
double source(const coordT &r)
Definition testperiodic.cc:48
#define TENSOR_RESULT_TYPE(L, R)
This macro simplifies access to TensorResultType.
Definition type_data.h:205
#define PROFILE_MEMBER_FUNC(classname)
Definition worldprofile.h:210