-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPKG-INFO
More file actions
177 lines (144 loc) · 6.82 KB
/
Copy pathPKG-INFO
File metadata and controls
177 lines (144 loc) · 6.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
Metadata-Version: 1.0
Name: pyMCFSimplex
Version: 0.9.1
Summary: pyMCFSimplex is a Python Wrapper for MCFSimplex
Home-page: http:\\www.sommer-forst.de\blog
Author: G#.Blog - Johannes Sommer
Author-email: info@sommer-forst.de
License: LGPL 2.1
Description:
*******************************************************************************
* pyMCFSimplex *
*******************************************************************************
* Version 0.9.1 *
************************
* Johannes Sommer, 2013*
************************
1. What?
--------
pyMCFSimplex is a Python-Wrapper for the C/C++ MCFSimplex Solver Class from
the University of Pisa.
MCFSimplex is a Class that solves big sized Minimum Cost Flow Problems
very fast.
See also [1] for a comparison.
2. How?
-------
pyMCFSimplex was being made through SWIG. Don't ask for the time I spent on
figuring out how SWIG works. With more knowledge in C++ I would have been
faster - but I'm not a C++ guy! I want it in Python!
3. Who?
-------
The authors of MCFSimplex are Alessandro Bertolini and Antonio Frangioni from
the Operations Research Group at the Dipartimento di Informatica of the
University of Pisa [2].
pyMCFSimplex is brought to you by Johannes from the G#.Blog
http://www.sommer-forst.de/blog.
Feel free to contact me: info(at)sommer-forst.de
4. Installation
---------------
Installation prerequisites are:
- Python 2.7 or Python 2.6 (only Windows)
- numpy (tested with 1.6.1)
- a build environment if you want to install from source distribution
4.1 Windows
-----------
Select the appropriate MSI package for your installed Python version (2.6 or 2.7) an simply execute the installer.
4.2 Linux
---------
Untar the binary dist package pyMCFSimplex-0.9.1.linux-x86_64.tar.gz with
tar xfvz pyMCFSimplex-0.9.1.linux-x86_64.tar.gz
It will install into /usr/local/lib/python2.7/dist-packages/.
4.3 Source Distribution
-----------------------
Grab the pyMCFSimplex-0.9.1_src_dist.zip file, extract it and run
a) linux:
sudo python setup.py install
b) windows:
start a command line as Administrator and run
python setup.py install
5. Usage
--------
Here is a first start. "sample.dmx" must be in the same location of your python script.
With these lines of code you can parse a minimum cost flow problem in DIMACS file format and solve it.
from pyMCFSimplex import *
print "pyMCFSimplex Version '%s' successfully imported." % version()
mcf = MCFSimplex()
print "MCFSimplex Class successfully instantiated."
FILENAME = 'sample.dmx'
print "Loading network from DIMACS file %s.." % FILENAME
f = open(FILENAME,'r')
inputStr = f.read()
f.close()
mcf.LoadDMX(inputStr)
print "Setting time.."
mcf.SetMCFTime()
print "Solving problem.."
mcf.SolveMCF()
if mcf.MCFGetStatus() == 0:
print "Optimal solution: %s" %mcf.MCFGetFO()
print "Time elapsed: %s sec " %(mcf.TimeMCF())
else:
print "Problem unfeasible!"
print "Time elapsed: %s sec " %(mcf.TimeMCF())
If you want to load a network not from a DIMACS file, you'll have to call LoadNet() while passing C-arrays to the method.
C arrays in Python? Yes - don't worry. There are helper methods in pyMCFSimplex, that'll do this for you.
Look at the following piece of code.
mcf = MCFSimplex()
print "MCFSimplex Class successfully instantiated."
print "Reading sample data.."
'''
Problem data of a MCFP in DIMACS notation
c Problem line (nodes, links)
p min 4 5
c
c Node descriptor lines (supply+ or demand-)
n 1 4
n 4 -4
c
c Arc descriptor lines (from, to, minflow, maxflow, cost)
a 1 2 0 4 2
a 1 3 0 2 2
a 2 3 0 2 1
a 2 4 0 3 3
a 3 4 0 5 1
'''
# MCFP problem transformed to integers and lists
nmx = 4 # max number of nodes
mmx = 5 # max number of arcs
pn = 4 # current number of nodes
pm = 5 # current number of arcs
pU = [4,2,2,3,5] # column maxflow
pC = [2,2,1,3,1] # column cost
pDfct = [-4,0,0,4] # node deficit (supply/demand)
pSn = [1,1,2,2,3] # column from
pEn = [2,3,3,4,4] # column to
# call LoadNet() with the return values of the helper methods
# e.g. CreateDoubleArrayFromList(pU) takes a python list and returns a pointer to a
# corresponding C array, that is passed as an argument to the method LoadNet()
mcf.LoadNet(nmx, mmx, pn, pm, CreateDoubleArrayFromList(pU), CreateDoubleArrayFromList(pC),
CreateDoubleArrayFromList(pDfct), CreateUIntArrayFromList(pSn),
CreateUIntArrayFromList(pEn))
print "Setting time.."
mcf.SetMCFTime()
mcf.SolveMCF()
if mcf.MCFGetStatus() == 0:
print "Optimal solution: %s" %mcf.MCFGetFO()
print "Time elapsed: %s sec " %(mcf.TimeMCF())
else:
print "Problem unfeasible!"
print "Time elapsed: %s sec " %(mcf.TimeMCF())
Please check out the sample script gsharpblog_mcfsolve_test.py for more information.
6. Good to know
---------------
I changed the original source code of MCFClass.h a little bit for SWIG compatibility.
All changes are marked by the following comment line "//Johannes Sommer".
This included:
- LoadDMX() accepts in pyMCFSimplex a string value (original: c iostream). The original LoadDMX method is omitted.
- as SWIG cannot deal with nested classes, I pulled the classes Inf, MCFState and MCFException out of the main class MCFClass.
Perhaps the above mentioned changes to the original source is not necessary, if you know SWIG very well.
But I could not figure out how to get these things to work in the SWIG interface file.
Useful hints are very welcome.
[1] http://bolyai.cs.elte.hu/egres/tr/egres-13-04.ps
[2] http://www.di.unipi.it/optimize/Software/MCF.html#MCFSimplex
Platform: win32
Platform: linux-x86_64