help-glpk
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Help-glpk] a simple question about using glpk


From: Andrew Makhorin
Subject: Re: [Help-glpk] a simple question about using glpk
Date: Fri, 10 Mar 2006 00:03:17 +0300

> I am using glpk to solve scheduling problem. I encountered a simple
> problem but couldn't figure out why is that.
> The error message I got is 'lpx_load_matrix: ja[55] = 7; column index 
> out of range"
> Does this mean I cannot have fewer structural variables than variables 
> in the raw constrains.
> For example, the objective function of my problem is like this:
> 
> Min A1I1+ A2I2 + ... A6I6 (there are only six columns)
> st.
> C11 + C12 + ... + C19 = C1  (I have 9 variables here)
> ...
> 
> How could get around of this problem?

This error message means that the problem object has less than 7
columns while you attempt to specify a constraint coefficient at
column 7. You may determine the current number of columns (i.e.
structural variables) using the api routine lpx_get_num_cols().

To avoid the error make sure that you added the correct number of
columns to the problem object before calling lpx_load_mat().





reply via email to

[Prev in Thread] Current Thread [Next in Thread]