Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Zwinkau
libfirm
Commits
4a4429bf
Commit
4a4429bf
authored
Jan 30, 2013
by
Manuel Mohr
Browse files
lpp: Delete commented out code, correct some comments.
parent
69d7305c
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/lpp/lpp_gurobi.c
View file @
4a4429bf
...
...
@@ -74,15 +74,12 @@ static void free_gurobi(gurobi_t *grb)
}
/**
* Build
CPLEX
data structure from LPP matrix.
* Build
Gurobi
data structure from LPP matrix.
* @note: The LPP matrix is freed after this step, to save memory.
*/
static
void
gurobi_construct
(
gurobi_t
*
grb
)
{
int
i
,
o
;
//int sv_cnt;
//int *indices;
//double *startv;
int
numcols
,
numrows
,
numentries
;
int
objsen
,
*
matbeg
,
*
matcnt
,
*
matind
;
double
*
obj
,
*
rhs
,
*
matval
,
*
lb
;
...
...
@@ -103,8 +100,6 @@ static void gurobi_construct(gurobi_t *grb)
colname
=
obstack_alloc
(
&
obst
,
numcols
*
sizeof
(
*
colname
));
rowname
=
obstack_alloc
(
&
obst
,
numrows
*
sizeof
(
*
rowname
));
vartype
=
obstack_alloc
(
&
obst
,
numcols
*
sizeof
(
*
vartype
));
//indices = obstack_alloc(&obst, numcols * sizeof(*indices));
//startv = obstack_alloc(&obst, numcols * sizeof(*startv));
matbeg
=
obstack_alloc
(
&
obst
,
numcols
*
sizeof
(
*
matbeg
));
matcnt
=
obstack_alloc
(
&
obst
,
numcols
*
sizeof
(
*
matcnt
));
matind
=
obstack_alloc
(
&
obst
,
numentries
*
sizeof
(
*
matind
));
...
...
@@ -113,8 +108,7 @@ static void gurobi_construct(gurobi_t *grb)
sense
=
obstack_alloc
(
&
obst
,
numrows
*
sizeof
(
*
sense
));
o
=
0
;
//sv_cnt = 0;
/* fill the CPLEX matrix*/
/* fill the Gurobi matrix*/
for
(
i
=
0
;
i
<
numcols
;
++
i
)
{
lpp_name_t
*
curr_var
=
lpp
->
vars
[
1
+
i
];
...
...
@@ -166,7 +160,7 @@ static void gurobi_solve(gurobi_t *grb)
double
iterations
;
/* Set the time limit appropriately */
if
(
lpp
->
time_limit_secs
>
0
.
0
)
{
if
(
lpp
->
time_limit_secs
>
0
.
0
)
{
error
=
GRBsetdblparam
(
grb
->
modelenv
,
GRB_DBL_PAR_TIMELIMIT
,
lpp
->
time_limit_secs
);
check_gurobi_error
(
grb
,
error
);
}
...
...
@@ -206,7 +200,7 @@ static void gurobi_solve(gurobi_t *grb)
error
=
GRBgetdblattrarray
(
grb
->
model
,
GRB_DBL_ATTR_X
,
0
,
numcols
,
values
);
check_gurobi_error
(
grb
,
error
);
for
(
i
=
0
;
i
<
numcols
;
++
i
)
{
for
(
i
=
0
;
i
<
numcols
;
++
i
)
{
lpp
->
vars
[
1
+
i
]
->
value
=
values
[
i
];
lpp
->
vars
[
1
+
i
]
->
value_kind
=
lpp_value_solution
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment