The MIP-Solving-Framework SCIP

Size: px
Start display at page:

Download "The MIP-Solving-Framework SCIP"

Transcription

1 The MIP-Solving-Framework SCIP Timo Berthold Zuse Institut Berlin DFG Research Center MATHEON Mathematics for key technologies Berlin,

2 What Is A MIP? Definition MIP The optimization problem is called a MIP (mixed integer program). 2 / 23

3 What Is A MIP? Definition MIP The optimization problem min c T x is called a MIP (mixed integer program). 2 / 23

4 What Is A MIP? Definition MIP The optimization problem min s.t. c T x Ax b is called a MIP (mixed integer program). 2 / 23

5 What Is A MIP? Definition MIP The optimization problem min s.t. c T x Ax b l x u is called a MIP (mixed integer program). 2 / 23

6 What Is A MIP? Definition MIP The optimization problem min s.t. c T x Ax b l x u is called a MIP (mixed integer program). 2 / 23

7 What Is A MIP? Definition MIP The optimization problem min s.t. c T x Ax b l x u x j Z j I is called a MIP (mixed integer program). 2 / 23

8 How Do We Solve MIPs? Exact methods Branch-And-Bound Cutting planes Combination: Branch-And-Cut 3 / 23

9 How Do We Solve MIPs? Exact methods Branch-And-Bound Cutting planes Combination: Branch-And-Cut 3 / 23

10 How Do We Solve MIPs? Exact methods Branch-And-Bound Cutting planes Combination: Branch-And-Cut 3 / 23

11 How Do We Solve MIPs? Exact methods Branch-And-Bound Cutting planes Combination: Branch-And-Cut 3 / 23

12 How Do We Solve MIPs? Exact methods Branch-And-Bound Cutting planes Combination: Branch-And-Cut 3 / 23

13 How Do We Solve MIPs? Exact methods Branch-And-Bound Cutting planes Combination: Branch-And-Cut 3 / 23

14 How Do We Solve MIPs? Exact methods Branch-And-Bound Cutting planes Combination: Branch-And-Cut 3 / 23

15 How Do We Solve MIPs? Exact methods Branch-And-Bound Cutting planes Combination: Branch-And-Cut 3 / 23

16 How Do We Solve MIPs? Exact methods Branch-And-Bound Cutting planes Combination: Branch-And-Cut 3 / 23

17 How Do We Solve MIPs? Exact methods Branch-And-Bound Cutting planes Combination: Branch-And-Cut 3 / 23

18 How Do We Solve MIPs? Exact methods Branch-And-Bound Cutting planes Combination: Branch-And-Cut 3 / 23

19 How Do We Solve MIPs? Exact methods Branch-And-Bound Cutting planes Combination: Branch-And-Cut 3 / 23

20 How Do We Solve MIPs? Exact methods Branch-And-Bound Cutting planes Combination: Branch-And-Cut 3 / 23

21 How Do We Solve MIPs? Exact methods Branch-And-Bound Cutting planes Combination: Branch-And-Cut 3 / 23

22 How Do We Solve MIPs? Exact methods Branch-And-Bound Cutting planes Combination: Branch-And-Cut 3 / 23

23 How Do We Solve MIPs? Exact methods Branch-And-Bound Cutting planes Combination: Branch-And-Cut 3 / 23

24 How Do We Solve MIPs? Exact methods Branch-And-Bound Cutting planes Combination: Branch-And-Cut 3 / 23

25 CP - A Further Concept Constraint Program (CP) Examples General constraints Integer variables (CIP) How do we solve CPs? 4 / 23

26 CP - A Further Concept Constraint Program (CP) General constraints Integer variables (CIP) Examples TSP as CP n-queens How do we solve CPs? 4 / 23

27 CP - A Further Concept Constraint Program (CP) General constraints Integer variables (CIP) Examples TSP as CP n-queens How do we solve CPs? Branching: Divide into subproblems, solve recursively Domain Propagation: Reductions in variables domains propagate E.g. x1 + 2x 2 5, x 1 2 x / 23

28 SCIP: Solver & Framework SCIP CP+MIP SCIP combines technologies Standalone-solver for MIP A bundle of MIP-solving-components as default plugins MIP-solver as fast as CPlex 9.0 Underlying LP-solver: treated as blackbox Branch-Cut-And-Price-Framework for MIP and CIP C++ wrapper classes for user plugins 5 / 23

29 SCIP: Solver & Framework SCIP CP+MIP SCIP combines technologies Standalone-solver for MIP A bundle of MIP-solving-components as default plugins MIP-solver as fast as CPlex 9.0 Underlying LP-solver: treated as blackbox Branch-Cut-And-Price-Framework for MIP and CIP C++ wrapper classes for user plugins 5 / 23

30 SCIP: Solver & Framework Key data Since October 2002 Achterberg, Wolter, B. et al. Approx lines of C code Free für academic use Available at July 2007: version / 23

31 SCIP: Solver & Framework Key data Since October 2002 Achterberg, Wolter, B. et al. Approx lines of C code Free für academic use Available at July 2007: version I hope so... 6 / 23

32 SCIP: Solver & Framework Types of plugins 7 / 23

33 SCIP: Solver & Framework Types of plugins Presolver: simplifies the problem in advance, strengthens structure 7 / 23

34 SCIP: Solver & Framework Types of plugins Presolver: simplifies the problem in advance, strengthens structure Node selection: which subproblem should be regarded next? 7 / 23

35 SCIP: Solver & Framework Types of plugins Presolver: simplifies the problem in advance, strengthens structure Node selection: which subproblem should be regarded next? Branching rule: how to divide the problem? 7 / 23

36 SCIP: Solver & Framework Types of plugins Presolver: simplifies the problem in advance, strengthens structure Node selection: which subproblem should be regarded next? Branching rule: how to divide the problem? Separator: adds cuts, improves dual bound 7 / 23

37 SCIP: Solver & Framework Types of plugins Presolver: simplifies the problem in advance, strengthens structure Node selection: which subproblem should be regarded next? Branching rule: how to divide the problem? Separator: adds cuts, improves dual bound Constraint handler: assures feasibility, strengthens formulation 7 / 23

38 SCIP: Solver & Framework Types of plugins Presolver: simplifies the problem in advance, strengthens structure Node selection: which subproblem should be regarded next? Branching rule: how to divide the problem? Separator: adds cuts, improves dual bound Constraint handler: assures feasibility, strengthens formulation Conflict handler: learns from infeasibility, improves dual bound 7 / 23

39 SCIP: Solver & Framework Types of plugins Presolver: simplifies the problem in advance, strengthens structure Node selection: which subproblem should be regarded next? Branching rule: how to divide the problem? Separator: adds cuts, improves dual bound Constraint handler: assures feasibility, strengthens formulation Conflict handler: learns from infeasibility, improves dual bound Heuristic: searches solutions, improves primal bound 7 / 23

40 SCIP: Solver & Framework Types of plugins Presolver: simplifies the problem in advance, strengthens structure Node selection: which subproblem should be regarded next? Branching rule: how to divide the problem? Separator: adds cuts, improves dual bound Constraint handler: assures feasibility, strengthens formulation Conflict handler: learns from infeasibility, improves dual bound Heuristic: searches solutions, improves primal bound Propagator: simplifies problem, improves dual bound locally 7 / 23

41 SCIP: Solver & Framework Types of plugins Presolver: simplifies the problem in advance, strengthens structure Node selection: which subproblem should be regarded next? Branching rule: how to divide the problem? Separator: adds cuts, improves dual bound Constraint handler: assures feasibility, strengthens formulation Conflict handler: learns from infeasibility, improves dual bound Heuristic: searches solutions, improves primal bound Propagator: simplifies problem, improves dual bound locally Pricer: allows dynamic generation of variables 7 / 23

42 Flow Chart SCIP Start Init Presolving Stop Node selection Conflict analysis LP inf. Processing IP feas. Primal heuristics IP inf. LP feas. Branching 8 / 23

43 Flow Chart SCIP Start Init Presolving Stop Domain Propagation Conflict analysis Node selection IP feas. Solve LP Pricing LP inf. Processing Cuts Primal heuristics IP inf. LP feas. Enforce Constraints Branching 8 / 23

44 Living By Numbers Default plugins 5 presolvers 5 node selection rules 14 constraint handlers 8 separators 8 branching rules 4 conflict handlers 2 propagators 23 primal heuristics SCIP as a framework for a TSP-solver 9 / 23

45 Living By Numbers Default plugins SCIP as a framework for a TSP-solver main program: TSP file reader: graph structure: subtour constraint: Gomory-Hu algo.: FarInsert heuristic: 2-Opt heuristic: altogether: 196 lines 407 lines 80 lines 793 lines 658 lines 354 lines 304 lines 2792 lines 9 / 23

46 Comparison With Other Free MIP-Solvers 10 / 23

47 Primal Heuristics Characteristics Highest priority to feasibility Distinguish: Start heuristics Improvement heuristics Keep control of effort! Use available information 11 / 23

48 Primal Heuristics Used Information Variables locking numbers: Potentially violated rows Variables pseudocosts: Average objective change Special points: LP optimum at root node Current LP optimum Current best solution Other known solutions 12 / 23

49 Primal Heuristics Used Information Variables locking numbers: Potentially violated rows Variables pseudocosts: Average objective change Special points: LP optimum at root node Current LP optimum Current best solution Other known solutions 12 / 23

50 Primal Heuristics Used Information Variables locking numbers: Potentially violated rows Variables pseudocosts: Average objective change Special points: LP optimum at root node Current LP optimum Current best solution Other known solutions 12 / 23

51 Primal Heuristics Used Information Variables locking numbers: Potentially violated rows Variables pseudocosts: Average objective change Special points: LP optimum at root node Current LP optimum Current best solution Other known solutions 12 / 23

52 Primal Heuristics Used Information Variables locking numbers: Potentially violated rows Variables pseudocosts: Average objective change Special points: LP optimum at root node Current LP optimum Current best solution Other known solutions 12 / 23

53 Primal Heuristics Used Information Variables locking numbers: Potentially violated rows Variables pseudocosts: Average objective change Special points: LP optimum at root node Current LP optimum Current best solution Other known solutions 12 / 23

54 Primal Heuristics Used Information Variables locking numbers: Potentially violated rows Variables pseudocosts: Average objective change Special points: LP optimum at root node Current LP optimum Current best solution Other known solutions 12 / 23

55 Primal Heuristics Used Information Variables locking numbers: Potentially violated rows Variables pseudocosts: Average objective change Special points: LP optimum at root node Current LP optimum Current best solution Other known solutions 12 / 23

56 Primal Heuristics Used Information Variables locking numbers: Potentially violated rows Variables pseudocosts: Average objective change Special points: LP optimum at root node Current LP optimum Current best solution Other known solutions 12 / 23

57 Primal Heuristics Used Information Variables locking numbers: Potentially violated rows Variables pseudocosts: Average objective change Special points: LP optimum at root node Current LP optimum Current best solution Other known solutions 12 / 23

58 Primal Heuristics Used Information Variables locking numbers: Potentially violated rows Variables pseudocosts: Average objective change Special points: LP optimum at root node Current LP optimum Current best solution Other known solutions 12 / 23

59 Primal Heuristics Used Information Variables locking numbers: Potentially violated rows Variables pseudocosts: Average objective change Special points: LP optimum at root node Current LP optimum Current best solution Other known solutions 12 / 23

60 Primal Heuristics Used Information Variables locking numbers: Potentially violated rows Variables pseudocosts: Average objective change Special points: LP optimum at root node Current LP optimum Current best solution Other known solutions 12 / 23

61 Primal Heuristics Used Information Variables locking numbers: Potentially violated rows Variables pseudocosts: Average objective change Special points: LP optimum at root node Current LP optimum Current best solution Other known solutions 12 / 23

62 Primal Heuristics Used Information Variables locking numbers: Potentially violated rows Variables pseudocosts: Average objective change Special points: LP optimum at root node Current LP optimum Current best solution Other known solutions 12 / 23

63 Primal Heuristics Used Information Variables locking numbers: Potentially violated rows Variables pseudocosts: Average objective change Special points: LP optimum at root node Current LP optimum Current best solution Other known solutions 12 / 23

64 Primal Heuristics Used Information Variables locking numbers: Potentially violated rows Variables pseudocosts: Average objective change Special points: LP optimum at root node Current LP optimum Current best solution Other known solutions 12 / 23

65 Primal Heuristics Used Information Variables locking numbers: Potentially violated rows Variables pseudocosts: Average objective change Special points: LP optimum at root node Current LP optimum Current best solution Other known solutions 12 / 23

66 Primal Heuristics Used Information Variables locking numbers: Potentially violated rows Variables pseudocosts: Average objective change Special points: LP optimum at root node Current LP optimum Current best solution Other known solutions 12 / 23

67 Primal Heuristics Approaches Rounding Diving: simulate DFS in the Branch-And-Bound-tree using some special branching rule Objective diving: manipulate objective function LNS: solve some sub-mip Pivoting: manipulate simplex algorithm 13 / 23

68 Primal Heuristics Approaches Rounding Diving: simulate DFS in the Branch-And-Bound-tree using some special branching rule Objective diving: manipulate objective function LNS: solve some sub-mip Pivoting: manipulate simplex algorithm 13 / 23

69 Overview Implemented into SCIP 5 Rounding heuristics 8 Diving heuristics 3 Objective divers 4 LNS improvement heuristics 14 / 23

70 Rounding Heuristics Ideas Simple Rounding always stays feasible, Rounding may violate constraints, Shifting may unfix integers. 15 / 23

71 Rounding Heuristics Ideas Simple Rounding always stays feasible, Rounding may violate constraints, Shifting may unfix integers. 15 / 23

72 Rounding Heuristics Ideas Simple Rounding always stays feasible, Rounding may violate constraints, Shifting may unfix integers. 15 / 23

73 Rounding Heuristics Ideas Simple Rounding always stays feasible, Rounding may violate constraints, Shifting may unfix integers. 15 / 23

74 Rounding Heuristics Ideas Simple Rounding always stays feasible, Rounding may violate constraints, Shifting may unfix integers. 15 / 23

75 Rounding Heuristics Ideas Simple Rounding always stays feasible, Rounding may violate constraints, Shifting may unfix integers. 15 / 23

76 Rounding Heuristics Ideas Simple Rounding always stays feasible, Rounding may violate constraints, Shifting may unfix integers. 15 / 23

77 Rounding Heuristics Ideas Simple Rounding always stays feasible, Rounding may violate constraints, Shifting may unfix integers. 15 / 23

78 Rounding Heuristics Ideas Simple Rounding always stays feasible, Rounding may violate constraints, Shifting may unfix integers. 15 / 23

79 Diving Heuristics Idea: iteratively solve the LP and round a variable Applied branching rules Fractional Diving: lowest fractionality Coefficient Diving: lowest locking number Linesearch Diving: highest increase since root Guided Diving: lowest difference to best known solution Pseudocost Diving: highest ratio of pseudocosts Vectorlength Diving: lowest ratio of objective change and number of rows containing the variable 16 / 23

80 The Feasibility Pump Algorithm 1. Solve LP; 2. Round LP optimum; 3. If feasible: 4. Stop! 5. Else: 6. Change Objective; 7. Go to 1; 17 / 23

81 The Feasibility Pump Algorithm 1. Solve LP; 2. Round LP optimum; 3. If feasible: 4. Stop! 5. Else: 6. Change Objective; 7. Go to 1; 17 / 23

82 The Feasibility Pump Algorithm 1. Solve LP; 2. Round LP optimum; 3. If feasible: 4. Stop! 5. Else: 6. Change Objective; 7. Go to 1; 17 / 23

83 The Feasibility Pump Algorithm 1. Solve LP; 2. Round LP optimum; 3. If feasible: 4. Stop! 5. Else: 6. Change Objective; 7. Go to 1; 17 / 23

84 The Feasibility Pump Algorithm 1. Solve LP; 2. Round LP optimum; 3. If feasible: 4. Stop! 5. Else: 6. Change Objective; 7. Go to 1; 17 / 23

85 The Feasibility Pump Algorithm 1. Solve LP; 2. Round LP optimum; 3. If feasible: 4. Stop! 5. Else: 6. Change Objective; 7. Go to 1; 17 / 23

86 The Feasibility Pump Algorithm 1. Solve LP; 2. Round LP optimum; 3. If feasible: 4. Stop! 5. Else: 6. Change Objective; 7. Go to 1; 17 / 23

87 The Feasibility Pump Algorithm 1. Solve LP; 2. Round LP optimum; 3. If feasible: 4. Stop! 5. Else: 6. Change Objective; 7. Go to 1; 17 / 23

88 The Feasibility Pump Algorithm 1. Solve LP; 2. Round LP optimum; 3. If feasible: 4. Stop! 5. Else: 6. Change Objective; 7. Go to 1; 17 / 23

89 The Feasibility Pump Algorithm 1. Solve LP; 2. Round LP optimum; 3. If feasible: 4. Stop! 5. Else: 6. Change Objective; 7. Go to 1; 17 / 23

90 The Objective Feasibility Pump Improvements Objective c T x regarded at each step Algorithm able to resolve from cycling Quality of solutions much better 18 / 23

91 The Objective Feasibility Pump Improvements Objective c T x regarded at each step Algorithm able to resolve from cycling Quality of solutions much better Results Finds a solution for 74% of the test instances On average 5.5 seconds running time Optimality gap decreased from 107% to 38% 18 / 23

92 Rens An LNS Rounding Heuristic Algorithm 1. x LP optimum; 2. Fix all integral variables: x i := x i i : x i Z; 3. Reduce domain of fractional variables: x i { x i ; x i }; 4. Solve the resulting sub-mip 19 / 23

93 Rens An LNS Rounding Heuristic Algorithm 1. x LP optimum; 2. Fix all integral variables: x i := x i i : x i Z; 3. Reduce domain of fractional variables: x i { x i ; x i }; 4. Solve the resulting sub-mip 19 / 23

94 Rens An LNS Rounding Heuristic Algorithm 1. x LP optimum; 2. Fix all integral variables: x i := x i i : x i Z; 3. Reduce domain of fractional variables: x i { x i ; x i }; 4. Solve the resulting sub-mip 19 / 23

95 Rens An LNS Rounding Heuristic Algorithm 1. x LP optimum; 2. Fix all integral variables: x i := x i i : x i Z; 3. Reduce domain of fractional variables: x i { x i ; x i }; 4. Solve the resulting sub-mip 19 / 23

96 Rens An LNS Rounding Heuristic Algorithm 1. x LP optimum; 2. Fix all integral variables: x i := x i i : x i Z; 3. Reduce domain of fractional variables: x i { x i ; x i }; 4. Solve the resulting sub-mip 19 / 23

97 Rens An LNS Rounding Heuristic Observations Solutions found by Rens are roundings of x Yields best possible rounding Yields certificate, if no rounding exists 20 / 23

98 Rens An LNS Rounding Heuristic Observations Solutions found by Rens are roundings of x Yields best possible rounding Yields certificate, if no rounding exists Results Approx. 2 of the test instances are roundable 3 Rens finds optimum for 20%! Dominates all other rounding heuristics 20 / 23

99 An Example Instanz aflow30a: performance of SCIP with and without heuristics 21 / 23

100 Thesis Conclusions Results Coordination important Positive side effects Improvement of overall performance SCIP with heuristics twice as fast 22 / 23

101 The MIP-Solving-Framework SCIP Timo Berthold Zuse Institut Berlin DFG Research Center MATHEON Mathematics for key technologies Berlin,

Primal Heuristics in SCIP

Primal Heuristics in SCIP Primal Heuristics in SCIP Timo Berthold Zuse Institute Berlin DFG Research Center MATHEON Mathematics for key technologies Berlin, 10/11/2007 Outline 1 Introduction Basics Integration Into SCIP 2 Available

More information

Cloud Branching MIP workshop, Ohio State University, 23/Jul/2014

Cloud Branching MIP workshop, Ohio State University, 23/Jul/2014 Cloud Branching MIP workshop, Ohio State University, 23/Jul/2014 Timo Berthold Xpress Optimization Team Gerald Gamrath Zuse Institute Berlin Domenico Salvagnin Universita degli Studi di Padova This presentation

More information

Exact solutions to mixed-integer linear programming problems

Exact solutions to mixed-integer linear programming problems Exact solutions to mixed-integer linear programming problems Dan Steffy Zuse Institute Berlin and Oakland University Joint work with Bill Cook, Thorsten Koch and Kati Wolter November 18, 2011 Mixed-Integer

More information

Basic Concepts of Constraint Integer Programming

Basic Concepts of Constraint Integer Programming Basic Concepts of Constraint Integer Programming Ambros Gleixner Zuse Institute Berlin September 30, 2015 Outline SCIP Solving Constraint Integer Programs 4 methodologies in optimization An integrated

More information

Implementing Constraint Handlers in SCIP

Implementing Constraint Handlers in SCIP Implementing Constraint Handlers in SCIP Gregor Hendel Ambros Gleixner, Felipe Serrano September 30 Outline Why use constraints? Motivation Callback: Default Constraint Handlers of SCIP Implementation

More information

Exploiting Degeneracy in MIP

Exploiting Degeneracy in MIP Exploiting Degeneracy in MIP Tobias Achterberg 9 January 2018 Aussois Performance Impact in Gurobi 7.5+ 35% 32.0% 30% 25% 20% 15% 14.6% 10% 5.7% 7.9% 6.6% 5% 0% 2.9% 1.2% 0.1% 2.6% 2.6% Time limit: 10000

More information

MVE165/MMG631 Linear and integer optimization with applications Lecture 9 Discrete optimization: theory and algorithms

MVE165/MMG631 Linear and integer optimization with applications Lecture 9 Discrete optimization: theory and algorithms MVE165/MMG631 Linear and integer optimization with applications Lecture 9 Discrete optimization: theory and algorithms Ann-Brith Strömberg 2018 04 24 Lecture 9 Linear and integer optimization with applications

More information

SCIP Workshop 2014, Berlin, September 30, Introduction to SCIP

SCIP Workshop 2014, Berlin, September 30, Introduction to SCIP SCIP Workshop 2014, Berlin, September 30, 2014 Introduction to SCIP ZIB: Fast Algorithms Fast Computers Konrad-Zuse-Zentrum für Informationstechnik Berlin non-university research institute of the state

More information

Applied Mixed Integer Programming: Beyond 'The Optimum'

Applied Mixed Integer Programming: Beyond 'The Optimum' Applied Mixed Integer Programming: Beyond 'The Optimum' 14 Nov 2016, Simons Institute, Berkeley Pawel Lichocki Operations Research Team, Google https://developers.google.com/optimization/ Applied Mixed

More information

MVE165/MMG630, Applied Optimization Lecture 8 Integer linear programming algorithms. Ann-Brith Strömberg

MVE165/MMG630, Applied Optimization Lecture 8 Integer linear programming algorithms. Ann-Brith Strömberg MVE165/MMG630, Integer linear programming algorithms Ann-Brith Strömberg 2009 04 15 Methods for ILP: Overview (Ch. 14.1) Enumeration Implicit enumeration: Branch and bound Relaxations Decomposition methods:

More information

Addressing degeneracy in the dual simplex algorithm using a decompositon approach

Addressing degeneracy in the dual simplex algorithm using a decompositon approach Addressing degeneracy in the dual simplex algorithm using a decompositon approach Ambros Gleixner, Stephen J Maher, Matthias Miltenberger Zuse Institute Berlin Berlin, Germany 16th July 2015 @sj_maher

More information

Motivation for Heuristics

Motivation for Heuristics MIP Heuristics 1 Motivation for Heuristics Why not wait for branching? Produce feasible solutions as quickly as possible Often satisfies user demands Avoid exploring unproductive sub trees Better reduced

More information

The Gurobi Optimizer. Bob Bixby

The Gurobi Optimizer. Bob Bixby The Gurobi Optimizer Bob Bixby Outline Gurobi Introduction Company Products Benchmarks Gurobi Technology Rethinking MIP MIP as a bag of tricks 8-Jul-11 2010 Gurobi Optimization 2 Gurobi Optimization Incorporated

More information

Welcome to the Webinar. What s New in Gurobi 7.5

Welcome to the Webinar. What s New in Gurobi 7.5 Welcome to the Webinar What s New in Gurobi 7.5 Speaker Introduction Dr. Tobias Achterberg Director of R&D at Gurobi Optimization Formerly a developer at ILOG, where he worked on CPLEX 11.0 to 12.6 Obtained

More information

Heuristics in MILP. Group 1 D. Assouline, N. Molyneaux, B. Morén. Supervisors: Michel Bierlaire, Andrea Lodi. Zinal 2017 Winter School

Heuristics in MILP. Group 1 D. Assouline, N. Molyneaux, B. Morén. Supervisors: Michel Bierlaire, Andrea Lodi. Zinal 2017 Winter School Heuristics in MILP Group 1 D. Assouline, N. Molyneaux, B. Morén Supervisors: Michel Bierlaire, Andrea Lodi Zinal 2017 Winter School 0 / 23 Primal heuristics Original paper: Fischetti, M. and Lodi, A. (2011).

More information

Column Generation Based Primal Heuristics

Column Generation Based Primal Heuristics Column Generation Based Primal Heuristics C. Joncour, S. Michel, R. Sadykov, D. Sverdlov, F. Vanderbeck University Bordeaux 1 & INRIA team RealOpt Outline 1 Context Generic Primal Heuristics The Branch-and-Price

More information

Primal Heuristics for Branch-and-Price Algorithms

Primal Heuristics for Branch-and-Price Algorithms Primal Heuristics for Branch-and-Price Algorithms Marco Lübbecke and Christian Puchert Abstract In this paper, we present several primal heuristics which we implemented in the branch-and-price solver GCG

More information

RENS. The optimal rounding. Timo Berthold

RENS. The optimal rounding. Timo Berthold Math. Prog. Comp. (2014) 6:33 54 DOI 10.1007/s12532-013-0060-9 FULL LENGTH PAPER RENS The optimal rounding Timo Berthold Received: 25 April 2012 / Accepted: 2 October 2013 / Published online: 1 November

More information

Rounding and Propagation Heuristics for Mixed Integer Programming

Rounding and Propagation Heuristics for Mixed Integer Programming Konrad-Zuse-Zentrum für Informationstechnik Berlin Takustraße 7 D-9 Berlin-Dahlem Germany TOBIAS ACHTERBERG TIMO BERTHOLD GREGOR HENDEL Rounding and Propagation Heuristics for Mixed Integer Programming

More information

Heuristics in Commercial MIP Solvers Part I (Heuristics in IBM CPLEX)

Heuristics in Commercial MIP Solvers Part I (Heuristics in IBM CPLEX) Andrea Tramontani CPLEX Optimization, IBM CWI, Amsterdam, June 12, 2018 Heuristics in Commercial MIP Solvers Part I (Heuristics in IBM CPLEX) Agenda CPLEX Branch-and-Bound (B&B) Primal heuristics in CPLEX

More information

Pivot and Gomory Cut. A MIP Feasibility Heuristic NSERC

Pivot and Gomory Cut. A MIP Feasibility Heuristic NSERC Pivot and Gomory Cut A MIP Feasibility Heuristic Shubhashis Ghosh Ryan Hayward shubhashis@randomknowledge.net hayward@cs.ualberta.ca NSERC CGGT 2007 Kyoto Jun 11-15 page 1 problem given a MIP, find a feasible

More information

Conflict Analysis in Mixed Integer Programming

Conflict Analysis in Mixed Integer Programming Konrad-Zuse-Zentrum für Informationstechnik Berlin Takustraße 7 D-14195 Berlin-Dahlem Germany TOBIAS ACHTERBERG Conflict Analysis in Mixed Integer Programming URL: http://www.zib.de/projects/integer-optimization/mip

More information

Fundamentals of Integer Programming

Fundamentals of Integer Programming Fundamentals of Integer Programming Di Yuan Department of Information Technology, Uppsala University January 2018 Outline Definition of integer programming Formulating some classical problems with integer

More information

The Gurobi Solver V1.0

The Gurobi Solver V1.0 The Gurobi Solver V1.0 Robert E. Bixby Gurobi Optimization & Rice University Ed Rothberg, Zonghao Gu Gurobi Optimization 1 1 Oct 09 Overview Background Rethinking the MIP solver Introduction Tree of Trees

More information

SCIP. 1 Introduction. 2 Model requirements. Contents. Stefan Vigerske, Humboldt University Berlin, Germany

SCIP. 1 Introduction. 2 Model requirements. Contents. Stefan Vigerske, Humboldt University Berlin, Germany SCIP Stefan Vigerske, Humboldt University Berlin, Germany Contents 1 Introduction.................................................. 673 2 Model requirements..............................................

More information

The Heuristic (Dark) Side of MIP Solvers. Asja Derviskadic, EPFL Vit Prochazka, NHH Christoph Schaefer, EPFL

The Heuristic (Dark) Side of MIP Solvers. Asja Derviskadic, EPFL Vit Prochazka, NHH Christoph Schaefer, EPFL The Heuristic (Dark) Side of MIP Solvers Asja Derviskadic, EPFL Vit Prochazka, NHH Christoph Schaefer, EPFL 1 Table of content [Lodi], The Heuristic (Dark) Side of MIP Solvers, Hybrid Metaheuristics, 273-284,

More information

Restrict-and-relax search for 0-1 mixed-integer programs

Restrict-and-relax search for 0-1 mixed-integer programs EURO J Comput Optim (23) :2 28 DOI.7/s3675-3-7-y ORIGINAL PAPER Restrict-and-relax search for - mixed-integer programs Menal Guzelsoy George Nemhauser Martin Savelsbergh Received: 2 September 22 / Accepted:

More information

Introduction to SCIP. Gregor Hendel, SCIP Introduction Day September 26, rd IMI-ISM-ZIB MODAL Workshop

Introduction to SCIP. Gregor Hendel, SCIP Introduction Day September 26, rd IMI-ISM-ZIB MODAL Workshop Introduction to SCIP Gregor Hendel, hendel@zib.de SCIP Introduction Day September 26, 2018 3rd IMI-ISM-ZIB MODAL Workshop What is SCIP? SCIP (Solving Constraint Integer Programs)... provides a full-scale

More information

Computational Integer Programming. Lecture 12: Branch and Cut. Dr. Ted Ralphs

Computational Integer Programming. Lecture 12: Branch and Cut. Dr. Ted Ralphs Computational Integer Programming Lecture 12: Branch and Cut Dr. Ted Ralphs Computational MILP Lecture 12 1 Reading for This Lecture Wolsey Section 9.6 Nemhauser and Wolsey Section II.6 Martin Computational

More information

Unit.9 Integer Programming

Unit.9 Integer Programming Unit.9 Integer Programming Xiaoxi Li EMS & IAS, Wuhan University Dec. 22-29, 2016 (revised) Operations Research (Li, X.) Unit.9 Integer Programming Dec. 22-29, 2016 (revised) 1 / 58 Organization of this

More information

SCIP Workshop Visit scip.zib.de/workshop2018 for all information. Tomorrow and on Thursday: Scientific Talks

SCIP Workshop Visit scip.zib.de/workshop2018 for all information. Tomorrow and on Thursday: Scientific Talks SCIP Workshop 2018 Structure of the SCIP Introduction Day 9:30 11:00 Introduction to SCIP 11:00 11:30 Coffee Break 11:30 12:30 Installation of SCIP and GCG 12:30 14:00 Lunch 14:00 17:30 Programming Exercises

More information

Integer Optimization: Mathematics, Algorithms, and Applications

Integer Optimization: Mathematics, Algorithms, and Applications Integer Optimization: Mathematics, Algorithms, and Applications Sommerschool Jacobs University, July 2007 DFG Research Center Matheon Mathematics for key technologies Thorsten Koch Zuse Institute Berlin

More information

How to use your favorite MIP Solver: modeling, solving, cannibalizing. Andrea Lodi University of Bologna, Italy

How to use your favorite MIP Solver: modeling, solving, cannibalizing. Andrea Lodi University of Bologna, Italy How to use your favorite MIP Solver: modeling, solving, cannibalizing Andrea Lodi University of Bologna, Italy andrea.lodi@unibo.it January-February, 2012 @ Universität Wien A. Lodi, How to use your favorite

More information

lpsymphony - Integer Linear Programming in R

lpsymphony - Integer Linear Programming in R lpsymphony - Integer Linear Programming in R Vladislav Kim October 30, 2017 Contents 1 Introduction 2 2 lpsymphony: Quick Start 2 3 Integer Linear Programming 5 31 Equivalent and Dual Formulations 5 32

More information

3 INTEGER LINEAR PROGRAMMING

3 INTEGER LINEAR PROGRAMMING 3 INTEGER LINEAR PROGRAMMING PROBLEM DEFINITION Integer linear programming problem (ILP) of the decision variables x 1,..,x n : (ILP) subject to minimize c x j j n j= 1 a ij x j x j 0 x j integer n j=

More information

5.3 Cutting plane methods and Gomory fractional cuts

5.3 Cutting plane methods and Gomory fractional cuts 5.3 Cutting plane methods and Gomory fractional cuts (ILP) min c T x s.t. Ax b x 0integer feasible region X Assumption: a ij, c j and b i integer. Observation: The feasible region of an ILP can be described

More information

Assessing Performance of Parallel MILP Solvers

Assessing Performance of Parallel MILP Solvers Assessing Performance of Parallel MILP Solvers How Are We Doing, Really? Ted Ralphs 1 Stephen J. Maher 2, Yuji Shinano 3 1 COR@L Lab, Lehigh University, Bethlehem, PA USA 2 Lancaster University, Lancaster,

More information

Outline. Modeling. Outline DMP204 SCHEDULING, TIMETABLING AND ROUTING. 1. Models Lecture 5 Mixed Integer Programming Models and Exercises

Outline. Modeling. Outline DMP204 SCHEDULING, TIMETABLING AND ROUTING. 1. Models Lecture 5 Mixed Integer Programming Models and Exercises Outline DMP204 SCHEDULING, TIMETABLING AND ROUTING 1. Lecture 5 Mixed Integer Programming and Exercises Marco Chiarandini 2. 3. 2 Outline Modeling 1. Min cost flow Shortest path 2. Max flow Assignment

More information

Advanced Operations Research Prof. G. Srinivasan Department of Management Studies Indian Institute of Technology, Madras

Advanced Operations Research Prof. G. Srinivasan Department of Management Studies Indian Institute of Technology, Madras Advanced Operations Research Prof. G. Srinivasan Department of Management Studies Indian Institute of Technology, Madras Lecture 18 All-Integer Dual Algorithm We continue the discussion on the all integer

More information

Advanced Use of GAMS Solver Links

Advanced Use of GAMS Solver Links Advanced Use of GAMS Solver Links Michael Bussieck, Steven Dirkse, Stefan Vigerske GAMS Development 8th January 2013, ICS Conference, Santa Fe Standard GAMS solve Solve william minimizing cost using mip;

More information

Solving Resource Allocation/Scheduling Problems with Constraint Integer Programming

Solving Resource Allocation/Scheduling Problems with Constraint Integer Programming Konrad-Zuse-Zentrum für Informationstechnik Berlin Takustraße 7 D-14195 Berlin-Dahlem Germany STEFAN HEINZ J. CHRISTOPHER BECK Solving Resource Allocation/Scheduling Problems with Constraint Integer Programming

More information

Two-layer Network Design by Branch-and-Cut featuring MIP-based Heuristics

Two-layer Network Design by Branch-and-Cut featuring MIP-based Heuristics Two-layer Network Design by Branch-and-Cut featuring MIP-based Heuristics Sebastian Orlowski, Zuse Institute Berlin, Takustr. 7, D-14195 Berlin, orlowski@zib.de Arie M.C.A. Koster, Zuse Institute Berlin,

More information

Algorithms for Decision Support. Integer linear programming models

Algorithms for Decision Support. Integer linear programming models Algorithms for Decision Support Integer linear programming models 1 People with reduced mobility (PRM) require assistance when travelling through the airport http://www.schiphol.nl/travellers/atschiphol/informationforpassengerswithreducedmobility.htm

More information

Integer Programming Chapter 9

Integer Programming Chapter 9 1 Integer Programming Chapter 9 University of Chicago Booth School of Business Kipp Martin October 30, 2017 2 Outline Branch and Bound Theory Branch and Bound Linear Programming Node Selection Strategies

More information

Gurobi Guidelines for Numerical Issues February 2017

Gurobi Guidelines for Numerical Issues February 2017 Gurobi Guidelines for Numerical Issues February 2017 Background Models with numerical issues can lead to undesirable results: slow performance, wrong answers or inconsistent behavior. When solving a model

More information

On Mixed-Integer (Linear) Programming and its connection with Data Science

On Mixed-Integer (Linear) Programming and its connection with Data Science On Mixed-Integer (Linear) Programming and its connection with Data Science Andrea Lodi Canada Excellence Research Chair École Polytechnique de Montréal, Québec, Canada andrea.lodi@polymtl.ca January 16-20,

More information

56:272 Integer Programming & Network Flows Final Examination -- December 14, 1998

56:272 Integer Programming & Network Flows Final Examination -- December 14, 1998 56:272 Integer Programming & Network Flows Final Examination -- December 14, 1998 Part A: Answer any four of the five problems. (15 points each) 1. Transportation problem 2. Integer LP Model Formulation

More information

Experiments with a Generic Dantzig-Wolfe Decomposition for Integer Programs

Experiments with a Generic Dantzig-Wolfe Decomposition for Integer Programs Experiments with a Generic Dantzig-Wolfe Decomposition for Integer Programs Gerald Gamrath 1 and Marco E. Lübbecke 2 1 Zuse Institute Berlin, Takustr. 7, 14195 Berlin, Germany gamrath@zib.de 2 Technische

More information

Experience with CGL in the PICO Mixed- Integer Programming Solver

Experience with CGL in the PICO Mixed- Integer Programming Solver Experience with CGL in the PICO Mixed- Integer Programming Solver Cynthia A. Phillips, Sandia National Laboratories Joint work with Jonathan Eckstein, Rutgers William Hart, Sandia Sandia is a multiprogram

More information

Integer Programming ISE 418. Lecture 7. Dr. Ted Ralphs

Integer Programming ISE 418. Lecture 7. Dr. Ted Ralphs Integer Programming ISE 418 Lecture 7 Dr. Ted Ralphs ISE 418 Lecture 7 1 Reading for This Lecture Nemhauser and Wolsey Sections II.3.1, II.3.6, II.4.1, II.4.2, II.5.4 Wolsey Chapter 7 CCZ Chapter 1 Constraint

More information

Primal Heuristics for Mixed Integer Programs with a Staircase Structure

Primal Heuristics for Mixed Integer Programs with a Staircase Structure Primal Heuristics for Mixed Integer Programs with a Staircase Structure Marco E. Lübbecke and Christian Puchert Chair of Operations Research, RWTH Aachen University, Kackertstr. 7, 52072 Aachen, Germany

More information

Algorithms for Integer Programming

Algorithms for Integer Programming Algorithms for Integer Programming Laura Galli November 9, 2016 Unlike linear programming problems, integer programming problems are very difficult to solve. In fact, no efficient general algorithm is

More information

Solving lexicographic multiobjective MIPs with Branch-Cut-Price

Solving lexicographic multiobjective MIPs with Branch-Cut-Price Solving lexicographic multiobjective MIPs with Branch-Cut-Price Marta Eso (The Hotchkiss School) Laszlo Ladanyi (IBM T.J. Watson Research Center) David Jensen (IBM T.J. Watson Research Center) McMaster

More information

A Generic Separation Algorithm and Its Application to the Vehicle Routing Problem

A Generic Separation Algorithm and Its Application to the Vehicle Routing Problem A Generic Separation Algorithm and Its Application to the Vehicle Routing Problem Presented by: Ted Ralphs Joint work with: Leo Kopman Les Trotter Bill Pulleyblank 1 Outline of Talk Introduction Description

More information

February 19, Integer programming. Outline. Problem formulation. Branch-andbound

February 19, Integer programming. Outline. Problem formulation. Branch-andbound Olga Galinina olga.galinina@tut.fi ELT-53656 Network Analysis and Dimensioning II Department of Electronics and Communications Engineering Tampere University of Technology, Tampere, Finland February 19,

More information

Linear Programming. Course review MS-E2140. v. 1.1

Linear Programming. Course review MS-E2140. v. 1.1 Linear Programming MS-E2140 Course review v. 1.1 Course structure Modeling techniques Linear programming theory and the Simplex method Duality theory Dual Simplex algorithm and sensitivity analysis Integer

More information

Introduction to Mathematical Programming IE496. Final Review. Dr. Ted Ralphs

Introduction to Mathematical Programming IE496. Final Review. Dr. Ted Ralphs Introduction to Mathematical Programming IE496 Final Review Dr. Ted Ralphs IE496 Final Review 1 Course Wrap-up: Chapter 2 In the introduction, we discussed the general framework of mathematical modeling

More information

Solutions for Operations Research Final Exam

Solutions for Operations Research Final Exam Solutions for Operations Research Final Exam. (a) The buffer stock is B = i a i = a + a + a + a + a + a 6 + a 7 = + + + + + + =. And the transportation tableau corresponding to the transshipment problem

More information

Methods and Models for Combinatorial Optimization Exact methods for the Traveling Salesman Problem

Methods and Models for Combinatorial Optimization Exact methods for the Traveling Salesman Problem Methods and Models for Combinatorial Optimization Exact methods for the Traveling Salesman Problem L. De Giovanni M. Di Summa The Traveling Salesman Problem (TSP) is an optimization problem on a directed

More information

9.4 SOME CHARACTERISTICS OF INTEGER PROGRAMS A SAMPLE PROBLEM

9.4 SOME CHARACTERISTICS OF INTEGER PROGRAMS A SAMPLE PROBLEM 9.4 SOME CHARACTERISTICS OF INTEGER PROGRAMS A SAMPLE PROBLEM Whereas the simplex method is effective for solving linear programs, there is no single technique for solving integer programs. Instead, a

More information

Algorithms II MIP Details

Algorithms II MIP Details Algorithms II MIP Details What s Inside Gurobi Optimizer Algorithms for continuous optimization Algorithms for discrete optimization Automatic presolve for both LP and MIP Algorithms to analyze infeasible

More information

Parallel Solvers for Mixed Integer Linear Optimization

Parallel Solvers for Mixed Integer Linear Optimization Industrial and Systems Engineering Parallel Solvers for Mixed Integer Linear Optimization Ted Ralphs Lehigh University, Bethlehem, PA, USA Yuji Shinano Zuse Institute Berlin, Takustraße 7, 14195 Berlin,

More information

Column Generation Method for an Agent Scheduling Problem

Column Generation Method for an Agent Scheduling Problem Column Generation Method for an Agent Scheduling Problem Balázs Dezső Alpár Jüttner Péter Kovács Dept. of Algorithms and Their Applications, and Dept. of Operations Research Eötvös Loránd University, Budapest,

More information

Solving a Challenging Quadratic 3D Assignment Problem

Solving a Challenging Quadratic 3D Assignment Problem Solving a Challenging Quadratic 3D Assignment Problem Hans Mittelmann Arizona State University Domenico Salvagnin DEI - University of Padova Quadratic 3D Assignment Problem Quadratic 3D Assignment Problem

More information

Integer Programming as Projection

Integer Programming as Projection Integer Programming as Projection H. P. Williams London School of Economics John Hooker Carnegie Mellon University INFORMS 2015, Philadelphia USA A Different Perspective on IP Projection of an IP onto

More information

Alternating Criteria Search: A Parallel Large Neighborhood Search Algorithm for Mixed Integer Programs

Alternating Criteria Search: A Parallel Large Neighborhood Search Algorithm for Mixed Integer Programs Alternating Criteria Search: A Parallel Large Neighborhood Search Algorithm for Mixed Integer Programs Lluís-Miquel Munguía 1, Shabbir Ahmed 2, David A. Bader 1, George L. Nemhauser 2, and Yufen Shao 3

More information

2. Modeling AEA 2018/2019. Based on Algorithm Engineering: Bridging the Gap Between Algorithm Theory and Practice - ch. 2

2. Modeling AEA 2018/2019. Based on Algorithm Engineering: Bridging the Gap Between Algorithm Theory and Practice - ch. 2 2. Modeling AEA 2018/2019 Based on Algorithm Engineering: Bridging the Gap Between Algorithm Theory and Practice - ch. 2 Content Introduction Modeling phases Modeling Frameworks Graph Based Models Mixed

More information

Advanced Operations Research Prof. G. Srinivasan Department of Management Studies Indian Institute of Technology, Madras

Advanced Operations Research Prof. G. Srinivasan Department of Management Studies Indian Institute of Technology, Madras Advanced Operations Research Prof. G. Srinivasan Department of Management Studies Indian Institute of Technology, Madras Lecture 16 Cutting Plane Algorithm We shall continue the discussion on integer programming,

More information

Bayesian network model selection using integer programming

Bayesian network model selection using integer programming Bayesian network model selection using integer programming James Cussens Leeds, 2013-10-04 James Cussens IP for BNs Leeds, 2013-10-04 1 / 23 Linear programming The Belgian diet problem Fat Sugar Salt Cost

More information

George Reloaded. M. Monaci (University of Padova, Italy) joint work with M. Fischetti. MIP Workshop, July 2010

George Reloaded. M. Monaci (University of Padova, Italy) joint work with M. Fischetti. MIP Workshop, July 2010 George Reloaded M. Monaci (University of Padova, Italy) joint work with M. Fischetti MIP Workshop, July 2010 Why George? Because of Karzan, Nemhauser, Savelsbergh Information-based branching schemes for

More information

A LARGE SCALE INTEGER AND COMBINATORIAL OPTIMIZER

A LARGE SCALE INTEGER AND COMBINATORIAL OPTIMIZER A LARGE SCALE INTEGER AND COMBINATORIAL OPTIMIZER By Qun Chen A dissertation submitted in partial fulfillment of the requirements for the degree of Doctor of Philosophy (Industrial Engineering) at the

More information

Selected Topics in Column Generation

Selected Topics in Column Generation Selected Topics in Column Generation February 1, 2007 Choosing a solver for the Master Solve in the dual space(kelly s method) by applying a cutting plane algorithm In the bundle method(lemarechal), a

More information

Noncommercial Software for Mixed-Integer Linear Programming

Noncommercial Software for Mixed-Integer Linear Programming Noncommercial Software for Mixed-Integer Linear Programming J. T. Linderoth T. K. Ralphs December 23, 2004 Abstract We present an overview of noncommercial software tools for the solution of mixed-integer

More information

Integer Programming. Xi Chen. Department of Management Science and Engineering International Business School Beijing Foreign Studies University

Integer Programming. Xi Chen. Department of Management Science and Engineering International Business School Beijing Foreign Studies University Integer Programming Xi Chen Department of Management Science and Engineering International Business School Beijing Foreign Studies University Xi Chen (chenxi0109@bfsu.edu.cn) Integer Programming 1 / 42

More information

Benders in a nutshell Matteo Fischetti, University of Padova

Benders in a nutshell Matteo Fischetti, University of Padova Benders in a nutshell Matteo Fischetti, University of Padova ODS 2017, Sorrento, September 2017 1 Benders decomposition The original Benders decomposition from the 1960s uses two distinct ingredients for

More information

A hybrid branch-and-bound approach for exact rational mixed-integer programming

A hybrid branch-and-bound approach for exact rational mixed-integer programming Math. Prog. Comp. (2013) 5:305 344 DOI 10.1007/s12532-013-0055-6 FULL LENGTH PAPER A hybrid branch-and-bound approach for exact rational mixed-integer programming William Cook Thorsten Koch Daniel E. Steffy

More information

Parallel Solvers for Mixed Integer Linear Programming

Parallel Solvers for Mixed Integer Linear Programming Zuse Institute Berlin Takustr. 7 14195 Berlin Germany TED RALPHS 1, YUJI SHINANO, TIMO BERTHOLD 2, THORSTEN KOCH Parallel Solvers for Mixed Integer Linear Programming 1 Department of Industrial and Systems

More information

Improved Gomory Cuts for Primal Cutting Plane Algorithms

Improved Gomory Cuts for Primal Cutting Plane Algorithms Improved Gomory Cuts for Primal Cutting Plane Algorithms S. Dey J-P. Richard Industrial Engineering Purdue University INFORMS, 2005 Outline 1 Motivation The Basic Idea Set up the Lifting Problem How to

More information

An exact rational mixed-integer programming solver

An exact rational mixed-integer programming solver An exact rational mixed-integer programming solver William Cook 1, Thorsten Koch 2, Daniel E. Steffy 1, and Kati Wolter 2 1 School of Industrial and Systems Engineering, Georgia Institute of Technology,

More information

Handling first-order linear constraints with SCIP

Handling first-order linear constraints with SCIP Handling first-order linear constraints with SCIP James Cussens, University of York KU Leuven, 2015-02-16 James Cussens, University of York FO with SCIP KU Leuven, 2015-02-16 1 / 18 MIP Mixed integer programs

More information

Approximation Algorithms

Approximation Algorithms Approximation Algorithms Given an NP-hard problem, what should be done? Theory says you're unlikely to find a poly-time algorithm. Must sacrifice one of three desired features. Solve problem to optimality.

More information

Improving Dual Bound for Stochastic MILP Models Using Sensitivity Analysis

Improving Dual Bound for Stochastic MILP Models Using Sensitivity Analysis Improving Dual Bound for Stochastic MILP Models Using Sensitivity Analysis Vijay Gupta Ignacio E. Grossmann Department of Chemical Engineering Carnegie Mellon University, Pittsburgh Bora Tarhan ExxonMobil

More information

Pure Cutting Plane Methods for ILP: a computational perspective

Pure Cutting Plane Methods for ILP: a computational perspective Pure Cutting Plane Methods for ILP: a computational perspective Matteo Fischetti, DEI, University of Padova Rorschach test for OR disorders: can you see the tree? 1 Outline 1. Pure cutting plane methods

More information

Comparisons of Commercial MIP Solvers and an Adaptive Memory (Tabu Search) Procedure for a Class of 0-1 Integer Programming Problems

Comparisons of Commercial MIP Solvers and an Adaptive Memory (Tabu Search) Procedure for a Class of 0-1 Integer Programming Problems Comparisons of Commercial MIP Solvers and an Adaptive Memory (Tabu Search) Procedure for a Class of 0-1 Integer Programming Problems Lars M. Hvattum The Norwegian University of Science and Technology Trondheim,

More information

Experiments On General Disjunctions

Experiments On General Disjunctions Experiments On General Disjunctions Some Dumb Ideas We Tried That Didn t Work* and Others We Haven t Tried Yet *But that may provide some insight Ted Ralphs, Serdar Yildiz COR@L Lab, Department of Industrial

More information

Department of Mathematics Oleg Burdakov of 30 October Consider the following linear programming problem (LP):

Department of Mathematics Oleg Burdakov of 30 October Consider the following linear programming problem (LP): Linköping University Optimization TAOP3(0) Department of Mathematics Examination Oleg Burdakov of 30 October 03 Assignment Consider the following linear programming problem (LP): max z = x + x s.t. x x

More information

A Nonlinear Presolve Algorithm in AIMMS

A Nonlinear Presolve Algorithm in AIMMS A Nonlinear Presolve Algorithm in AIMMS By Marcel Hunting marcel.hunting@aimms.com November 2011 This paper describes the AIMMS presolve algorithm for nonlinear problems. This presolve algorithm uses standard

More information

Progress in Linear Programming-Based Algorithms for Integer Programming: An Exposition

Progress in Linear Programming-Based Algorithms for Integer Programming: An Exposition 2 INFORMS Journal on Computing 0899-1499 100 1201-0002 $05.00 Vol. 12, No. 1, Winter 2000 2000 INFORMS Progress in Linear Programming-Based Algorithms for Integer Programming: An Exposition ELLIS L. JOHNSON,

More information

LaGO - A solver for mixed integer nonlinear programming

LaGO - A solver for mixed integer nonlinear programming LaGO - A solver for mixed integer nonlinear programming Ivo Nowak June 1 2005 Problem formulation MINLP: min f(x, y) s.t. g(x, y) 0 h(x, y) = 0 x [x, x] y [y, y] integer MINLP: - n

More information

SUBSTITUTING GOMORY CUTTING PLANE METHOD TOWARDS BALAS ALGORITHM FOR SOLVING BINARY LINEAR PROGRAMMING

SUBSTITUTING GOMORY CUTTING PLANE METHOD TOWARDS BALAS ALGORITHM FOR SOLVING BINARY LINEAR PROGRAMMING Bulletin of Mathematics Vol. 06, No. 0 (20), pp.. SUBSTITUTING GOMORY CUTTING PLANE METHOD TOWARDS BALAS ALGORITHM FOR SOLVING BINARY LINEAR PROGRAMMING Eddy Roflin, Sisca Octarina, Putra B. J Bangun,

More information

MINIZSAT. A semi SAT-based pseudo-boolean solver. Master thesis by Rogier Poldner

MINIZSAT. A semi SAT-based pseudo-boolean solver. Master thesis by Rogier Poldner MINIZSAT A semi SAT-based pseudo-boolean solver Master thesis by Rogier Poldner MINIZSAT A semi SAT-based pseudo-boolean solver Master thesis by Rogier Poldner committee: Dr. H. van Maaren Dr. M.J.H.

More information

Some Advanced Topics in Linear Programming

Some Advanced Topics in Linear Programming Some Advanced Topics in Linear Programming Matthew J. Saltzman July 2, 995 Connections with Algebra and Geometry In this section, we will explore how some of the ideas in linear programming, duality theory,

More information

The SCIP Optimization Suite 3.2

The SCIP Optimization Suite 3.2 The SCIP Optimization Suite 3.2 Gerald Gamrath 1, Tobias Fischer 2, Tristan Gally 2, Ambros M. Gleixner 1, Gregor Hendel 1, Thorsten Koch 1, Stephen J. Maher 1, Matthias Miltenberger 1, Benjamin Müller

More information

Penalty Alternating Direction Methods for Mixed- Integer Optimization: A New View on Feasibility Pumps

Penalty Alternating Direction Methods for Mixed- Integer Optimization: A New View on Feasibility Pumps Penalty Alternating Direction Methods for Mixed- Integer Optimization: A New View on Feasibility Pumps Björn Geißler, Antonio Morsi, Lars Schewe, Martin Schmidt FAU Erlangen-Nürnberg, Discrete Optimization

More information

Discrete Optimization with Decision Diagrams

Discrete Optimization with Decision Diagrams Discrete Optimization with Decision Diagrams J. N. Hooker Joint work with David Bergman, André Ciré, Willem van Hoeve Carnegie Mellon University Australian OR Society, May 2014 Goal Find an alternative

More information

Topics. Introduction. Specific tuning/troubleshooting topics "It crashed" Gurobi parameters The tuning tool. LP tuning. MIP tuning

Topics. Introduction. Specific tuning/troubleshooting topics It crashed Gurobi parameters The tuning tool. LP tuning. MIP tuning Tuning II Topics Introduction Gurobi parameters The tuning tool Specific tuning/troubleshooting topics "It crashed" The importance of being specific LP tuning The importance of scaling MIP tuning Performance

More information

The Ascendance of the Dual Simplex Method: A Geometric View

The Ascendance of the Dual Simplex Method: A Geometric View The Ascendance of the Dual Simplex Method: A Geometric View Robert Fourer 4er@ampl.com AMPL Optimization Inc. www.ampl.com +1 773-336-AMPL U.S.-Mexico Workshop on Optimization and Its Applications Huatulco

More information

SUBSTITUTING GOMORY CUTTING PLANE METHOD TOWARDS BALAS ALGORITHM FOR SOLVING BINARY LINEAR PROGRAMMING

SUBSTITUTING GOMORY CUTTING PLANE METHOD TOWARDS BALAS ALGORITHM FOR SOLVING BINARY LINEAR PROGRAMMING ASIAN JOURNAL OF MATHEMATICS AND APPLICATIONS Volume 2014, Article ID ama0156, 11 pages ISSN 2307-7743 http://scienceasia.asia SUBSTITUTING GOMORY CUTTING PLANE METHOD TOWARDS BALAS ALGORITHM FOR SOLVING

More information

SAS/OR 14.1 User s Guide: Mathematical Programming. The Mixed Integer Linear Programming Solver

SAS/OR 14.1 User s Guide: Mathematical Programming. The Mixed Integer Linear Programming Solver SAS/OR 14.1 User s Guide: Mathematical Programming The Mixed Integer Linear Programming Solver This document is an individual chapter from SAS/OR 14.1 User s Guide: Mathematical Programming. The correct

More information

M2 ORO: Advanced Integer Programming. Part IV. Solving MILP (1) easy IP. Outline. Sophie Demassey. October 10, 2011

M2 ORO: Advanced Integer Programming. Part IV. Solving MILP (1) easy IP. Outline. Sophie Demassey. October 10, 2011 M2 ORO: Advanced Integer Programming Sophie Demassey Part IV Solving MILP (1) Mines Nantes - TASC - INRIA/LINA CNRS UMR 6241 sophie.demassey@mines-nantes.fr October 10, 2011 Université de Nantes / M2 ORO

More information