Test Instances: Appendix A
Test Instances: Appendix A
Test Instances: Appendix A
Test Instances
For testing the algorithms developed in this work, we have employed sev-
eral standard project instance sets which have been used in many studies
reported in the literature. Section A.l describes the classical Patterson set of
single-mode project instances. Subsequently, Section A.2 summarizes the so-
called ProGen instance sets, which contain both single-mode and multi-mode
instances.
Kolisch et al. [130] identified three parameters which have a strong impact
on the performance of solution procedures, namely the network complexity,
the resource factor, and the resource strength. The network complexity NC
reflects the average number of immediate successors of an activity. The re-
newable resource factor RFP is a measure of the average number of resources
requested per job. The renewable resource strength RSP describes the scarce-
ness of the resource capacities. If the latter is high (Le., close to 1), the
availability is high, which leads to a smaller solution space and hence easier
problems. On the other hand, a low resource strength (Le., close to 0) implies
scarce resources and more difficult instances.
The instance sets with J = 30 and J = 60 were generated by a full facto-
rial design obtained from three network complexity levels, four resource factor
levels, and four resource strength levels. For each of the resulting 3·4·4 = 48
parameter combinations, 10 instance were randomly generated, leading to
480 instances in each of the two sets. The instance set with J = 120 was gen-
erated similarly, with the exception that five levels for the resource strength
were chosen. Again, 10 instances for each parameter combination were ran-
domly constructed, yielding 600 instances. An overview of the systematically
varied parameter settings within the three sets is given in Table A.2.
The set with 30 non-dummy activities currently is the hardest standard
set of RCPSP-instances for which all optimal objective function values are
known (cf. Demeulemeester and Herroelen [51]). For the other two sets,
lower bounds on the project's makespan can be easily derived using forward
recursion (cf. Subsection 2.1.2). Clearly, the earliest precedence feasible start
time ESJ+l of the dummy sink activity is a lower bound on the makespan, the
so-called critical path based lower bound (cf. also Stinson et al. [195]). Further
lower bounds have been developed by, e.g., Baar et al. [8], Brucker and Knust
184 APPENDIX A. TEST INSTANCES
J parameter levels
30 60 RFP 0.25 0.50 0.75 1.00
RSP 0.20 0.50 0.70 1.00
NC 1.50 1.80 2.10
120 RFP 0.25 0.50 0.75 1.00
RSP 0.10 0.20 0.30 0.40 0.50
NC 1.50 1.80 2.10
[27], Heilmann and Schwindt [99], Klein and Scholl [117], Mingozzi et al. [145],
and Stinson et al. [195]. The library PSPLIB which is frequently updated
contains the currently best lower and upper bounds for these instances.
Some or all of the three instance sets considered here have been widely
used by researchers, making them a standard for evaluating and comparing
solution algorithms. We refer to the studies of Baar et al. [8], Bouleimen
and Lecocq [25], Brucker et al. [29], Demeulemeester and Herroelen [51],
Hartmann [92], Hartmann and Kolisch [95], Klein [115], Klein and Scholl
[116], Kohlmorgen et al. [118], Kolisch [120, 121, 122], Kolisch and Hartmann
[126], Mingozzi et al. [145], Schirmer [174], Schirmer and Riesenberg [176,
177], and Sprecher [191].
J parameter levels
10 RFP 0.50 1.00
RSP 0.20 0.50 0.70 1.00
RFI! 0.50 1.00
RSI! 0.20 0.50 0.70 1.00
12 14 16 18 20 RFP 0.50 1.00
RSP 0.25 0.50 0.75 1.00
RFI! 0.50 1.00
RSI! 0.25 0.50 0.75 1.00
For all of the multi-mode ProGen instances described above, the optimal
objective function values are known (cf. Sprecher and Drexl [192]). These sets
(or at least some ofthem) have been used in several studies, cf. Hartmann [90],
Hartmann and Drexl [93], Kolisch [120], Kolisch and Drexl [125], Ozdamar
[154], Sprecher [190], Sprecher and Drexl [192]' and Sprecher et al. [193].
1 Due to the history of the project scheduling problem library, the resource strength
levels used to generate the instances with 10 non-dummy activities slightly differ from
those that have been used to generate the other problems.
Appendix B
function, and constraints, a reference to the data file containing the project
instance is made. Then the problem is defined and solved. Finally, the
decision variables and the objective function value are displayed.
The makespan minimization objective is that of (2.7). The constraints
correspond to (2.8)-(2.11) while the variable declaration equals (2.12). Ob-
serve that we have used the time window based approach of (2.6) for the
renewable resource constraints in order to save variables and obtain the most
efficient formulation.
# OPTIONS
# PARAMETERS
param T integer;
param J integer;
param M {0 .. J+1} integer;
param p {j in 0 .. J+1, 1 .. M[j]} integer;
set P {0 .. J+1} within {O .. J};
set KR;
set KN;
param r {j in 0 .. J+1, 1 .. M[j], KR union KN} integer;
B.i. AMPL-FORMULATION OF THE MRCPSP 189
# VARIABLES
# MODEL
minimize Makespan:
sum {t in EF[J+l] .. LF[J+l]} t * x[J+l,l,t];
data instance.dat;
# SOLVE PROBLEM
problem MRCPSP:
x,
190 APPENDIX B. SOLVING THE MRCPSP USING AMPL
Makespan,
JobModeCompletion,
PrecedenceRelations,
ReneyableResources,
NonreneyableResources;
solve MRCPSP;
display x;
display Makespan;
param T := 22;
param J := 6;
param M :=
[0] 1
[1] 2
[2] 2
[3] 2
[4] 2
[5] 1
[6] 2
[7] 1;
param p :=
[0,1] 0
[1,1] 3 [1,2] 4
[2,1] 2 [2,2] 4
[3,1] 2 [3,2] 3
[4,1] 2 [4,2] 2
[5,1] 3
[6,1] 4 [6,2] 6
[7,1] 0
set P [0] :=
set P [1] .= 0;
B.2. AMPL-DATA FILE FOR THE MRCPSP 191
set P [2] := 0;
set P [3] := 1;
set P [4] := 2;
set P [5] := 3;
set P [6] := 4;
set P [7] .= 5 6;
set KR .= 1;
set KN := 2·,
param r :=
[0,1,1] 0 [0,1,2] 0
[1,1,1] 2 [1,1,2] 5 [1,2,1] 1 [1,2,2] 1
[2,1,1] 3 [2,1,2] 6 [2,2,1] 3 [2,2,2] 2
[3,1,1] 4 [3,1,2] 2 [3,2,1] 2 [3,2,2] 2
[4,1,1] 3 [4,1,2] 6 [4,2,1] 4 [4,2,2] 4
[5,1,1] 3 [5,1,2] 1
[6,1,1] 2 [6,1,2] 1 [6,2,1] 1 [6,2,2] 1
[7,1,1] 0 [7,1,2] 0
param RR :=
[1] 4·,
param RN :=
[2] 15;
param EF :=
[0] 0
[1] 3
[2] 2
[3] 5
[4] 4
[5] 8
[6] 8
[7] 8;
param LF .-
[0] 14
[1] 17
[2] 16
[3] 19
[4] 18
[5] 22
[6] 22
[7] 22
Bibliography
[57] U. Dorndorf and E. Pesch. Evolution based learning in a job shop scheduling
environment. Computers fj Operations Research, 22:25-40, 1995.
[58] U. Dorndorf, E. Pesch, and T. Phan Huy. A time-oriented branch-and-bound
algorithm for resource-constrained project scheduling with generalized prece-
dence constraints. Technical report, Universitat Bonn, Germany, 1998.
[59] A. Drexl. Scheduling of project networks by job assignment. Management
Science, 37:1590-1602, 1991.
[60] A. Drexl, ·W. Eversheim, R. Grempe, and H. Esser. elM im Werkzeug-
maschinenbau: Der PRISMA-Montageleitstand. Zeitschrift fur betriebswirl-
schaftliche Forschung, 46:279-295, 1994.
[61] A. Drexl and J. Griinewald. Nonpreemptive multi-mode resource-constrained
project scheduling. lIE Transactions, 25:74-81, 1993.
[62] A. Drexl, J. Juretzka, F. Salewski, and A. Schirmer. New modelling concepts
and their impact on resource-constrained project scheduling. In Weglarz [207],
pages 413-432.
[63] A. Drexl and R. Kolisch. Assembly management in machine tool manufac-
turing and the PRISMA-Leitstand. Production and Inventory Management
Journal, 37( 4}:55-57, 1996.
[64] A. Drexl, R. Nissen, J. H. Patterson, and F. Salewski. ProGen/1l"x - An
instance generator for resource-constrained project scheduling problems with
partially renewable resources and further extensions. Technical report, Uni-
versitat Kiel, Germany, 1997.
[65] A. Drexl and F. Salewski. Distribution requirements and compactness con-
straints in school timetabling. European Journal of Operational Research,
102:193-214, 1997.
[66] G. Dueck. New optimization heuristics: The great deluge algorithm and the
record-to-record travel. Journal of Computational Physics, 104:86-92, 1993.
[67] G. Dueck and T. Scheuer. Threshold accepting: A general purpose opti-
mization algorithm appearing superior to simulated annealing. Journal of
Computational Physics, 90:161-175, 1990.
[68] H. Dyckhoff. A typology of cutting and packing problems. European Journal
of Operational Research, 44:145-159, 1990.
[69] H. Dyckhoff and U. Finke. Cutting and packing in production and distribution.
Physica, Heidelberg, Germany, 1992.
[70] A. E. Eiben, E. H. L. Aarts, and K. M. van Hee. Global convergence of genetic
algorithms: A markov chain analysis. Lecture Notes in Computer Science,
496:4-12, 1990.
[71] S. E. Elmaghraby. An algebra for the analysis of generalized networks. Man-
agement Science, 10:419-514, 1964.
[72] S. E. Elmaghraby. Activity networks: Project planning and control by network
models. Wiley, New York, 1977.
198 BIBLIOGRAPHY
[136] F.-H. F. Liu and C.-J. Hsiao. A three-dimensional pallet loading method for
single-size boxes. Journal of the Operational Research Society, 48:726-735,
1997.
[137] C. Loser, T. Fitting, and U. R. FOlsch. Importance of intracellular s-adenosyl-
methionine decarboxylase activity for the regulation of camostate-induced
pancreatic polyamine metabolism and growth: In vivo effect of two novel
s-adenosylmethionine decarboxylase inhibitors. Digestion, 58:258-265, 1997.
[138] C. Loser, U. R. Folsch, C. Paprotny, and W. Creutzfeld. Polyamines in
colorectal cancer: Evaluation of polyamine concentrations in colon tissue,
serum, and urine of 50 patients with colorectal cancer. Cancer, 65:958-966,
1990.
[139] D. G. Malcolm, J. H. Roseboom, C. E. Clark, and W. Fazar. Applications
of a technique for research and development program evaluation. Operations
Research, 7:646-669, 1959.
[140] L. J. Marton and A., E. Pegg. Polyamines as targets for therapeutic interven-
tion, Annual Review of Pharmacology and Toxicology, 35:55-91, 1995.
[141] D. C. Mattfeld. Evolutionary search and the job shop. Physica, Heidelberg,
Germany, 1996,
[142] H. E. Mausser and S. R. Lawrence, Exploiting block structure to improve
resource-constrained project schedules. Technical report, Graduate School of
Business Administration, University of Colorado, 1995.
[143] W, S, McCulloch and W. Pitts, A logical calculus of the ideas immanent in
nervous activity, Bulletin of Mathematical Biophysics, 5:115-133, 1943.
[144] Z. Michalewicz. Heuristic methods for evolutionary computation techniques.
Journal of Heuristics, 1:177-206, 1995.
[145] A. Mingozzi, V, Maniezzo, S, Ricciardelli, and L. Bianco. An exact algo-
rithm for the resource-constrained project scheduling problem based on a
new mathematical formulation. Management Science, 44:714-729, 1998,
[146] J. J, Moder, C, R. Phillips, and E. W, Davis, Project Management with
CPM, PERT and precedence diagramming, Van Nostrand Reinhold, New
York,1983,
[147] R. H. Mohring, F, Stork, and M, Uetz. Resource-constrained project schedul-
ing with time windows: A branching scheme based on dynamic release
dates. Technical Report 596, Fachbereich Mathematik, Technische Univer-
sitat Berlin, Germany, 1998.
[148] R. Morabito and S. Morales. A simple and effective recursive procedure for the
manufacturer's pallet loading problem. Journal of the Operational Research
Society, 49:819-828, 1998.
[149] M. Mori and C. C. Tseng. A genetic algorithm for the multi-mode resource-
constrained project scheduling problem. European Journal of Operational
Research, 100:134-141, 1997.
BIBLIOGRAPHY 203
[165] E. Pinson, C. Prins, and F. Rullier. Using tabu search for solving the resource-
constrained project scheduling problem. In Proceedings of the fourth inter-
national workshop on project management and scheduling, pages 102-106.
Leuven, Belgium, 1994.
[166] M. Pirlot. General local search methods. European Journal of Operational
Research, 92:493-511, 1996.
[167] B. Pollack-Johnson. Hybrid structures and improving forecasting and schedul-
ing in project management. Journal of Operations Management, 12:101-117,
1995.
[168] A. A. B. Pritsker and W. W. Happ. GERT: Graphical evaluation and re-
view technique - Part I: Fundamentals. Journal of Industrial Engineering,
17:267-274, 1966.
[169) A. A. B. Pritsker, L. J. Watters, and P. M. Wolfe. Multiproject scheduling
with limited resources: A zero-one programming approach. Management
Science, 16:93-107, 1969.
[170] F. J. Radermacher. Scheduling of project networks. Annals of Operations
Research, 4:227-252, 1985.
[171) C. R. Reeves. Genetic algorithms and combinatorial optimization. In V. J.
Rayward-Smith, editor, Applications of modem heuristic methods, pages 111-
125. Alfred Waller Ltd., Henley-on-Thames, 1995.
[172) F. Salewski, A. Schirmer, and A. Drexl. Project scheduling under resource
and mode identity constraints: Model, complexity, methods, and application.
European Journal of Operational Research, 102:88-110, 1997.
[173) S. E. Sampson and E. N. Weiss. Local search techniques for the generalized
resource-constrained project scheduling problem. Naval Research Logistics,
40:665-675, 1993.
[174) A. Schirmer. Case-based reasoning and improved adaptive search for project
scheduling. Manuskripte aus den Instituten fUr Betriebswirtschaftslehre 472,
Universitat Kiel, Germany, 1998.
[175] A. Schirmer and A. Drexl. Allocation of partially renewable resources -
Concepts, models, and applications. Manuskripte aus den Instituten fUr Be-
triebswirtschaftslehre 455, Universitat Kiel, Germany, 1997.
[176] A. Schirmer and S. Riesenberg. Parameterized heuristics for project schedul-
ing - Biased random sampling methods. Manuskripte aus den Instituten fiir
Betriebswirtschaftslehre 456, Universitat Kiel, Germany, 1997.
[177] A. Schirmer and S. Riesenberg. Class-based control schemes for parame-
terized project scheduling heuristics. Manuskripte aus den Instituten fUr
Betriebswirtschaftslehre 471, Universitat Kiel, Germany, 1998.
[178] L. Schrage. Solving resource-constrained network problems by implicit enu-
meration - Nonpreemptive case. Operations Research, 18:263-278, 1970.
[179) J. M. J. Schutten. List scheduling revisited. Operations Research Letters,
18:167-170, 1996.
BIBLIOGRAPHY 205
B&B branch-and-bound
BFS best fit strategy
BRS biased random sampling
cf. confer
CPU central processing unit
GA genetic algorithm
GRPW greatest rank positional weight (priority rule)
i.e. that is
SA simulated annealing
sec seconds
SGS schedule generation scheme
TS tabu search
vs. versus
df. S minimal time lag between the finish time of activity i and
'J
the start time of activity j
minimal time lag between the start time of activity i and
the start time of activity j
delay alternative at level 9
release date of activity j
deadline of activity j
active schedule, 63, 102, 123, 138 doubly constrained resource, 12,
activity, 5 17,19
activity list, 63, 73, 86, 126, 131 due date, 17, 20, 22
activity-on-arc, 17 duration, 6
activity-on-node, 6, 17
adaptive method, 69,104,116,123 extension alternative, 39, 65
ant system, 72
field work, 164
aspiration criterion, 72
first fit strategy, 71, 133
assembly line balancing, 24
fitness, 85, 86, 132
forbidden set, 80
backward recursion, 8, 41, 133
forward recursion, 8, 76
best fit strategy, 72
forward-backward scheduling, 68,
bin packing problem, 25
145
bounding rule, 41
branch-and-bound, 34, 80, 145 GA, see genetic algorithm
genetic algorithm, 72, 83, 118, 122,
cash flow, 21 126, 129
computational results, 55, 94, 115, genotype, 84, 86, 138
138 global optimum, 71, 144
continuously divisible resource, 19 great deluge algorithm, 71
crashable modes, 15
crossover, 72, 85, 87, 92, 94, 105, hill climbing, 106
134
immediate selection, 46
one-point, 87
individual, 84, 85
two-point, 88
integer programming, 9, 13, 34, 81
uniform, 89
interview, 164
cutset, 45
interviewer, 163
cutting problem, 22
island, 100
deadline, 16, 20, 22, 29, 174 job,5
decision point, 37, 39, 64 job shop problem, 24
dedicated resource, 19 just-in-time, 20
delay alternative, 38
disjunctive arcs, 80 knapsack packing problem, 28
220 INDEX
resource investment, 20
resource strength, 57, 123, 124,
146, 183
resource-resource tradeoff, 11
weighted tardiness, 20
Lecture Notes in Economics
and Mathematical Systems
For information about Vols. 1-290
please contact your bookseller or Springer-Verlag
Vol. 291: N. Takahashi, Design of Adaptive Organizations. Vol. 310: J. Kacprzyk, M. Fedrizzi (Eds.), Combining Fuzzy
VI, 140 pages. 1987. Imprecision with Probabilistic Uncertainty in Decision
Vol. 292: I. Tchijov, L. Tomaszewicz (Eds.), Input-Output Making. IX, 399 pages. 1988.
Modeling. Proceedings, 1985. VI, 195 pages. 1987. Vol. 311: R. Fare, Fundamentals of Production Theory. IX,
Vol. 293: D. Batten, J. Casti, B. Johansson (Eds.), Economic 163 pages. 1988.
Evolution and Structural Adjustment. Proceedings, 1985. VI, Vol. 312: J. Krishnakumar, Estimation of Simultaneous
382 pages. Equation Models with Error Components Structure. X, 357
Vol. 294: J. Jahn, W. Knabs (Eds.), Recent Advances and pages. 1988.
Historical Development of Vector Optinrization. VII, 405 Vol. 313: W. Jammernegg, Sequential Binary Investment
pages. 1987. Decisions. VI, 156 pages. 1988.
Vol. 295. H. Meister, The Purification Problem for Vol. 314: R. Tietz, W. Albers, R. Selten (Eds.), Bounded
Constrained Games with Incomplete Information. X, 127 Rational Behavior in Experimental Games and Markets. VI,
pages. 1987. 368 pages. 1988.
Vol. 296: A. Borsch-Supan, Econometric Analysis of Vol. 315: I. Orishimo, GJ.D. Hewings, P. Nijkamp (Eds),
Discrete Choice. VIIl, 211 pages. 1987. Information Technology: Social and Spatial Perspectives.
Vol. 297: V. Fedorov, H. Lauter (Eds.), Model-Oriented Data Proceedings 1986. VI, 268 pages. 1988.
Analysis. Proceedings, 1987. VI, 239 pages. 1988. Vol. 316: R.L. Basmann, OJ. Slottje, K. Hayes, J.D. Johnson,
Vol. 298: S.H. Chew, Q. Zheng, Integral Global OJ. Molina, The Generalized Fechner-Thurstone Direct
Optimization. VII. 179 pages. 1988. Utility Function and Some of its Uses. VIII. 159 pages. 1988.
Vol. 299: K. Marti, Descent Directions and Efficient Vol. 317: L. Bianco, A. La Bella (Eds.). Freight Transport
Solutions in Discretely Distributed Stochastic Programs. Planning and Logistics. Proceedings, 1987. X. 568 pages.
X IV, 178 pages. 1988. 1988.
Vol. 300: U. Derigs. Programming in Networks and Graphs. Vol. 318: T. Doup, Simplicial Algorithms on the Simplotope.
XI, 315 pages. 1988. VIII, 262 pages. 1988.
Vol. 301: J. Kacprzyk, M. Roubens (Eds.), Non-Conventional Vol. 319: D.T. Luc, Theory of Vector Optimization. VIII,
Preference Relations in Decision Making. VII, 155 pages. 173 pages. 1989.
1988. Vol. 320: D. van der Wijst, Financial Structure in Small
Vol. 302: H.A. Eiselt, G. Pederzoli (Eds.), Advances in Business. VII, 181 pages. 1989.
Optimization and Control. Proceedings, 1986. VIII, 372 Vol. 321: M. Di Matteo, R.M. Goodwin, A. Vercelli (Eds.),
pages. 1988. Technological and Social Factors in Long Term Fluctuations.
Vol. 303: F.X. Diebold, Empirical Modeling of Exchange Proceedings. IX, 442 pages. 1989.
Rate Dynamics. VII, 143 pages. 1988. Vol. 322: T. Kollintzas (Ed.), The Rational Expectations
Vol. 304: A. Kurzhanski, K. Neumann, D. Pallaschke (Eds.), Equilibrium Inventory Model. XI, 269 pages. 1989.
Optimization, Parallel Processing and Applications. Vol. 323: M.B.M. de Koster, Capacity Oriented Analysis
Proceedings, 1987. VI, 292 pages. 1988. and Design of Production Systems. XII, 245 pages. 1989.
Vol. 305: G.-J.C.Th. van Schijndel, Dynamic Firm and In- Vol. 324: I.M. Bomze, B.M. Ptitscher, Game Theoretical
vestor Behaviour under Progressive Personal Taxation. X, Foundations of Evolutionary Stability. VI, 145 pages. 1989.
215 pages.1988. Vol. 325: P. Ferri, E. Greenberg, The Labor Market and
Vol. 306: Ch. Klein, A Static Microeconomic Model of Pure Business Cycle Theories. X, 183 pages. 1989.
Competition. VIII, 139 pages. 1988. Vol. 326: Ch. Sauer, Alternative Theories of Output, Unem-
Vol. 307: T.K. Dijkstra (Ed.), On Model Uncertainty and its ployment, and Intlation in Germany: 1960-1985. XIII, 206
Statistical Implications. VII, 138 pages. 1988. pages. 1989.
Vol. 308: J.R. Daduna, A. Wren (Eds.), Computer-Aided Vol. 327: M. Tawada, Production Structure and Internatio-
Transit Scheduling. VIII, 339 pages. 1988. nal Trade. V, 132 pages. 1989.
Vol. 309: G. Ricci, K. Velupillai (Eds.), Growth Cycles and Vol. 328: W. GOth, B. Knlkofen. Unique Solutions for
Multisectoral Economics: The Goodwin Tradition. III, 126 Strategic Games. VII, 200 pages. 1989.
pages. 1988.
Vol. 329: G. Tillmann, Equity, Incentives, and Taxation. VI, Xli, 229 pages. 1991.
132 pages. 1989. Vol. 353: G. Ricci (Ed.), Decision Processes in Economics.
Vol. 330: P.M. Kort, Optimal Dynamic Investment Policies Proceedings, 1989. lll, 209 pages 1991.
ofa Value Maximizing Finn. VII, 185 pages. 1989. Vol. 354: M. Ivaldi, A Structural Analysis of Expectation
Vol. 331: A. Lewandowski, A.P. Wierzbicki (Eds.), Aspira- Fonnation. X[[, 230 pages. 1991.
tion Based Decision Support Systems. X, 400 pages. 1989. Vol. 355: M. Salomon. Deterministic Lotsizing Models for
Vol. 332: T.R. Gulledge, Jr., L.A. Litteral (Eds.), Cost Ana- Production Planning. Vll, 158 pages. 1991.
lysis Applications of Economics and Operations Research. Vol. 356: P. Korhonen, A. Lewandowski, J . Wallenius
Proceedings. VII, 422 pages. 1989. (Eds.), Multiple Criteria Decision Support. Proceedings,
Vol. 333: N. Dellaert, Production to Order. VII, 158 pages. 1989. XII, 393 pages. 1991.
1989. Vol. 357: P. Zornig, Degeneracy Graphs and Simplex
Vol. 334: H.-W. Lorenz, Nonlinear Dynamical Economics Cycling. XV, 194 pages. 1991.
and Chaotic Motion. XI, 248 pages. 1989. Vol. 358: P. Knottnerus, Linear Models with Correlated Dis-
Vol. 335: A.G. Lockett, G. Islei (Eds.), Improving Decision turbances. VIII, 196 pages. ] 991.
Making in Organisations. Proceedings. IX, 606 pages. 1989. Vol. 359: E. deJong, Exchange Rate Determination andOp-
Vol. 336: T. Puu, Nonlinear Economic Dynamics. VII, 119 timal Economic Policy Under Various Exchange Rate Re-
pages. 1989. gimes. VII, 270 pages. 1991.
Vol. 337: A. Lewandowski, I. Stanchev (Eds.), Methodology Vol. 360: P. Stalder, Regime Translations, Spillovers and
and Software for Interactive Decision Support. VIII, 309 Buffer Stocks. VI, 193 pages. 1991.
pages. 1989. Vol. 361: C. F. Daganzo, Logistics Systems Analysis. X,
Vol. 338: J.K. Ho, R.P. Sundarraj, DECOMP: An Imple- 32] pages. 1991.
mentation of Dantzig-Wolfe Decomposition for Linear Vol. 362: F. Gehrels, Essays in Macroeconomics of an
Programming. VI, 206 pages. Open Economy. VII, 183 pages. ] 991.
Vol. 339: J. Terceiro Lomba, Estimation of Dynamic Vol. 363: C. Puppe, Distorted Probabilities and Choice under
Econometric Models with Errors in Variables. VIII, 116 Risk. VIII, 100 pages. 1991
pages. 1990.
Vol. 364: B. Horvath, Are Policy Variables Exogenous? XII,
Vol. 340: T. Vasko, R. Ayres, L. Fontvieille (Eds.), Life 162 pages. 1991.
Cycles and Long Waves. XIV, 293 pages. 1990.
Vol. 365: G. A. Heuer, U. Leopold-Wildburger. Balanced
Vol. 341: G.R. Uhlich, Descriptive Theories of Bargaining. Silverman Games on General Discrete Sets. V, 140 pages.
IX, 165 pages. 1990. 1991.
Vol. 342: K. Okuguchi, F. Szidarovszky, The Theory of Vol. 366: J. Gruber (Ed.), Econometric Decision Models.
Oligopoly with Multi-Product Firms. V, 167 pages. 1990. Proceedings, 1989. VllI, 636 pages. 199].
Vol. 343: C. Chiarella, The Elements of a Nonlinear Theory Vol. 367: M. Grauer, D. B. Pressmar (Eds.), Paralle]
of Economic Dynamics. IX, 149 pages. 1990. Computing and Mathematical Optimization. Proceedings. V,
Vol. 344: K. Neumann, Stochastic Project Networks. XI, 208 pages. 1991.
237 pages. 1990. Vol. 368: M. Fedrizzi, J. Kacprzyk, M. Raubens (Eds.),
Vol. 345: A. Cambini, E. Castagnoli, L. Martein, P Interactive Fuzzy Optimization. VII, 216 pages. 1991.
Mazzoleni, S. Schaible (Eds.), Generalized Convexity and Vol. 369: R. Koblo, The Visible Hand. VIII, 131 pages. 1991.
Fractional Programming with Economic Applications.
Proceedings, 1988. V[[, 361 pages. 1990. Vol. 370: M. J. Beckmann, M. N. Gopalan, R. Subramanian
(Eds.), Stochastic Processes and their Applications.
Vol. 346: R. von Randow (Ed.), Integer Programming and Proceedings, 1990. XLI, 292 pages. 1991.
Related Areas. A Classified Bibliography 1984-1987. XIII,
514 pages. 1990. Vol. 371: A. Schmutzler, Flexibility and Adjustment to In-
formation in Sequential Decision Problems. VllI, 198 pages.
Vol. 347: D. Rios Insua, Sensitivity Analysis in Multi- 1991.
objective Decision Making. XI, 193 pages. 1990.
Vol. 372: J. Esteban, The Social Viability of Money. X, 202
Vol. 348: H. Stormer, Binary Functions and their pages. ] 991.
Applications. VIII, 151 pages. 1990.
Vol. 373: A. Billot, Economic Theory of Fuzzy Equilibria.
Vol. 349: G.A. Prann, Dynamic Modelling of Stochastic XIII, 164 pages. 1992.
Demand for Manufacturing Employment. VI, 158 pages.
1990. Vol. 374: G. Pflug, U. Dieter (Eds.), Simulation and Optimi-
zation. Proceedings, 1990. X, 162 pages. 1992.
Vol. 350: W.-B. Zhang, Economic Dynamics. X, 232 pages.
1990. Vol. 375: S.-J. Chen, Ch.-L. Hwang, Fuzzy Multiple Attri-
bute Decision Making. XII, 536 pages. 1992.
Vol. 351: A. Lewandowski, V. Volkovich (Eds.),
Multiobjective Problems of Mathematical Programming. Vol. 376: K.-H. Hickel, G. Rothe, W. Sendler (Eds.),
Proceedings, 1988. V[[, 315 pages. 1991. Bootstrapping and Related Techniques. Proceedings, 1990.
VIII, 247 pages. 1992.
Vol. 352: O. van Hilten, Optimal Firm Behaviour in the
Context of Technological Progress and a Business Cycle.
Vol. 377: A. Villar, Operator Theorems with Applications Vol. 401: K. Mosler, M. Scarsini. Stochastic Orders and
to Distributive Problems and Equilibrium Models. XVI, 160 Applications. V. 379 pages. 1993.
pages. 1992. Vol. 402: A. van den Elzen, Adjustment Processes for Ex-
Vol. 378: W. Krabs, J. Zowe (Eds.), Modern Methods of change Economies and Noncooperative Games. VII, 146
Optimization. Proceedings, 1990. VIII, 348 pages. 1992. pages. 1993.
Vol. 379: K. Marti (Ed.), Stochastic Optimization. Vol. 403: G. Brennscheidt, Predictive Behavior. VI, 227
Proceedings, 1990. VII, 182 pages. 1992. pages. 1993.
Vol. 380: J. Odelstad, Invariance and Structural Dependence. Vol. 404: Y.-J. Lai. Ch.-L. Hwang. Fuzzy Multiple Objective
XII, 245 pages. 1992. Decision Making. XIV, 475 pages. 1994.
Vol. 381: C. Giannini, Topics in Structural VAR Vol. 405: S. Komlasi. T. Rapcsak, S. Schaible (Eds.).
Econometrics. XI, 131 pages. 1992. Generalized Convexity. Proceedings. 1992. VIIl. 404 pages.
Vol. 382: W. Oettli, D. Pallaschke (Eds.), Advances in 1994.
Optimization. Proceedings, 1991. X, 527 pages. 1992. Vol. 406: N. M. Hung, N. Y. Quyen, Dynamic Timing
Vol. 383: J. Vartiainen, Capital Accumulation in a Decisions Under Uncertainty. X, 194 pages. 1994.
Corporatist Economy. VII, 177 pages. 1992. Vol. 407: M. Ooms, Empirical Vector Autoregressive
Vol. 384: A. Martina, Lectures on the Economic Theory of Modeling. XIII, 380 pages. 1994.
Taxation. XII, 313 pages. 1992. Vol. 408: K. Haase, LOlsizing and Scheduling for Production
Vol. 385: J. Gardeazabal, M. Regulez, The Monetary Model Planning. VIII, 118 pages. 1994.
of Exchange Rates and Cointegration. X, 194 pages. 1992. Vol. 409: A. Sprecher. Resource-Constrained Project
Vol. 386: M. Desrochers, J.-M. Rousseau (Eds.), Compu- Scheduling. XlI. 142 pages. 1994.
ter-Aided Transit Scheduling. Proceedings, 1990. XIII, 432 Vol. 410: R. Winkelmann. Count Data Models. XI, 213
pages. 1992. pages. 1994.
Vol. 387: W. Gaertner, M. Klemisch-Ahlert, Social Choice Vol. 411: S. Dauzere-Peres, J.-B. Lasserre, An Integrated
and Bargaining Perspectives on Distributive Justice. VlII, Approach in Production Planning and Scheduling. XVI, 137
131 pages. 1992. pages. I 994.
Vol. 388: D. Bartmann, M. J. Beckmann, Inventory Control. Vol. 412: B. Kuon. Two-Person Bargaining Experiments
XV, 252 pages. 1992. with Incomplete Information. IX, 293 pages. 1994.
Vol. 389: B. Dutta. D. Mookherjee, T. Parthasarathy, T. Vol. 413: R. Fiorito (Ed.), Inventory, Business Cycles and
Raghavan, D. Ray, S. Tijs (Eds.), Game Theory and Monetary Transmission. VI. 287 pages. 1994.
Economic Applications. Proceedings, 1990. IX, 454 pages. Vol. 414: Y. Crama, A. Oerlemans, F. Spieksma, Production
1992. Planning in Automated Manufacturing. X, 210 pages. 1994.
Vol. 390: G. Sorger, Minimum Impatience Theorem for Vol. 415: P. C. Nicola, Imperfect General Equilibrium. XI,
Recursive Economic Models. X, 162 pages. 1992. 167 pages. 1994.
Vol. 391: C. Keser, Experimental Duopoly Markets with Vol. 416: H. S. J. Cesar, Control and Game Models of the
Demand Inertia. X, ISO pages. 1992. Greenhouse Effect. Xl, 225 pages. 1994.
Vol. 392: K. Frauendorfer, Stochastic Two-Stage Vol. 417: B. Ran, D. E. Boyce, Dynamic Urban Transpor-
Programming. VIII, 228 pages. 1992. tation Network Models. XV, 391 pages. 1994.
Vol. 393: B. Lucke, Price Stabilization on World Agricultural Vol. 418: P. Bogetoft, Non-Cooperative Planning Theory.
Markets. XI, 274 pages. 1992. XI, 309 pages. 1994.
Vol. 394: Y.-J. Lai, c.-L. Hwang, Fuzzy Mathematical Vol. 419: T. Maruyama, W. Takahashi (Eds.), Nonlinear and
Programming. XlII, 301 pages. 1992. Convex Analysis in Economic Theory. VIII. 306 pages. 1995.
Vol. 395: G. Haag, U. Mueller, K. G. Troitzsch (Eds.), Vol. 420: M. Peeters, Time-To-Build. Interrelated Invest-
Economic Evolution and Demographic Change. XVI, 409 ment and Labour Demand Modelling. With Applications to
pages. 1992. Six OECD Countries. IX, 204 pages. 1995.
Vol. 396: R. V. V. Vidal (Ed.). Applied Simulated Annealing. Vol. 421: C. Dang, Triangulations and Simplicial Methods.
VIII. 358 pages. 1992. IX, 196 pages. 1995.
Vol. 397: J. Wessels. A. P. Wierzbicki (Eds.), User-Oriented Vol. 422: D. S. Bridges. G. B. Mehta, Representations of
Methodology and Techniques of Decision Analysis and Sup- Preference Orderings. X, 165 pages. 1995.
port. Proceedi ngs, 1991. XII, 295 pages. 1993.
Vol. 423: K. Marti. P. Kall (Eds.), Stochastic Programming.
Vol. 398: J.-P. Urbain, Exogeneity in Error Correction Mo- Numerical Techniques and Engineering Applications. VIII,
dels. XI, 189 pages. 1993. 351 pages. 1995.
Vol. 399: F. Gori, L. Geronazzo, M. Galeotti (Eds.). Non- Vol. 424: G. A. Heuer, U. Leopold-Wildburger. Silverman's
linear Dynamics in Economics and Social Sciences. Game. X, 283 pages. 1995.
Proceedings, 1991. VIII, 367 pages. 1993.
Vol. 425: 1. Kohlas, P.-A. Monney, A Mathematical Theory
Vol. 400: H. Tanizaki, Nonlinear Filters. XII, 203 pages. of Hints. XlII, 419 pages, 1995.
1993.
Vol. 426: B. Finkenstadt, Nonlinear Dynamics in Eco-
nomics. IX. 156 pages. 1995.
VoL 427: F. W. van Tongeren, Microsimulation Modelling Vol. 454: H.-M. Krolzig. Markov-Switching Vector Auto-
of the Corporate Finn. XVII, 275 pages. 1995. regressions. XIV, 358 pages. 1997.
VoL 428: A. A. Powell, Ch. W. Murphy, Inside a Modern Vol. 455: R. Caballero, F. Ruiz, R. E. Steuer (Eds.), Advances
Macroeconometric Model. XVIII, 424 pages. 1995. in Multiple Objective and Goal Programming. VIII, 391
VoL 429: R. Durier, C. Michelot, Recent Developments in pages. 1997.
Optimization. VIII, 356 pages. 1995. Vol. 456: R. Conte, R. Hegselmann, P. Terna (Eds.). Simu-
VoL 430: J. R. Daduna, I. Branco, J. M. Pinto Paixao (Eds.), lating Social Phenomena. VIII, 536 pages. 1997.
Computer-Aided Transit Scheduling. XIV, 374 pages. 1995. Vol. 457: C. Hsu, Volume and the Nonlinear Dynamics of
VoL 431: A. Aulin, Causal and Stochastic Elements in Busi- Stock Returns. Vlll, 133 pages. 1998.
ness Cycles. XI, 116 pages. 1996. Vol. 458: K. Marti, P. Kall (Eds.). Stochastic Programming
VoL 432: M. Tamiz (Ed.), Multi-Objective Programming Methods and Technical Applications. X. 437 pages. 1998.
and Goal Programming. VI, 359 pages. 1996. VoL 459: H. K. Ryu, D. J. Slot0e, Measuring Trends in U.S.
VoL 433: J. Menon, Exchange Rates and Prices. XIV, 313 Income Inequality. XI, 195 pages. 1998.
pages. 1996. Vol. 460: B. Fleischmann, J. A. E. E. van Nunen. M. G.
Vol. 434: M. W. J. Blok, Dynamic Models afthe Firm. VII, Speranza, P. Stahly, Advances in Distribution Logistic. XI,
193 pages. 1996. 535 pages. 1998.
Vol. 435: L. Chen, Interest Rate Dynamics, Derivatives Vol. 461: U. Schmidt, Axiomatic Utility Theory under Risk.
Pricing, and Risk Management. XII, 149 pages. 1996. XV, 201 pages. 1998.
Vol. 436: M. Klemisch-Ahlert, Bargaining in Economic and Vol. 462: L. von Auer, Dynamic Preferences, Choice
Ethical Environments. IX, 155 pages. 1996. Mechanisms, and Welfare. XII, 226 pages. 1998.
Vol. 437: C. Jordan, Batching and Scheduling. IX, 178 pages. Vol. 463: G. Abraham-Frois (Ed.), Non-Linear Dynamics
1996. and Endogenous Cycles. VI, 204 pages. 1998.
VoL 438: A. Villar, General Equilibrium with Increasing Vol. 464: A. Aulin, The Impact of Science on Economic
Returns. XIII, 164 pages. 1996. Growth and its Cycles. IX, 204 pages. 1998.
VoL 439: M. Zenner, Learning to Become Rational. VII, Vol. 465: T. J. Stewart, R. C. vall den Honert (Eds. 1. Trends
20 I pages. 1996. in Multicriteria Decision Making. X. 448 pages. 1998.
VoL 440: W. Ryll,Litigation and Settlement in a Game with Vol. 466: A. Sadrieh, The Alternating Double Auction
Incomplete Information. VIII, 174 pages. 1996. Market. VII, 350 pages. 1998.
Vol. 441: H. Dawid, Adaptive Learning by Genetic Vol. 467: H. Hennig-Schmidt. Bargaining in a Video Ex-
Algorithms. IX, 166 pages. I 996. periment. Determinants of Boundedly Rational Behavior.
XII, 221 pages. 1999.
Vol. 442: L. Corchon, Theories of Imperfectly Competitive
Markets. XIII, 163 pages. 1996. Vol. 468: A. Ziegler, A Game Theory Analysis of Options.
XIV, 145 pages. 1999.
Vol. 443: G. Lang, On Overlapping Generations Models with
Productive Capital. X, 98 pages. 1996. Vol. 469: M. P. Vogel, Environmental Kuznets Curves. XIII,
197 pages. 1999.
Vol. 444: S. J0rgensen, G. Zaccour (Eds.), Dynamic
Competitive Analysis in Marketing. X, 285 pages. 1996. Vol. 470: M. Ammann, Pricing Derivative Credit Risk. XII,
228 pages. 1999.
Vol. 445: A. H. Christer, S. Osaki, L. C. Thomas (Eds.),
Stochastic Modelling in Innovative Manufactoring. X, 361 Vol. 471: N. H. M. Wilson (Ed.), Computer-Aided Transit
pages. 1997. Scheduling. XI, 444 pages. 1999.
Vol. 446: G. Dhaene, Encompassing. X. 160 pages. 1997. Vol. 472: J.-R. Tyran, Money Illusion and Strategic
Complementarity as Causes of Monetary Non-Neutrality.
Vol. 447: A. Artale, Rings in Auctions. X, 172 pages. 1997. X, 228 pages. 1999.
Vol. 448: G. Fandel, T. Gal (Eds.), Multiple Criteria Decision Vol. 473: S. Helber, Performance Analysis of Flow Lines
Making. XII, 678 pages. 1997. with Non-Linear Flow of Material. IX. 280 pages. 1999.
Vol. 449: F. Fang, M. Sanglier (Eds.), Complexity and Self- Vol. 474: U. Schwalbe, The Core of Economies with
Organization in Social and Economic Systems. IX, 317 Asymmetric Information. IX, 141 pages. 1999.
pages, 1997.
Vol. 475: L. Kaas, Dynamic Macroelectronics with Imperfect
Vol. 450: P. M. Pardalos, D. W. Hearn, W. W. Hager, (Eds.), Competition. XI, 155 pages. 1999.
Network Optimization. VIII, 485 pages, 1997.
Vol. 476: R. Demel, Fiscal Policy, Public Debt and the
Vol. 451: M. Salge, Rational Bubbles. Theoretical Basis, Term Structure of Interest Rates. X, 279 pages. 1999.
Economic Relevance, and Empirical Evidence with a Special
Emphasis on the German Stock Market.lX, 265 pages. 1997. Vol. 477: M. Thera, R. Tichatschke (Eds.), Ill-posed
Variational Problems and Regularization Techniques. VIII,
Vol. 452: P. Gritzmann, R. Horst, E. Sachs, R. Tichatschke 274 pages. 1999.
(Eds.), Recent Advances in Optimization. VIII, 379 pages.
1997. Vol. 478: S. Hartmann, Project Scheduling under Limited
Resources. XII, 221 pages. 1999.
Vol. 453: A. S. Tangian, J. Gruber (Eds.), Constructing
Scalar-Valued Objective Functions. VIJI, 298 pages. 1997. Vol. 479: L. v. Thadden, Money, Inflation, and Capital
Formation. IX, 192 pages. 1999.