yoon28 / pymht

multiple hypothesis tracking algorithm in python
30 stars 10 forks source link

Alternative to using gurobipy #5

Closed jaimeide closed 3 years ago

jaimeide commented 3 years ago

Thanks for sharing a nice work!

When I run the main.py script as it is, I get the following error after a while:

  File "src/gurobipy/model.pxi", line 847, in gurobipy.Model.optimize
gurobipy.GurobiError: Model too large for size-limited license; visit https://www.gurobi.com/free-trial for a full license

Is there a work around to not use gurobi?

Thanks! Jaime

jaimeide commented 3 years ago

Oh, I just found out that actually there is an option in the code to do that. :) I set 'use_gurobi':False Thanks for leaving the option!