You can download this ebook for free.
Knapsack Problems: Algorithms and computer Implementations
Download link: http://www.or.deis.unibo.it/knapsack.html
I am a Postdoctoral Research Fellow with The SUTD-MIT International Design Centre (IDC), Singapore University of Technology and Design (SUTD). My research topic is about protocol and algorithm design, resource allocation and localisation in wireless sensor network, UAV network and Ad Hoc network. I also enjoy the mobile programming (Android and Objective-C) and web server development. Thanks for sharing.
Showing posts with label Optimization. Show all posts
Showing posts with label Optimization. Show all posts
Jun 24, 2013
Mar 31, 2013
Batch operation in AMPL
To speed up the operations, you may put the commands into a file, and run them all automatically by typing include and the filename. The following is an example batch file (routing.run):
reset;
model network.mod;
data network.dat;
option solver cplex;
solve;
display N;
display x;
So you run the optimization in AMPL command line:
ampl: include routing.run;
reset;
model network.mod;
data network.dat;
option solver cplex;
solve;
display N;
display x;
So you run the optimization in AMPL command line:
ampl: include routing.run;
Subscribe to:
Posts (Atom)