I am trying to model the following strict constraint in python with docplex:
mdl.add_constraint(sum(a[i] * mdl.variable[i] for i in range(nrItems)) > b)
but I keep getting the error: docplex.mp.utils.DOcplexException: Unsupported relational operator: only <=, ==, >= are allowed
How can one programm a strict constraint in docplex?