I am using a pyomo-Concreate Model and in this model there is a pyomo variable called Lambda, which is bounded with (0.0, None) and within=Non.NegativeReals.
The problem is after solving the model it somehow gets a minus value, which should not happen.
What do you think the problem can be?
PS: I am using GLPK Solver v4.61 to solve the model.
Here is the declaration of the variable Lambda, and also the results:
m.Lambda = pyomo.Var(
within=pyomo.NonNegativeReals,
bounds=(0.0, None),
doc='Sub Problem Objective')