GAMS Constraints

Dear GAMS friends,
I am using GAMS to implement a Column Generation Algorithm, GAMS gives me a solution that violate one of the implemented constraints.

capacity_limit_master(t)… sum(pk(i,k), proposalcapacity(i,t,k)*lambda(i,k)) =l= f(t)

I run GAMS, give me a solution, with the RHS=4 and LHS=7,

Any suggestion on how to solve this problem?

Thanks


To unsubscribe from this group and stop receiving emails from it, send an email to gamsworld+unsubscribe@googlegroups.com.
To post to this group, send email to gamsworld@googlegroups.com.
Visit this group at http://groups.google.com/group/gamsworld.
For more options, visit https://groups.google.com/groups/opt_out.

\

I assume you want sum of (i,k) of proposalcapacity(i,t,k)*lambda(i,k)) < f(t). In that case I am not sure what the pk is for in designated sum command below of pk(i,k). I would write the equation as - capacity_limit_master(t)… sum((i,k), proposalcapacity(i,t,k)*lambda(i,k)) =l= f(t).



This assumes that lambda(i,k) is not a variable as well.



Regards,



John A. Ryan john.ryan@orm-tech.com

President

Office: 214-515-0441

Cell: 214-878-0728



From: gamsworld@googlegroups.com [mailto:gamsworld@googlegroups.com] On Behalf Of fawzat
Sent: Monday, July 08, 2013 11:05 AM
To: gamsworld@googlegroups.com
Subject: GAMS Constraints



Dear GAMS friends,

I am using GAMS to implement a Column Generation Algorithm, GAMS gives me a solution that violate one of the implemented constraints.



capacity_limit_master(t)… sum(pk(i,k), proposalcapacity(i,t,k)*lambda(i,k)) =l= f(t)



I run GAMS, give me a solution, with the RHS=4 and LHS=7,



Any suggestion on how to solve this problem?



Thanks


\

To unsubscribe from this group and stop receiving emails from it, send an email to gamsworld+unsubscribe@googlegroups.com.
To post to this group, send email to gamsworld@googlegroups.com.
Visit this group at http://groups.google.com/group/gamsworld.
For more options, visit https://groups.google.com/groups/opt_out.


\

To unsubscribe from this group and stop receiving emails from it, send an email to gamsworld+unsubscribe@googlegroups.com.
To post to this group, send email to gamsworld@googlegroups.com.
Visit this group at http://groups.google.com/group/gamsworld.
For more options, visit https://groups.google.com/groups/opt_out.

\