VJMCallewaert
Results
1
comments of
VJMCallewaert
Hi, I encountered a similar problem when trying to add terms to the objective function: ``` import mip m = mip.Model() x = m.add_var(var_type=mip.BINARY, name='x') m.objective.add_term(x) # Has no effect...