help-glpk
[Top][All Lists]
Advanced

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

Re: [Help-glpk] Re: Simple Cutting Stock Problem Solver Using GLPK


From: Maurice Diamantini
Subject: Re: [Help-glpk] Re: Simple Cutting Stock Problem Solver Using GLPK
Date: Mon, 31 Mar 2008 11:10:40 +0200


Le 30 mars 08 à 22:21, vijay patil a écrit :
Released version 0.3.

http://code.google.com/p/cspsol/downloads/list

1. Now CG is done only at the root node of BB tree. CG at all nodes of
BB tree requires some more thought.
2. Removed slack variables, instead added trivial patterns to the
master problem. (as Andrew suggested.)
3. Now order width can be integer/float.
4. Improved formatting etc.
5. Moved files INSTALL and README from /src to parent dir.
6. Updated homepage http://code.google.com/p/cspsol/

Thanks you very much Vijay,
it works on osx 10.5.2 with glpk-4.23.

Just a remark to make the compil even more easely!

Why not use standard environnement variables with some
reasonable default values to guess where glpk is installed
(with configure --prefix)
(e.g. GLPK_INCLUDE and GLPK_LIB as used in:
   http://theory.stanford.edu/~srirams/Software/lpinv.html

I had to modify the Makefile as following:

GLPKINC = $(GLPK_INCLUDE)
GLPKLIB = $(GLPK_LIB)

# add -L$(GLPKLIB)
cspsol: $(OBJS)
        g++ -o cspsol $(OBJS) -L$(GLPKLIB) -lglpk -lm

Thank you for you contribution!
-- Maurice Diamantini





reply via email to

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