Introduction

Stochastic Constraint Programming

Computational Experience

Conclusions

Synthesizing Filtering Algorithms for Global Chance-Constraints Brahim Hnich1 Roberto Rossi2 S. Armagan Tarim3 Steven D. Prestwich4 1 Faculty

of Computer Science, Izmir University of Economics, Izmir, Turkey 2 LDI, Wageningen UR, the Netherlands 3 Dept. of Operations Management, Nottingham University Business School, UK 4 Cork Constraint Computation Centre, University College Cork, Ireland

the 15th International Conference on Principles and Practice of Constraint Programming, CP-09

Introduction

Stochastic Constraint Programming

Computational Experience

Decision Making

Decision Making Under Uncertainty: A Pervasive Issue

Land-Crop Allocation Production Planning Financial Planning Applications Decision Support Systems

UNCERTAINTY Sustainable Energy Production

Modeling Frameworks Theoretical Results Inventory Control

Food Quality Control

Conclusions

Introduction

Stochastic Constraint Programming

Computational Experience

Conclusions

Decision Making

Decision Making Under Uncertainty: An Example Static Stochastic Knapsack Problem Problem: we have k kinds of items and a knapsack of size c into which to fit them. Each kind of item i has a deterministic profit ri . a size wi , which is not known at the time the decision has to be made. The decision maker knows the probability distribution of wi . A per unit penalty cost p has to be paid for exceeding the capacity of the knapsack. The probability of not exceeding the capacity of the knapsack should be greater or equal to a given threshold θ. Objective: find the knapsack that maximizes the expected profit.

Introduction

Stochastic Constraint Programming

Computational Experience

Conclusions

Basic Notions

A slightly formal definition Stochastic Constraint Satisfaction Problem (Walsh, 2002) A Stochastic Constraint Satisfaction Problem (SCSP) is a 7-tuple hV , S, D, P, C, θ, Li. V = {v1 , . . . , vn } is a set of decision variables S = {s1 , . . . , sn } is a set of stochastic variables D is a function mapping each variable to a domain of potential values P is a function mapping each variable in S to a probability distribution for its associated domain C is a set of (chance)-constraints, possibly involving stochastic variables θh is a threshold probability associated to chance-constraint h L = [hV1 , S1 i, . . . , hVi , Si i, . . . , hVm , Sm i] is a list of decision stages.

b we obtain a SCOP. b , S) By considering an objective function f (V

Introduction

Stochastic Constraint Programming

Computational Experience

Basic Notions

An Example Sample SCOP: SSKP V = {x1 , . . . , x3 } D(xi ) = {0, 1} ∀i ∈ {1, . . . , 3} S = {w1 , . . . , w3 } D(w1 ) = {5(0.5), 8(0.5)}, D(w2 ) = {3(0.5), 9(0.5)}, D(w3 ) = {15(0.5), 4(0.5)} C = {Pr (w1 x1 + w2 x2 + w3 x3 ≤ 10) ≥ 0.2} L = [hV , Si] f (x1 , . . . , x3 ) = h P i 8x1 + 15x2 + 10x3 − 2E max 0, 3i=1 wi xi − 20

Conclusions

Introduction

Stochastic Constraint Programming

Computational Experience

Basic Notions

An Example Sample SCOP: DSKP V = {x1 , . . . , x3 } D(xi ) = {0, 1} ∀i ∈ {1, . . . , 3} S = {w1 , . . . , w3 } D(w1 ) = {5(0.5), 8(0.5)}, D(w2 ) = {3(0.5), 9(0.5)}, D(w3 ) = {15(0.5), 4(0.5)} C = {Pr (w1 x1 + w2 x2 + w3 x3 ≤ 10) ≥ 0.2} L = [h{x1 }, {w1 }i, h{x2 }, {w2 }i, h{x3 }, {w3 }i] f (x1 , . . . , x3 ) = h P i E[8x1 + 15x2 + 10x3 ] − 2E max 0, 3i=1 wi xi − 20

Conclusions

Introduction

Stochastic Constraint Programming

Computational Experience

Conclusions

Stochastic OPL

Stochastic OPL A language specifically introduced by Tarim et al. (Tarim et al., 2006) for modeling decision problems under uncertainty. It captures several high level concepts that facilitate the process of modeling uncertainty: stochastic variables (independent or conditional distributions) several probabilistic measures for the objective function (expectation, variance, etc.) chance-constraints decision stages ...

Introduction

Stochastic Constraint Programming

Computational Experience

Stochastic OPL

Stochastic OPL

SSKP int N = 3; int c = 10; int p = 2; float θ = 0.2 range Object [1..3]; int value[Object] = [8,15,10]; stoch int weight[Object] = [<5(0.5),8(0.5)>, <3(0.5),9(0.5)>,<15(0.5),4(0.5)>]; var int+ X[Object] in 0..1; stages = []; var int+ z; maximize sum(i in Object) X[i]*value[i] - p*z subject to{ z = max(0,expected(sum(i in Object) X[i]*weight[i] - c)); prob(sum(i in Object) X[i]*weight[i] - c ≤ 0) ≥ θ; };

Conclusions

Introduction

Stochastic Constraint Programming

Computational Experience

Conclusions

Stochastic OPL

Stochastic OPL

DSKP int N = 3; int c = 10; int p = 2; float θ = 0.2 range Object [1..3]; int value[Object] = [8,15,10]; stoch int weight[Object] = [<5(0.5),8(0.5)>, <3(0.5),9(0.5)>,<15(0.5),4(0.5)>]; var int+ X[Object] in 0..1; stages = [,,]; var int+ z; maximize sum(i in Object) X[i]*value[i] - p*z subject to{ z = max(0,expected(sum(i in Object) X[i]*weight[i] - c)); prob(sum(i in Object) X[i]*weight[i] - c ≤ 0) ≥ θ; };

Introduction

Stochastic Constraint Programming

Computational Experience

Conclusions

Solution Methods

Scenario-based Compilation

By using the approach discussed in

S. A. Tarim, S. Manandhar and T. Walsh, Stochastic Constraint Programming: A Scenario-Based Approach, Constraints, Vol.11, pp.53-80, 2006

it is possible to compile any SCSP/SCOP down to a deterministic equivalent CSP.

Introduction

Stochastic Constraint Programming

Computational Experience

Conclusions

Solution Methods

Scenario-based Compilation

Solution Stochastic Constraint Program

Stochastic OPL Model stoch myrand[onestage]=...; int nbItems=...; float c = ...; float q = ...; range Items 1..nbItems; range onestage 1..1; float W[Items,onestage]^myrand = ...; float r[Items] = ...; dvar float+ z; dvar int x[Items] in 0..1;

Solver

maximize sum(i in Items) x[i]*r[i] - expected(c*z) subject to{ z >= sum(i in Items) W[i]*x[i] - q; prob(sum(i in Items) W[i]*x[i] <= q) >= 0.6; };

Deterministic equivalent model

Compiler

int nbWorlds=...; range Worlds 1..nbWorlds; int nbItems=...; range Items 1..nbItems; float c = ...; float W[Worlds,Items] =...; float Pr[Worlds]=...; float r[Items] = ...; float q = ...; var float+ z[Worlds]; var int+ x[Items] in 0..1; maximize ((sum(i in Items)x[i]*r[i])c*(sum(j in Worlds)Pr[j]*z[j])) subject to{ forall(j in Worlds) z[j]>=(sum(i in Items)W[j,i]*x[i])-q; sum(j in Worlds) Pr[j]*(sum(i in Items)W[j,i]*x[i] <= q) >= 0.2; };

Introduction

Stochastic Constraint Programming

Computational Experience

Solution Methods

Scenario-based Compilation SSKP: Compiled Deterministic Equivalent CSP

Conclusions

Introduction

Stochastic Constraint Programming

Computational Experience

Solution Methods

Scenario-based Compilation

Advantages Seamless Modeling under Uncertainty! Stochastic OPL not necessarily linked to CP Drawbacks Size of the compiled model Constraint Propagation not fully supported

Conclusions

Introduction

Stochastic Constraint Programming

Computational Experience

Conclusions

Solution Methods

An Alternative Approach to Seamless Stochastic Optimization

Solution Stochastic Constraint Program

Stochastic OPL Model stoch myrand[onestage]=...; int nbItems=...; float c = ...; float q = ...; range Items 1..nbItems; range onestage 1..1; float W[Items,onestage]^myrand = ...; float r[Items] = ...; dvar float+ z; dvar int x[Items] in 0..1;

Constraint Programming Solver supporting Global Chance-Constraints

maximize sum(i in Items) x[i]*r[i] - expected(c*z) subject to{ z >= sum(i in Items) W[i]*x[i] - q; prob(sum(i in Items) W[i]*x[i] <= q) >= 0.6; };

Filtering Algorithms for Global Chance-Constraints

Introduction

Stochastic Constraint Programming

Computational Experience

Conclusions

Global Chance-Constraints

Filtering in SCSPs

Global Chance-Constraints Perhaps the most interesting aspect of SCP is that the concept of global constraint can be also adopted in a stochastic environment, thus leading to Global Chance-Constraints (Rossi et al., 2008) Stochastic Programming Model nP o k Pr W X ≤ c ≥θ i i i=1 Global Chance-Constraint stochLinIneq(x,W,Pr,c,0.2);

Introduction

Stochastic Constraint Programming

Computational Experience

Conclusions

Global Chance-Constraints

Filtering in SCSPs

Stochastic Constraint Programming Global Chance-Constraints represent relations among a non-predefined number of decision and random variables implement dedicated filtering algorithms based on feasibility reasoning optimality reasoning

Global Chance-Constraints performing optimality reasoning are called Optimization-Oriented Global Chance-Constraints (Rossi et al., 2008).

Introduction

Stochastic Constraint Programming

Computational Experience

Global Chance-Constraints

Filtering in SCSPs SSKP: Compiled Deterministic Equivalent CSP with Global Chance-Constraints

Conclusions

Introduction

Stochastic Constraint Programming

Global Chance-Constraints

Filtering in SCSPs

Computational Experience

Conclusions

Introduction

Stochastic Constraint Programming

Computational Experience

Global Chance-Constraints

Filtering Algorithms for GCCs: An example

Pr(w1x1+w2x2+w3x3²10)>0.5 Solution Tree w3=15 w2=3

w3=4

w2=9

w3=15

X

X

w3=4

w1=5 x1=0 x2=0 x3=1

w3=15

X

w1=8 w2=3

w3=4

w2=9

w3=15 w3=4

X

Conclusions

Introduction

Stochastic Constraint Programming

Computational Experience

Global Chance-Constraints

Filtering Algorithms for GCCs: An example

Pr(w1x1+w2x2+w3x3²10)>0.5 Search Tree

Solution Tree w3=15 w2=3

w3=4

w2=9

w3=15 w3=4

w1=5 x1={0,1} x2={0,1} x3={0,1}

w3=15 w1=8 w2=3

w3=4

w2=9

w3=15 w3=4

Conclusions

Introduction

Stochastic Constraint Programming

Computational Experience

Conclusions

Global Chance-Constraints

Filtering Algorithms for GCCs: An example

Pr(w1x1+w2x2+w3x3²10)>0.5 Search Tree

Solution Tree w3=15 w2=3

w3=4

w2=9

w3=15 w3=4

w1=5 x1={0,1} x2={0,1} x3={0,1}

w3=15 w1=8 w2=3

w3=4

w2=9

w3=15 w3=4

x1={0,1} x2={0,1} x3={0}

Introduction

Stochastic Constraint Programming

Computational Experience

Conclusions

Global Chance-Constraints

Filtering Algorithms for GCCs: An example

Pr(w1x1+w2x2+w3x3²10)>0.5 Search Tree

Solution Tree w3=15 w2=3

w3=4

w2=9

w3=15

x1={0,1} x2={0,1} x3={0} x1={0,1} x2={0,1} x3={0,1}

w3=4

w1=5 x1={0,1} x2={0,1} x3={0,1}

w3=15 w1=8 w2=3

w3=4

w2=9

w3=15 w3=4

Introduction

Stochastic Constraint Programming

Computational Experience

Conclusions

Global Chance-Constraints

Filtering Algorithms for GCCs: An example

Pr(w1x1+w2x2+w3x3²10)>0.5 Search Tree

Solution Tree w3=15 w2=3

w3=4

w2=9

w3=15

x1={0,1} x2={0,1} x3={0} x1={0,1} x2={0,1} x3={0,1} x1={0,1} x2={0,1} x3={0}

w3=4

w1=5

x1={0,1} x2={0,1} x3={0,1}

x1={0,1} x2={0,1} x3={0,1}

w3=15 w1=8 w2=3

w3=4

w2=9

w3=15

x1={0,1} x2={0,1} x3={0} x1={0,1} x2={0,1} x3={0,1} x1={0,1} x2={0,1} x3={0}

w3=4 x1={0,1} x2={0,1} x3={0,1}

Introduction

Stochastic Constraint Programming

Computational Experience

Conclusions

Global Chance-Constraints

Filtering Algorithms for GCCs: An example

Pr(w1x1+w2x2+w3x3²10)>0.5 Search Tree

Solution Tree w3=15

x1=1

w2=3

w3=4

w2=9

w3=15 w3=4

w1=5 x1={1} x2={0,1} x3={0}

w3=15 w1=8 w2=3

w3=4

w2=9

w3=15 w3=4

x1={1}

x2={0,1} x3={0}

Introduction

Stochastic Constraint Programming

Computational Experience

Conclusions

Global Chance-Constraints

Filtering Algorithms for GCCs: An example

Pr(w1x1+w2x2+w3x3²10)>0.5 Search Tree

Solution Tree w3=15

x1=1

w2=3 w2=9

x2={0,1} x3={0}

x1={1}

x2={0,1} x3={0}

w3=4 w3=15 w3=4

w1=5 x1={1} x2={0,1} x3={0}

x1={1}

w3=15 w1=8 w2=3

w3=4

w2=9

w3=15 w3=4

Introduction

Stochastic Constraint Programming

Computational Experience

Conclusions

Global Chance-Constraints

Filtering Algorithms for GCCs: An example

Pr(w1x1+w2x2+w3x3²10)>0.5 Search Tree

Solution Tree w3=15

x1=1

w2=3 w2=9

x2={0,1} x3={0}

x1={1}

x2={0,1} x3={0}

x1={1}

x2={0}

w3=4 w3=15 w3=4

w1=5 x1={1} x2={0,1} x3={0}

x1={1}

w3=15 w1=8 w2=3

w3=4

w2=9

w3=15 w3=4

x3={0}

Introduction

Stochastic Constraint Programming

Computational Experience

Conclusions

Global Chance-Constraints

Filtering Algorithms for GCCs: An example

Pr(w1x1+w2x2+w3x3²10)>0.5 Search Tree

Solution Tree w3=15

x1=1

w2=3 w2=9

x1={1}

x2={0,1} x3={0}

x1={1}

x2={0,1} x3={0}

x1={1}

x2={0}

x3={0}

x1={1}

x2={0}

x3={0}

x1={1}

x2={0}

x3={0}

x1={1}

x2={0}

x3={0}

x1={1}

x2={0}

x3={0}

x1={1}

x2={0}

x3={0}

w3=4 w3=15 w3=4

w1=5 x1={1} x2={0,1} x3={0}

w3=15 w1=8 w2=3 w2=9

w3=4 w3=15 w3=4

Introduction

Stochastic Constraint Programming

Computational Experience

Conclusions

Global Chance-Constraints

Filtering Algorithms for GCCs: An example

Pr(w1x1+w2x2+w3x3²10)>0.5 Search Tree

Solution Tree w3=15

x1=1

w2=3 w2=9

x1={1}

x2={0,1} x3={0}

x1={1}

x2={0,1} x3={0}

x1={1}

x2={0}

x3={0}

x1={1}

x2={0}

x3={0}

x1={1}

x2={0}

x3={0}

x1={1}

x2={0}

x3={0}

x1={1}

x2={0}

x3={0}

x1={1}

x2={0}

x3={0}

w3=4 w3=15 w3=4

w1=5 x1={1} x2={0} x3={0}

w3=15 w1=8 w2=3 w2=9

w3=4 w3=15 w3=4

Introduction

Stochastic Constraint Programming

Computational Experience

Conclusions

Global Chance-Constraints

Filtering Algorithms for GCCs: An example

Pr(w1x1+w2x2+w3x3²10)³0.5 Search Tree

Solution Tree x3=1

w3=15

w2=3

w3=4

w2=9

x3={0,1} w3=15

x2=1

x1={0,1}

w3=4

w1=5

x3=1

w1=8 x2=1

w3=4

w2=3 w2=9

w3=15

x3=1

w3=15 w3=4

Introduction

Stochastic Constraint Programming

Computational Experience

Conclusions

Global Chance-Constraints

Filtering Algorithms for GCCs: An example

Pr(w1x1+w2x2+w3x3²10)³0.5 Search Tree

Solution Tree x3=1

w3=15

w2=3

w3=4

w2=9

x3={0,1} w3=15

x2=1

x1={0,1}

w3=4

w1=5

x3=1

w1=8 x2=1

w3=4

w2=3 w2=9

w3=15

x3=1

w3=15 w3=4

x1={}

x2={1}

x3={1}

Introduction

Stochastic Constraint Programming

Computational Experience

Conclusions

Global Chance-Constraints

Filtering Algorithms for GCCs: An example

Pr(w1x1+w2x2+w3x3²10)³0.5 Search Tree

Solution Tree x3=1 w2=3

w3=15

x1={0,1}

x3={0,1} w3=15 w3=4

w1=5

x3=1

w1=8 x2=1

w3=15 w3=4

w2=3 w2=9

x2={1}

x3={1}

x1={0}

x2={1}

x3={1}

w3=4

x2=1 w2=9

x1={}

x3=1

w3=15 w3=4

Introduction

Stochastic Constraint Programming

Computational Experience

Conclusions

Global Chance-Constraints

Filtering Algorithms for GCCs: An example

Pr(w1x1+w2x2+w3x3²10)³0.5 Search Tree

Solution Tree x3=1 w2=3

w3=15

x1={0,1}

x3={0,1} w3=15 w3=4

w1=5

x3=1

w1=8 x2=1

w3=15 w3=4

w2=3 w2=9

x2={1}

x3={1}

x1={0}

x2={1}

x3={1}

x1={0}

x2={1}

x3={0}

w3=4

x2=1 w2=9

x1={}

x3=1

w3=15 w3=4

Introduction

Stochastic Constraint Programming

Computational Experience

Conclusions

Global Chance-Constraints

Filtering Algorithms for GCCs: An example

Pr(w1x1+w2x2+w3x3²10)³0.5 Search Tree

Solution Tree x3=1 w2=3

w3=15

x1={0,1}

x2={1}

x3={1}

x1={0}

x2={1}

x3={1}

x1={0}

x2={1}

x3={0}

x1={0}

x2={1}

x3={0}

w3=4

x2=1 w2=9

x1={}

x3={0,1} w3=15 w3=4

w1=5

x3=1

w1=8 x2=1

w3=4

w2=3 w2=9

w3=15

x3=1

w3=15 w3=4

Introduction

Stochastic Constraint Programming

Computational Experience

Conclusions

Global Chance-Constraints

Filtering Algorithms for GCCs: An example

Pr(w1x1+w2x2+w3x3²10)³0.5 Search Tree

Solution Tree x3=1 w2=3

w3=15

x1={0,1}

x2={1}

x3={1}

x1={0}

x2={1}

x3={1}

x1={0}

x2={1}

x3={0}

x1={0}

x2={1}

x3={0}

x1={}

x2={1}

x3={1}

w3=4

x2=1 w2=9

x1={}

x3={0,1} w3=15 w3=4

w1=5

x3=1

w1=8 x2=1

w3=15

w2=3

w3=4

w2=9

w3=15

x3=1

x1={0}

x2={1}

x3={1}

x1={}

x2={1}

x3={1}

x1={}

x2={1}

x3={1}

w3=4

Introduction

Stochastic Constraint Programming

Computational Experience

Conclusions

Global Chance-Constraints

Filtering Algorithms for GCCs: An example

Pr(w1x1+w2x2+w3x3²10)³0.5 Search Tree

Solution Tree x3=1 w2=3

w3=15

x1={0,1}

x2={1}

x3={1}

x1={0}

x2={1}

x3={1}

x1={0}

x2={1}

x3={0}

x1={0}

x2={1}

x3={0}

x1={}

x2={1}

x3={1}

w3=4

x2=1 w2=9

x1={}

x3={0,1} w3=15 w3=4

w1=5

x3=1

w1=8 x2=1

w3=15

w2=3

w3=4

w2=9

w3=15

x3=1

x1={0}

x2={1}

x3={1}

x1={}

x2={1}

x3={1}

x1={}

x2={1}

x3={1}

w3=4

Introduction

Stochastic Constraint Programming

Computational Experience

Conclusions

Global Chance-Constraints

Filtering Algorithms for GCCs: An example

Pr(w1x1+w2x2+w3x3²10)³0.5 Search Tree

Solution Tree x3=1 w2=3

w3=15

x1=0

x2={1}

x3={1}

x1={0}

x2={1}

x3={1}

x1={0}

x2={1}

x3={0}

x1={0}

x2={1}

x3={0}

x1={}

x2={1}

x3={1}

w3=4

x2=1 w2=9

x1={}

x3=0

w3=15 w3=4

w1=5

x3=1

w1=8 x2=1

w3=15

w2=3

w3=4

w2=9

w3=15

x3=1

x1={0}

x2={1}

x3={1}

x1={}

x2={1}

x3={1}

x1={}

x2={1}

x3={1}

w3=4

Introduction

Stochastic Constraint Programming

Computational Experience

Conclusions

Instances

Random SCSPs In our experiments we considered a number of randomly generated SCSPs The SCSPs considered feature 5 chance-constraints 4 integer decision variables, x1 , . . . , x4 8 stochastic variables, s1 , . . . , s8 3 possible stage structure (single and multi-stage problems)

Introduction

Stochastic Constraint Programming

Computational Experience

Comparison

Model Size The model that uses GCC is much more compact!

Stages 1 2 4

SBA Dec Vars 6484 6554 6739

Cons 6485 6485 6485

GCC Dec Vars Cons 4 5 74 5 259 5

Conclusions

Introduction

Stochastic Constraint Programming

Computational Experience

Conclusions

Comparison

Results The test bed comprised, in total, 270 instances To each instance we assigned a time limit of 240 seconds for running the search

Stages 1 2 4

Solved Instances SBA GCC 90 90 18 45 10 31

Speed up GCC 2.5× 13× 15×

Node Gain GCC 5× 400× 300×

Introduction Comparison

Run Times

Stochastic Constraint Programming

Computational Experience

Conclusions

Introduction

Stochastic Constraint Programming

Comparison

Explored Nodes

Computational Experience

Conclusions

Introduction Comparison

Filtering

Stochastic Constraint Programming

Computational Experience

Conclusions

Introduction

Stochastic Constraint Programming

Computational Experience

Conclusions

Final remarks

Summary We discussed a Framework for Modeling Decision Problems under Uncertainty Stochastic Constraint Programming Global Chance-constraints Contribution A generic approach for constraint reasoning under uncertainty. Works with any existing propagation algorithm! Drawback Only implemented for linear inequalities/equalities: i.e. SSKP → Pr(w1 x1 + w2 x2 + w3 x3 ≤ 10) ≥ 0.2

Introduction Final remarks

Questions

Stochastic Constraint Programming

Computational Experience

Conclusions

Synthesizing Filtering Algorithms for Global Chance ... - Roberto Rossi

Introduction. Stochastic Constraint Programming ... 1Faculty of Computer Science, Izmir University of Economics, Izmir, Turkey. 2LDI, Wageningen UR, the ...

1MB Sizes 5 Downloads 203 Views

Recommend Documents

Synthesizing Filtering Algorithms in Stochastic ... - Roberto Rossi
... constraint programming. In Frank van Harmelen, editor, Euro- pean Conference on Artificial Intelligence, ECAI'2002, Proceedings, pages 111–115. IOS. Press ...

Constraint Programming for Optimization under ... - Roberto Rossi
Sep 10, 2008 - Roberto Rossi1. 1Cork Constraint Computation Centre, University College Cork, Ireland ... approaches computer science has yet made to the Holy Grail of programming: ...... Generating good LB during the search. 65. 62. 130.

Stochastic Constraint Programming by ... - Dr Roberto Rossi
1Cork Constraint Computation Centre, University College Cork, Ireland. 2Department of ... 4Faculty of Computer Science, Izmir University of Economics, Turkey.

A sample based method for perishable good ... - Dr Roberto Rossi
a stochastic programming inventory problem of a perishable product. Finding a ..... translating the service level in constraint (3) for period t + R − 1 to a(Q) = P(I1 ...

RESEARCH ARTICLE Process redesign for effective ... - Roberto Rossi
Oct 26, 2012 - and Business Economics, University of Edinburgh, 29 Buccleuch Place, EH8 9JS, ... In a literature review on quantitative operations management approaches in food sup- ply chains ...... Software process simulation modeling:.

A Steady-State Genetic Algorithm With Resampling for ... - Roberto Rossi
1 Cork Constraint Computation Centre, University College, Cork, Ireland ... 3 Faculty of Computer Science, Izmir University of Economics, Turkey.

Use of livestock quality estimates for improved ... - Roberto Rossi
Use of livestock quality estimates for improved product allocation planning to .... animals farmers will deliver (ai), and transport costs of animals to processors ...

Computing the Non-Stationary Replenishment Cycle ... - Roberto Rossi
Feb 6, 2010 - an optimization model is a relevant and novel contribution. ..... rithms, constraint solvers also feature some sort of heuristic search engine (e.g..

A Neuroevolutionary Approach to Stochastic Inventory ... - Roberto Rossi
Sep 10, 2010 - roevolutionary approach: using an artificial neural network to ... in (Fu 2002), and a tutorial and survey of the application of SO to inventory control ...... lution. Artificial Intelligence for Engineering Design, Analysis and Manufa

Scheduling Internal Audit Activities: A Stochastic ... - Roberto Rossi
Audit Loss. • Compliance with controls within auditable units is assumed to deteriorate naturally over time unless appropriate action is taken at some point to ...

Design and Simulation of Adaptive Filtering Algorithms for Active ...
Keywords: Adaptive Filter, LMS Algorithm, Active Noise cancellation, MSE, .... The anti-noise generated corresponding to the white noise is as shown below,.

Design and Simulation of Adaptive Filtering Algorithms for Active ...
In general, noise can be reduced using either passive methods or active (Active Noise Control, ANC) techniques. The passive methods works well for high ...

Measuring Global Internet Filtering
5 10 15 20 25 .... the best example is the blocking of low-cost international telephone services that use ... Web Sites hOSted On that Server will alsO be blOCked.

On a CP approach to solve a MINLP inventory model - Roberto Rossi
Faculty of Computer Science, Izmir University of Economics, Izmir, Turkey ... Cork Constraint Computation Centre, University College, Cork, Ireland ...

Design and Simulation of Adaptive Filtering Algorithms ...
masking speech than broadband noise, the degree of masking varies with ... Also passive methods work quite well only for frequencies above 500 Hz and active ...

Agustín Rossi declaración jurada.pdf
There was a problem loading this page. Retrying... Agustín Rossi declaración jurada.pdf. Agustín Rossi declaración jurada.pdf. Open. Extract. Open with. Sign In.

adistributed approach for capturing and synthesizing ...
competency interview skills using visually and culturally diverse virtual human experiences improves the user's ability to conduct a ..... life-size immersive display, infrared tracking system, and wireless microphone. An example of a ..... The proje

Method and apparatus for filtering E-mail
Jan 31, 2010 - Clark et a1., PCMAIL: A Distributed Mail System for Per. 6,052,709 A ..... keted as a Software Development Kit (hereinafter “SDK”). This Will ...

Combinational Collaborative Filtering for ... - Research at Google
Aug 27, 2008 - Before modeling CCF, we first model community-user co- occurrences (C-U) ...... [1] Alexa internet. http://www.alexa.com/. [2] D. M. Blei and M. I. ...

ASwatch - Roberto Perdisci
Internet service provider that willingly hosts and protects il- licit activities. .... rest of the internet. Changing providers is necessary because a legitimate upstream provider typically responds (albeit of- ten slowly) to repeated abuse complaint

ASwatch - Roberto Perdisci
reputation in the peering decision process (e.g. charge higher a low reputation customer, or even de-peer early). (3) Law enforcement practitioners may prioritize their investigations and start early monitoring on ASes, which will likely need remedia

Unscented Information Filtering for Distributed ...
This paper represents distributed estimation and multiple sensor information fusion using an unscented ... Sensor fusion can be loosely defined as how to best extract useful information from multiple sensor observations. .... with nυ degrees of free