Skip to content

Commit

Permalink
Merge pull request #136 from molpopgen/initial_gamete_counts
Browse files Browse the repository at this point in the history
Closes #131.
  • Loading branch information
molpopgen authored May 19, 2018
2 parents 051dcef + 057d8a2 commit 6cb8b0d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
8 changes: 4 additions & 4 deletions fwdpp/sugar/poptypes/mlocuspop.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ namespace fwdpp
typename popbase_t::gamete_t::mutation_container::size_type
reserve_size
= 100)
: popbase_t(__nloci * __N, reserve_size), N(__N),
diploids(__N, diploid_t(__nloci, {0,0})),
: popbase_t(__nloci * 2 * __N, reserve_size), N(__N),
diploids(__N, diploid_t(__nloci, { 0, 0 })),
locus_boundaries(locus_boundaries_)
{
}
Expand Down Expand Up @@ -121,7 +121,7 @@ namespace fwdpp
popbase_t::clear_containers();
}
};
}
}
} // namespace sugar
} // namespace fwdpp

#endif
7 changes: 3 additions & 4 deletions fwdpp/sugar/poptypes/popbase.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -149,14 +149,13 @@ namespace fwdpp

//! Constructor
explicit popbase(
const uint_t &popsize,
const uint_t &initial_gamete_count,
typename gamete_t::mutation_container::size_type reserve_size
= 100)
: // No muts in the population
mutations(mcont_t()),
mcounts(mcount_t()),
// The population contains a single gamete in 2N copies
gametes(gcont(1, gamete_t(2 * popsize))),
gametes(gcont(1, gamete_t(initial_gamete_count))),
neutral(typename gamete_t::mutation_container()),
selected(typename gamete_t::mutation_container()),
mut_lookup(lookup_table_type()), fixations(mvector()),
Expand All @@ -165,7 +164,7 @@ namespace fwdpp
// This is a good number for reserving,
// allowing for extra allocations when recycling is doing its
// thing
gametes.reserve(4 * popsize);
gametes.reserve(2 * initial_gamete_count);
// Reserve memory
neutral.reserve(reserve_size);
selected.reserve(reserve_size);
Expand Down
6 changes: 3 additions & 3 deletions fwdpp/sugar/poptypes/slocuspop.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ namespace fwdpp
typename popbase_t::gamete_t::mutation_container::size_type
reserve_size
= 100)
: popbase_t(popsize, reserve_size), N(popsize),
: popbase_t(2 * popsize, reserve_size), N(popsize),
// All N diploids contain the only gamete in the pop
diploids(dipvector_t(popsize, diploid_t(0, 0)))
{
Expand Down Expand Up @@ -108,6 +108,6 @@ namespace fwdpp
popbase_t::clear_containers();
}
};
}
}
} // namespace sugar
} // namespace fwdpp
#endif

0 comments on commit 6cb8b0d

Please sign in to comment.