Is there a scheduling algorithm that optimizes for “maker's schedules”?

前端 未结 4 432
猫巷女王i
猫巷女王i 2021-01-30 23:26

You may be familiar with Paul Graham\'s essay, \"Maker\'s Schedule, Manager\'s Schedule\". The crux of the essay is that for creative and technical professional

4条回答
  •  执笔经年
    2021-01-30 23:58

    I remember implementing something very similar to your problem with A* search algorithm. You will easily find several implementation of the algorithm available but in order to apply it to the scheduling problem you will have to construct distance and heuristic functions based on your model and split continuous time into chunks.

提交回复
热议问题