SlideShare a Scribd company logo
Reasoning with 
Conditional Time-intervals 
P. Laborie and J. Rogerie 
[plaborie,jrogerie]@ilog.fr
FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008 
Overview 
 Motivations 
 Model 
 Constraint Propagation 
 Extensions & Conclusion
FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008 
Motivations 
 Optional time-intervals in scheduling: 
 Some activities can be left unperformed 
A C 
B
FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008 
Motivations 
 Optional time-intervals in scheduling: 
 Some activities can be left unperformed 
A C 
B
FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008 
Motivations 
 Optional time-intervals in scheduling: 
 Some activities can be left unperformed 
A 
B
FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008 
Motivations 
 Optional time-intervals in scheduling: 
 Some parts of the schedule can be left unperformed 
A 
B 
C 
D 
E
FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008 
Motivations 
 Optional time-intervals in scheduling: 
 Some parts of the schedule can be left unperformed 
A 
B 
C 
D 
E
FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008 
Motivations 
 Optional time-intervals in scheduling: 
 Some parts of the schedule can be left unperformed 
A 
B
C 
D 
E 
FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008 
Motivations 
 Optional time-intervals in scheduling: 
 Some parts of the schedule can be left unperformed 
A 
B 
 Dependencies: exec(E)exec(C)exec(D)
C: Mode 1 
FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008 
Motivations 
 Optional time-intervals in scheduling: 
 Alternative combination of resources 
A 
B 
C 
XOR 
C: Mode 2 
C: Mode 3
FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008 
Motivations 
 Optional time-intervals in scheduling: 
 Alternative combination of resources 
A 
B 
CC:: MMooddee 1
FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008 
Motivations 
 Optional time-intervals in scheduling: 
 Alternative combination of resources 
A 
B 
CC:: MMooddee 22
FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008 
Motivations 
 Optional time-intervals in scheduling: 
 Alternative combination of resources 
A 
B 
CC:: MMooddee 33
FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008 
Motivations 
 Optional time-intervals in scheduling: 
 Alternative recipes (common in manufacturing) 
A 
B 
XOR 
C 
C: Recipe 1 
Op11 Op12 Op13 
C: Recipe 2 
Op23 
Op21 Op22
FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008 
Motivations 
 Optional time-intervals in scheduling: 
 Alternative recipes (common in manufacturing) 
A 
B 
Recipe C: recipe 1 
Op11 Op12 Op13
FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008 
Motivations 
 Optional time-intervals in scheduling: 
 Alternative recipes (common in manufacturing) 
A 
B 
C: Recipe 2 
Op23 
Op21 Op22
FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008 
Motivations 
 Objective: Make it easier to model and solve 
scheduling problems involving optional 
activities/tasks/processes/recipes/… 
 Constraint Optimization framework 
 Basic ingredients: 
 Optional time-intervals variables (a,b,c,… ) 
 Logical constraints (exec(a)  exec(b)) 
 Precedence constraints (endBeforeStart(a,b)) 
 Decomposition constraints (span(a,{b1,…bn})) 
 Alternative constraints (alternative(a,{b1,…bn}))
Focus of this talk 
MODEL PROBLEM SOLVING 
Basic constraints: 
logical, precedence, 
span, alternative Basic constraint 
Time-interval 
variables 
propagation 
FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008
What we won’t talk about here 
MODEL PROBLEM SOLVING 
Resource-related 
Basic constraints: 
logical, precedence, 
span, alternative Basic constraint 
Time-interval 
variables 
propagation 
FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008 
constraints: 
sequencing, cumul, 
states, calendars 
Resource-related 
constraint 
propagation 
Search & 
optimization 
techniques
Model: Time interval variables 
 Extension of classical CSPs 
 A new type of first class citizen decision 
variable: Time-interval variable 
 Domain of values for a time-interval variable a : 
Dom(a)  {}  { [s,e) | s,eℤ, s≤e } 
Non executed Interval of integers 
FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008
Model: Time interval variables 
 Domain of values for a time-interval variable a : 
Dom(a)  {}  { [s,e) | s,eℤ, s≤e } 
 Notations: Let a be a fixed time-interval variable 
 If a={[s,e)} (a is executed), we denote: 
x(a)=1, s(a)=s, e(a)=e, d(a)=e-s 
 If a={} (a is non-executed), we denote: 
x(a)=0 (in this case, s(a),e(a),d(a) are meaningless) 
FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008
Model: Logical constraints 
 Execution unary constraint exec(a) means that a 
is executed (x(a)=1) 
 2-SAT clauses over execution constraints: 
[¬]exec(a)  [¬]exec(b) 
 Expressivity: 
 Same execution status: 
¬exec(a)exec(b),exec(a)¬exec(b) 
 Incompatibility: ¬exec(a)¬exec(b) 
 Implication: ¬exec(a)exec(b) 
FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008
Model: Precedence constraints 
 Simple Precedence Constraints ti+z≤tj reified by 
execution statuses 
 Example: endBeforeStart(a,b,z) means 
x(a)x(b)  e(a)+z≤s(b) 
 startBeforeStart, startBeforeEnd 
endBeforeStart, endBeforeEnd 
startAtStart, startAtEnd 
endAtStart, endAtEnd 
FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008
Model: Span constraint 
 Span constraint span(a,{b1,…,bn}) means that if a 
is executed, it spans all executed intervals from 
{b1,…,bn}. Interval a is not executed iff none of 
intervals {b1,…,bn} is executed. 
b1 b4 
FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008 
b3 
b5 
a 
b2
Model: Alternative constraint 
 Alternative constraint alternative(a,{b1,…,bn}) 
means that if a is executed, then exactly one of 
the {b1,…,bn} is executed and synchronized with 
a. Interval a is not executed iff none of intervals 
{b1,…,bn} is executed. 
a 
b1 
b2 
b3 
XOR 
FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008
Model: Simple example 
 Inspired from [Barták&Čepek 2007] 
CollectMaterial (1) 
GetTube 
MakeTube 
SawTube (30) XOR 
ClearTube (20) 
SawRod (10) 
ClearRod (2) 
WeldRod (15) 
FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008 
BuyTube (40) 
WeldTube (15) 
AssemblePiston (5) 
ShipPiston (0) 
CollectKit (1) 
AssembleKit (5) 
Deadline=70
Model: Simple example (ILOG OPL Studio) 
FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008
Constraint Propagation: Interval variables 
 Time interval variable domain representation: 
tuple of ranges: 
 [xmin,xmax][0,1]: current execution status 
 [smin,smax] ℤ: conditional domain of start time would 
the time-interval be executed 
 [emin,emax] ℤ: conditional domain of end time would 
the time-interval be executed 
 [dmin,dmax] ℤ+: conditional domain of duration would 
the time-interval be executed 
FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008
Constraint Propagation: Logical network 
 Logical constraints are aggregated in an 
implication graph: all 2-SAT logical constraints 
[¬]exec(a)  [¬]exec(b) are translated as 
implications ( ¬[¬]exec(a)  [¬]exec(b) ) 
 Incremental transitive closure of the 
implication graph allows detecting infeasibilities 
and querying in O(1) whether exec(a)  exec(b) 
for any (a,b) 
FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008
Constraint Propagation: Temporal network 
 Precedence constraints are aggregated in a temporal 
network 
FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008
Constraint Propagation: Temporal network 
 Precedence constraints are aggregated in a temporal 
network 
 Conditional reasoning: 
From logical network 
exec(a)exec(b) 
a b endBeforeStart(a,b) 
FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008
Constraint Propagation: Temporal network 
 Precedence constraints are aggregated in a temporal 
network 
 Conditional reasoning: 
From logical network 
exec(a)exec(b) 
a b endBeforeStart(a,b) 
 Propagation on the conditional bounds of a (would a be 
executed) can assume that b will be executed too, thus: 
emax(a)  min(emax(a), smax(b)) 
FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008
Constraint Propagation: Temporal network 
 Precedence constraints are aggregated in a temporal 
network 
 Conditional reasoning: 
From logical network 
exec(a)exec(b) 
a b endBeforeStart(a,b) 
 Propagation on the conditional bounds of a (would a be 
executed) can assume that b will be executed too, thus: 
emax(a)  min(emax(a), smax(b)) 
 Bounds are propagated even on time intervals with 
still undecided execution status ! 
FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008
Model: Simple example 
 Inspired from [Barták&Čepek 2007] 
CollectMaterial (1) 
GetTube 
MakeTube 
SawTube (30) XOR 
ClearTube (20) 
SawRod (10) 
ClearRod (2) 
WeldRod (15) 
FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008 
BuyTube (40) 
WeldTube (15) 
AssemblePiston (5) 
ShipPiston (0) 
CollectKit (1) 
AssembleKit (5) 
Deadline=70
Model: Simple example 
 Inspired from [Barták&Čepek 2007] 
CollectMaterial (1) 
GetTube 
BBuuyyTTuubbee ((4400)) 
MakeTube 
SawTube (30) XOR 
ClearTube (20) 
SawRod (10) 
ClearRod (2) 
WeldRod (15) 
FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008 
BuyTube (40) 
WeldTube (15) 
AssemblePiston (5) 
ShipPiston (0) 
CollectKit (1) 
AssembleKit (5) 
Deadline=70
Extensions & Conclusion 
 Conditional time-intervals are the foundation of 
the new version of ILOG CP Optimizer (2.0) for 
modeling and solving detailed scheduling 
problems 
 Model extensions: 
 Resources (sequencing, cumulative, state reasoning) 
 Calendars (resource efficiency curves, days off, etc.) 
 Expressions to use interval bounds (start, end, etc.) in 
classical CSP constraints on integer variables 
FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008
Extensions & Conclusion 
 Conditional time-intervals are the foundation of 
the new version of ILOG CP Optimizer (2.0) for 
modeling and solving detailed scheduling 
problems 
 Search: 
 Extension of SA-LNS [Laborie&Godard 2007] to handle 
optional time-interval variables 
FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008
Example: Multi-Mode RCPSP 
FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008
Example: Multi-Mode RCPSP 
Data 
FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008
Example: Multi-Mode RCPSP 
Model 
FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008
Example: Multi-Mode RCPSP 
Trial Version: 
http://ilog.com/products/oplstudio/trial.cfm 
FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008

More Related Content

PDF
Modeling and Solving Resource-Constrained Project Scheduling Problems with IB...
PDF
Modeling and Solving Scheduling Problems with CP Optimizer
PPT
Boetticher Presentation Promise 2008v2
PPTX
iaf.pptx
PPT
Assessing the Reliability of a Human Estimator
PPT
Brown bag 2012_fall
DOCX
GHRIS Program Status 11-Mar-15
PPTX
Practice for petroelum reservoir simulation using Eclipse Software
Modeling and Solving Resource-Constrained Project Scheduling Problems with IB...
Modeling and Solving Scheduling Problems with CP Optimizer
Boetticher Presentation Promise 2008v2
iaf.pptx
Assessing the Reliability of a Human Estimator
Brown bag 2012_fall
GHRIS Program Status 11-Mar-15
Practice for petroelum reservoir simulation using Eclipse Software

More from Philippe Laborie (19)

PDF
Self-Adapting Large Neighborhood Search: Application to single-mode schedulin...
PDF
Industrial project and machine scheduling with Constraint Programming
PDF
ICAPS-2020 Industry Session
PDF
CP Optimizer pour la planification et l'ordonnancement
PDF
Planning/Scheduling with CP Optimizer
PDF
Recent advances on large scheduling problems in CP Optimizer
PDF
Objective Landscapes for Constraint Programming
PDF
An Update on the Comparison of MIP, CP and Hybrid Approaches for Mixed Resour...
PDF
CP Optimizer: a generic optimization engine at the crossroad of AI and OR fo...
PDF
Solving Industrial Scheduling Problems with Constraint Programming
PDF
New Results for the GEO-CAPE Observation Scheduling Problem
PDF
A (Not So Short) Introduction to CP Optimizer for Scheduling
PDF
Optimization: from mathematical tools to real applications
PDF
An introduction to CP Optimizer
PDF
Accelerating the Development of Efficient CP Optimizer Models
PDF
Model Presolve, Warmstart and Conflict Refining in CP Optimizer
PDF
An Optimal Iterative Algorithm for Extracting MUCs in a Black-box Constraint ...
PDF
Conditional interval variables: A powerful concept for modeling and solving c...
PDF
IBM ILOG CP Optimizer for Detailed Scheduling Illustrated on Three Problems
Self-Adapting Large Neighborhood Search: Application to single-mode schedulin...
Industrial project and machine scheduling with Constraint Programming
ICAPS-2020 Industry Session
CP Optimizer pour la planification et l'ordonnancement
Planning/Scheduling with CP Optimizer
Recent advances on large scheduling problems in CP Optimizer
Objective Landscapes for Constraint Programming
An Update on the Comparison of MIP, CP and Hybrid Approaches for Mixed Resour...
CP Optimizer: a generic optimization engine at the crossroad of AI and OR fo...
Solving Industrial Scheduling Problems with Constraint Programming
New Results for the GEO-CAPE Observation Scheduling Problem
A (Not So Short) Introduction to CP Optimizer for Scheduling
Optimization: from mathematical tools to real applications
An introduction to CP Optimizer
Accelerating the Development of Efficient CP Optimizer Models
Model Presolve, Warmstart and Conflict Refining in CP Optimizer
An Optimal Iterative Algorithm for Extracting MUCs in a Black-box Constraint ...
Conditional interval variables: A powerful concept for modeling and solving c...
IBM ILOG CP Optimizer for Detailed Scheduling Illustrated on Three Problems
Ad

Recently uploaded (20)

PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PPTX
Cloud computing and distributed systems.
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
Review of recent advances in non-invasive hemoglobin estimation
PPTX
Spectroscopy.pptx food analysis technology
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PPTX
Big Data Technologies - Introduction.pptx
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
KodekX | Application Modernization Development
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PDF
Electronic commerce courselecture one. Pdf
PPTX
Programs and apps: productivity, graphics, security and other tools
PPTX
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
PPTX
MYSQL Presentation for SQL database connectivity
PPT
Teaching material agriculture food technology
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
Digital-Transformation-Roadmap-for-Companies.pptx
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
Chapter 3 Spatial Domain Image Processing.pdf
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Cloud computing and distributed systems.
Per capita expenditure prediction using model stacking based on satellite ima...
Review of recent advances in non-invasive hemoglobin estimation
Spectroscopy.pptx food analysis technology
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Big Data Technologies - Introduction.pptx
“AI and Expert System Decision Support & Business Intelligence Systems”
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
KodekX | Application Modernization Development
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Electronic commerce courselecture one. Pdf
Programs and apps: productivity, graphics, security and other tools
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
MYSQL Presentation for SQL database connectivity
Teaching material agriculture food technology
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
Ad

Reasoning with Conditional Time-intervals

  • 1. Reasoning with Conditional Time-intervals P. Laborie and J. Rogerie [plaborie,jrogerie]@ilog.fr
  • 2. FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008 Overview  Motivations  Model  Constraint Propagation  Extensions & Conclusion
  • 3. FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008 Motivations  Optional time-intervals in scheduling:  Some activities can be left unperformed A C B
  • 4. FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008 Motivations  Optional time-intervals in scheduling:  Some activities can be left unperformed A C B
  • 5. FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008 Motivations  Optional time-intervals in scheduling:  Some activities can be left unperformed A B
  • 6. FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008 Motivations  Optional time-intervals in scheduling:  Some parts of the schedule can be left unperformed A B C D E
  • 7. FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008 Motivations  Optional time-intervals in scheduling:  Some parts of the schedule can be left unperformed A B C D E
  • 8. FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008 Motivations  Optional time-intervals in scheduling:  Some parts of the schedule can be left unperformed A B
  • 9. C D E FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008 Motivations  Optional time-intervals in scheduling:  Some parts of the schedule can be left unperformed A B  Dependencies: exec(E)exec(C)exec(D)
  • 10. C: Mode 1 FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008 Motivations  Optional time-intervals in scheduling:  Alternative combination of resources A B C XOR C: Mode 2 C: Mode 3
  • 11. FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008 Motivations  Optional time-intervals in scheduling:  Alternative combination of resources A B CC:: MMooddee 1
  • 12. FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008 Motivations  Optional time-intervals in scheduling:  Alternative combination of resources A B CC:: MMooddee 22
  • 13. FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008 Motivations  Optional time-intervals in scheduling:  Alternative combination of resources A B CC:: MMooddee 33
  • 14. FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008 Motivations  Optional time-intervals in scheduling:  Alternative recipes (common in manufacturing) A B XOR C C: Recipe 1 Op11 Op12 Op13 C: Recipe 2 Op23 Op21 Op22
  • 15. FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008 Motivations  Optional time-intervals in scheduling:  Alternative recipes (common in manufacturing) A B Recipe C: recipe 1 Op11 Op12 Op13
  • 16. FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008 Motivations  Optional time-intervals in scheduling:  Alternative recipes (common in manufacturing) A B C: Recipe 2 Op23 Op21 Op22
  • 17. FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008 Motivations  Objective: Make it easier to model and solve scheduling problems involving optional activities/tasks/processes/recipes/…  Constraint Optimization framework  Basic ingredients:  Optional time-intervals variables (a,b,c,… )  Logical constraints (exec(a)  exec(b))  Precedence constraints (endBeforeStart(a,b))  Decomposition constraints (span(a,{b1,…bn}))  Alternative constraints (alternative(a,{b1,…bn}))
  • 18. Focus of this talk MODEL PROBLEM SOLVING Basic constraints: logical, precedence, span, alternative Basic constraint Time-interval variables propagation FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008
  • 19. What we won’t talk about here MODEL PROBLEM SOLVING Resource-related Basic constraints: logical, precedence, span, alternative Basic constraint Time-interval variables propagation FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008 constraints: sequencing, cumul, states, calendars Resource-related constraint propagation Search & optimization techniques
  • 20. Model: Time interval variables  Extension of classical CSPs  A new type of first class citizen decision variable: Time-interval variable  Domain of values for a time-interval variable a : Dom(a)  {}  { [s,e) | s,eℤ, s≤e } Non executed Interval of integers FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008
  • 21. Model: Time interval variables  Domain of values for a time-interval variable a : Dom(a)  {}  { [s,e) | s,eℤ, s≤e }  Notations: Let a be a fixed time-interval variable  If a={[s,e)} (a is executed), we denote: x(a)=1, s(a)=s, e(a)=e, d(a)=e-s  If a={} (a is non-executed), we denote: x(a)=0 (in this case, s(a),e(a),d(a) are meaningless) FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008
  • 22. Model: Logical constraints  Execution unary constraint exec(a) means that a is executed (x(a)=1)  2-SAT clauses over execution constraints: [¬]exec(a)  [¬]exec(b)  Expressivity:  Same execution status: ¬exec(a)exec(b),exec(a)¬exec(b)  Incompatibility: ¬exec(a)¬exec(b)  Implication: ¬exec(a)exec(b) FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008
  • 23. Model: Precedence constraints  Simple Precedence Constraints ti+z≤tj reified by execution statuses  Example: endBeforeStart(a,b,z) means x(a)x(b)  e(a)+z≤s(b)  startBeforeStart, startBeforeEnd endBeforeStart, endBeforeEnd startAtStart, startAtEnd endAtStart, endAtEnd FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008
  • 24. Model: Span constraint  Span constraint span(a,{b1,…,bn}) means that if a is executed, it spans all executed intervals from {b1,…,bn}. Interval a is not executed iff none of intervals {b1,…,bn} is executed. b1 b4 FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008 b3 b5 a b2
  • 25. Model: Alternative constraint  Alternative constraint alternative(a,{b1,…,bn}) means that if a is executed, then exactly one of the {b1,…,bn} is executed and synchronized with a. Interval a is not executed iff none of intervals {b1,…,bn} is executed. a b1 b2 b3 XOR FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008
  • 26. Model: Simple example  Inspired from [Barták&Čepek 2007] CollectMaterial (1) GetTube MakeTube SawTube (30) XOR ClearTube (20) SawRod (10) ClearRod (2) WeldRod (15) FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008 BuyTube (40) WeldTube (15) AssemblePiston (5) ShipPiston (0) CollectKit (1) AssembleKit (5) Deadline=70
  • 27. Model: Simple example (ILOG OPL Studio) FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008
  • 28. Constraint Propagation: Interval variables  Time interval variable domain representation: tuple of ranges:  [xmin,xmax][0,1]: current execution status  [smin,smax] ℤ: conditional domain of start time would the time-interval be executed  [emin,emax] ℤ: conditional domain of end time would the time-interval be executed  [dmin,dmax] ℤ+: conditional domain of duration would the time-interval be executed FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008
  • 29. Constraint Propagation: Logical network  Logical constraints are aggregated in an implication graph: all 2-SAT logical constraints [¬]exec(a)  [¬]exec(b) are translated as implications ( ¬[¬]exec(a)  [¬]exec(b) )  Incremental transitive closure of the implication graph allows detecting infeasibilities and querying in O(1) whether exec(a)  exec(b) for any (a,b) FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008
  • 30. Constraint Propagation: Temporal network  Precedence constraints are aggregated in a temporal network FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008
  • 31. Constraint Propagation: Temporal network  Precedence constraints are aggregated in a temporal network  Conditional reasoning: From logical network exec(a)exec(b) a b endBeforeStart(a,b) FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008
  • 32. Constraint Propagation: Temporal network  Precedence constraints are aggregated in a temporal network  Conditional reasoning: From logical network exec(a)exec(b) a b endBeforeStart(a,b)  Propagation on the conditional bounds of a (would a be executed) can assume that b will be executed too, thus: emax(a)  min(emax(a), smax(b)) FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008
  • 33. Constraint Propagation: Temporal network  Precedence constraints are aggregated in a temporal network  Conditional reasoning: From logical network exec(a)exec(b) a b endBeforeStart(a,b)  Propagation on the conditional bounds of a (would a be executed) can assume that b will be executed too, thus: emax(a)  min(emax(a), smax(b))  Bounds are propagated even on time intervals with still undecided execution status ! FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008
  • 34. Model: Simple example  Inspired from [Barták&Čepek 2007] CollectMaterial (1) GetTube MakeTube SawTube (30) XOR ClearTube (20) SawRod (10) ClearRod (2) WeldRod (15) FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008 BuyTube (40) WeldTube (15) AssemblePiston (5) ShipPiston (0) CollectKit (1) AssembleKit (5) Deadline=70
  • 35. Model: Simple example  Inspired from [Barták&Čepek 2007] CollectMaterial (1) GetTube BBuuyyTTuubbee ((4400)) MakeTube SawTube (30) XOR ClearTube (20) SawRod (10) ClearRod (2) WeldRod (15) FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008 BuyTube (40) WeldTube (15) AssemblePiston (5) ShipPiston (0) CollectKit (1) AssembleKit (5) Deadline=70
  • 36. Extensions & Conclusion  Conditional time-intervals are the foundation of the new version of ILOG CP Optimizer (2.0) for modeling and solving detailed scheduling problems  Model extensions:  Resources (sequencing, cumulative, state reasoning)  Calendars (resource efficiency curves, days off, etc.)  Expressions to use interval bounds (start, end, etc.) in classical CSP constraints on integer variables FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008
  • 37. Extensions & Conclusion  Conditional time-intervals are the foundation of the new version of ILOG CP Optimizer (2.0) for modeling and solving detailed scheduling problems  Search:  Extension of SA-LNS [Laborie&Godard 2007] to handle optional time-interval variables FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008
  • 38. Example: Multi-Mode RCPSP FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008
  • 39. Example: Multi-Mode RCPSP Data FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008
  • 40. Example: Multi-Mode RCPSP Model FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008
  • 41. Example: Multi-Mode RCPSP Trial Version: http://ilog.com/products/oplstudio/trial.cfm FLAIRS 2008 – Coconut Grove, Florida, USA – May 15-17, 2008