Skip to content

Commit

Permalink
now it is actually fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
molpopgen committed Mar 7, 2023
1 parent 36e2182 commit 73df1ef
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cpp_neutral_benchmark/cpp_neutral_benchmark.cc
Expand Up @@ -13,6 +13,7 @@
#include <fwdpy11/evolvets/recorders.hpp>
#include <fwdpy11/rng.hpp>
#include <core/evolve_discrete_demes/evolvets.hpp>
#include <core/genetic_maps/regions.hpp>
#include <boost/program_options.hpp>

namespace po = boost::program_options;
Expand Down Expand Up @@ -158,7 +159,7 @@ simulate(const command_line_options& options)
{
fwdpy11::DiploidPopulation pop(options.N, 1e7);
fwdpy11::GSLrng_t rng(options.seed);
fwdpy11::PoissonInterval recombination_region(0., 1e7, options.xovers, true);
fwdpy11_core::PoissonInterval recombination_region(0., 1e7, options.xovers, true);

std::vector<std::unique_ptr<fwdpy11::PoissonCrossoverGenerator>> callbacks;
callbacks.emplace_back(recombination_region.ll_clone());
Expand Down

0 comments on commit 73df1ef

Please sign in to comment.