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

More cleverly try to space students out. #2

Open
chmullig opened this issue Oct 14, 2014 · 2 comments
Open

More cleverly try to space students out. #2

chmullig opened this issue Oct 14, 2014 · 2 comments

Comments

@chmullig
Copy link
Member

The current "algorithm" is nice because it will be reasonably deterministic. It's bad because it's pretty dumb. Can we make it smarter, without making you fight it?

@kevin1
Copy link
Member

kevin1 commented Mar 8, 2017

We could have a default algorithm for simple classrooms like Noco 501 and Pupin 301 (user would just need to specify which desks are lefties). We'll fall back to priority lists for super complicated rooms like Havemeyer 309, where a lot of manual intervention is required.

While I adding Noco (01d796c), I realized that creating the priority list was pretty mechanical. The algorithm it encodes is basically this:

if num_students <= num_seats / 2
    space everyone out as much as possible
else
    for first num_seats / 2 students, assign to every other seat
    for remaining students, assign to empty seats in easily monitored areas
    for remaining students, assign to any empty seats

By default, we would assume that the first k = 3(?) rows from the front are easily accessible/monitored by proctors. The seating map could be extended to define locations of aisles, so that the k seats near aisles will also be treated as easily accessible areas.

@chmullig
Copy link
Member Author

chmullig commented Mar 8, 2017 via email

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

No branches or pull requests

2 participants