Warm Up – 3/27 - Thursday Write a priority list using the decreasing time algorithm. Do you see any problem with this?

Slides:



Advertisements
Similar presentations
Excursions in Modern Mathematics Sixth Edition
Advertisements

Chapter 3: Planning and Scheduling Lesson Plan
Minimum Spanning Tree Sarah Brubaker Tuesday 4/22/8.
Chapter 8: Scheduling “Science is organized knowledge. Wisdom is organized life.” -Immanuel Kant.
Critical Paths and Critical Paths Algorithm Notes 8 – Sections 8.5 & 8.6.
Critical Paths.
Module 5 – Networks and Decision Mathematics Chapter 24 – Directed Graphs.
Graph Algorithms: Minimum Spanning Tree We are given a weighted, undirected graph G = (V, E), with weight function w:
MAGGIE Progress Presentation. Completed Tasks “ Save As…” facility provided for the plots. “ Save As…” facility provided for the plots. History option.
WB13 Define the terms bipartite graph,
Excursions in Modern Mathematics Sixth Edition
Critical Path Analysis
© The McGraw-Hill Companies, Software Project Management 4th Edition Resource allocation Chapter 8.
Excursions in Modern Mathematics, 7e: Copyright © 2010 Pearson Education, Inc. 8 The Mathematics of Scheduling 8.1The Basic Elements of Scheduling.
Spring 2015 Mathematics in Management Science Machine Scheduling Problem Statement of MSP Assumptions & Goals Priority Lists List Processing Algorithm.
Excursions in Modern Mathematics, 7e: Copyright © 2010 Pearson Education, Inc. 8 The Mathematics of Scheduling 8.1The Basic Elements of Scheduling.
Spring 2015 Mathematics in Management Science Critical Path Scheduling Critical Paths & Times Backflow Algorithm Critical Times PL Critical Path Algorithm.
Adding SubtractingMultiplyingDividingMiscellaneous.
Math III Warm Up 3/25/13 Sketch the following on the parabola below. (draw just as it is) - Vertex, focus, directrix, lattice points.
Conics Conics Review. Graph It! Write the Equation?
Warm Up: You’ve won! For a door prize, you get to choose between the two options shown. Which is the better prize? Why? Lesson 1-2 Order of Operations.
Framing A Future (insert own title) By:. Thank you for joining me!  I would like to present what I learned about myself while working with the Framing.
Prims Algorithm for finding a minimum spanning tree
Excursions in Modern Mathematics, 7e: Copyright © 2010 Pearson Education, Inc. 8 The Mathematics of Scheduling 8.1The Basic Elements of Scheduling.
Constant of Proportionality Task Cards. Does this show a constant rate of change or not? Why?
8 The Mathematics of Scheduling
Minimum Spanning Trees
Excursions in Modern Mathematics Sixth Edition
Minimum Spanning Tree Chapter 13.6.
Part 4.
Warm Up Identify the following and then sketch the graph:
Warm Up Solve by factoring. x2 + 10x + 25 x2 – 16x + 64 x2 + 18x + 81.
Warm Up < > = < -3, -2/5, -.34, 0, 3/4 Compare: 1) -8 -5
Putting Problem Solving into Practice with a Schedule!!!
2012 סיכום מפגש 2 שלב המשכי תהליך חזוני-אסטרטגי של המועצה העליונה של הפיזיותרפיה בישראל.
Critical Path Analysis
Minimum Spanning Trees
Putting Problem Solving into Practice with a Schedule!!!
Scheduling Theory By Sarah Walker 12/4/2018.
Naming and Measuring Angles
Human Wellbeing Index.
Label your paper DNA 1 WARM UP….
Warm Up, May 8th Think way, way back, all the way to the beginning of your experience with your senior research project. Month by month, list out the most.
Warm Up – Friday.
The Pigs (15, 24) (11, 16). The Pigs (15, 24) (11, 16)
Computer Applications I
Vertex Form.
Equations from Graphs LF.2.AC.7: Write an equation given
Planning and Scheduling
-.&- ·Af& Q 0 "i'/
Chapter 8 – Quadratic Functions and Equations
Warm-up 1)
Can you put the symbols in?
Adding with 9’s.
Adding with 10’s.
List Processing (SOL: DM.10)
Please complete Thursday’s Warm Up questions.
Factorisation. ab + ad = a( b +……...
Warm Up – Tuesday Find the critical times for each vertex.
Kruskal’s Algorithm AQR.
Warm Up – 3/25 - Tuesday Bill is taking a sales trip starting in Atlanta. Draw a graph that represents this table. Find the nearest neighbor tour from.
Warm Up – Monday Calculate the Redundancy of the above network.
Warm Up  .
Adding ____ + 10.
Graphing Quadratic Inequalities
Warm up Graph the Function using a table Use x values -1,0,1,2,3
Chapter 3: Planning and Scheduling Lesson Plan
Warm Up Thursday Find the vertex, axis of symmetry, Max/Min of
Line Graphs.

Presentation transcript:

Warm Up – 3/27 - Thursday Write a priority list using the decreasing time algorithm. Do you see any problem with this?

Weaknesses of Decreasing Time A decreasing time algorithm does not take into account tasks that are necessary to begin other tasks.

Weaknesses of Decreasing Time In the graph below AF is the last prioritized of the first available options. But AF needs to get done in order to get to IF, which has to get done to get to IW, which has to get done to get to ID. In a sense AF halts all progress.

Critical Times Instead of just looking a time we need to value how much time comes after a given vertex in order to prioritize correctly. We use what is called the Backflow Algorithm to find the “critical time” for each vertex. The critical time is the highest total processing time from a vertex to the finish.

Example #1 To find the critical times we start at the end and work our way backwards, adding up the largest possible time to the end.

Example #1 The critical times are put in brackets. The critical time for the project is 34.