changeset 27:24949e72f7ec draft

Uploaded
author greg
date Thu, 09 Nov 2017 11:35:44 -0500
parents 3c06cab3db2c
children 3ef94dce7454
files insect_phenology_model.R
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/insect_phenology_model.R	Thu Nov 09 11:30:27 2017 -0500
+++ b/insect_phenology_model.R	Thu Nov 09 11:35:44 2017 -0500
@@ -215,9 +215,9 @@
 cat("Max clutch size: ", opt$max_clutch_size, "\n")
 cat("(egg->young nymph): ", opt$young_nymph_accum, ", ")
 cat("(young nymph->old nymph): ", opt$old_nymph_accum, "\n")
-cat("(old nymph->adult): ", opt$adult_accum
+cat("(old nymph->adult): ", opt$adult_accum)
 
-# Initialize matrix for results from all replications
+# Initialize matrix for results from all replications.
 S0.rep <- S1.rep <- S2.rep <- S3.rep <- S4.rep <- S5.rep <- matrix(rep(0, opt$num_days * opt$replications), ncol = opt$replications)
 newborn.rep <- death.rep <- adult.rep <- pop.rep <- g0.rep <- g1.rep <- g2.rep <- g0a.rep <- g1a.rep <- g2a.rep <- matrix(rep(0, opt$num_days * opt$replications), ncol=opt$replications)