2014年4月29日星期二
2014年4月21日星期一
2014年4月15日星期二
如何将C++ CPLEX数据输出到txt文件
假设使用cplex solver求解,获得optimal solution为一个三维矩阵u[i][j][k]如下:
i.j k1 k2 k3 k4 k5...
1.1 2 4 6 4 2...
1.2 3 2 1 4 5...
... ....
j.j 1 2 3 4 5...
使用以下代码可将此三维矩阵存储到外部txt文件:
ofstream ofs; //创建一个output stream ofs
char filename1[128]; //定义字符串,长度为文件路径的字符数
sprintf(filename1, "C:/Users/allen/Dropbox/Large Scale Project/Data/Random Generate/vijk.txt"); //定义filename1为你所要导出的txt文件,后面是路径
ofs.open(filename1,ostream::app); /*以添加模式打开文件*/
for(i = 0;i < nbnodes; i++){
for(j = 0;j < nbnodes; j++){
for(k = 0; k < nblines; k++){
ofs << u[i][j][k] << "\t";
} //逐行输出
ofs << endl;
}
}
i.j k1 k2 k3 k4 k5...
1.1 2 4 6 4 2...
1.2 3 2 1 4 5...
... ....
j.j 1 2 3 4 5...
使用以下代码可将此三维矩阵存储到外部txt文件:
ofstream ofs; //创建一个output stream ofs
char filename1[128]; //定义字符串,长度为文件路径的字符数
sprintf(filename1, "C:/Users/allen/Dropbox/Large Scale Project/Data/Random Generate/vijk.txt"); //定义filename1为你所要导出的txt文件,后面是路径
ofs.open(filename1,ostream::app); /*以添加模式打开文件*/
for(i = 0;i < nbnodes; i++){
for(j = 0;j < nbnodes; j++){
for(k = 0; k < nblines; k++){
ofs << u[i][j][k] << "\t";
} //逐行输出
ofs << endl;
}
}
C++ Cplex 定义三维变量矩阵,Define 3 dimensional Matrix
刚学的时候有各种问题,比如这次遇到的如何定义三维矩阵,找遍了GOOGLE居然都找不到一个答案,Manual上说的更是模糊,因此在这里我要详细说明一下。
首先要define你的三维矩阵,因为三维要用到二维,因此也需要定义二维矩阵。
typedef IloArray<IloIntVarArray> IntVarMatrix2; //定义二维矩阵
typedef IloArray<IloArray<IloIntVarArray> > IntVarMatrix3; //定义三维矩阵
然后定义你的三维变量,这里我的三维变量形式为V[i][j][k],其中i=1..nbnodes, j =1..nbnodes, k=1..nblines;
IntVarMatrix3 V(env,nbnodes); //定义第一维的长度
for(i = 0; i < nbnodes; i++){
V[i] = IntVarMatrix2(env, nbnodes); //定义第二维的长度
for(j = 0; j < nbnodes; j++){
V[i][j] = IloIntVarArray(env, nblines, 0, RAND_MAX); //定义第三维的长度,也就是每个V[i][j][k]的范围是0到无穷大,之前我用IloInfinity不知道为什么编译后求解x的上限为一个负的大数,因此我就改为了RAND_MAX.
}
}
首先要define你的三维矩阵,因为三维要用到二维,因此也需要定义二维矩阵。
typedef IloArray<IloIntVarArray> IntVarMatrix2; //定义二维矩阵
typedef IloArray<IloArray<IloIntVarArray> > IntVarMatrix3; //定义三维矩阵
然后定义你的三维变量,这里我的三维变量形式为V[i][j][k],其中i=1..nbnodes, j =1..nbnodes, k=1..nblines;
IntVarMatrix3 V(env,nbnodes); //定义第一维的长度
for(i = 0; i < nbnodes; i++){
V[i] = IntVarMatrix2(env, nbnodes); //定义第二维的长度
for(j = 0; j < nbnodes; j++){
V[i][j] = IloIntVarArray(env, nblines, 0, RAND_MAX); //定义第三维的长度,也就是每个V[i][j][k]的范围是0到无穷大,之前我用IloInfinity不知道为什么编译后求解x的上限为一个负的大数,因此我就改为了RAND_MAX.
}
}
地点:
Tampa, FL, USA
2014年4月11日星期五
Export matrix in Matlab to .txt file 使用Matlab导出数据到txt文件
虽然很简单,但是还是要记录一下,在你的matlab里输入这个code:
dlmwrite(filename, M, 'delimiter', '\t', 'newline','pc');
这里filename代表你要输出的txt文件名称,前面加路径就可以输出到你所需要输出的那个路径的文件里,M代表你要输出的在Matlab中的矩阵名称,
‘delimiter'代表数据中间的间隔形式,后面的'\t'表示每两个数据间用tab间隔,也可以用' ',或者','分别是中间为空格和逗号,
想要导出的数据工整的话就需要加后面的
'newline','pc',这样每行数据导出会自动断点。
2014年4月10日星期四
如何用c++ cplex定义数组和矩阵
刚接触c++,cplex一定会对定义数组和矩阵比较迷茫,下面就几个例子详细说明一下如何对这些进行定义。
我就拿例子来说明吧,
typedef IloArray<IloNumArray> NumMatrix; // 首先要在最前面define type,其中<IloNumArray>代表的是cplex里的一个数组,加上括号和外面的IloArray这样就定义了一个二维的矩阵,同理再在外面继续加可以定义三维,多维等;这里定义的NumMatrix是参数的矩阵。
typedef IloArray<IloNumVarArray> NumVarMatrix; // 这里是定义存储变量的二维矩阵。
...中间代码省略
IloEnv env;
try {
IloInt i, j;
IloModel model(env);
IloInt nbDemand = 4;
IloInt nbSupply = 3;
IloNumArray supply(env, nbSupply, 1000.0, 850.0, 1250.0); //对于一维数组来说,因为cplex的IloNumArray就是已经定义好的数组,这里就可以直接拿来用
IloNumArray demand(env, nbDemand, 900.0, 1200.0, 600.0, 400.);
NumVarMatrix x(env, nbSupply); //前面定义过的变量矩阵,x是其的一个对象,范围是nbSupply
NumVarMatrix y(env, nbSupply);
for(i = 0; i < nbSupply; i++) {
x[i] = IloNumVarArray(env, nbDemand, 0.0, IloInfinity, ILOFLOAT);
y[i] = IloNumVarArray(env, nbDemand, 0.0, IloInfinity, ILOFLOAT);
} //这里是对x和y矩阵的每一个位置的变量进行定义,即xij,i从1到nbSupply,j从1到nbDemand,xij的值大于等于0小于无穷,属于浮点型,即连续变量
我就拿例子来说明吧,
typedef IloArray<IloNumArray> NumMatrix; // 首先要在最前面define type,其中<IloNumArray>代表的是cplex里的一个数组,加上括号和外面的IloArray这样就定义了一个二维的矩阵,同理再在外面继续加可以定义三维,多维等;这里定义的NumMatrix是参数的矩阵。
typedef IloArray<IloNumVarArray> NumVarMatrix; // 这里是定义存储变量的二维矩阵。
...中间代码省略
IloEnv env;
try {
IloInt i, j;
IloModel model(env);
IloInt nbDemand = 4;
IloInt nbSupply = 3;
IloNumArray supply(env, nbSupply, 1000.0, 850.0, 1250.0); //对于一维数组来说,因为cplex的IloNumArray就是已经定义好的数组,这里就可以直接拿来用
IloNumArray demand(env, nbDemand, 900.0, 1200.0, 600.0, 400.);
NumVarMatrix x(env, nbSupply); //前面定义过的变量矩阵,x是其的一个对象,范围是nbSupply
NumVarMatrix y(env, nbSupply);
for(i = 0; i < nbSupply; i++) {
x[i] = IloNumVarArray(env, nbDemand, 0.0, IloInfinity, ILOFLOAT);
y[i] = IloNumVarArray(env, nbDemand, 0.0, IloInfinity, ILOFLOAT);
} //这里是对x和y矩阵的每一个位置的变量进行定义,即xij,i从1到nbSupply,j从1到nbDemand,xij的值大于等于0小于无穷,属于浮点型,即连续变量
2014年4月9日星期三
成功调试第一个CPLEX程序
其实不能说是程序,因为是安装ILOG自带的例子,对于初学者来说最头疼的就属于面对这么一个复杂程序如何才能快速掌握。在这里我主要讲解以下两点:
一、build and run CPLEX里面自带的例子
二、创建c++项目并连接CPLEX
(这里的CPLEXDIR指你的CPLEX安装路径,比如我的就是“C:\Program Files (x86)\IBM\ILOG\CPLEX_Studio125\cplex”,然后加上后面的\examples\...就可以了)
Be aware that the order of the instructions below is important.
The information below applies to the Visual C++ 2008 multi-threaded STL library. If you use another version of the library, set the Runtime Library option to match the library version. If you use Visual Studio 2010, the instructions below should apply, except that
Remark:
一、build and run CPLEX里面自带的例子
二、创建c++项目并连接CPLEX
一
Building and Running CPLEX Examples
The C and C++ CPLEX examples have all been gathered in one project for each type of static format (mta
and mda
). The instructions below use the mta
format for the Visual Studio 2008 environment, but similar instructions apply when using the project file for another format or with Visual Studio 2010. The related file for the mda
format is <CPLEXDIR>\examples\x86_windows_vs2008\stat_mda\examples.sln
. (这里的CPLEXDIR指你的CPLEX安装路径,比如我的就是“C:\Program Files (x86)\IBM\ILOG\CPLEX_Studio125\cplex”,然后加上后面的\examples\...就可以了)
Be aware that the order of the instructions below is important.
- Start Microsoft Visual Studio 2008.
- From the File menu, choose Open Project/Solution.
The Open Project dialog box appears.- Select the folder
<CPLEXDIR>\examples\x86_windows_vs2008\stat_mta
. - Select the
examples.sln
file and click Open.
- Select the folder
- To build only one example (for instance,
blend
):- Select the
blend
project in the Solution Explorer window. - From the Build menu, choose Build blend.
Wait for the completion of the building process.
- Select the
- To build all of the examples:
- From the Build menu, choose Build Solution
Wait for the completion of the building process.
- From the Build menu, choose Build Solution
- To run an example (for instance,
blend
): - Open a command prompt window by running the Visual Studio 2008 Command Prompt.
In the window Visual Studio 2008 Command prompt: - Type
set path=%path%;<CPLEXDIR>\bin\x86_win32
so thatcplex123.dll
is on the path. (这条写的太坑爹,让我试了几十次终于才成功,如果你的CPLEX和我一样安装在默认目录即C:\Program Files x86\...那么就有可能遇到我的问题。这里设置路径的正确指令应该是:set path=C:\Program Files (x86)\IBM\ILOG\CPLEX_Studio125\cplex\bin\x86_win32; 这里面的CPLEX_Studio125指我安装的版本是12.5,如果你的不是正式版的可能不一样,还有我安装的32位因此在Program Files (x86)目录下,如果64位可能会是Program Files目录下) - Type
<CPLEXDIR>\examples\x86_windows_vs2008\stat_mta\blend
. (这里也比较坑爹,如果你和我一样安装在默认目录即C:\Program Files (x86)\下,很可能输入这条指令会显示“‘C:\Program' 不是内部或外部命令,也不是可运行的程序或批处理文件”的错误,那是因为这里系统读到空格处即Program后面就自动断点了,因此,你需要把你的路径用双引号引起来,如"C:\Program Files (x86)\IBM\ILOG\CPLEX_Studio125\cplex\bin\x86_windows_vs2010\stat_mta\blend". 这里x86_windows_vs2010是指你安装的c++版本号,我的是2010.) - The result is then displayed. The setting of the
path
environment variable is only necessary if the this folder is not already on thepath
. The default installer action is to modify the path to include this folder。
注意了上面的问题,你就可以执行任何自带的例子然后看到结果了。
二
Building Your Own Project which Links with CPLEX
Note:The information below applies to the Visual C++ 2008 multi-threaded STL library. If you use another version of the library, set the Runtime Library option to match the library version. If you use Visual Studio 2010, the instructions below should apply, except that
x86_windows_vs2008
should be replaced with x86_windows_vs2010
whenever a path name is specified.
Let's assume that you want to build a target named
test.exe
and have:- a source file named
test.cpp
which uses Concert Technology ortest.c
which uses the C API of the CPLEX Callable Library; - a folder where this file is located and which, for the sake of simplicity, we'll refer to as
<MYAPPDIR>
.
One way to achieve that is to create a project named
test.vcproj
as described here. Be aware that the order of instructions is important. Note that project files for VS2010 have the extension vcxproj
.- Start Microsoft Visual Studio 2008.
- The first step is to build the
test.sln
solution.
From the File menu, select New->, and then Project....
The New Project dialog box appears.
- In the Project types pane, select Visual C++ and Win32.
- In the Templates pane, select the Win32 Console Application icon.
- Fill in the project name (
test
). - If necessary, correct the location of the project (to
<MYAPPDIR>
) - Click OK
When the Win32 Application Wizard appears... - Click on Application Settings.
- Select Console Application as Application type.
- Make sure that Empty project is checked in Additional Options.
- Click Finish.
- Now you must add your source file to the project. From the Project menu, choose Add Existing Item...
- Move to the folder
<MYAPPDIR>
and selecttest.cpp
ortest.c
. - Click Open.
- Move to the folder
- Next, you have to set some options so that the project knows where to find the CPLEX and Concert include files and the CPLEX and Concert libraries.
From the Project menu, choose Properties.
The test Property Pages dialog box appears.
In the Configuration drop-down list, select Release.
Select C/C++ in the Configuration Properties tree.
- Select General:
- In the Additional Include Directories field, add the directories:
<CPLEXDIR>\include
.<CONCERTDIR>\include
.
- For Debug Information Format, choose Disabled (/Zd).
- Choose No for Detect 64-bit Portability Issues. Note that these settings are not available in the Visual Studio 2010 IDE and can be omitted.
- In the Additional Include Directories field, add the directories:
- Select Preprocessor:
- Add
IL_STD
to the Preprocessor Definitions field. This defines the macro IL_STD which is needed to use the STL.
- Add
- Select Code Generation:
- Set Runtime Library to Multi-threaded (/MT).
- Select General and then select Additional Library Directoriess. Add the files:
<CPLEXDIR>\lib\x86_windows_vs2008\stat_mta
<CONCERTDIR>\lib\x86_windows_vs2008\stat_mta
- Select Input and then select Additional Dependencies. Add the files:
cplex123.lib
ilocplex.lib
concert.lib
- Select General:
- Next, you have to set the default project configuration.From the Build menu, select Configuration Manager...
- Select Release in the Active Solution Configuration drop-down list.
- Click Close.
- Finally, to build the project, from the Build menu, select Build Solution
test
, with a single project, test
. You can see the contents of the solution by selecting Solution Explorer in the View menu.test.exe
is <MYAPPDIR>\test\Release\test.exe
.Remark:
From the Concert point of view, the only difference between the Win32 Release and Win32 Debug targets is:
- the
NDEBUG
macro is defined for the Win32 Release target. - the
NDEBUG
macro is not defined for the Win32 Debug target.
The interaction of the
NDEBUG
macro and the Concert inline member functions is documented in the Concepts section of the CPLEX C++ API Reference Manual. R2014年4月8日星期二
GAMS使用心得
刚开始接触运筹,尤其是对我这种没有编程背景的人,最好的软件应该就是这个GAMS了。
什么是GAMS呢?General Algebraic Modeling System (GAMS),是一种高阶层的建模优化系统,其优点是直观,容易上手,所用语法较为简单而且便宜。我老板的有些小项目,那些公司买不起cplex,用的就是这个。
大家可以上他主页下载安装:http://www.gams.com/,安装很简单而且免费,就是会有模型变量限制,如果想使用完全版,需要有license.但是这个软件的加密系统比较弱,大家可以上网查找免费的license文件,加入到安装目录下,然后将电脑系统时间调为license文件的生效时间即可使用完全版了,这样就剩下了一大笔钱了。
使用完全版还有个好处就是可以不用将数据一个敲入,而是可以直接读取外部数据文件比如excel,dat等,GAMS读取数据是通过GDX来完成的,他的教程里有详细的例子。
对于建模来说,GAMS非常直观,基本上你写在纸上的模型是什么样,输入到GAMS里就会是什么样。
什么是GAMS呢?General Algebraic Modeling System (GAMS),是一种高阶层的建模优化系统,其优点是直观,容易上手,所用语法较为简单而且便宜。我老板的有些小项目,那些公司买不起cplex,用的就是这个。
大家可以上他主页下载安装:http://www.gams.com/,安装很简单而且免费,就是会有模型变量限制,如果想使用完全版,需要有license.但是这个软件的加密系统比较弱,大家可以上网查找免费的license文件,加入到安装目录下,然后将电脑系统时间调为license文件的生效时间即可使用完全版了,这样就剩下了一大笔钱了。
使用完全版还有个好处就是可以不用将数据一个敲入,而是可以直接读取外部数据文件比如excel,dat等,GAMS读取数据是通过GDX来完成的,他的教程里有详细的例子。
对于建模来说,GAMS非常直观,基本上你写在纸上的模型是什么样,输入到GAMS里就会是什么样。
开篇
最近开始做研究,才深知PH.D真的不是那么好读的,但是既然走上了这条路,就应该坚持下来,将来拿到了人生永久的头衔DR.的时候该是会多么兴奋的一件事啊。
在这个博客里主要会记录一些我的学习心得,尤其是运筹学领域,因为可能国内目前的研究并不是很好,也没有很多相关的资料可以学习,因此借这个平台既能帮助自己提高又可以将自己学习的心得和体会分享给大家,还是很不错的。
在这个博客里主要会记录一些我的学习心得,尤其是运筹学领域,因为可能国内目前的研究并不是很好,也没有很多相关的资料可以学习,因此借这个平台既能帮助自己提高又可以将自己学习的心得和体会分享给大家,还是很不错的。
订阅:
博文 (Atom)