Skip to content
New issue

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

Increase number of swimmers each day of the week #7

Open
joesondow opened this issue Feb 26, 2017 · 0 comments
Open

Increase number of swimmers each day of the week #7

joesondow opened this issue Feb 26, 2017 · 0 comments

Comments

@joesondow
Copy link
Owner

joesondow commented Feb 26, 2017

First, convert the algorithm to a grid-based coordinate system.

Then, choose the number of swimmers to place semi-randomly, but weighted so that there are, on average, more fish each day of the week. Start on Monday with minimum fish, 3-10. Each day add one to that formula.
Mon: nextInt(8) + 3 (3-10)
Tues: nextInt(8) + 4
Wed: nextInt(8) + 5
Thu: nextInt(8) + 6
Fri: nextInt(8) + 7
Sat: nextInt(8) + 8
Sun: nextInt(8) + 9 (9-16)

Try that for a while. See what kind of response it gets. Maybe set it up to do that every other month or something.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant