MADNESS 0.10.1
function_factory.h
Go to the documentation of this file.
1/*
2 This file is part of MADNESS.
3
4 Copyright (C) 2007,2010 Oak Ridge National Laboratory
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19
20 For more information please contact:
21
22 Robert J. Harrison
23 Oak Ridge National Laboratory
24 One Bethel Valley Road
25 P.O. Box 2008, MS-6367
26
27 email: harrisonrj@ornl.gov
28 tel: 865-241-3937
29 fax: 865-572-0680
30
31 $Id$
32 */
33
34/// \file function_factory.h
35/// Holds machinery to set up Functions/FuncImpls using various Factories and Interfaces
36
37/// We provide an abstract base class FunctionFunctorInterface, of which we derive
38/// (as of now) the following classes:
39/// - ElementaryInterface (formerly FunctorInterfaceWrapper) to wrap elementary functions
40/// - ElectronRepulsionInterface to provide 1/r12, which is not elementarily accessible
41/// - CompositeFunctionInterface to provide on-demand coefficients of pair functions
42///
43/// Each of these Interfaces can be used in a FunctionFactory to set up a Function
44
45
46#ifndef MADNESS_MRA_FUNCTION_FACTORY_H__INCLUDED
47#define MADNESS_MRA_FUNCTION_FACTORY_H__INCLUDED
48
51#include <madness/mra/key.h>
54
55
56namespace madness {
57
58// needed for the CompositeFactory
59template<typename T, std::size_t NDIM>
60class FunctionImpl;
61
62template<typename T, std::size_t NDIM>
63class Function;
64
65template<typename T, std::size_t NDIM>
66Tensor<T> fcube(const Key<NDIM>&, T (*f)(const Vector<double, NDIM>&), const Tensor<double>&);
67
68template<typename T, std::size_t NDIM>
70
71
72/// FunctionFactory implements the named-parameter idiom for Function
73
74/// C++ does not provide named arguments (as does, e.g., Python).
75/// This class provides something very close. Create functions as follows
76/// \code
77/// double myfunc(const double x[]);
78/// Function<double,3> f = FunctionFactory<double,3>(world).f(myfunc).k(11).thresh(1e-9).debug()
79/// \endcode
80/// where the methods of function factory, which specify the non-default
81/// arguments eventually passed to the \c Function constructor, can be
82/// used in any order.
83///
84/// Need to add a general functor for initial projection with a standard interface.
85template<typename T, std::size_t NDIM>
87 friend class FunctionImpl<T, NDIM>;
88
89 typedef Vector<double, NDIM> coordT; ///< Type of vector holding coordinates
90protected:
92 int _k;
93 double _thresh;
96 std::vector<Vector<double, NDIM> > _special_points;
99 bool _refine;
100 bool _empty;
103 bool _fence;
104// bool _is_on_demand;
105// bool _compressed;
107 //Tensor<int> _bc;
108 std::shared_ptr<WorldDCPmapInterface<Key<NDIM> > > _pmap;
109
110private:
111 // need to keep this private, access only via get_functor();
112 // reason is that the functor must only be constructed when the actual
113 // FuncImpl is constructed, otherwise we might depend on the ordering
114 // of the chaining (specifically, if the functor is constructed before
115 // of after the threshold is changed)
116 std::shared_ptr<FunctionFunctorInterface<T, NDIM> > _functor;
117
118public:
119
121 _world(world),
124 _initial_level(FunctionDefaults<NDIM>::get_initial_level()),
125 _special_level(FunctionDefaults<NDIM>::get_special_level()),
126 _special_points(std::vector<Vector<double, NDIM> >()),
127 _max_refine_level(FunctionDefaults<NDIM>::get_max_refine_level()),
128 _truncate_mode(FunctionDefaults<NDIM>::get_truncate_mode()),
129 _refine(FunctionDefaults<NDIM>::get_refine()),
130 _empty(false),
131 _autorefine(FunctionDefaults<NDIM>::get_autorefine()),
132 _truncate_on_project(FunctionDefaults<NDIM>::get_truncate_on_project()),
133 _fence(true), // _bc(FunctionDefaults<NDIM>::get_bc()),
135 _pmap(FunctionDefaults<NDIM>::get_pmap()), _functor() {
136 }
137
138 virtual ~FunctionFactory() {};
139
141 functor(const std::shared_ptr<FunctionFunctorInterface<T, NDIM> >& f) {
142 _functor = f;
143 return self();
144 }
145
146 /// pass in a functor that is derived from FunctionFunctorInterface
147
148 /// similar to the first version of functor, but easy-to-use
149 /// FunctionFunctorInterface must be a public base of opT
150 template<typename opT>
151 typename std::enable_if<std::is_base_of<FunctionFunctorInterface<T, NDIM>, opT>::value,
153 _functor = std::shared_ptr<FunctionFunctorInterface<T, NDIM> >(new opT(op));
154 return self();
155 }
156
157 /// pass in a functor that is *not* derived from FunctionFunctorInterface
158
159 /// similar to the first version of functor, but easy-to-use
160 template<typename opT>
161 typename std::enable_if<not std::is_base_of<FunctionFunctorInterface<T, NDIM>, opT>::value,
163 _functor = std::shared_ptr<FunctionInterface<T, NDIM, opT> >
165 return self();
166 }
167
168 FunctionFactory& compressed(bool value = true) {
170 return self();
171 }
172
175 "treestate must be either reconstructed or compressed in FunctionFactory");
176 _tree_state = state;
177 return self();
178 }
179
182 _functor.reset();
183 return self();
184 }
185
187 f(T (*f)(const coordT&)) {
190 return self();
191 }
192
193 virtual FunctionFactory& k(int k) {
194 _k = k;
195 return self();
196 }
197
198 virtual FunctionFactory& thresh(double thresh) {
199 _thresh = thresh;
200 return self();
201 }
202
208
214
218 return self();
219 }
220
226
232
234 refine(bool refine = true) {
235 _refine = refine;
236 return self();
237 }
238
240 norefine(bool norefine = true) {
241 _refine = !norefine;
242 return self();
243 }
244
247 _empty = true;
248 return self();
249 }
250
253 _autorefine = true;
254 return self();
255 }
256
259 _autorefine = false;
260 return self();
261 }
262
266 return self();
267 }
268
271 _truncate_on_project = false;
272 return self();
273 }
274
276 fence(bool fence = true) {
277 _fence = fence;
278 return self();
279 }
280
283 _fence = false;
284 return self();
285 }
286
287 virtual FunctionFactory&
290 return self();
291 }
292
294 pmap(const std::shared_ptr<WorldDCPmapInterface<Key<NDIM> > >& pmap) {
295 _pmap = pmap;
296 return self();
297 }
298
299 int get_k() const { return _k; };
300
301 double get_thresh() const { return _thresh; };
302
303 World& get_world() const { return _world; };
304
305 /// return the functor; override this if the functor needs deferred construction
306 virtual std::shared_ptr<FunctionFunctorInterface<T, NDIM> > get_functor() const {
307 return _functor;
308 }
309
310 /// implement this in all derived classes for correct chaining
311 FunctionFactory& self() { return *this; }
312
313};
314
315
316/// Factory for facile setup of a CompositeFunctorInterface and its FuncImpl
317
318/// for the concept of a Factory see base class FunctionFactory
319/// here we need to provide two different dimensions, since the main purpose
320/// of this is to set up a pair function (6D), consisting of orbitals (3D),
321/// and also one- and two-electron potentials
322///
323/// This Factory constructs a FuncImpl, and also the functor to it.
324///
325/// NOTE: pass in only copies of functions, since use in here will corrupt the
326/// tree structure and functions will not pass the VERIFY test after this.
327template<typename T, std::size_t NDIM, std::size_t MDIM>
328class CompositeFactory : public FunctionFactory<T, NDIM> {
329public:
330 typedef std::shared_ptr<FunctionImpl<T, MDIM>> implT_ptr_lodim;
331 typedef std::shared_ptr<FunctionImpl<T, NDIM>> implT_ptr_hidim;
332// std::vector<implT_ptr_lodim> _particle1;
333// std::vector<implT_ptr_lodim> _particle2;
334 std::vector<implT_ptr_hidim> _ket;
335// std::shared_ptr<FunctionImpl<T, NDIM> > _ket; ///< supposedly a 6D pair function ket
336 std::shared_ptr<FunctionImpl<T, NDIM> > _g12; ///< supposedly a interaction potential
337 std::shared_ptr<FunctionImpl<T, MDIM> > _v1; ///< supposedly a potential for particle 1
338 std::shared_ptr<FunctionImpl<T, MDIM> > _v2; ///< supposedly a potential for particle 2
339 std::vector<std::shared_ptr<FunctionImpl<T, MDIM> >> _particle1; ///< supposedly particle 1
340 std::vector<std::shared_ptr<FunctionImpl<T, MDIM> >> _particle2; ///< supposedly particle 2
341
342private:
343 std::shared_ptr<CompositeFunctorInterface<T, NDIM, MDIM> > _func;
344
345 friend class CompositeFunctorInterface<T, NDIM, MDIM>;
346
347public:
348
350 : FunctionFactory<T, NDIM>(world), _ket(), _g12(), _v1(), _v2(), _particle1(), _particle2(), _func() {
351 this->_tree_state = on_demand;
352 }
353
354 /// provide directly the NDIM (6D) pair function ket
357 _ket.push_back(f.get_impl());
358 return self();
359 }
360
362 ket(const std::vector<Function<T, NDIM>>& vf) {
363 for (auto f: vf) _ket.push_back(f.get_impl());
364 return self();
365 }
366
367 /// g12 is the interaction potential (6D)
370 _g12 = f.get_impl();
371 return self();
372 }
373
374 /// a one-particle potential, acting on particle 1
377 _v1 = f.get_impl();
378 return self();
379 }
380
381 /// a one-particle potential, acting on particle 2
384 _v2 = f.get_impl();
385 return self();
386 }
387
388 /// provide particle 1, used with particle 2 to set up a pair function by
389 /// direct product
392 _particle1.push_back(f.get_impl());
393 return self();
394 }
395
396 /// provide particle 1, used with particle 2 to set up a pair function by
397 /// direct product
399 particle1(const std::vector<Function<T, MDIM>>& vf) {
400 for (auto f: vf) _particle1.push_back(f.get_impl());
401 return self();
402 }
403
404 /// provide particle 2, used with particle 1 to set up a pair function by
405 /// direct product
408 _particle2.push_back(f.get_impl());
409 return self();
410 }
411
412 /// provide particle 2, used with particle 1 to set up a pair function by
413 /// direct product
415 particle2(const std::vector<Function<T, MDIM>>& vf) {
416 for (auto f: vf) _particle2.push_back(f.get_impl());
417 return self();
418 }
419
420 // access to the functor *only* via this
421 std::shared_ptr<FunctionFunctorInterface<T, NDIM> > get_functor() const {
422
423 // return if we already have a valid functor
424 if (this->_func) return this->_func;
425
426 // construction of the functor is const in spirit, but non-const in sad reality..
427 // this Factory not only constructs the Function, but also the functor, so
428 // pass *this to the interface
429 const_cast< std::shared_ptr<CompositeFunctorInterface<T, NDIM, MDIM> >& >(this->_func) =
432 this->_world, _ket, _g12, _v1, _v2, _particle1, _particle2
433 ));
434
435 return this->_func;
436 }
437
438 CompositeFactory& self() { return *this; }
439};
440
441/// factory for generating TwoElectronInterfaces
442template<typename T=double, std::size_t NDIM=6>
443class TwoElectronFactory : public FunctionFactory<T, NDIM> {
444
445protected:
446 typedef std::shared_ptr<FunctionFunctorInterface<T, NDIM> > InterfacePtr;
447
448public:
450 : FunctionFactory<T, NDIM>(world), interface_(), bc_(FunctionDefaults<NDIM>::get_bc()) {
451 this->_tree_state = on_demand;
452 info.mu=-1.0;
454 constexpr std::size_t LDIM=NDIM/2;
455 static_assert(NDIM==2*LDIM, "NDIM must be even");
457 this->_thresh = (FunctionDefaults<LDIM>::get_thresh());
458 this->_k = (FunctionDefaults<LDIM>::get_k());
459
460 }
461
462 /// the smallest length scale to be represented (aka lo)
464 info.lo = dcut;
465 return self();
466 }
467
468 /// the requested precision
470 this->_thresh=thresh;
472 return self();
473 }
474
475 /// the exponent of a slater function
477 info.mu = g;
478 return self();
479 }
480
481 /// return the operator (1 - exp(-gamma x) / (2 gamma)
484 return self();
485 }
486
487 /// return the operator (1 - exp(-gamma x) / (2 gamma)
490 return self();
491 }
492
493 /// return the BSH operator
496 return self();
497 }
498
499 /// return the BSH operator
501 info=info1;
502 return self();
503 }
504
505 // access to the functor *only* via this
507
508 // return if we already have a valid interface
509 if (this->interface_) return this->interface_;
510
511 const_cast<InterfacePtr& >(this->interface_) =
513
514// // construction of the functor is const in spirit, but non-const in sad reality..
515// if (info.type==OT_G12) {
516// const_cast<InterfacePtr& >(this->interface_) =
517// InterfacePtr(new ElectronRepulsionInterface(info.lo, _thresh, bc_, _k));
518// } else if (info.type == OT_F12) {
519// const_cast<InterfacePtr& >(this->interface_) =
520// InterfacePtr(new SlaterF12Interface(info.mu, info.lo, _thresh, bc_, _k));
521// } else if (info.type == OT_SLATER) {
522// const_cast<InterfacePtr& >(this->interface_) =
523// InterfacePtr(new SlaterFunctionInterface(info.mu,info.lo, _thresh, bc_, _k));
524// } else if (info.type==OT_BSH) {
525// const_cast<InterfacePtr& >(this->interface_) =
526// InterfacePtr(new BSHFunctionInterface(info.mu, info.lo, _thresh, bc_, _k));
527// } else {
528// MADNESS_EXCEPTION("unimplemented integral kernel", 1);
529// }
530 return this->interface_;
531 }
532
533 TwoElectronFactory& self() { return *this; }
534
535protected:
536
537// enum operatortype {
538// coulomb_, slater_, f12_, bsh_
539// };
540
542// operatortype type_;
543
544 /// the interface providing the actual coefficients
546
547// double dcut_; ///< cutoff radius for 1/r12, aka regularization
548
549// double gamma_;
550
552
553};
554
555#if 0
556class ERIFactory : public TwoElectronFactory<ERIFactory> {
557public:
558 ERIFactory(World& world) : TwoElectronFactory<ERIFactory>(world) {}
559
560 // access to the functor *only* via this
561 InterfacePtr get_functor() const {
562
563 // return if we already have a valid interface
564 if (this->interface_) return this->interface_;
565
566 // construction of the functor is const in spirit, but non-const in sad reality..
567 const_cast<InterfacePtr& >(this->interface_)=
568 InterfacePtr(new ElectronRepulsionInterface(
569 dcut_,thresh_,bc_,k_));
570 return this->interface_;
571 }
572
573 ERIFactory& self() {return *this;}
574
575};
576
577/// a function like f(x) = 1 - exp(-mu x)
578class SlaterFunctionFactory : public TwoElectronFactory<SlaterFunctionFacto> {
579public:
580 SlaterFunctionFactory(World& world)
581: TwoElectronFactory(world), gamma_(-1.0), f12_(false) {}
582
583 /// set the exponent of the Slater function
584 SlaterFunctionFactory& gamma(double gamma) {
585 this->gamma_ = gamma;
586 return self();
587 }
588
589 /// do special f12 function
590 SlaterFunctionFactory& f12() {
591 this->f12_=true;
592 return self();
593 }
594
595 // access to the functor *only* via this
596 InterfacePtr get_functor() const {
597
598 // return if we already have a valid interface
599 if (this->interface_) return this->interface_;
600
601 // make sure gamma is set
602 MADNESS_ASSERT(gamma_>0);
603
604 // construction of the functor is const in spirit, but non-const in sad reality..
605 if (f12_) {
606 const_cast<InterfacePtr& >(this->interface_)=
607 InterfacePtr(new SlaterF12Interface(
608 gamma_,dcut_,this->_thresh,bc_,this->_k));
609 } else {
610 const_cast<InterfacePtr& >(this->interface_)=
611 InterfacePtr(new SlaterFunctionInterface(
612 gamma_,dcut_,this->_thresh,bc_,this->_k));
613 }
614 return this->interface_;
615 }
616
617 SlaterFunctionFactory& self() {return *this;}
618
619private:
620
621 double gamma_; ///< the exponent of the Slater function f(x)=exp(-gamma x)
622 bool f12_; ///< use 1-exp(-gamma x) instead of exp(-gamma x)
623};
624
625/// Factory to set up an ElectronRepulsion Function
626template<typename T, std::size_t NDIM>
627class ERIFactory : public FunctionFactory<T, NDIM> {
628
629private:
630 std::shared_ptr<ElectronRepulsionInterface> _eri;
631
632public:
633
634 /// cutoff radius for 1/r12, aka regularization
635 double _dcut;
636 BoundaryConditions<NDIM> _bc;
637
638public:
639 ERIFactory(World& world)
640: FunctionFactory<T,NDIM>(world)
641 , _eri()
642 , _dcut(FunctionDefaults<NDIM>::get_thresh())
643 , _bc(FunctionDefaults<NDIM>::get_bc())
644 {
645 this->_is_on_demand=true;
647 }
648
649 ERIFactory&
650 thresh(double thresh) {
651 this->_thresh = thresh;
652 return *this;
653 }
654
655 ERIFactory&
656 dcut(double dcut) {
657 this->_dcut = dcut;
658 return *this;
659 }
660
661 // access to the functor *only* via this
662 std::shared_ptr<FunctionFunctorInterface<T, NDIM> > get_functor() const {
663
664 // return if we already have a valid eri
665 if (this->_eri) return this->_eri;
666
667 // if (this->_world.rank()==0) print("set dcut in ERIFactory to ", _dcut);
668
669 // construction of the functor is const in spirit, but non-const in sad reality..
670 const_cast< std::shared_ptr<ElectronRepulsionInterface>& >(this->_eri)=
671 std::shared_ptr<ElectronRepulsionInterface>(
672 new ElectronRepulsionInterface(_dcut,this->_thresh,
673 _bc,this->_k));
674
675 return this->_eri;
676 }
677
678};
679#endif
680
681
682/// Does not work
683// /// Factory to set up an ElectronRepulsion Function
684// template<typename T, std::size_t NDIM>
685// class FGFactory : public FunctionFactory<T, NDIM> {
686//
687// private:
688// std::shared_ptr<FGInterface> _fg;
689//
690// public:
691//
692// /// cutoff radius for 1/r12, aka regularization
693// double _dcut;
694// double _gamma;
695// BoundaryConditions<NDIM> _bc;
696//
697// public:
698// FGFactory(World& world, double gamma)
699// : FunctionFactory<T,NDIM>(world)
700// , _fg()
701// , _dcut(FunctionDefaults<NDIM>::get_thresh())
702// , _gamma(gamma)
703// , _bc(FunctionDefaults<NDIM>::get_bc())
704// {
705// this->_is_on_demand=true;
706// MADNESS_ASSERT(NDIM==6);
707// }
708//
709// FGFactory&
710// thresh(double thresh) {
711// this->_thresh = thresh;
712// return *this;
713// }
714//
715// FGFactory&
716// dcut(double dcut) {
717// this->_dcut = dcut;
718// return *this;
719// }
720//
721// // access to the functor *only* via this
722// std::shared_ptr<FunctionFunctorInterface<T, NDIM> > get_functor() const {
723//
724// // return if we already have a valid eri
725// if (this->_fg) return this->_fg;
726//
727// // if (this->_world.rank()==0) print("set dcut in ERIFactory to ", _dcut);
728//
729// // construction of the functor is const in spirit, but non-const in sad reality..
730// const_cast< std::shared_ptr<FGInterface>& >(this->_fg)=
731// std::shared_ptr<FGInterface>(
732// new FGInterface(this->_world,_dcut,this->_thresh,
733// _gamma,_bc,this->_k));
734//
735// return this->_fg;
736// }
737//
738// };
739
740}
741
742#endif // MADNESS_MRA_FUNCTION_FACTORY_H__INCLUDED
This class is used to specify boundary conditions for all operators.
Definition bc.h:72
Factory for facile setup of a CompositeFunctorInterface and its FuncImpl.
Definition function_factory.h:328
CompositeFactory & V_for_particle2(const Function< T, MDIM > &f)
a one-particle potential, acting on particle 2
Definition function_factory.h:383
CompositeFactory & self()
Definition function_factory.h:438
CompositeFactory(World &world)
Definition function_factory.h:349
std::shared_ptr< FunctionImpl< T, MDIM > > _v2
supposedly a potential for particle 2
Definition function_factory.h:338
std::shared_ptr< FunctionFunctorInterface< T, NDIM > > get_functor() const
return the functor; override this if the functor needs deferred construction
Definition function_factory.h:421
std::shared_ptr< FunctionImpl< T, NDIM > > _g12
supposedly a interaction potential
Definition function_factory.h:336
std::shared_ptr< FunctionImpl< T, MDIM > > _v1
supposedly a potential for particle 1
Definition function_factory.h:337
std::shared_ptr< FunctionImpl< T, MDIM > > implT_ptr_lodim
Definition function_factory.h:330
CompositeFactory & ket(const Function< T, NDIM > &f)
provide directly the NDIM (6D) pair function ket
Definition function_factory.h:356
CompositeFactory & particle1(const Function< T, MDIM > &f)
Definition function_factory.h:391
std::vector< implT_ptr_hidim > _ket
Definition function_factory.h:334
std::shared_ptr< CompositeFunctorInterface< T, NDIM, MDIM > > _func
Definition function_factory.h:343
CompositeFactory & g12(const Function< T, NDIM > &f)
g12 is the interaction potential (6D)
Definition function_factory.h:369
std::shared_ptr< FunctionImpl< T, NDIM > > implT_ptr_hidim
Definition function_factory.h:331
CompositeFactory & ket(const std::vector< Function< T, NDIM > > &vf)
Definition function_factory.h:362
CompositeFactory & particle1(const std::vector< Function< T, MDIM > > &vf)
Definition function_factory.h:399
CompositeFactory & particle2(const std::vector< Function< T, MDIM > > &vf)
Definition function_factory.h:415
CompositeFactory & particle2(const Function< T, MDIM > &f)
Definition function_factory.h:407
std::vector< std::shared_ptr< FunctionImpl< T, MDIM > > > _particle2
supposedly particle 2
Definition function_factory.h:340
std::vector< std::shared_ptr< FunctionImpl< T, MDIM > > > _particle1
supposedly particle 1
Definition function_factory.h:339
CompositeFactory & V_for_particle1(const Function< T, MDIM > &f)
a one-particle potential, acting on particle 1
Definition function_factory.h:376
CompositeFunctorInterface implements a wrapper of holding several functions and functors.
Definition function_interface.h:165
ElementaryInterface (formerly FunctorInterfaceWrapper) interfaces a c-function.
Definition function_interface.h:266
FunctionDefaults holds default paramaters as static class members.
Definition funcdefaults.h:100
static int get_special_level()
Returns the default projection level for special boxes.
Definition funcdefaults.h:193
static int get_k()
Returns the default wavelet order.
Definition funcdefaults.h:163
static const double & get_thresh()
Returns the default threshold.
Definition funcdefaults.h:176
static int get_initial_level()
Returns the default initial projection level.
Definition funcdefaults.h:188
FunctionFactory implements the named-parameter idiom for Function.
Definition function_factory.h:86
FunctionFactory & no_functor()
Definition function_factory.h:181
FunctionFactory & nofence()
Definition function_factory.h:282
std::shared_ptr< WorldDCPmapInterface< Key< NDIM > > > _pmap
Definition function_factory.h:108
int _truncate_mode
Definition function_factory.h:98
FunctionFactory(World &world)
Definition function_factory.h:120
World & _world
Definition function_factory.h:91
FunctionFactory & special_points(const std::vector< Vector< double, NDIM > > &special_points)
Definition function_factory.h:216
virtual FunctionFactory & thresh(double thresh)
Definition function_factory.h:198
bool _refine
Definition function_factory.h:99
std::enable_if< notstd::is_base_of< FunctionFunctorInterface< T, NDIM >, opT >::value, FunctionFactory & >::type functor(const opT &op)
pass in a functor that is not derived from FunctionFunctorInterface
Definition function_factory.h:162
TreeState _tree_state
Definition function_factory.h:106
int _initial_level
Definition function_factory.h:94
FunctionFactory & functor(const std::shared_ptr< FunctionFunctorInterface< T, NDIM > > &f)
Definition function_factory.h:141
int _special_level
Definition function_factory.h:95
FunctionFactory & max_refine_level(int max_refine_level)
Definition function_factory.h:222
World & get_world() const
Definition function_factory.h:303
FunctionFactory & truncate_on_project()
Definition function_factory.h:264
FunctionFactory & fence(bool fence=true)
Definition function_factory.h:276
FunctionFactory & autorefine()
Definition function_factory.h:252
FunctionFactory & norefine(bool norefine=true)
Definition function_factory.h:240
int _max_refine_level
Definition function_factory.h:97
bool _autorefine
Definition function_factory.h:101
FunctionFactory & f(T(*f)(const coordT &))
Definition function_factory.h:187
FunctionFactory & noautorefine()
Definition function_factory.h:258
bool _empty
Definition function_factory.h:100
virtual FunctionFactory & is_on_demand()
Definition function_factory.h:288
FunctionFactory & initial_level(int initial_level)
Definition function_factory.h:204
bool _truncate_on_project
Definition function_factory.h:102
virtual std::shared_ptr< FunctionFunctorInterface< T, NDIM > > get_functor() const
return the functor; override this if the functor needs deferred construction
Definition function_factory.h:306
int _k
Definition function_factory.h:92
virtual FunctionFactory & k(int k)
Definition function_factory.h:193
FunctionFactory & special_level(int special_level)
Definition function_factory.h:210
std::enable_if< std::is_base_of< FunctionFunctorInterface< T, NDIM >, opT >::value, FunctionFactory & >::type functor(const opT &op)
pass in a functor that is derived from FunctionFunctorInterface
Definition function_factory.h:152
double _thresh
Definition function_factory.h:93
virtual ~FunctionFactory()
Definition function_factory.h:138
FunctionFactory & self()
implement this in all derived classes for correct chaining
Definition function_factory.h:311
FunctionFactory & compressed(bool value=true)
Definition function_factory.h:168
bool _fence
Definition function_factory.h:103
FunctionFactory & notruncate_on_project()
Definition function_factory.h:270
FunctionFactory & treestate(const TreeState state)
Definition function_factory.h:173
FunctionFactory & truncate_mode(int truncate_mode)
Definition function_factory.h:228
std::vector< Vector< double, NDIM > > _special_points
Definition function_factory.h:96
Vector< double, NDIM > coordT
Type of vector holding coordinates.
Definition function_factory.h:89
double get_thresh() const
Definition function_factory.h:301
std::shared_ptr< FunctionFunctorInterface< T, NDIM > > _functor
Definition function_factory.h:116
FunctionFactory & empty()
Definition function_factory.h:246
FunctionFactory & pmap(const std::shared_ptr< WorldDCPmapInterface< Key< NDIM > > > &pmap)
Definition function_factory.h:294
FunctionFactory & refine(bool refine=true)
Definition function_factory.h:234
int get_k() const
Definition function_factory.h:299
Abstract base class interface required for functors used as input to Functions.
Definition function_interface.h:68
FunctionImpl holds all Function state to facilitate shallow copy semantics.
Definition funcimpl.h:945
FunctionInterface implements a wrapper around any class with the operator()()
Definition function_interface.h:302
A multiresolution adaptive numerical function.
Definition mra.h:139
a function like f(x)=1/x
Definition function_interface.h:495
Key is the index for a node of the 2^NDIM-tree.
Definition key.h:69
A tensor is a multidimensional array.
Definition tensor.h:317
factory for generating TwoElectronInterfaces
Definition function_factory.h:443
TwoElectronFactory & thresh(double thresh)
the requested precision
Definition function_factory.h:469
std::shared_ptr< FunctionFunctorInterface< T, NDIM > > InterfacePtr
Definition function_factory.h:446
TwoElectronFactory & f12()
return the operator (1 - exp(-gamma x) / (2 gamma)
Definition function_factory.h:482
TwoElectronFactory & slater()
return the operator (1 - exp(-gamma x) / (2 gamma)
Definition function_factory.h:488
OperatorInfo info
Definition function_factory.h:541
TwoElectronFactory & BSH()
return the BSH operator
Definition function_factory.h:494
InterfacePtr interface_
the interface providing the actual coefficients
Definition function_factory.h:545
BoundaryConditions< NDIM > bc_
Definition function_factory.h:551
InterfacePtr get_functor() const
return the functor; override this if the functor needs deferred construction
Definition function_factory.h:506
TwoElectronFactory & gamma(double g)
the exponent of a slater function
Definition function_factory.h:476
TwoElectronFactory(World &world)
Definition function_factory.h:449
TwoElectronFactory & set_info(const OperatorInfo info1)
return the BSH operator
Definition function_factory.h:500
TwoElectronFactory & self()
Definition function_factory.h:533
TwoElectronFactory & dcut(double dcut)
the smallest length scale to be represented (aka lo)
Definition function_factory.h:463
A simple, fixed dimension vector.
Definition vector.h:64
Interface to be provided by any process map.
Definition worlddc.h:82
A parallel world class.
Definition world.h:132
auto T(World &world, response_space &f) -> response_space
Definition global_functions.cc:34
static const double dcut
Definition he.cc:13
Tensor< double > op(const Tensor< double > &x)
Definition kain.cc:508
Multidimension Key for MRA tree and associated iterators.
#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
#define MADNESS_CHECK_THROW(condition, msg)
Check a condition — even in a release build the condition is always evaluated so it can have side eff...
Definition madness_exception.h:207
Namespace for all elements and tools of MADNESS.
Definition DFParameters.h:10
TreeState
Definition funcdefaults.h:59
@ on_demand
no coeffs anywhere, but a functor providing if necessary
Definition funcdefaults.h:67
@ reconstructed
s coeffs at the leaves only
Definition funcdefaults.h:60
@ compressed
d coeffs in internal nodes, s and d coeffs at the root
Definition funcdefaults.h:61
@ OT_SLATER
1/r
Definition operatorinfo.h:15
@ 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_G12
indicates the identity
Definition operatorinfo.h:14
Tensor< T > fcube(const Key< NDIM > &, T(*f)(const Vector< double, NDIM > &), const Tensor< double > &)
Definition mraimpl.h:2129
NDIM & f
Definition mra.h:2481
NDIM const Function< R, NDIM > & g
Definition mra.h:2481
std::string type(const PairType &n)
Definition PNOParameters.h:18
Definition mraimpl.h:50
static const double thresh
Definition rk.cc:45
static const long k
Definition rk.cc:44
Definition test_dc.cc:47
Definition operatorinfo.h:58
double thresh
Definition operatorinfo.h:65
OpType type
introspection
Definition operatorinfo.h:66
double mu
some introspection
Definition operatorinfo.h:63
double lo
Definition operatorinfo.h:64
Defines and implements most of Tensor.
static const int truncate_mode
Definition testcosine.cc:14
constexpr std::size_t NDIM
Definition testgconv.cc:54