Live data from Hacker News

Ask HN: What algorithms should I research to code a conference scheduling app

news.ycombinator.com

21–24 of 24 posts

Re: Ask HN: What algorithms should I research to code a conference scheduling app

#24
post #6

Your problem is a scheduling problem. It has been well studied in operations research [1] / mathematical optimization [2]. Basically, you formulate your problem as a integer programming model [3] and use a solver [4] to solve it. You should check PuLP [5]. You can also ask your question at OR Exchange [6]. [1] https://en.wikipedia.org/wiki/Operations_research [2] https://en.wikipedia.org/wiki/Mathematical_optimizatio…

ALLOCATING CONFERENCE DELEGATES TO WORKSHOPS: A SPECIAL TIMETABLING PROBLEM -- "The problem of assigning delegates to workshops at a conference can be formulated as a timetabling problem. Such an assignment must take into account the preferences of the delegates, as well as the number of participants each workshop can accommodate. This paper will report on a heuristic solution technique for a special case of such a problem."

http://orion.journals.ac.za/pub/article/view/470

Post reply on HN