molpopgen / fwdpp

fwdpp is a C++ template library for implementing efficient forward-time population genetic simulations
http://fwdpp.readthedocs.io
GNU General Public License v3.0
27 stars 11 forks source link

Hashing mutations in tree seq example programs #252

Closed molpopgen closed 4 years ago

molpopgen commented 4 years ago

The program wfts_integration_test has an issue related to molpopgen/fwdpy11#422.

The following two command lines show different behaviors:

./wfts_integration_test  --N 1000 --mu 1e-3 --mean -0.1 --rho 1000
./wfts_integration_test  --N 1000 --mu 1e-3 --mean -0.1 --rho 1000 --preserve_fixations

For the latter, the unordered map keeps growing during the simulation. This does not happen with the first command line.