Enfusion Script API
|
Simple solver for assignment problem. More...
Static Public Member Functions | |
static proto void | Solve (array< ref array< int > > costs, out array< int > res) |
Solves basic assignment problem by branch and bound defined by array of cost per worker in costs. | |
Simple solver for assignment problem.
Optimizing selection of jobs for set of workers Basically brought from https://www.geeksforgeeks.org/job-assignment-problem-using-branch-and-bound/
|
static |
Solves basic assignment problem by branch and bound defined by array of cost per worker in costs.
Result is list of workers ids res Result doesn't guarantee optimal solution since B&B is used.