bpp-phyl3
3.0.0
|
The PhyloLikelihoodSet class, to manage a subset of PhyloLikelihoods from a given PhyloLikelihoodContainer. More...
#include <Bpp/Phyl/Likelihood/PhyloLikelihoods/PhyloLikelihoodSet.h>
Public Member Functions | |
AbstractPhyloLikelihoodSet (Context &context, std::shared_ptr< PhyloLikelihoodContainer > pC, bool inCollection=true, const std::string &prefix="") | |
AbstractPhyloLikelihoodSet (Context &context, std::shared_ptr< PhyloLikelihoodContainer > pC, const std::vector< size_t > &nPhylo, bool inCollection=true, const std::string &prefix="") | |
virtual | ~AbstractPhyloLikelihoodSet () |
std::shared_ptr< PhyloLikelihoodContainer > | getPhyloContainer () override |
std::shared_ptr< const PhyloLikelihoodContainer > | getPhyloContainer () const override |
const std::vector< size_t > & | getNumbersOfPhyloLikelihoods () const override |
virtual bool | addPhyloLikelihood (size_t nPhyl, const std::string &suff="") override |
adds a PhyloLikelihood already stored in the PhyloLikelihoodContainer, iff it is an AbstractPhyloLikelihood. More... | |
virtual PhyloLikelihoodSetInterface * | clone () const =0 |
virtual LikelihoodCalculation & | likelihoodCalculation () const =0 |
virtual std::shared_ptr< LikelihoodCalculation > | getLikelihoodCalculation () const =0 |
virtual void | enableSecondOrderDerivatives (bool yn)=0 |
virtual bool | enableSecondOrderDerivatives () const=0 |
virtual double | getSecondOrderDerivative (const std::string &variable) const=0 |
virtual double | getSecondOrderDerivative (const std::string &variable1, const std::string &variable2) const=0 |
virtual double | d2f (const std::string &variable, const ParameterList ¶meters) |
virtual double | d2f (const std::string &variable1, const std::string &variable2, const ParameterList ¶meters) |
virtual void | enableFirstOrderDerivatives (bool yn)=0 |
virtual bool | enableFirstOrderDerivatives () const=0 |
virtual double | getFirstOrderDerivative (const std::string &variable) const=0 |
virtual double | df (const std::string &variable, const ParameterList ¶meters) |
virtual void | setParameters (const ParameterList ¶meters)=0 |
virtual double | getValue () const=0 |
virtual double | f (const ParameterList ¶meters) |
virtual bool | hasParameter (const std::string &name) const=0 |
virtual const ParameterList & | getParameters () const=0 |
virtual const Parameter & | parameter (const std::string &name) const=0 |
virtual double | getParameterValue (const std::string &name) const=0 |
virtual void | setAllParametersValues (const ParameterList ¶meters)=0 |
virtual void | setParameterValue (const std::string &name, double value)=0 |
virtual void | setParametersValues (const ParameterList ¶meters)=0 |
virtual bool | matchParametersValues (const ParameterList ¶meters)=0 |
virtual void | removeConstraint (const std::string &name)=0 |
virtual void | setConstraint (const std::string &name, std::shared_ptr< ConstraintInterface > constraint)=0 |
virtual size_t | getNumberOfParameters () const=0 |
virtual void | setNamespace (const std::string &prefix)=0 |
virtual std::string | getNamespace () const=0 |
virtual std::string | getParameterNameWithoutNamespace (const std::string &name) const=0 |
const Context & | context () const override |
Context & | context () override |
void | shareParameters (const ParameterList &variableNodes) |
Share Parameters, that are DF_parameters. More... | |
void | setParameters (const ParameterList ¶meters) override |
ValueRef< DataLik > | getLikelihoodNode () const override |
virtual void | enableFirstOrderDerivatives (bool yn) override |
Tell if derivatives must be computed: for Function inheritance. More... | |
bool | enableFirstOrderDerivatives () const override |
virtual void | enableSecondOrderDerivatives (bool yn) override |
bool | enableSecondOrderDerivatives () const override |
double | getValue () const override |
double | getFirstOrderDerivative (const std::string &variable) const override |
ValueRef< DataLik > | firstOrderDerivativeNode (const std::string &variable) const |
double | getSecondOrderDerivative (const std::string &variable) const override |
double | getSecondOrderDerivative (const std::string &variable1, const std::string &variable2) const override |
ValueRef< DataLik > | secondOrderDerivativeNode (const std::string &variable1, const std::string &variable2) const |
bool | hasParameter (const std::string &name) const override |
const ParameterList & | getParameters () const override |
const Parameter & | parameter (const std::string &name) const override |
const std::shared_ptr< Parameter > & | getParameter (const std::string &name) const |
double | getParameterValue (const std::string &name) const override |
void | setAllParametersValues (const ParameterList ¶meters) override |
void | setParameterValue (const std::string &name, double value) override |
void | setParametersValues (const ParameterList ¶meters) override |
bool | matchParametersValues (const ParameterList ¶meters) override |
void | removeConstraint (const std::string &name) override |
void | setConstraint (const std::string &name, std::shared_ptr< ConstraintInterface > constraint) override |
size_t | getNumberOfParameters () const override |
void | setNamespace (const std::string &prefix) override |
std::string | getNamespace () const override |
std::string | getParameterNameWithoutNamespace (const std::string &name) const override |
virtual Clonable * | clone () const=0 |
The PhyloLikelihood storage. | |
bool | hasPhyloLikelihood (size_t nPhyl) override |
std::shared_ptr< const PhyloLikelihoodInterface > | getPhyloLikelihood (size_t nPhyl) const override |
std::shared_ptr< PhyloLikelihoodInterface > | getPhyloLikelihood (size_t nPhyl) override |
Inherited from PhyloLikelihood | |
bool | isInitialized () const override |
virtual void | fireParameterChanged (const ParameterList ¶ms) override |
Retrieve some particular parameters subsets. | |
ParameterList | getNonDerivableParameters () const override |
ParameterList | getDerivableParameters () const override |
ParameterList | getBranchLengthParameters () const override |
Get the branch lengths parameters. More... | |
ParameterList | getSubstitutionModelParameters () const override |
Get the parameters associated to substitution model(s). More... | |
ParameterList | getRateDistributionParameters () const override |
Get the parameters associated to the rate distribution(s). More... | |
ParameterList | getRootFrequenciesParameters () const override |
Get the parameters associated to the root frequencies(s). More... | |
The data functions | |
virtual const Context & | context () const =0 |
virtual Context & | context ()=0 |
The likelihood functions. | |
virtual ValueRef< DataLik > | getLikelihoodNode () const =0 |
double | getLogLikelihood () const |
Get the logarithm of the likelihood for the whole dataset. More... | |
Protected Member Functions | |
AbstractPhyloLikelihoodSet (const AbstractPhyloLikelihoodSet &sd) | |
AbstractPhyloLikelihoodSet & | operator= (const AbstractPhyloLikelihoodSet &sd) |
virtual ParameterList & | getParameters_ ()=0 |
Node_DF & | accessVariableNode (const std::string &name) const |
const std::shared_ptr< Parameter > & | getParameter (size_t i) const |
std::shared_ptr< Parameter > & | getParameter (size_t i) |
virtual void | addParameter_ (Parameter *parameter) |
virtual void | addParameters_ (const ParameterList ¶meters) |
virtual void | shareParameter_ (const std::shared_ptr< Parameter > ¶meter) |
virtual void | shareParameters_ (const ParameterList ¶meters) |
virtual void | includeParameters_ (const ParameterList ¶meters) |
virtual void | deleteParameter_ (size_t index) |
virtual void | deleteParameter_ (std::string &name) |
virtual void | deleteParameters_ (const std::vector< std::string > &names) |
void | resetParameters_ () |
Parameter & | getParameter_ (const std::string &name) |
Parameter & | getParameter_ (size_t index) |
const Parameter & | getParameter_ (size_t index) const |
Parameter & | getParameterWithNamespace_ (const std::string &name) |
const Parameter & | getParameterWithNamespace_ (const std::string &name) const |
ParameterList & | getParameters_ () override |
Static Protected Member Functions | |
static Node_DF & | accessVariableNode (const Parameter ¶m) |
Protected Attributes | |
std::shared_ptr< PhyloLikelihoodContainer > | pPhyloCont_ |
pointer to a PhyloLikelihoodContainer More... | |
std::vector< size_t > | nPhylo_ |
vector of AbstractPhyloLikelihood numbers More... | |
std::vector< std::shared_ptr< LikelihoodCalculation > > | vLikCal_ |
Context & | context_ |
DataLik | minusLogLik_ |
the value More... | |
std::unordered_map< std::string, ValueRef< DataLik > > | firstOrderDerivativeNodes_ |
For Dataflow computing. More... | |
std::unordered_map< std::pair< std::string, std::string >, ValueRef< DataLik >, StringPairHash > | secondOrderDerivativeNodes_ |
Private Attributes | |
ParameterList | parameters_ |
std::string | prefix_ |
The PhyloLikelihoodSet class, to manage a subset of PhyloLikelihoods from a given PhyloLikelihoodContainer.
Definition at line 65 of file PhyloLikelihoodSet.h.
AbstractPhyloLikelihoodSet::AbstractPhyloLikelihoodSet | ( | Context & | context, |
std::shared_ptr< PhyloLikelihoodContainer > | pC, | ||
bool | inCollection = true , |
||
const std::string & | prefix = "" |
||
) |
context | the Context |
pC | PhyloLikelihoodContainer from which the Set is buit |
inCollection | : avoid suffix addition to parameter names |
prefix | optional string |
Definition at line 10 of file PhyloLikelihoodSet.cpp.
References addPhyloLikelihood(), getNumbersOfPhyloLikelihoods(), getPhyloContainer(), and bpp::TextTools::toString().
AbstractPhyloLikelihoodSet::AbstractPhyloLikelihoodSet | ( | Context & | context, |
std::shared_ptr< PhyloLikelihoodContainer > | pC, | ||
const std::vector< size_t > & | nPhylo, | ||
bool | inCollection = true , |
||
const std::string & | prefix = "" |
||
) |
Definition at line 27 of file PhyloLikelihoodSet.cpp.
References addPhyloLikelihood(), and bpp::TextTools::toString().
|
inlinevirtual |
Definition at line 107 of file PhyloLikelihoodSet.h.
|
inlineprotected |
Definition at line 110 of file PhyloLikelihoodSet.h.
|
inlinestaticprotectedinherited |
Definition at line 188 of file AbstractPhyloLikelihood.h.
Referenced by bpp::AbstractPhyloLikelihood::accessVariableNode(), bpp::AbstractPhyloLikelihood::firstOrderDerivativeNode(), bpp::OnABranchPhyloLikelihood::firstOrderDerivativeVector(), bpp::OneProcessSequencePhyloLikelihood::firstOrderDerivativeVector(), bpp::SingleProcessPhyloLikelihood::firstOrderDerivativeVector(), bpp::AbstractPhyloLikelihood::secondOrderDerivativeNode(), bpp::OnABranchPhyloLikelihood::secondOrderDerivativeVector(), bpp::OneProcessSequencePhyloLikelihood::secondOrderDerivativeVector(), and bpp::SingleProcessPhyloLikelihood::secondOrderDerivativeVector().
|
inlineprotectedinherited |
Definition at line 193 of file AbstractPhyloLikelihood.h.
References bpp::AbstractPhyloLikelihood::accessVariableNode(), and bpp::SecondOrderDerivable::parameter().
|
overridevirtual |
adds a PhyloLikelihood already stored in the PhyloLikelihoodContainer, iff it is an AbstractPhyloLikelihood.
nPhyl | number of the phylolikelihood |
suff | for parameters names if use specific parameters names |
Implements bpp::PhyloLikelihoodSetInterface.
Reimplemented in bpp::AbstractAlignedPhyloLikelihoodSet.
Definition at line 45 of file PhyloLikelihoodSet.cpp.
References bpp::AbstractPhyloLikelihood::context_, bpp::ConfiguredParameter::create(), getPhyloLikelihood(), bpp::AbstractParametrizable::hasParameter(), nPhylo_, bpp::Parameter::setName(), bpp::AbstractParametrizable::shareParameter_(), bpp::AbstractParametrizable::shareParameters_(), bpp::TextTools::toString(), and vLikCal_.
Referenced by AbstractPhyloLikelihoodSet(), bpp::AbstractAlignedPhyloLikelihoodSet::addPhyloLikelihood(), bpp::PartitionProcessPhyloLikelihood::PartitionProcessPhyloLikelihood(), and bpp::PhyloLikelihoodFormula::readFormula().
|
pure virtualinherited |
Implements bpp::PhyloLikelihoodInterface.
Implemented in bpp::AlignedPhyloLikelihoodSetInterface, bpp::PartitionProcessPhyloLikelihood, bpp::AlignedPhyloLikelihoodMixture, bpp::AlignedPhyloLikelihoodHmm, bpp::PhyloLikelihoodFormula, bpp::AlignedPhyloLikelihoodProduct, and bpp::AlignedPhyloLikelihoodAutoCorrelation.
|
pure virtualinherited |
Implemented in bpp::AbstractPhyloLikelihood.
|
inlineoverridevirtualinherited |
Implements bpp::PhyloLikelihoodInterface.
Definition at line 73 of file AbstractPhyloLikelihood.h.
References bpp::AbstractPhyloLikelihood::context_.
Referenced by bpp::AlignedPhyloLikelihoodMixture::AlignedPhyloLikelihoodMixture(), bpp::AutoCorrelationProcessPhyloLikelihood::AutoCorrelationProcessPhyloLikelihood(), bpp::HmmProcessPhyloLikelihood::HmmProcessPhyloLikelihood(), bpp::PartitionProcessPhyloLikelihood::makeLikCal_(), bpp::MixtureProcessPhyloLikelihood::MixtureProcessPhyloLikelihood(), bpp::OneProcessSequencePhyloLikelihood::OneProcessSequencePhyloLikelihood(), and bpp::PartitionProcessPhyloLikelihood::PartitionProcessPhyloLikelihood().
|
inlineoverridevirtualinherited |
Implements bpp::PhyloLikelihoodInterface.
Definition at line 75 of file AbstractPhyloLikelihood.h.
References bpp::AbstractPhyloLikelihood::context_.
|
pure virtualinherited |
Implemented in bpp::AbstractPhyloLikelihood.
|
inlineoverridevirtualinherited |
Implements bpp::SecondOrderDerivable.
Definition at line 115 of file AbstractPhyloLikelihood.h.
|
inlineoverridevirtualinherited |
Tell if derivatives must be computed: for Function inheritance.
Implements bpp::SecondOrderDerivable.
Definition at line 113 of file AbstractPhyloLikelihood.h.
|
inlineoverridevirtualinherited |
Implements bpp::SecondOrderDerivable.
Definition at line 116 of file AbstractPhyloLikelihood.h.
|
inlineoverridevirtualinherited |
Implements bpp::SecondOrderDerivable.
Definition at line 114 of file AbstractPhyloLikelihood.h.
|
inlineoverridevirtual |
Reimplemented from bpp::AbstractParametrizable.
Reimplemented in bpp::AlignedPhyloLikelihoodMixture, bpp::AlignedPhyloLikelihoodHmm, and bpp::AlignedPhyloLikelihoodAutoCorrelation.
Definition at line 208 of file PhyloLikelihoodSet.h.
References getPhyloLikelihood(), and nPhylo_.
Referenced by bpp::AlignedPhyloLikelihoodAutoCorrelation::fireParameterChanged(), and bpp::AlignedPhyloLikelihoodHmm::fireParameterChanged().
|
inlineinherited |
Definition at line 139 of file AbstractPhyloLikelihood.h.
References bpp::AbstractPhyloLikelihood::accessVariableNode(), bpp::AbstractPhyloLikelihood::context_, bpp::AbstractPhyloLikelihood::firstOrderDerivativeNodes_, and bpp::AbstractPhyloLikelihood::getLikelihoodNode().
Referenced by bpp::AbstractPhyloLikelihood::getFirstOrderDerivative(), and bpp::AbstractPhyloLikelihood::secondOrderDerivativeNode().
|
overridevirtual |
Get the branch lengths parameters.
Implements bpp::PhyloLikelihoodInterface.
Definition at line 107 of file PhyloLikelihoodSet.cpp.
References getPhyloLikelihood(), bpp::ParameterList::includeParameters(), and nPhylo_.
|
overridevirtual |
Implements bpp::PhyloLikelihoodInterface.
Definition at line 95 of file PhyloLikelihoodSet.cpp.
References getPhyloLikelihood(), bpp::ParameterList::includeParameters(), and nPhylo_.
|
inlineoverridevirtualinherited |
Implements bpp::SecondOrderDerivable.
Definition at line 131 of file AbstractPhyloLikelihood.h.
References bpp::convert(), and bpp::AbstractPhyloLikelihood::firstOrderDerivativeNode().
|
pure virtualinherited |
Implemented in bpp::AutoCorrelationProcessPhyloLikelihood, bpp::SingleProcessPhyloLikelihood, bpp::PartitionProcessPhyloLikelihood, bpp::OneProcessSequencePhyloLikelihood, bpp::OnABranchPhyloLikelihood, bpp::MixtureProcessPhyloLikelihood, bpp::HmmProcessPhyloLikelihood, bpp::AutoCorrelationProcessPhyloLikelihood, bpp::AlignedPhyloLikelihoodMixture, bpp::AlignedPhyloLikelihoodHmm, bpp::PhyloLikelihoodFormula, bpp::AlignedPhyloLikelihoodProduct, and bpp::AlignedPhyloLikelihoodAutoCorrelation.
Referenced by bpp::AbstractPhyloLikelihood::getLikelihoodNode().
|
pure virtualinherited |
Implemented in bpp::AbstractPhyloLikelihood.
|
inlineoverridevirtualinherited |
Implements bpp::PhyloLikelihoodInterface.
Definition at line 100 of file AbstractPhyloLikelihood.h.
References bpp::PhyloLikelihoodInterface::getLikelihoodCalculation().
Referenced by bpp::AbstractPhyloLikelihood::firstOrderDerivativeNode(), and bpp::AbstractPhyloLikelihood::getValue().
|
inlineinherited |
Get the logarithm of the likelihood for the whole dataset.
Definition at line 66 of file PhyloLikelihood.h.
References bpp::SecondOrderDerivable::getValue().
|
overridevirtual |
Implements bpp::PhyloLikelihoodInterface.
Definition at line 84 of file PhyloLikelihoodSet.cpp.
References getPhyloLikelihood(), bpp::ParameterList::includeParameters(), and nPhylo_.
|
inlineoverridevirtual |
Implements bpp::PhyloLikelihoodSetInterface.
Definition at line 139 of file PhyloLikelihoodSet.h.
References nPhylo_.
Referenced by AbstractPhyloLikelihoodSet(), bpp::AlignedPhyloLikelihoodMixture::AlignedPhyloLikelihoodMixture(), and bpp::PartitionProcessPhyloLikelihood::getData().
|
inlineoverridevirtual |
Implements bpp::PhyloLikelihoodSetInterface.
Definition at line 134 of file PhyloLikelihoodSet.h.
References pPhyloCont_.
|
inlineoverridevirtual |
Implements bpp::PhyloLikelihoodSetInterface.
Definition at line 129 of file PhyloLikelihoodSet.h.
References pPhyloCont_.
Referenced by AbstractPhyloLikelihoodSet(), bpp::PartitionProcessPhyloLikelihood::getData(), bpp::PartitionProcessPhyloLikelihood::PartitionProcessPhyloLikelihood(), bpp::PhyloLikelihoodFormula::readFormula(), and bpp::PartitionProcessPhyloLikelihood::setData().
|
inlineoverridevirtual |
Implements bpp::PhyloLikelihoodSetInterface.
Definition at line 169 of file PhyloLikelihoodSet.h.
References pPhyloCont_.
Referenced by addPhyloLikelihood(), fireParameterChanged(), getBranchLengthParameters(), getDerivableParameters(), bpp::PartitionProcessPhyloLikelihood::getLikelihoodCalculationForASite(), getNonDerivableParameters(), bpp::PartitionProcessPhyloLikelihood::getPhyloLikelihoodForASite(), getRateDistributionParameters(), getRootFrequenciesParameters(), getSubstitutionModelParameters(), isInitialized(), bpp::PhyloLikelihoodFormula::makeLikelihoodsFromOperator(), and bpp::PhyloLikelihoodFormula::readFormula().
|
inlineoverridevirtual |
Implements bpp::PhyloLikelihoodSetInterface.
Definition at line 175 of file PhyloLikelihoodSet.h.
References pPhyloCont_.
|
overridevirtual |
Get the parameters associated to the rate distribution(s).
Implements bpp::PhyloLikelihoodInterface.
Definition at line 129 of file PhyloLikelihoodSet.cpp.
References getPhyloLikelihood(), bpp::ParameterList::includeParameters(), and nPhylo_.
|
overridevirtual |
Get the parameters associated to the root frequencies(s).
Implements bpp::PhyloLikelihoodInterface.
Definition at line 140 of file PhyloLikelihoodSet.cpp.
References getPhyloLikelihood(), bpp::ParameterList::includeParameters(), and nPhylo_.
|
inlineoverridevirtualinherited |
Implements bpp::SecondOrderDerivable.
Definition at line 155 of file AbstractPhyloLikelihood.h.
|
inlineoverridevirtualinherited |
Implements bpp::SecondOrderDerivable.
Definition at line 160 of file AbstractPhyloLikelihood.h.
References bpp::convert(), and bpp::AbstractPhyloLikelihood::secondOrderDerivativeNode().
|
overridevirtual |
Get the parameters associated to substitution model(s).
Implements bpp::PhyloLikelihoodInterface.
Definition at line 118 of file PhyloLikelihoodSet.cpp.
References getPhyloLikelihood(), bpp::ParameterList::includeParameters(), and nPhylo_.
|
inlineoverridevirtualinherited |
Implements bpp::SecondOrderDerivable.
Definition at line 124 of file AbstractPhyloLikelihood.h.
References bpp::convert(), bpp::AbstractPhyloLikelihood::getLikelihoodNode(), and bpp::AbstractPhyloLikelihood::minusLogLik_.
|
inlineoverridevirtual |
Implements bpp::PhyloLikelihoodSetInterface.
Definition at line 164 of file PhyloLikelihoodSet.h.
References nPhylo_.
Referenced by bpp::PhyloLikelihoodFormula::readFormula().
|
inlineoverridevirtual |
Reimplemented from bpp::AbstractPhyloLikelihood.
Definition at line 197 of file PhyloLikelihoodSet.h.
References getPhyloLikelihood(), and nPhylo_.
|
pure virtualinherited |
Implemented in bpp::AutoCorrelationProcessPhyloLikelihood, bpp::SingleProcessPhyloLikelihood, bpp::PartitionProcessPhyloLikelihood, bpp::OneProcessSequencePhyloLikelihood, bpp::OnABranchPhyloLikelihood, bpp::MixtureProcessPhyloLikelihood, bpp::HmmProcessPhyloLikelihood, bpp::AutoCorrelationProcessPhyloLikelihood, bpp::AlignedPhyloLikelihoodMixture, bpp::AlignedPhyloLikelihoodHmm, bpp::PhyloLikelihoodFormula, bpp::AlignedPhyloLikelihoodProduct, and bpp::AlignedPhyloLikelihoodAutoCorrelation.
|
inlineprotected |
Definition at line 118 of file PhyloLikelihoodSet.h.
References nPhylo_, bpp::AbstractPhyloLikelihood::operator=(), pPhyloCont_, and vLikCal_.
Referenced by bpp::AbstractAlignedPhyloLikelihoodSet::operator=(), bpp::PartitionProcessPhyloLikelihood::operator=(), and bpp::PhyloLikelihoodFormula::operator=().
|
inlineinherited |
Definition at line 168 of file AbstractPhyloLikelihood.h.
References bpp::AbstractPhyloLikelihood::accessVariableNode(), bpp::AbstractPhyloLikelihood::context_, bpp::AbstractPhyloLikelihood::firstOrderDerivativeNode(), and bpp::AbstractPhyloLikelihood::secondOrderDerivativeNodes_.
Referenced by bpp::AbstractPhyloLikelihood::getSecondOrderDerivative().
|
inlineoverridevirtualinherited |
Implements bpp::SecondOrderDerivable.
Definition at line 95 of file AbstractPhyloLikelihood.h.
References bpp::SecondOrderDerivable::setParametersValues().
|
inlineinherited |
Share Parameters, that are DF_parameters.
Definition at line 90 of file AbstractPhyloLikelihood.h.
References bpp::SecondOrderDerivable::getParameters_(), and bpp::ParameterList::shareParameters().
Referenced by bpp::AbstractPhyloLikelihood::AbstractPhyloLikelihood(), and bpp::AbstractPhyloLikelihood::operator=().
|
protectedinherited |
Definition at line 34 of file AbstractPhyloLikelihood.h.
Referenced by addPhyloLikelihood(), bpp::AbstractPhyloLikelihood::context(), bpp::AbstractPhyloLikelihood::firstOrderDerivativeNode(), bpp::OnABranchPhyloLikelihood::firstOrderDerivativeVector(), bpp::OneProcessSequencePhyloLikelihood::firstOrderDerivativeVector(), bpp::SingleProcessPhyloLikelihood::firstOrderDerivativeVector(), bpp::PhyloLikelihoodFormula::makeLikelihoodsFromOperator(), bpp::AbstractPhyloLikelihood::operator=(), bpp::AbstractPhyloLikelihood::secondOrderDerivativeNode(), bpp::OnABranchPhyloLikelihood::secondOrderDerivativeVector(), bpp::OneProcessSequencePhyloLikelihood::secondOrderDerivativeVector(), and bpp::SingleProcessPhyloLikelihood::secondOrderDerivativeVector().
|
mutableprotectedinherited |
For Dataflow computing.
Definition at line 44 of file AbstractPhyloLikelihood.h.
Referenced by bpp::AbstractPhyloLikelihood::firstOrderDerivativeNode().
|
mutableprotectedinherited |
the value
Definition at line 39 of file AbstractPhyloLikelihood.h.
Referenced by bpp::AbstractPhyloLikelihood::getValue(), and bpp::AbstractPhyloLikelihood::operator=().
|
protected |
vector of AbstractPhyloLikelihood numbers
Definition at line 79 of file PhyloLikelihoodSet.h.
Referenced by bpp::AbstractAlignedPhyloLikelihoodSet::AbstractAlignedPhyloLikelihoodSet(), addPhyloLikelihood(), fireParameterChanged(), getBranchLengthParameters(), getDerivableParameters(), getNonDerivableParameters(), getNumbersOfPhyloLikelihoods(), getRateDistributionParameters(), getRootFrequenciesParameters(), getSubstitutionModelParameters(), hasPhyloLikelihood(), isInitialized(), bpp::PartitionProcessPhyloLikelihood::makeLikCal_(), and operator=().
|
protected |
pointer to a PhyloLikelihoodContainer
Definition at line 74 of file PhyloLikelihoodSet.h.
Referenced by bpp::AbstractAlignedPhyloLikelihoodSet::getAlignedPhyloLikelihood(), getPhyloContainer(), getPhyloLikelihood(), operator=(), and bpp::PartitionProcessPhyloLikelihood::PartitionProcessPhyloLikelihood().
|
mutableprotectedinherited |
Definition at line 48 of file AbstractPhyloLikelihood.h.
Referenced by bpp::AbstractPhyloLikelihood::secondOrderDerivativeNode().
|
mutableprotected |
vector of pointers towards LikelihoodCalculation, used for the global likelihood.
Definition at line 85 of file PhyloLikelihoodSet.h.
Referenced by addPhyloLikelihood(), bpp::PartitionProcessPhyloLikelihood::makeLikCal_(), and operator=().