Tagged Questions
0
votes
2answers
229 views
Dynamic output filenames (C++)
I'm trying to create output files subscripted by a dynamic index ( d = {0,...,NUM_DEMES-1}). Currently, I'm only getting output files for the first value (d=0).
#include <sstream>
#include ...