We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It would be very useful for a forward graph to be able to output the complete size history for any deme/set of demes.
The implementation is trivial -- we just need to iterate the entire graph and record what we get into Vec<f64>.
Vec<f64>
We could also provide API sugar for giving the output as vectors of integer types, but this would add an extra set of error paths to consider.
The text was updated successfully, but these errors were encountered:
Related: ask about the size of deme i at time t and return an Option that is None if the deme is not extant then.
Sorry, something went wrong.
#270 is related.
Gonna delay this one for a while. I think a refactor of the back end could be coming up soon. If so, #270 is moot in its current form.
No branches or pull requests
It would be very useful for a forward graph to be able to
output the complete size history for any deme/set of demes.
The implementation is trivial -- we just need to iterate
the entire graph and record what we get into
Vec<f64>
.We could also provide API sugar for giving the output
as vectors of integer types, but this would add an extra
set of error paths to consider.
The text was updated successfully, but these errors were encountered: