Thanks, it’s much clearer now. You cannot use strict constraints in JuMP (no solver supports it anyway).
You can use @variable(m, tau[1:N] >= 0) if you are ok with the variable being zero. Otherwise, you need to model things differently but it’s difficult to give recommendation without more context on what you are trying to do.
2 Likes