![]() |
QMCPACK
|
Pade function of
. More...
Public Member Functions | |
PadeTwo2ndOrderFunctor (real_type a=1.0, real_type b=1.0, real_type c=1.0, real_type d=1.0) | |
constructor More... | |
OptimizableFunctorBase * | makeClone () const override |
create a clone of this object More... | |
void | reset () override |
reset the internal variables. More... | |
real_type | evaluate (real_type r) |
real_type | evaluate (real_type r, real_type &dudr, real_type &d2udr2) |
real_type | evaluate (real_type r, real_type &dudr, real_type &d2udr2, real_type &d3udr3) |
real_type | evaluateV (const int iat, const int iStart, const int iEnd, const T *restrict _distArray, T *restrict distArrayCompressed) const |
void | evaluateVGL (const int iat, const int iStart, const int iEnd, const T *distArray, T *restrict valArray, T *restrict gradArray, T *restrict laplArray, T *restrict distArrayCompressed, int *restrict distIndices) const |
real_type | f (real_type r) override |
evaluate the value at r More... | |
real_type | df (real_type r) override |
evaluate the first derivative More... | |
bool | evaluateDerivatives (real_type r, std::vector< TinyVector< real_type, 3 >> &derivs) override |
bool | evaluateDerivatives (real_type r, std::vector< real_type > &derivs) |
bool | put (xmlNodePtr cur) override |
process input xml node More... | |
void | checkInVariablesExclusive (opt_variables_type &active) override |
check in variational parameters to the global list of parameters used by the optimizer. More... | |
void | checkOutVariables (const opt_variables_type &active) override |
check out variational optimizable variables More... | |
void | resetParametersExclusive (const opt_variables_type &active) override |
reset the parameters during optimizations. More... | |
![]() | |
OptimizableFunctorBase (const std::string &name="") | |
default constructor More... | |
virtual | ~OptimizableFunctorBase ()=default |
virtual destrutor More... | |
void | getIndex (const opt_variables_type &active) |
virtual void | setDensity (real_type n) |
empty virtual function to help builder classes More... | |
virtual void | setCusp (real_type cusp) |
empty virtual function to help builder classes More... | |
virtual void | setPeriodic (bool periodic) |
empty virtual function to help builder classes More... | |
virtual void | setGridManager (bool willmanage) |
virtual void | checkInVariablesExclusive (opt_variables_type &active)=0 |
check in variational parameters to the global list of parameters used by the optimizer. More... | |
virtual void | resetParametersExclusive (const opt_variables_type &active)=0 |
reset the parameters during optimizations More... | |
![]() | |
OptimizableObject (const std::string &name) | |
const std::string & | getName () const |
bool | isOptimized () const |
virtual void | reportStatus (std::ostream &os) |
print the state, e.g., optimizables More... | |
void | setOptimization (bool state) |
virtual void | writeVariationalParameters (hdf_archive &hout) |
Write the variational parameters for this object to the VP HDF file. More... | |
virtual void | readVariationalParameters (hdf_archive &hin) |
Read the variational parameters for this object from the VP HDF file. More... | |
Public Attributes | |
real_type | A |
coefficients More... | |
real_type | B |
real_type | C |
real_type | D |
bool | Opt_A |
bool | Opt_B |
bool | Opt_C |
bool | Opt_D |
std::string | ID_A |
id for A More... | |
std::string | ID_B |
id for B More... | |
std::string | ID_C |
id for C More... | |
std::string | ID_D |
id for D More... | |
![]() | |
real_type | cutoff_radius = 0.0 |
maximum cutoff More... | |
opt_variables_type | myVars |
set of variables to be optimized More... | |
Additional Inherited Members | |
![]() | |
using | real_type = optimize::VariableSet::real_type |
typedef for real values More... | |
using | opt_variables_type = optimize::VariableSet |
typedef for variableset: this is going to be replaced More... | |
Pade function of
.
Prototype of the template parameter of TwoBodyJastrow and OneBodyJastrow
Definition at line 627 of file PadeFunctors.h.
|
inline |
constructor
Definition at line 642 of file PadeFunctors.h.
References PadeTwo2ndOrderFunctor< T >::reset().
Referenced by PadeTwo2ndOrderFunctor< T >::makeClone().
|
inlineoverridevirtual |
check in variational parameters to the global list of parameters used by the optimizer.
active | a super set of optimizable variables |
The existing checkInVariables implementation in WFC/SPO/.. are inclusive and it calls checkInVariables of its members class A: public SPOSet {} class B: public WFC { A objA; checkInVariables() { objA.checkInVariables(); } };
With OptimizableObject, class A: public OptimizableObject {} class B: public OptimizableObject { A objA; checkInVariablesExclusive() { // should not call objA.checkInVariablesExclusive() if objA has been extracted; } }; A vector of OptimizableObject, will be created by calling extractOptimizableObjects(). All the checkInVariablesExclusive() will be called through this vector and thus checkInVariablesExclusive implementation should only handle non-OptimizableObject members.
Implements OptimizableObject.
Definition at line 916 of file PadeFunctors.h.
References VariableSet::insertFrom(), and OptimizableFunctorBase::myVars.
|
inlineoverridevirtual |
check out variational optimizable variables
active | a super set of optimizable variables |
Implements OptimizableFunctorBase.
Definition at line 918 of file PadeFunctors.h.
References VariableSet::getIndex(), and OptimizableFunctorBase::myVars.
evaluate the first derivative
r | distance |
virtual function necessary for a transformation to a numerical functor
Implements OptimizableFunctorBase.
Definition at line 728 of file PadeFunctors.h.
References PadeTwo2ndOrderFunctor< T >::evaluate().
Definition at line 668 of file PadeFunctors.h.
References PadeTwo2ndOrderFunctor< T >::A, PadeTwo2ndOrderFunctor< T >::B, PadeTwo2ndOrderFunctor< T >::C, and PadeTwo2ndOrderFunctor< T >::D.
Referenced by PadeTwo2ndOrderFunctor< T >::df(), PadeTwo2ndOrderFunctor< T >::evaluate(), PadeTwo2ndOrderFunctor< T >::evaluateV(), PadeTwo2ndOrderFunctor< T >::evaluateVGL(), and PadeTwo2ndOrderFunctor< T >::f().
Definition at line 675 of file PadeFunctors.h.
References PadeTwo2ndOrderFunctor< T >::A, PadeTwo2ndOrderFunctor< T >::B, PadeTwo2ndOrderFunctor< T >::C, and PadeTwo2ndOrderFunctor< T >::D.
Definition at line 688 of file PadeFunctors.h.
References PadeTwo2ndOrderFunctor< T >::evaluate().
|
inlineoverridevirtual |
Reimplemented from OptimizableFunctorBase.
Definition at line 735 of file PadeFunctors.h.
References PadeTwo2ndOrderFunctor< T >::A, PadeTwo2ndOrderFunctor< T >::B, PadeTwo2ndOrderFunctor< T >::C, PadeTwo2ndOrderFunctor< T >::D, PadeTwo2ndOrderFunctor< T >::Opt_A, PadeTwo2ndOrderFunctor< T >::Opt_B, and PadeTwo2ndOrderFunctor< T >::Opt_C.
Reimplemented from OptimizableFunctorBase.
Definition at line 785 of file PadeFunctors.h.
References PadeTwo2ndOrderFunctor< T >::A, PadeTwo2ndOrderFunctor< T >::B, PadeTwo2ndOrderFunctor< T >::C, PadeTwo2ndOrderFunctor< T >::D, PadeTwo2ndOrderFunctor< T >::Opt_A, PadeTwo2ndOrderFunctor< T >::Opt_B, and PadeTwo2ndOrderFunctor< T >::Opt_C.
|
inline |
Definition at line 694 of file PadeFunctors.h.
References PadeTwo2ndOrderFunctor< T >::evaluate().
|
inline |
Definition at line 707 of file PadeFunctors.h.
References PadeTwo2ndOrderFunctor< T >::evaluate().
evaluate the value at r
r | distance |
virtual function necessary for a transformation to a numerical functor
Implements OptimizableFunctorBase.
Definition at line 726 of file PadeFunctors.h.
References PadeTwo2ndOrderFunctor< T >::evaluate().
|
inlineoverridevirtual |
create a clone of this object
Implements OptimizableFunctorBase.
Definition at line 659 of file PadeFunctors.h.
References PadeTwo2ndOrderFunctor< T >::PadeTwo2ndOrderFunctor().
|
inlineoverridevirtual |
process input xml node
cur | current xmlNode from which the data members are reset |
Read in the Pade parameters from the xml input file.
Implements OptimizableFunctorBase.
Definition at line 828 of file PadeFunctors.h.
References PadeTwo2ndOrderFunctor< T >::A, OhmmsAttributeSet::add(), qmcplusplus::app_log(), PadeTwo2ndOrderFunctor< T >::B, PadeTwo2ndOrderFunctor< T >::C, VariableSet::clear(), PadeTwo2ndOrderFunctor< T >::D, PadeTwo2ndOrderFunctor< T >::ID_A, PadeTwo2ndOrderFunctor< T >::ID_B, PadeTwo2ndOrderFunctor< T >::ID_C, PadeTwo2ndOrderFunctor< T >::ID_D, VariableSet::insert(), optimize::LOGLINEAR_P, OptimizableFunctorBase::myVars, PadeTwo2ndOrderFunctor< T >::Opt_A, PadeTwo2ndOrderFunctor< T >::Opt_B, PadeTwo2ndOrderFunctor< T >::Opt_C, PadeTwo2ndOrderFunctor< T >::Opt_D, optimize::OTHER_P, VariableSet::print(), OhmmsAttributeSet::put(), putContent(), and PadeTwo2ndOrderFunctor< T >::reset().
|
inlineoverridevirtual |
reset the internal variables.
Implements OptimizableFunctorBase.
Definition at line 663 of file PadeFunctors.h.
Referenced by PadeTwo2ndOrderFunctor< T >::PadeTwo2ndOrderFunctor(), PadeTwo2ndOrderFunctor< T >::put(), and PadeTwo2ndOrderFunctor< T >::resetParametersExclusive().
|
inlineoverridevirtual |
reset the parameters during optimizations.
Exclusive, see checkInVariablesExclusive
Implements OptimizableObject.
Definition at line 919 of file PadeFunctors.h.
References PadeTwo2ndOrderFunctor< T >::A, PadeTwo2ndOrderFunctor< T >::B, PadeTwo2ndOrderFunctor< T >::C, PadeTwo2ndOrderFunctor< T >::D, OptimizableFunctorBase::myVars, PadeTwo2ndOrderFunctor< T >::Opt_A, PadeTwo2ndOrderFunctor< T >::Opt_B, PadeTwo2ndOrderFunctor< T >::Opt_C, PadeTwo2ndOrderFunctor< T >::Opt_D, PadeTwo2ndOrderFunctor< T >::reset(), VariableSet::size(), and VariableSet::where().
coefficients
Definition at line 630 of file PadeFunctors.h.
Referenced by PadeTwo2ndOrderFunctor< T >::evaluate(), PadeTwo2ndOrderFunctor< T >::evaluateDerivatives(), PadeTwo2ndOrderFunctor< T >::put(), and PadeTwo2ndOrderFunctor< T >::resetParametersExclusive().
Definition at line 630 of file PadeFunctors.h.
Referenced by PadeTwo2ndOrderFunctor< T >::evaluate(), PadeTwo2ndOrderFunctor< T >::evaluateDerivatives(), PadeTwo2ndOrderFunctor< T >::put(), and PadeTwo2ndOrderFunctor< T >::resetParametersExclusive().
Definition at line 630 of file PadeFunctors.h.
Referenced by PadeTwo2ndOrderFunctor< T >::evaluate(), PadeTwo2ndOrderFunctor< T >::evaluateDerivatives(), PadeTwo2ndOrderFunctor< T >::put(), and PadeTwo2ndOrderFunctor< T >::resetParametersExclusive().
Definition at line 630 of file PadeFunctors.h.
Referenced by PadeTwo2ndOrderFunctor< T >::evaluate(), PadeTwo2ndOrderFunctor< T >::evaluateDerivatives(), PadeTwo2ndOrderFunctor< T >::put(), and PadeTwo2ndOrderFunctor< T >::resetParametersExclusive().
std::string ID_A |
id for A
Definition at line 633 of file PadeFunctors.h.
Referenced by PadeTwo2ndOrderFunctor< T >::put().
std::string ID_B |
id for B
Definition at line 635 of file PadeFunctors.h.
Referenced by PadeTwo2ndOrderFunctor< T >::put().
std::string ID_C |
id for C
Definition at line 637 of file PadeFunctors.h.
Referenced by PadeTwo2ndOrderFunctor< T >::put().
std::string ID_D |
id for D
Definition at line 639 of file PadeFunctors.h.
Referenced by PadeTwo2ndOrderFunctor< T >::put().
bool Opt_A |
Definition at line 631 of file PadeFunctors.h.
Referenced by PadeTwo2ndOrderFunctor< T >::evaluateDerivatives(), PadeTwo2ndOrderFunctor< T >::put(), and PadeTwo2ndOrderFunctor< T >::resetParametersExclusive().
bool Opt_B |
Definition at line 631 of file PadeFunctors.h.
Referenced by PadeTwo2ndOrderFunctor< T >::evaluateDerivatives(), PadeTwo2ndOrderFunctor< T >::put(), and PadeTwo2ndOrderFunctor< T >::resetParametersExclusive().
bool Opt_C |
Definition at line 631 of file PadeFunctors.h.
Referenced by PadeTwo2ndOrderFunctor< T >::evaluateDerivatives(), PadeTwo2ndOrderFunctor< T >::put(), and PadeTwo2ndOrderFunctor< T >::resetParametersExclusive().
bool Opt_D |
Definition at line 631 of file PadeFunctors.h.
Referenced by PadeTwo2ndOrderFunctor< T >::put(), and PadeTwo2ndOrderFunctor< T >::resetParametersExclusive().