xo-gc: refactor to prune mlog store dep on DX1Collector

This commit is contained in:
Roland Conybeare 2026-04-02 20:14:52 -04:00
commit 1b3ecf9561
8 changed files with 120 additions and 47 deletions

View file

@ -0,0 +1,22 @@
/** @file MutationLogConfig.cpp
*
* @author Roland Conybeare, Apr 2026
**/
#include "MutationLogConfig.hpp"
namespace xo {
namespace mm {
MutationLogConfig::MutationLogConfig(std::uint32_t ngen,
std::size_t mlog_z,
bool debug_flag)
: n_generation_{ngen},
mutation_log_z_{mlog_z},
debug_flag_{debug_flag}
{}
}
}
/* end MutationLogConfig.cpp */