Skip to content

Commit

Permalink
Print N in the summary of daughter populations (closes #106)
Browse files Browse the repository at this point in the history
  • Loading branch information
bodkan committed Aug 21, 2022
1 parent a57041a commit 6525bf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/print.R
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ print_pop_history <- function(x) {
if (is.character(parent) && parent == "ancestor")
cat("created as an ancestral population", sprintf("(N = %d)", event$N))
else {
cat("split from", parent$pop[1])
cat("split from", parent$pop[1], sprintf("(N = %d)", event$N))
}
}

Expand Down

0 comments on commit 6525bf3

Please sign in to comment.