You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In #1573 we added the idea of a "duration" to ancestry models, which determines the maximum amount of time we can run. There was also some clarification in the docs about models that will run until full coalescence (e.g. Hudson), and those that will complete before this (e.g Sweeps, Pedigree).
It is current an easily made gotcha to do something like
Because we've not specified a duration value, the second model will never run. We should add a type (or something) enum to the model class, which tells us whether models are "complete" or not, so that if we see any models in the list after a "complete" model with no duration value, we know it's an error.
The text was updated successfully, but these errors were encountered:
In #1573 we added the idea of a "duration" to ancestry models, which determines the maximum amount of time we can run. There was also some clarification in the docs about models that will run until full coalescence (e.g. Hudson), and those that will complete before this (e.g Sweeps, Pedigree).
It is current an easily made gotcha to do something like
Because we've not specified a
duration
value, the second model will never run. We should add atype
(or something) enum to the model class, which tells us whether models are "complete" or not, so that if we see any models in the list after a "complete" model with no duration value, we know it's an error.The text was updated successfully, but these errors were encountered: