heuristics for combinatorial optimization
play

Heuristics for Combinatorial Optimization Heuristikker og - PowerPoint PPT Presentation

DM811 (5 ECTS - 1st Quarter) Heuristics for Combinatorial Optimization Heuristikker og lokalsgningsalgoritmer for kombinatorisk optimering DM812 (5 ECTS - 2nd Quarter) Metaheuristics Metaheuristikker Marco Chiarandini adjunkt, IMADA


  1. DM811 (5 ECTS - 1st Quarter) Heuristics for Combinatorial Optimization Heuristikker og lokalsøgningsalgoritmer for kombinatorisk optimering DM812 (5 ECTS - 2nd Quarter) Metaheuristics Metaheuristikker Marco Chiarandini adjunkt, IMADA www.imada.sdu.dk/~marco/

  2. semester course DM63 Heuristics for Combinatorial Optimization 2000-2007 2008 DM811 DM812 Heuristics for Metaheuristics Combinatorial Optimization 1st quarter 2nd quarter

  3. DM811 (5 ECTS - 1st Quarter) DM811 Heuristics for Combinatorial Optimization - L0 Heuristics for Combinatorial Optimization Heuristikker og lokalsøgningsalgoritmer for kombinatorisk optimering Marco Chiarandini adjunkt, IMADA www.imada.sdu.dk/~marco/

  4. Prerequisites DM811 Heuristics for Combinatorial Optimization - L0 ‣ Officially - none ‣ “Unofficially” - DM507 - Algorithms and data structures - Programming A and B Programming in an efficient language: C, C++, Java...

  5. Combinatorial Optimization DM811 Heuristics for Combinatorial Optimization - L0 Combinatorial optimization problems: select a “best” configuration or set of variables. Examples: ‣ Shortest path ‣ Minimum spanning tree ‣ Matching ‣ Max-flow Others are NP-hard: ‣ finding shortest/cheapest round trips ‣ finding models of propositional formulae ‣ finding variable assignments satisfying constraints ‣ partitioning graphs or digraphs ‣ coloring graphs ‣ partitioning, packing, covering sets ‣ ...

  6. Heuristic Solution DM811 Heuristics for Combinatorial Optimization - L0 How can we solve NP-hard problems? ‣ Get inspired by approach to problem-solving in human mind - trial and error ‣ and by apparent simplicity of processes in nature - evolutionary theory, swarm intelligence Heuristics: algorithms to compute, efficiently, good or optimal solutions to a problem, but not guaranteed to do so.

  7. Heuristics as Science DM811 Heuristics for Combinatorial Optimization - L0 Empirical studies Theoretical studies They aim at understanding: ‣ general and/or problem specific ideas that work ‣ how they can be efficiently implemented in computers ‣ what makes one succeed and some not ‣ which are the theoretical limits

  8. DM811 Heuristics for Combinatorial Optimization - L0 Heuristics as Engineering

  9. Contents of the course DM811 Heuristics for Combinatorial Optimization - L0 1. Introduction, Overview and Terminology 2. Basic Methods and Algorithms 3. Integer Programming, Branch and Bound, LP Rounding 4. Constraint Programming and Complete Search 5. Approximation Algorithms 6. Greedy Methods and Extensions 7. Local Search 8. Very Large Scale Neighborhoods 9. Stochastic Local Search 10. Stochastic Local Search II 11. Experimental analysis and configuration tools 12. Stochastic optimization and local search 12-14 lectures + 6-8 laboratory sessions

  10. Aims of the course DM811 Heuristics for Combinatorial Optimization - L0 Learn problem solving: ‣ understand the problem ‣ design a solution algorithm ‣ implement the algorithm ‣ assess the program ‣ describe with appropriate language

  11. Final Assessment (5 ECTS) DM811 Heuristics for Combinatorial Optimization - L0 ‣ Individual project: - “Design, implementation and experimental analysis of heuristics for a given problem”. - Perfomance matters! - Deliverables: written report + program ‣ Internal examiner

  12. Course Material DM811 Heuristics for Combinatorial Optimization - L0 ‣ Text book - Search methodologies: introductory tutorials in optimization and decision support techniques E.K. Burke, G. Kendall, 2005, Springer, New York - Handbook of Approximation Algorithms and Metaheuristics. T .F . Gonzalez, Chapman & Hall/CRC Computer and Information Science) 2007. - Stochastic Local Search: Foundations and Applications , H. Hoos and T . Stützle, 2005, Morgan Kaufmann ‣ Literature (articles, photocopies) ‣ Slides ‣ Source code and data sets ‣ www.imada.sdu.dk/~marco/DM811

  13. DM812 (5 ECTS - 2nd Quarter) Metaheuristics Metaheuristikker DM812 Metaheuristics - L0 Marco Chiarandini adjunkt, IMADA www.imada.sdu.dk/~marco/

  14. DM812 Metaheuristics - L0 Tabu Search

  15. DM812 Metaheuristics - L0 Simulated Annealing

  16. Evolutionary Algorithms cut 0 1 1 0 1 1 1 0 Parent 1 1 0 0 0 1 0 1 0 Parent 2 0 1 1 0 1 0 1 0 Offspring 1 DM812 Metaheuristics - L0 1 0 0 0 1 1 1 0 Offspring 2

  17. DM812 Metaheuristics - L0 Ant Colony

  18. Multiobjective Optimization DM812 Metaheuristics - L0

  19. Prerequisites The content of DM811 must be known Final Assessment (5 ECTS) ‣ Individual project: DM812 Metaheuristics - L0 - “Implementation and analysis of heuristics” - deliverables: written report + program ‣ External examiner

  20. Contents of the course 1. Tabu Search 2. Simulated Annealing 3. Scatter Search and Path Relinking 4. Experimental Analysis and Configuration Tools 5. Machine Learning and the No Free Lunch Theorem 6. Evolutionary Algorithms 7. Ant Colony Optimization 8. Estimation Distribution Algorithm and Cross Entropy DM812 Metaheuristics - L0 9. Metaheuristics in Continuous Non-Convex Optimization 10. Hybrid/Parallel Metaheuristics 11. Multiobjective Optimization by Local Search 12. Multiobjective Optimization by Evolutionary Algorithms 12-14 lectures + 6-8 laboratory sessions

  21. Course Material ‣ Text book - Search methodologies: introductory tutorials in optimization and decision support techniques E.K. Burke, G. Kendall, 2005, Springer, New York - Handbook of Approximation Algorithms and Metaheuristics. T .F . Gonzalez, Chapman & Hall/CRC Computer and Information Science) 2007 ‣ Literature (articles, photocopies) DM812 Metaheuristics - L0 ‣ Slides ‣ Source code and data sets ‣ www.imada.sdu.dk/~marco/DM812

  22. DM811 (5 ECTS - 1st Quarter) Heuristics for Combinatorial Optimization Heuristikker og lokalsøgningsalgoritmer for kombinatorisk optimering DM812 (5 ECTS - 2nd Quarter) Metaheuristics Metaheuristikker Marco Chiarandini adjunkt, IMADA www.imada.sdu.dk/~marco/

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend