RECURSIVE DYNAMIC PROGRAMMING: HEURISTIC RULES, BOUNDING AND STATE SPACE REDUCTION. Henrik Kure

Size: px
Start display at page:

Download "RECURSIVE DYNAMIC PROGRAMMING: HEURISTIC RULES, BOUNDING AND STATE SPACE REDUCTION. Henrik Kure"

Transcription

1 RECURSIVE DYNAMIC PROGRAMMING: HEURISTIC RULES, BOUNDING AND STATE SPACE REDUCTION Henrik Kure Dina, Danish Inforatics Network In the Agricultural Sciences Royal Veterinary and Agricultural University Bulowsvej 13, DK-1870 Frb., Copenhagen. E-ail: Abstract: An alternative approach towards dynaic prograing (DP) is presented: Recursions. A basic deterinistic odel and solution function are defined and the odel is generalized to include stochastic processes, with the traditional stochastic DP odel as a special case. Heuristic rules are included in the odels siply as restrictions on decision spaces and a sall slaughter pig arketing planning exaple illustrates the potential state space reductions induced by such rules. Keywords: Dynaic prograing, recursive algoriths, heuristics, stochastic odelling. 1. INTRODUCTION Dynaic Prograing (DP) is a general optiization principle, forulated by Bellan (1957). The principle is usually related to the field of Operations Research (OR), but the underlying and rather intuitive "Principle of optiality" (Bellan, 1957) is essential to several specific optiization techniques, including AI algoriths as A* (Winston, 1992) and the solution ethods of Influence Diagras and Valuation Networks (Shenoy, 1992). Value Iteration (VI) is (at least in OR) the best known and widely used DP technique. In this paper an alternative and ore general approach towards DP is presented: Recursions. The approach (Recursive Dynaic Prograing, RDP) is basically a direct ipleentation of the fundaental functional equation of DP (as defined by eg. Nehauser (1966)): f n (x n ) in d n D n [r n (x n,d n ) f n 1 (t n (x n,d n ))] (1) dn is a decision, chosen fro the set of valid decisions, D n, rn is the gain function and t is the transition function. n It ust be ephasized that this approach neither is nor intend to be novel, but it appears to be relatively unknown to OR and agricultural scientists (Kure, 1995). The purpose of this paper is to show the siplicity and the potential coputational benefits of RDP. The approach has, as will be shown, several theoretical and applicational iplications. The ethods presented ay be applied to virtual any proble that ight be solved using VI, including agricultural plaarketing decision support syste which is under ning/optiization probles like facility anageent, replaceent probles and far operations scheduling. The ethods (as defined in this paper) have been applied to siple illustrative probles and a slaughter pig construction. where n is the stage nuber, xn is the state (n = 0 indicates a goal state), fn is the solution function at stage n. Returns the solution to the proble associated with x n (f 0 (x 0) is per definition a known value), All odels and functions in this paper are specified and defined using the syntax of the specification language, VDM (see eg. Jones (1990) for an introduction) which in any aspects is equivalent to functional languages as SML.

2 2. RECURSIVE DYNAMIC PROGRAMMING An exaple ight illustrate the odel, the proble, the ethod and soe iplications of RDP: Consider a road ap represented as a directed graph as shown in fig. 1. Each node (or state) in the graph represents a crossroads and each (directed) edge represents a piece of one-way road. A decision prescribes what edge to follow fro a given node. Node A is defined as the start node. Node B has no successors; it is a goal node. Edges ight be interpreted as a pair of functions: a) A transforation function: t: State Decision State returning a new node/state and b) a gain function: g: State Decision Gain returning a gain (ie. the length of an edge). A policy is (in this presentation) defined as an assignent of a (valid) decision to every node in a sub-set of nodes in the graph and a coplete policy assigns a decision to every node (except goal nodes) in the graph. The optiization proble to be considered here is: What is the shortest path fro A to B? 2.1 The Data Model Based on these basic coponents a deterinistic data odel/data type of a syste is forulated as a finite apping fro states into a finite apping fro decisions into gains and (succeeding) states: DPModel = State Decision Gain State inv (dp) where the invariant ust restrict the odel to be finite and cycle free (see Kure (1995) for a definition). The odel will later be odified to be based on functions instead of finite appings. In addition to the data odel of the syste a representation of a policy is required: Policy = State Decision 2.2 The Proble In order to forulate and solve the proble, a set of basic functions is specified (see Jones (1990)): coplete_pol (dp: DPModel, p: Policy) r: boolean post r = (do p = do dp Y ~stdo p # p (st)do dp (st)) all_pol (dp: DPModel) r: Policy-set post r = {ppolicycoplete_pol (dp, p)} cobine: Gain Gain Gain all_pol returns all coplete policies applicable to a given instance, dp, of the odel. The function cob is not yet defined (in the exaple it is defined as a siple addition of the arguents), but is used in the definition (see Jones (1990) for an introduction to direct definitions in VDM) of the objective function: objfct: DPModel Policy State Gain objfct (dp, p, st) r let (g, n_st) = dp (st)(p (st)) in if n_stõdo p then g else cob (g, objfct (dp, p, n_st)) Given a instance of the odel (dp: DPModel) and a state (st: State), the proble is to iniize the objective function objfct with respect to all coplete policies (pall_pol (dp)): in { objfct (dp, p, st) pall_pol (dp) } In other words the goal is to find a solution function, solution, that satisfies the specification: solution (dp: DPModel, st: State) r: Gain pre stdo dp post r = in {objfct (dp,p,st) pall_pol (dp) } The state space is defined as the total set of states (except goal states) in the odel and a decision space as the total set of valid decisions in a given state: A N1 N2 N7 N3 N4 N5 N6 B state_space (dp) r do dp decision_space (dp, st) r do dp (st) 2.3 A solution function By introducing two new functions a solution function ay be derived (see Kure (1995) where a proof based on a atheatically interpretation of Bellan's Principle of Optiality is given): Fig. 1. A road ap. in_two: Y Y Y in_two (a, b) r if a < b then a else b

3 iniu: (X Y) X-set Y 2.5 Function based odel iniu (g, as) r let l_in (, l_as) = if l_as = {} then else let al_as in l_in (in_two (, g (a)), l_as{a}) and fst_aas in l_in (g (fst_a), as {fst_a}) pre as g {} solution: DPModel State Gain solution (dp, st) r let f (d) = let (g, n_st) = dp (st)(d) in if n_stõdo dp then g else cob (g, solution (dp, n_st)) in iniu (f, do dp (st)) pre stdo dp The basic data odel ay be odified to be based on functions instead of (finite) aps: NotInDoain = State boolean DecisionSpace = State Decision-set Consq = State Decision State Gain DPModelFunc = NotInDoain DecisionSpace Consq inv (dp) r where NotInDoain restricts the doain of the odel (or the proble space), DecisionSpace returns the decision space of a given state and Consq returns the consequences (ie. gain and succeeding state) of executing a decision. The function iniu iniizes the returns of the function g over as, a finite set of arguents to g. In solution iniu is utilized to iniize f over the finite set of valid decisions, do dp (st), where f returns the optial gain of executing a decision, d. The proble of finding the shortest path fro A to B in fig. 1 is solved recursively starting in the start state (A). 2.4 Meory functions As shown in the exaple, RDP consists of a recursively decoposition of a proble into and solving of subprobles, but the solution function, solution, does not prevent the sae proble to be solved ore than once (ie. in the exaple different paths ay lead to the sae node). This (possibly inefficient) resolving of the sae proble ay be eliinated by keeping a record of known solutions: If a solution is recorded, it is already known and ay be used directly. Otherwise the proble ust be solved and the result saved in the record for later use. This use of record keeping or use of a eory function (Brassard and Bratley, 1988) is an (or the) essential part of DP and ay result in great savings in coputing tie. The record of solutions ight be represented as a ap: Solutions = State Gain If knowledge of the policy leading to the solution is required, this optial policy ight be represented as an extension to the record of solutions: SolutionsOptPolicy = State Gain Decision All solution functions in this paper ight be extended with eory functions (see Kure (1995) for direct definitions). Based on this data odel the basic solution function ay be changed into: solution_func: DPModelFunc State Gain solution_func (dp, st) r let (not_in_do, decs, consq) = dp and f (d) = let (g, n_st) = consq (st, d) in if not_in_do (n_st) then g else cob (g, solution_func (dp, n_st)) in iniu (f, decs (st)) The flexibility of this odel and solution function will be exeplified in section 4. Selected parts of a SML-ipleentation (see Paulson (1991) for an introduction) is shown in the appendix. The function QRWBLQBGRP (of type: NotInDoain) is in this ipleentation a global function and not a part of the data odel. 3. GENERALIZED RDP The basic deterinistic odel, DPModel is easily generalized to include stochastic processes. A general suation function used in the definitions is defined as: su: (X Y) X-set Y su (f, as) r let l_su (s, l_as) = if l_as = {} then s else let al_as in l_su (s + f (a), l_as {a}) and fst_aas in l_su (f (fst_a), as {fst_a}) pre as g {}

4 3.1 The odel 3.2 The solution function Let rando events (or states) be represented by the data type ChanceState. The general odel ight then be defined as: Prob = { xü 0 < x 1 } GenState = State F ChanceState DecConsq = Decision Gain GenState ChanceConsq = (Prob Gain GenState)-set inv (c) r su (fst, c) = 1 GenConsq = GenState DecConsq F ChanceConsq inv (gc) r GDPModel = NotInDoain DecisionSpace GenConsq inv (dp) r The graph in fig. 2 is an exaple of an instance of this odel and it illustrates an iportant feature of the odel: Decision nodes and chance nodes ight appear in any order. A stochastic DP odel (see eg. Nehauser, 1966) is seen to be a special case of GDPModel, in which a State always (unless it is a goal state) is succeeded by ChanceStates and vice versa. In this special case the representation of chance states is superfluous and the odel ight be reforulated as: StochConsq = State Decision (Prob Gain State)-set SDPModel = NotInDoain DecisionSpace StochConsq inv (sdp) r A solution function for the general odel is defined as: solution_gen: GDPModel GenState Gain solution_gen (gdp, st) r let (not_e, decs, consq) = gdp in if st State then let f (d) = let (g, n_st) = consq (d) in if not_e (n_st) then g else cob (g, solution_gen (gdp, n_st)) in iniu (f, decs (st)) else let f ((prob, g, n_st)) = if not_e (n_st) then prob*g else prob* cob (g, solution_gen (gdp, n_st)) in su (f, consq) which is seen to be an extended version of solution_func: if the state st is a ChanceState the weighted gains are sued up; if not, the gains are (exactly as in solution_func) iniized. 4. HEURISTIC RULES AND BOUNDING Dynaic prograing is in itself a very powerful technique, but in soe situations heuristic reasoning ight (or even has to) be applied in order to reduce state spaces (and to ake incoputable probles coputable). The solution functions presented in section 2 and 3 ight be extended to include heuristic reasoning. 4.1 Heuristic rules Without significantly effecting the optial solution a heuristic rule for each state in the state space reduces the decision space and consequently the state space itself. These rules (and restrictions on decision spaces in general) are siply included in the odels as odifications of DecisionSpace. Decision node Change node Fig. 2. An instance of a General DP odel. Nodes represent values (and not variables as in Bayesian Networks). A road ap (continued). The exaple ight illustrate how restrictions on decision spaces ight reduce the state space. The rule/restriction applied to the exaple is as follows: "Always follow the road at the left if you have the option." Fig. 3 illustrates this situation; roads "at the right" have been erased fro the original graph (fig. 1) and only one path fro A to B reains. The state space has been reduced to 4 states (A, N1, N3 and N5) and the recursive solution function is "reduced" to a siple suation function; in_two is never called.

5 4 A 3 N1 N N7 N5 B N3 N6 N4 represented and solved) there is in general no easy way (except processing the reduced state space prior to the optiization) to avoid this redundant proble solving in the VI algorith. The eory usage due to the recursive nature of the algorith is the ain disadvantage of RDP copared to VI. However, the eory coplexity is linear in the depth of the proble or the nuber of stages and will therefore rarely cause any significant probles. Fig. 3. The graph of fig. 1 partitioned into stages and applied the rule: "always follow the road at the left if you have the option." Slaughter pig arketing. Another exaple ight illustrate the potential agnitude of the state space reductions: A farer has a barn which is partitioned into 3 sections; each section containing fro 0 to 5 pigs (of sae age). Sections has to be eptied after no ore than 15 weeks (this is actually a decision space restriction) and sections are assued equal. Pigs ight be arketed at any tie. The proble is: when is it tie to arket individual pigs and when is it tie to epty a section and insert a new group of 5 piglets? The size of the state space of a section is 15*6 = 90 and the size of the state space of the barn pr. stage is: 90*89* *1* *1*1 = 712,980. A set of restrictions /heuristic rules ight describe the fact that any of these states (like eg. "no pigs in any section") under noral conditions are very rare: - Max 1 insertion pr. week (labor restrictions). - No deliveries before week 13 (fro experience/ growth odels). - One pig is delivered pr. section pr. week fro the age of 13 weeks (fro experience). Given these restrictions the total nuber of states pr. stage is 1,690, but after optiization (40 weeks) the actual axiu nuber of states per stage is 462. Value Iteration. In VI or backward ultistage proble solving (Nehauser, 1966) the proble space is partitioned into stages. Each stage contains probles that ight be solved independently and in any order. The stages are solved in an order which guarantees that all sub-probles (ie. probles associated with succeeding states) already have been solved and recorded (probles associated with goal states is initially known). Fig.3 illustrates one valid partitioning of the graph of fig. 1; probles in stage 1 are solved first, followed by probles in stage 2, etc. Fig. 3 also illustrates one of the ain disadvantages of VI: Redundant proble solving. Probles (like those associated with node N2, N4, N6 and N7) which are not on a path leading fro the start node will be solved, but they will never be reused. In contrast to RDP (where only probles on paths leading fro the start node are 4.2 Bounding Heuristic functions (which returns an under (over) estiate of the solution to a iniization (axiization) proble, see eg. Rich and Knight, 1991) ight without effecting the solution to the proble reduce the proble space. The proble space is reduced by bounding subgraphs which with certainty will not lead to a better possible global solution than the current best known possible solution. Kure (1995) defines a solution function for the basic odel (RDPModel) which utilizes heuristic functions. The function is a special case of an algorith known in AI as A*: The search strategy is a depth first search instead of an "intelligent" ixture of breadth first and depth first search as in A*. A siilar solution function ight be defined for the general DP odel and based on that function an A* algorith for stochastic probles ight be derived. 5. CONCLUSION Several aspects of DP have been exained and discussed in this paper. Soe of these need special considerations. The basic solution function, solution described in section 2 is seen to siply be a reforulation (with cob substituted by the infix operator '+' and the stage nuber interpreted as a state variable) of (1). Despite this very close and obvious relationship, the recursive approach towards DP presented in this paper, ight see new to ost people dealing with DP and it appears difficult to find the approach described in literature (Kure, 1995). The stepwise developent of solution functions presented in this paper has shown that the use of eory functions is a distinct and excludable part of DP. In certain situations it ight even appear ore (tie- and/or space- ) efficient to exclude a eory function fro the solution function than to include it. The recursive approach iplies easy assessent of heuristic rules (and of decision space restricting rules in general). This feature ight appear very beneficial in practical applications: Any appropriate rule is easily applied to the odel and only states which according to

6 the rules are on a path fro the start state will be represented and solved. This easy application of heuristic rules is fro an applicational point of view the ost interesting feature. Fro a theoretical point of view the flexibility and generality of the odels and solution functions is of greater interest and as indicated the approach ight lead to a stochastic A* algorith and/or algoriths for solving probles that traditionally are represented as Bayesian Networks. REFERENCES Bellan, R. (1957): Dynaic Prograing. Princeton University Press, Princeton, New Jersey. Brassard, G. and P. Bratley (1988): Algoriths. Theory and Practice. Prentice-Hall International, Inc. Jones, C. B. (1990): Systeatic Software Developent using VDM. Prentice Hall International (UK) Ltd. Kure, H. (1995): Recursive Dynaic Prograing. Specified and defined using VDM. Dina Notat No. 29. Dina, The Royal Veterinary and Agricultural University, Copenhagen. Nehauser, G. L. (1966): Dynaic Prograing. John Wiley and Sons, Inc., NY. Paulson, L. C. (1991): ML for the Working Prograer. Cabridge University Press, Cabridge Shenoy, P. P. (1992): Valuation-based systes for Bayesian decision analysis, Operations Research 40, p Winston, P. H. (1992): Artificial Intelligence. Addison- Wesley Publishing Copany, NY. APPENDIX: A SML-IMPLEMENTATION Fragents of progra: W\SH6WDWH 6WDJH6WDWH9DU W\SH'30RGHO 6WDWH!'HFLVLRQOLVW 'HFLVLRQ!*DLQ6WDWH IXQ PLQLPXPI>@ UDLVH(UURU _ PLQLPXPIIVWBGGBVHW OHW IXQ OBPLQP>@ P _ OBPLQPGOBGBVHW OBPLQPLQBRIBWZRP IGOBGBVHW LQ OBPLQIIVWBGGBVHW HQG IXQVROXWLRQGSPVW OHW IXQIG OHW YDOJQBVW VQGGSPVWG LQ LI QBVWQRWBLQBGRPGSP WKHQ J HOVH FRPEJ VROXWLRQGSPQBVW HQG LQ PLQLPXPIIVWGSPVW HQG Corresponding fragents of output: W\SH6WDWH 6WDJH6WDWH9DU W\SH'30RGHO 6WDWH!'HFLVLRQOLVW 'HFLVLRQ!*DLQ6WDWH YDOPLQLPXP IQD!*DLQD OLVW!*DLQ YDOVROXWLRQ IQ LQWD!EOLVWE!UHDO LQWDLQWD!UHDO

Preference-based Search and Multi-criteria Optimization

Preference-based Search and Multi-criteria Optimization Fro: AAAI-02 Proceedings. Copyright 2002, AAAI (www.aaai.org). All rights reserved. Preference-based Search and Multi-criteria Optiization Ulrich Junker ILOG 1681, route des Dolines F-06560 Valbonne ujunker@ilog.fr

More information

Method of supply chain optimization in E-commerce

Method of supply chain optimization in E-commerce MPRA Munich Personal RePEc Archive Method of supply chain optiization in E-coerce Petr Suchánek and Robert Bucki Silesian University - School of Business Adinistration, The College of Inforatics and Manageent

More information

arxiv:0805.1434v1 [math.pr] 9 May 2008

arxiv:0805.1434v1 [math.pr] 9 May 2008 Degree-distribution stability of scale-free networs Zhenting Hou, Xiangxing Kong, Dinghua Shi,2, and Guanrong Chen 3 School of Matheatics, Central South University, Changsha 40083, China 2 Departent of

More information

Use of extrapolation to forecast the working capital in the mechanical engineering companies

Use of extrapolation to forecast the working capital in the mechanical engineering companies ECONTECHMOD. AN INTERNATIONAL QUARTERLY JOURNAL 2014. Vol. 1. No. 1. 23 28 Use of extrapolation to forecast the working capital in the echanical engineering copanies A. Cherep, Y. Shvets Departent of finance

More information

Machine Learning Applications in Grid Computing

Machine Learning Applications in Grid Computing Machine Learning Applications in Grid Coputing George Cybenko, Guofei Jiang and Daniel Bilar Thayer School of Engineering Dartouth College Hanover, NH 03755, USA gvc@dartouth.edu, guofei.jiang@dartouth.edu

More information

2. FINDING A SOLUTION

2. FINDING A SOLUTION The 7 th Balan Conference on Operational Research BACOR 5 Constanta, May 5, Roania OPTIMAL TIME AND SPACE COMPLEXITY ALGORITHM FOR CONSTRUCTION OF ALL BINARY TREES FROM PRE-ORDER AND POST-ORDER TRAVERSALS

More information

Cooperative Caching for Adaptive Bit Rate Streaming in Content Delivery Networks

Cooperative Caching for Adaptive Bit Rate Streaming in Content Delivery Networks Cooperative Caching for Adaptive Bit Rate Streaing in Content Delivery Networs Phuong Luu Vo Departent of Coputer Science and Engineering, International University - VNUHCM, Vietna vtlphuong@hciu.edu.vn

More information

REQUIREMENTS FOR A COMPUTER SCIENCE CURRICULUM EMPHASIZING INFORMATION TECHNOLOGY SUBJECT AREA: CURRICULUM ISSUES

REQUIREMENTS FOR A COMPUTER SCIENCE CURRICULUM EMPHASIZING INFORMATION TECHNOLOGY SUBJECT AREA: CURRICULUM ISSUES REQUIREMENTS FOR A COMPUTER SCIENCE CURRICULUM EMPHASIZING INFORMATION TECHNOLOGY SUBJECT AREA: CURRICULUM ISSUES Charles Reynolds Christopher Fox reynolds @cs.ju.edu fox@cs.ju.edu Departent of Coputer

More information

A framework for performance monitoring, load balancing, adaptive timeouts and quality of service in digital libraries

A framework for performance monitoring, load balancing, adaptive timeouts and quality of service in digital libraries Int J Digit Libr (2000) 3: 9 35 INTERNATIONAL JOURNAL ON Digital Libraries Springer-Verlag 2000 A fraework for perforance onitoring, load balancing, adaptive tieouts and quality of service in digital libraries

More information

Energy Efficient VM Scheduling for Cloud Data Centers: Exact allocation and migration algorithms

Energy Efficient VM Scheduling for Cloud Data Centers: Exact allocation and migration algorithms Energy Efficient VM Scheduling for Cloud Data Centers: Exact allocation and igration algoriths Chaia Ghribi, Makhlouf Hadji and Djaal Zeghlache Institut Mines-Téléco, Téléco SudParis UMR CNRS 5157 9, Rue

More information

The Application of Bandwidth Optimization Technique in SLA Negotiation Process

The Application of Bandwidth Optimization Technique in SLA Negotiation Process The Application of Bandwidth Optiization Technique in SLA egotiation Process Srecko Krile University of Dubrovnik Departent of Electrical Engineering and Coputing Cira Carica 4, 20000 Dubrovnik, Croatia

More information

Optimal Resource-Constraint Project Scheduling with Overlapping Modes

Optimal Resource-Constraint Project Scheduling with Overlapping Modes Optial Resource-Constraint Proect Scheduling with Overlapping Modes François Berthaut Lucas Grèze Robert Pellerin Nathalie Perrier Adnène Hai February 20 CIRRELT-20-09 Bureaux de Montréal : Bureaux de

More information

Markovian inventory policy with application to the paper industry

Markovian inventory policy with application to the paper industry Coputers and Cheical Engineering 26 (2002) 1399 1413 www.elsevier.co/locate/copcheeng Markovian inventory policy with application to the paper industry K. Karen Yin a, *, Hu Liu a,1, Neil E. Johnson b,2

More information

Reliability Constrained Packet-sizing for Linear Multi-hop Wireless Networks

Reliability Constrained Packet-sizing for Linear Multi-hop Wireless Networks Reliability Constrained acket-sizing for inear Multi-hop Wireless Networks Ning Wen, and Randall A. Berry Departent of Electrical Engineering and Coputer Science Northwestern University, Evanston, Illinois

More information

Halloween Costume Ideas for the Wii Game

Halloween Costume Ideas for the Wii Game Algorithica 2001) 30: 101 139 DOI: 101007/s00453-001-0003-0 Algorithica 2001 Springer-Verlag New York Inc Optial Search and One-Way Trading Online Algoriths R El-Yaniv, 1 A Fiat, 2 R M Karp, 3 and G Turpin

More information

Dynamic Placement for Clustered Web Applications

Dynamic Placement for Clustered Web Applications Dynaic laceent for Clustered Web Applications A. Karve, T. Kibrel, G. acifici, M. Spreitzer, M. Steinder, M. Sviridenko, and A. Tantawi IBM T.J. Watson Research Center {karve,kibrel,giovanni,spreitz,steinder,sviri,tantawi}@us.ib.co

More information

INTEGRATED ENVIRONMENT FOR STORING AND HANDLING INFORMATION IN TASKS OF INDUCTIVE MODELLING FOR BUSINESS INTELLIGENCE SYSTEMS

INTEGRATED ENVIRONMENT FOR STORING AND HANDLING INFORMATION IN TASKS OF INDUCTIVE MODELLING FOR BUSINESS INTELLIGENCE SYSTEMS Artificial Intelligence Methods and Techniques for Business and Engineering Applications 210 INTEGRATED ENVIRONMENT FOR STORING AND HANDLING INFORMATION IN TASKS OF INDUCTIVE MODELLING FOR BUSINESS INTELLIGENCE

More information

The Research of Measuring Approach and Energy Efficiency for Hadoop Periodic Jobs

The Research of Measuring Approach and Energy Efficiency for Hadoop Periodic Jobs Send Orders for Reprints to reprints@benthascience.ae 206 The Open Fuels & Energy Science Journal, 2015, 8, 206-210 Open Access The Research of Measuring Approach and Energy Efficiency for Hadoop Periodic

More information

Extended-Horizon Analysis of Pressure Sensitivities for Leak Detection in Water Distribution Networks: Application to the Barcelona Network

Extended-Horizon Analysis of Pressure Sensitivities for Leak Detection in Water Distribution Networks: Application to the Barcelona Network 2013 European Control Conference (ECC) July 17-19, 2013, Zürich, Switzerland. Extended-Horizon Analysis of Pressure Sensitivities for Leak Detection in Water Distribution Networks: Application to the Barcelona

More information

CRM FACTORS ASSESSMENT USING ANALYTIC HIERARCHY PROCESS

CRM FACTORS ASSESSMENT USING ANALYTIC HIERARCHY PROCESS 641 CRM FACTORS ASSESSMENT USING ANALYTIC HIERARCHY PROCESS Marketa Zajarosova 1* *Ph.D. VSB - Technical University of Ostrava, THE CZECH REPUBLIC arketa.zajarosova@vsb.cz Abstract Custoer relationship

More information

Data Set Generation for Rectangular Placement Problems

Data Set Generation for Rectangular Placement Problems Data Set Generation for Rectangular Placeent Probles Christine L. Valenzuela (Muford) Pearl Y. Wang School of Coputer Science & Inforatics Departent of Coputer Science MS 4A5 Cardiff University George

More information

SOME APPLICATIONS OF FORECASTING Prof. Thomas B. Fomby Department of Economics Southern Methodist University May 2008

SOME APPLICATIONS OF FORECASTING Prof. Thomas B. Fomby Department of Economics Southern Methodist University May 2008 SOME APPLCATONS OF FORECASTNG Prof. Thoas B. Foby Departent of Econoics Southern Methodist University May 8 To deonstrate the usefulness of forecasting ethods this note discusses four applications of forecasting

More information

Reconnect 04 Solving Integer Programs with Branch and Bound (and Branch and Cut)

Reconnect 04 Solving Integer Programs with Branch and Bound (and Branch and Cut) Sandia is a ultiprogra laboratory operated by Sandia Corporation, a Lockheed Martin Copany, Reconnect 04 Solving Integer Progras with Branch and Bound (and Branch and Cut) Cynthia Phillips (Sandia National

More information

Applying Multiple Neural Networks on Large Scale Data

Applying Multiple Neural Networks on Large Scale Data 0 International Conference on Inforation and Electronics Engineering IPCSIT vol6 (0) (0) IACSIT Press, Singapore Applying Multiple Neural Networks on Large Scale Data Kritsanatt Boonkiatpong and Sukree

More information

CLOSED-LOOP SUPPLY CHAIN NETWORK OPTIMIZATION FOR HONG KONG CARTRIDGE RECYCLING INDUSTRY

CLOSED-LOOP SUPPLY CHAIN NETWORK OPTIMIZATION FOR HONG KONG CARTRIDGE RECYCLING INDUSTRY CLOSED-LOOP SUPPLY CHAIN NETWORK OPTIMIZATION FOR HONG KONG CARTRIDGE RECYCLING INDUSTRY Y. T. Chen Departent of Industrial and Systes Engineering Hong Kong Polytechnic University, Hong Kong yongtong.chen@connect.polyu.hk

More information

Design of Model Reference Self Tuning Mechanism for PID like Fuzzy Controller

Design of Model Reference Self Tuning Mechanism for PID like Fuzzy Controller Research Article International Journal of Current Engineering and Technology EISSN 77 46, PISSN 347 56 4 INPRESSCO, All Rights Reserved Available at http://inpressco.co/category/ijcet Design of Model Reference

More information

PERFORMANCE METRICS FOR THE IT SERVICES PORTFOLIO

PERFORMANCE METRICS FOR THE IT SERVICES PORTFOLIO Bulletin of the Transilvania University of Braşov Series I: Engineering Sciences Vol. 4 (53) No. - 0 PERFORMANCE METRICS FOR THE IT SERVICES PORTFOLIO V. CAZACU I. SZÉKELY F. SANDU 3 T. BĂLAN Abstract:

More information

Searching strategy for multi-target discovery in wireless networks

Searching strategy for multi-target discovery in wireless networks Searching strategy for ulti-target discovery in wireless networks Zhao Cheng, Wendi B. Heinzelan Departent of Electrical and Coputer Engineering University of Rochester Rochester, NY 467 (585) 75-{878,

More information

AN ALGORITHM FOR REDUCING THE DIMENSION AND SIZE OF A SAMPLE FOR DATA EXPLORATION PROCEDURES

AN ALGORITHM FOR REDUCING THE DIMENSION AND SIZE OF A SAMPLE FOR DATA EXPLORATION PROCEDURES Int. J. Appl. Math. Coput. Sci., 2014, Vol. 24, No. 1, 133 149 DOI: 10.2478/acs-2014-0011 AN ALGORITHM FOR REDUCING THE DIMENSION AND SIZE OF A SAMPLE FOR DATA EXPLORATION PROCEDURES PIOTR KULCZYCKI,,

More information

This paper studies a rental firm that offers reusable products to price- and quality-of-service sensitive

This paper studies a rental firm that offers reusable products to price- and quality-of-service sensitive MANUFACTURING & SERVICE OPERATIONS MANAGEMENT Vol., No. 3, Suer 28, pp. 429 447 issn 523-464 eissn 526-5498 8 3 429 infors doi.287/so.7.8 28 INFORMS INFORMS holds copyright to this article and distributed

More information

PREDICTION OF POSSIBLE CONGESTIONS IN SLA CREATION PROCESS

PREDICTION OF POSSIBLE CONGESTIONS IN SLA CREATION PROCESS PREDICTIO OF POSSIBLE COGESTIOS I SLA CREATIO PROCESS Srećko Krile University of Dubrovnik Departent of Electrical Engineering and Coputing Cira Carica 4, 20000 Dubrovnik, Croatia Tel +385 20 445-739,

More information

Partitioned Elias-Fano Indexes

Partitioned Elias-Fano Indexes Partitioned Elias-ano Indexes Giuseppe Ottaviano ISTI-CNR, Pisa giuseppe.ottaviano@isti.cnr.it Rossano Venturini Dept. of Coputer Science, University of Pisa rossano@di.unipi.it ABSTRACT The Elias-ano

More information

Airline Yield Management with Overbooking, Cancellations, and No-Shows JANAKIRAM SUBRAMANIAN

Airline Yield Management with Overbooking, Cancellations, and No-Shows JANAKIRAM SUBRAMANIAN Airline Yield Manageent with Overbooking, Cancellations, and No-Shows JANAKIRAM SUBRAMANIAN Integral Developent Corporation, 301 University Avenue, Suite 200, Palo Alto, California 94301 SHALER STIDHAM

More information

Energy Proportionality for Disk Storage Using Replication

Energy Proportionality for Disk Storage Using Replication Energy Proportionality for Disk Storage Using Replication Jinoh Ki and Doron Rote Lawrence Berkeley National Laboratory University of California, Berkeley, CA 94720 {jinohki,d rote}@lbl.gov Abstract Energy

More information

Load Control for Overloaded MPLS/DiffServ Networks during SLA Negotiation

Load Control for Overloaded MPLS/DiffServ Networks during SLA Negotiation Int J Counications, Network and Syste Sciences, 29, 5, 422-432 doi:14236/ijcns292547 Published Online August 29 (http://wwwscirporg/journal/ijcns/) Load Control for Overloaded MPLS/DiffServ Networks during

More information

An Optimal Task Allocation Model for System Cost Analysis in Heterogeneous Distributed Computing Systems: A Heuristic Approach

An Optimal Task Allocation Model for System Cost Analysis in Heterogeneous Distributed Computing Systems: A Heuristic Approach An Optial Tas Allocation Model for Syste Cost Analysis in Heterogeneous Distributed Coputing Systes: A Heuristic Approach P. K. Yadav Central Building Research Institute, Rooree- 247667, Uttarahand (INDIA)

More information

A CHAOS MODEL OF SUBHARMONIC OSCILLATIONS IN CURRENT MODE PWM BOOST CONVERTERS

A CHAOS MODEL OF SUBHARMONIC OSCILLATIONS IN CURRENT MODE PWM BOOST CONVERTERS A CHAOS MODEL OF SUBHARMONIC OSCILLATIONS IN CURRENT MODE PWM BOOST CONVERTERS Isaac Zafrany and Sa BenYaakov Departent of Electrical and Coputer Engineering BenGurion University of the Negev P. O. Box

More information

ASIC Design Project Management Supported by Multi Agent Simulation

ASIC Design Project Management Supported by Multi Agent Simulation ASIC Design Project Manageent Supported by Multi Agent Siulation Jana Blaschke, Christian Sebeke, Wolfgang Rosenstiel Abstract The coplexity of Application Specific Integrated Circuits (ASICs) is continuously

More information

Lecture L9 - Linear Impulse and Momentum. Collisions

Lecture L9 - Linear Impulse and Momentum. Collisions J. Peraire, S. Widnall 16.07 Dynaics Fall 009 Version.0 Lecture L9 - Linear Ipulse and Moentu. Collisions In this lecture, we will consider the equations that result fro integrating Newton s second law,

More information

Information Processing Letters

Information Processing Letters Inforation Processing Letters 111 2011) 178 183 Contents lists available at ScienceDirect Inforation Processing Letters www.elsevier.co/locate/ipl Offline file assignents for online load balancing Paul

More information

Software Quality Characteristics Tested For Mobile Application Development

Software Quality Characteristics Tested For Mobile Application Development Thesis no: MGSE-2015-02 Software Quality Characteristics Tested For Mobile Application Developent Literature Review and Epirical Survey WALEED ANWAR Faculty of Coputing Blekinge Institute of Technology

More information

ON SELF-ROUTING IN CLOS CONNECTION NETWORKS. BARRY G. DOUGLASS Electrical Engineering Department Texas A&M University College Station, TX 77843-3128

ON SELF-ROUTING IN CLOS CONNECTION NETWORKS. BARRY G. DOUGLASS Electrical Engineering Department Texas A&M University College Station, TX 77843-3128 ON SELF-ROUTING IN CLOS CONNECTION NETWORKS BARRY G. DOUGLASS Electrical Engineering Departent Texas A&M University College Station, TX 778-8 A. YAVUZ ORUÇ Electrical Engineering Departent and Institute

More information

Evaluating Inventory Management Performance: a Preliminary Desk-Simulation Study Based on IOC Model

Evaluating Inventory Management Performance: a Preliminary Desk-Simulation Study Based on IOC Model Evaluating Inventory Manageent Perforance: a Preliinary Desk-Siulation Study Based on IOC Model Flora Bernardel, Roberto Panizzolo, and Davide Martinazzo Abstract The focus of this study is on preliinary

More information

A Scalable Application Placement Controller for Enterprise Data Centers

A Scalable Application Placement Controller for Enterprise Data Centers W WWW 7 / Track: Perforance and Scalability A Scalable Application Placeent Controller for Enterprise Data Centers Chunqiang Tang, Malgorzata Steinder, Michael Spreitzer, and Giovanni Pacifici IBM T.J.

More information

Factored Models for Probabilistic Modal Logic

Factored Models for Probabilistic Modal Logic Proceedings of the Twenty-Third AAAI Conference on Artificial Intelligence (2008 Factored Models for Probabilistic Modal Logic Afsaneh Shirazi and Eyal Air Coputer Science Departent, University of Illinois

More information

Media Adaptation Framework in Biofeedback System for Stroke Patient Rehabilitation

Media Adaptation Framework in Biofeedback System for Stroke Patient Rehabilitation Media Adaptation Fraework in Biofeedback Syste for Stroke Patient Rehabilitation Yinpeng Chen, Weiwei Xu, Hari Sundara, Thanassis Rikakis, Sheng-Min Liu Arts, Media and Engineering Progra Arizona State

More information

Real Time Target Tracking with Binary Sensor Networks and Parallel Computing

Real Time Target Tracking with Binary Sensor Networks and Parallel Computing Real Tie Target Tracking with Binary Sensor Networks and Parallel Coputing Hong Lin, John Rushing, Sara J. Graves, Steve Tanner, and Evans Criswell Abstract A parallel real tie data fusion and target tracking

More information

Quality evaluation of the model-based forecasts of implied volatility index

Quality evaluation of the model-based forecasts of implied volatility index Quality evaluation of the odel-based forecasts of iplied volatility index Katarzyna Łęczycka 1 Abstract Influence of volatility on financial arket forecasts is very high. It appears as a specific factor

More information

How To Get A Loan From A Bank For Free

How To Get A Loan From A Bank For Free Finance 111 Finance We have to work with oney every day. While balancing your checkbook or calculating your onthly expenditures on espresso requires only arithetic, when we start saving, planning for retireent,

More information

Resource Allocation in Wireless Networks with Multiple Relays

Resource Allocation in Wireless Networks with Multiple Relays Resource Allocation in Wireless Networks with Multiple Relays Kağan Bakanoğlu, Stefano Toasin, Elza Erkip Departent of Electrical and Coputer Engineering, Polytechnic Institute of NYU, Brooklyn, NY, 0

More information

International Journal of Management & Information Systems First Quarter 2012 Volume 16, Number 1

International Journal of Management & Information Systems First Quarter 2012 Volume 16, Number 1 International Journal of Manageent & Inforation Systes First Quarter 2012 Volue 16, Nuber 1 Proposal And Effectiveness Of A Highly Copelling Direct Mail Method - Establishent And Deployent Of PMOS-DM Hisatoshi

More information

Calculating the Return on Investment (ROI) for DMSMS Management. The Problem with Cost Avoidance

Calculating the Return on Investment (ROI) for DMSMS Management. The Problem with Cost Avoidance Calculating the Return on nvestent () for DMSMS Manageent Peter Sandborn CALCE, Departent of Mechanical Engineering (31) 45-3167 sandborn@calce.ud.edu www.ene.ud.edu/escml/obsolescence.ht October 28, 21

More information

Markov Models and Their Use for Calculations of Important Traffic Parameters of Contact Center

Markov Models and Their Use for Calculations of Important Traffic Parameters of Contact Center Markov Models and Their Use for Calculations of Iportant Traffic Paraeters of Contact Center ERIK CHROMY, JAN DIEZKA, MATEJ KAVACKY Institute of Telecounications Slovak University of Technology Bratislava

More information

Models and Algorithms for Stochastic Online Scheduling 1

Models and Algorithms for Stochastic Online Scheduling 1 Models and Algoriths for Stochastic Online Scheduling 1 Nicole Megow Technische Universität Berlin, Institut für Matheatik, Strasse des 17. Juni 136, 10623 Berlin, Gerany. eail: negow@ath.tu-berlin.de

More information

The Fundamentals of Modal Testing

The Fundamentals of Modal Testing The Fundaentals of Modal Testing Application Note 243-3 Η(ω) = Σ n r=1 φ φ i j / 2 2 2 2 ( ω n - ω ) + (2ξωωn) Preface Modal analysis is defined as the study of the dynaic characteristics of a echanical

More information

An Improved Decision-making Model of Human Resource Outsourcing Based on Internet Collaboration

An Improved Decision-making Model of Human Resource Outsourcing Based on Internet Collaboration International Journal of Hybrid Inforation Technology, pp. 339-350 http://dx.doi.org/10.14257/hit.2016.9.4.28 An Iproved Decision-aking Model of Huan Resource Outsourcing Based on Internet Collaboration

More information

The individual neurons are complicated. They have a myriad of parts, subsystems and control mechanisms. They convey information via a host of

The individual neurons are complicated. They have a myriad of parts, subsystems and control mechanisms. They convey information via a host of CHAPTER 4 ARTIFICIAL NEURAL NETWORKS 4. INTRODUCTION Artificial Neural Networks (ANNs) are relatively crude electronic odels based on the neural structure of the brain. The brain learns fro experience.

More information

Online Bagging and Boosting

Online Bagging and Boosting Abstract Bagging and boosting are two of the ost well-known enseble learning ethods due to their theoretical perforance guarantees and strong experiental results. However, these algoriths have been used

More information

Considerations on Distributed Load Balancing for Fully Heterogeneous Machines: Two Particular Cases

Considerations on Distributed Load Balancing for Fully Heterogeneous Machines: Two Particular Cases Considerations on Distributed Load Balancing for Fully Heterogeneous Machines: Two Particular Cases Nathanaël Cheriere Departent of Coputer Science ENS Rennes Rennes, France nathanael.cheriere@ens-rennes.fr

More information

Exploiting Hardware Heterogeneity within the Same Instance Type of Amazon EC2

Exploiting Hardware Heterogeneity within the Same Instance Type of Amazon EC2 Exploiting Hardware Heterogeneity within the Sae Instance Type of Aazon EC2 Zhonghong Ou, Hao Zhuang, Jukka K. Nurinen, Antti Ylä-Jääski, Pan Hui Aalto University, Finland; Deutsch Teleko Laboratories,

More information

Position Auctions and Non-uniform Conversion Rates

Position Auctions and Non-uniform Conversion Rates Position Auctions and Non-unifor Conversion Rates Liad Blurosen Microsoft Research Mountain View, CA 944 liadbl@icrosoft.co Jason D. Hartline Shuzhen Nong Electrical Engineering and Microsoft AdCenter

More information

Research Article Performance Evaluation of Human Resource Outsourcing in Food Processing Enterprises

Research Article Performance Evaluation of Human Resource Outsourcing in Food Processing Enterprises Advance Journal of Food Science and Technology 9(2): 964-969, 205 ISSN: 2042-4868; e-issn: 2042-4876 205 Maxwell Scientific Publication Corp. Subitted: August 0, 205 Accepted: Septeber 3, 205 Published:

More information

An Integrated Approach for Monitoring Service Level Parameters of Software-Defined Networking

An Integrated Approach for Monitoring Service Level Parameters of Software-Defined Networking International Journal of Future Generation Counication and Networking Vol. 8, No. 6 (15), pp. 197-4 http://d.doi.org/1.1457/ijfgcn.15.8.6.19 An Integrated Approach for Monitoring Service Level Paraeters

More information

Pricing Asian Options using Monte Carlo Methods

Pricing Asian Options using Monte Carlo Methods U.U.D.M. Project Report 9:7 Pricing Asian Options using Monte Carlo Methods Hongbin Zhang Exaensarbete i ateatik, 3 hp Handledare och exainator: Johan Tysk Juni 9 Departent of Matheatics Uppsala University

More information

A Fast Algorithm for Online Placement and Reorganization of Replicated Data

A Fast Algorithm for Online Placement and Reorganization of Replicated Data A Fast Algorith for Online Placeent and Reorganization of Replicated Data R. J. Honicky Storage Systes Research Center University of California, Santa Cruz Ethan L. Miller Storage Systes Research Center

More information

IEEE TRANSACTIONS ON WIRELESS COMMUNICATIONS, ACCEPTED FOR PUBLICATION 1. Secure Wireless Multicast for Delay-Sensitive Data via Network Coding

IEEE TRANSACTIONS ON WIRELESS COMMUNICATIONS, ACCEPTED FOR PUBLICATION 1. Secure Wireless Multicast for Delay-Sensitive Data via Network Coding IEEE TRANSACTIONS ON WIRELESS COMMUNICATIONS, ACCEPTED FOR PUBLICATION 1 Secure Wireless Multicast for Delay-Sensitive Data via Network Coding Tuan T. Tran, Meber, IEEE, Hongxiang Li, Senior Meber, IEEE,

More information

6. Time (or Space) Series Analysis

6. Time (or Space) Series Analysis ATM 55 otes: Tie Series Analysis - Section 6a Page 8 6. Tie (or Space) Series Analysis In this chapter we will consider soe coon aspects of tie series analysis including autocorrelation, statistical prediction,

More information

Impact of Processing Costs on Service Chain Placement in Network Functions Virtualization

Impact of Processing Costs on Service Chain Placement in Network Functions Virtualization Ipact of Processing Costs on Service Chain Placeent in Network Functions Virtualization Marco Savi, Massio Tornatore, Giacoo Verticale Dipartiento di Elettronica, Inforazione e Bioingegneria, Politecnico

More information

Evaluating the Effectiveness of Task Overlapping as a Risk Response Strategy in Engineering Projects

Evaluating the Effectiveness of Task Overlapping as a Risk Response Strategy in Engineering Projects Evaluating the Effectiveness of Task Overlapping as a Risk Response Strategy in Engineering Projects Lucas Grèze Robert Pellerin Nathalie Perrier Patrice Leclaire February 2011 CIRRELT-2011-11 Bureaux

More information

Performance Evaluation of Machine Learning Techniques using Software Cost Drivers

Performance Evaluation of Machine Learning Techniques using Software Cost Drivers Perforance Evaluation of Machine Learning Techniques using Software Cost Drivers Manas Gaur Departent of Coputer Engineering, Delhi Technological University Delhi, India ABSTRACT There is a treendous rise

More information

A Multi-Core Pipelined Architecture for Parallel Computing

A Multi-Core Pipelined Architecture for Parallel Computing Parallel & Cloud Coputing PCC Vol, Iss A Multi-Core Pipelined Architecture for Parallel Coputing Duoduo Liao *1, Sion Y Berkovich Coputing for Geospatial Research Institute Departent of Coputer Science,

More information

Generating Certification Authority Authenticated Public Keys in Ad Hoc Networks

Generating Certification Authority Authenticated Public Keys in Ad Hoc Networks SECURITY AND COMMUNICATION NETWORKS Published online in Wiley InterScience (www.interscience.wiley.co). Generating Certification Authority Authenticated Public Keys in Ad Hoc Networks G. Kounga 1, C. J.

More information

Managing Complex Network Operation with Predictive Analytics

Managing Complex Network Operation with Predictive Analytics Managing Coplex Network Operation with Predictive Analytics Zhenyu Huang, Pak Chung Wong, Patrick Mackey, Yousu Chen, Jian Ma, Kevin Schneider, and Frank L. Greitzer Pacific Northwest National Laboratory

More information

Audio Engineering Society. Convention Paper. Presented at the 119th Convention 2005 October 7 10 New York, New York USA

Audio Engineering Society. Convention Paper. Presented at the 119th Convention 2005 October 7 10 New York, New York USA Audio Engineering Society Convention Paper Presented at the 119th Convention 2005 October 7 10 New York, New York USA This convention paper has been reproduced fro the authors advance anuscript, without

More information

Fuzzy Sets in HR Management

Fuzzy Sets in HR Management Acta Polytechnica Hungarica Vol. 8, No. 3, 2011 Fuzzy Sets in HR Manageent Blanka Zeková AXIOM SW, s.r.o., 760 01 Zlín, Czech Republic blanka.zekova@sezna.cz Jana Talašová Faculty of Science, Palacký Univerzity,

More information

Factor Model. Arbitrage Pricing Theory. Systematic Versus Non-Systematic Risk. Intuitive Argument

Factor Model. Arbitrage Pricing Theory. Systematic Versus Non-Systematic Risk. Intuitive Argument Ross [1],[]) presents the aritrage pricing theory. The idea is that the structure of asset returns leads naturally to a odel of risk preia, for otherwise there would exist an opportunity for aritrage profit.

More information

An Approach to Combating Free-riding in Peer-to-Peer Networks

An Approach to Combating Free-riding in Peer-to-Peer Networks An Approach to Cobating Free-riding in Peer-to-Peer Networks Victor Ponce, Jie Wu, and Xiuqi Li Departent of Coputer Science and Engineering Florida Atlantic University Boca Raton, FL 33431 April 7, 2008

More information

Stochastic Online Scheduling on Parallel Machines

Stochastic Online Scheduling on Parallel Machines Stochastic Online Scheduling on Parallel Machines Nicole Megow 1, Marc Uetz 2, and Tark Vredeveld 3 1 Technische Universit at Berlin, Institut f ur Matheatik, Strasse des 17. Juni 136, 10623 Berlin, Gerany

More information

A Study on the Chain Restaurants Dynamic Negotiation Games of the Optimization of Joint Procurement of Food Materials

A Study on the Chain Restaurants Dynamic Negotiation Games of the Optimization of Joint Procurement of Food Materials International Journal of Coputer Science & Inforation Technology (IJCSIT) Vol 6, No 1, February 2014 A Study on the Chain estaurants Dynaic Negotiation aes of the Optiization of Joint Procureent of Food

More information

Image restoration for a rectangular poor-pixels detector

Image restoration for a rectangular poor-pixels detector Iage restoration for a rectangular poor-pixels detector Pengcheng Wen 1, Xiangjun Wang 1, Hong Wei 2 1 State Key Laboratory of Precision Measuring Technology and Instruents, Tianjin University, China 2

More information

Approximately-Perfect Hashing: Improving Network Throughput through Efficient Off-chip Routing Table Lookup

Approximately-Perfect Hashing: Improving Network Throughput through Efficient Off-chip Routing Table Lookup Approxiately-Perfect ing: Iproving Network Throughput through Efficient Off-chip Routing Table Lookup Zhuo Huang, Jih-Kwon Peir, Shigang Chen Departent of Coputer & Inforation Science & Engineering, University

More information

On Computing Nearest Neighbors with Applications to Decoding of Binary Linear Codes

On Computing Nearest Neighbors with Applications to Decoding of Binary Linear Codes On Coputing Nearest Neighbors with Applications to Decoding of Binary Linear Codes Alexander May and Ilya Ozerov Horst Görtz Institute for IT-Security Ruhr-University Bochu, Gerany Faculty of Matheatics

More information

Online Appendix I: A Model of Household Bargaining with Violence. In this appendix I develop a simple model of household bargaining that

Online Appendix I: A Model of Household Bargaining with Violence. In this appendix I develop a simple model of household bargaining that Online Appendix I: A Model of Household Bargaining ith Violence In this appendix I develop a siple odel of household bargaining that incorporates violence and shos under hat assuptions an increase in oen

More information

IT SOURCING PORTFOLIO MANAGEMENT FOR IT SERVICES PROVIDERS - A RISK/COST PERSPECTIVE

IT SOURCING PORTFOLIO MANAGEMENT FOR IT SERVICES PROVIDERS - A RISK/COST PERSPECTIVE IT SOURCING PORTFOLIO MANAGEMENT FOR IT SERVICES PROVIDERS - A RISK/COST PERSPECTIVE Copleted Research Paper Steffen Zierann Arne Katzarzik Dennis Kundisch Abstract Utilizing a global IT sourcing strategy

More information

Calculation Method for evaluating Solar Assisted Heat Pump Systems in SAP 2009. 15 July 2013

Calculation Method for evaluating Solar Assisted Heat Pump Systems in SAP 2009. 15 July 2013 Calculation Method for evaluating Solar Assisted Heat Pup Systes in SAP 2009 15 July 2013 Page 1 of 17 1 Introduction This docuent describes how Solar Assisted Heat Pup Systes are recognised in the National

More information

Work Travel and Decision Probling in the Network Marketing World

Work Travel and Decision Probling in the Network Marketing World TRB Paper No. 03-4348 WORK TRAVEL MODE CHOICE MODELING USING DATA MINING: DECISION TREES AND NEURAL NETWORKS Chi Xie Research Assistant Departent of Civil and Environental Engineering University of Massachusetts,

More information

MATHEMATICAL MODELS Vol. III - Mathematical Modeling in Social and Behavioral Sciences - Wei-Bin Zhang

MATHEMATICAL MODELS Vol. III - Mathematical Modeling in Social and Behavioral Sciences - Wei-Bin Zhang MATHEMATICAL MODELS Vol. III - Matheatical Modeling in Social and Behavioral Sciences - Wei-Bin Zhang MATHEMATICAL MODELING IN SOCIAL AND BEHAVIORAL SCIENCES Wei-Bin Zhang Ritsueikan Asia Pacific University,

More information

Modeling Nurse Scheduling Problem Using 0-1 Goal Programming: A Case Study Of Tafo Government Hospital, Kumasi-Ghana

Modeling Nurse Scheduling Problem Using 0-1 Goal Programming: A Case Study Of Tafo Government Hospital, Kumasi-Ghana Modeling Nurse Scheduling Proble Using 0-1 Goal Prograing: A Case Study Of Tafo Governent Hospital, Kuasi-Ghana Wallace Agyei, Willia Obeng-Denteh, Eanuel A. Andaa Abstract: The proble of scheduling nurses

More information

The Model of Lines for Option Pricing with Jumps

The Model of Lines for Option Pricing with Jumps The Model of Lines for Option Pricing with Jups Claudio Albanese, Sebastian Jaiungal and Ditri H Rubisov January 17, 21 Departent of Matheatics, University of Toronto Abstract This article reviews a pricing

More information

Fuzzy approach for searching in CRM systems

Fuzzy approach for searching in CRM systems Fuzzy approach for searching in CRM systes BOGDAN WALEK, JIŘÍ BARTOŠ, CYRIL KLIMEŠ Departent of Inforatics and Coputers University of Ostrava 30. dubna 22, 701 03 Ostrava CZECH REPUBLIC bogdan.walek@osu.cz,

More information

CPU Animation. Introduction. CPU skinning. CPUSkin Scalar:

CPU Animation. Introduction. CPU skinning. CPUSkin Scalar: CPU Aniation Introduction The iportance of real-tie character aniation has greatly increased in odern gaes. Aniating eshes ia 'skinning' can be perfored on both a general purpose CPU and a ore specialized

More information

Online Community Detection for Large Complex Networks

Online Community Detection for Large Complex Networks Proceedings of the Twenty-Third International Joint Conference on Artificial Intelligence Online Counity Detection for Large Coplex Networks Wangsheng Zhang, Gang Pan, Zhaohui Wu, Shijian Li Departent

More information

Modeling operational risk data reported above a time-varying threshold

Modeling operational risk data reported above a time-varying threshold Modeling operational risk data reported above a tie-varying threshold Pavel V. Shevchenko CSIRO Matheatical and Inforation Sciences, Sydney, Locked bag 7, North Ryde, NSW, 670, Australia. e-ail: Pavel.Shevchenko@csiro.au

More information

ADJUSTING FOR QUALITY CHANGE

ADJUSTING FOR QUALITY CHANGE ADJUSTING FOR QUALITY CHANGE 7 Introduction 7.1 The easureent of changes in the level of consuer prices is coplicated by the appearance and disappearance of new and old goods and services, as well as changes

More information

Analyzing Spatiotemporal Characteristics of Education Network Traffic with Flexible Multiscale Entropy

Analyzing Spatiotemporal Characteristics of Education Network Traffic with Flexible Multiscale Entropy Vol. 9, No. 5 (2016), pp.303-312 http://dx.doi.org/10.14257/ijgdc.2016.9.5.26 Analyzing Spatioteporal Characteristics of Education Network Traffic with Flexible Multiscale Entropy Chen Yang, Renjie Zhou

More information

Efficient Key Management for Secure Group Communications with Bursty Behavior

Efficient Key Management for Secure Group Communications with Bursty Behavior Efficient Key Manageent for Secure Group Counications with Bursty Behavior Xukai Zou, Byrav Raaurthy Departent of Coputer Science and Engineering University of Nebraska-Lincoln Lincoln, NE68588, USA Eail:

More information

How To Balance Over Redundant Wireless Sensor Networks Based On Diffluent

How To Balance Over Redundant Wireless Sensor Networks Based On Diffluent Load balancing over redundant wireless sensor networks based on diffluent Abstract Xikui Gao Yan ai Yun Ju School of Control and Coputer Engineering North China Electric ower University 02206 China Received

More information

Capacity of Multiple-Antenna Systems With Both Receiver and Transmitter Channel State Information

Capacity of Multiple-Antenna Systems With Both Receiver and Transmitter Channel State Information IEEE TRANSACTIONS ON INFORMATION THEORY, VOL. 49, NO., OCTOBER 23 2697 Capacity of Multiple-Antenna Systes With Both Receiver and Transitter Channel State Inforation Sudharan K. Jayaweera, Student Meber,

More information

Using Bloom Filters to Refine Web Search Results

Using Bloom Filters to Refine Web Search Results Using Bloo Filters to Refine Web Search Results Navendu Jain Departent of Coputer Sciences University of Texas at Austin Austin, TX, 78712 nav@cs.utexas.edu Mike Dahlin Departent of Coputer Sciences University

More information

The Benefit of SMT in the Multi-Core Era: Flexibility towards Degrees of Thread-Level Parallelism

The Benefit of SMT in the Multi-Core Era: Flexibility towards Degrees of Thread-Level Parallelism The enefit of SMT in the Multi-Core Era: Flexibility towards Degrees of Thread-Level Parallelis Stijn Eyeran Lieven Eeckhout Ghent University, elgiu Stijn.Eyeran@elis.UGent.be, Lieven.Eeckhout@elis.UGent.be

More information