Note that a constraint is composed of a constraint expression and forall sets expression.
ConstraintExpr expr = density * x[i, j] >= assignedDemand;
Constraint con = forall(i, j) | density * x[i, j] >= assignedDemand;
public static ConstraintExpr operator >=(
Term lhs,
VarD0 rhs
)