Skip to content

Instantly share code, notes, and snippets.

@Ram-N
Created March 1, 2013 21:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ram-N/5067912 to your computer and use it in GitHub Desktop.
Save Ram-N/5067912 to your computer and use it in GitHub Desktop.
store_iteration_stats<- function(kNumSettlers, found.home, max.look.around) {
#how many settlers found homes
print(c(found.home," settled out of ", kNumSettlers, (found.home/kNumSettlers)*100, "%" ) )
#avg # of steps per new settler
print(c("num of look arounds max'ed:", max.look.around))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment