~ubuntu-branches/ubuntu/saucy/libbpp-phyl/saucy

« back to all changes in this revision

Viewing changes to src/Bpp/Phyl/Model/JCprot.h

  • Committer: Package Import Robot
  • Author(s): Julien Dutheil
  • Date: 2013-02-09 16:00:00 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20130209160000-5v65ba68z8032nzj
Tags: 2.0.3-1
* Reorganized model hierarchy
* New pairwise models
* Several bugs fixed

Show diffs side-by-side

added added

removed removed

Lines of Context:
159
159
                JCprot(const ProteicAlphabet* alpha, ProteinFrequenciesSet* freqSet, bool initFreqs = false);
160
160
 
161
161
    JCprot(const JCprot& model) :
 
162
      AbstractParameterAliasable(model),
 
163
      AbstractSubstitutionModel(model),
162
164
      AbstractReversibleSubstitutionModel(model),
163
165
      exp_(model.exp_),
164
166
      p_(model.p_),
167
169
 
168
170
    JCprot& operator=(const JCprot& model)
169
171
    {
 
172
      AbstractParameterAliasable::operator=(model);
 
173
      AbstractSubstitutionModel::operator=(model);
170
174
      AbstractReversibleSubstitutionModel::operator=(model);
171
175
      exp_ = model.exp_;
172
176
      p_   = model.p_;