If all of the valencies in a graph
are even, the that graph is
Eulerian and therefore traversable
If the graph has just two valencies that are odd, then
the graph is semi-Eulerian. In this case, the start and
finish points will be the two vertices with odd valencies
A graph is not traversable if it has more than two odd valencies
Finding the shortest route in a network
For semi-Eulerian graph,
the shortest path between
the two odd vertices will
have to be repeated
Algorithm
1 ~ Identify any vertices with odd valency
2 ~ Consider all possible pairings of these vertices
3 ~ Select the complete pairing that has the least sum
4 ~ Add a repeat of the arcs indicated
by this pairing to the network
Traversable ~ sum of each arc's weight will be the weight of the network
Chapter 5 ~ Critical Path Analysis
Precedence Table/Dependence Table
Shows what
must be
completed for
an activity to
start
Used to create activity network
0 node ~ source node
Last node ~ sink node
Often can take a couple of
times to get layout correct
Dummies
Each activity must be
uniquely represented
C depends on A but D
depends on A and B
Early and Late event times
Early ~ use largest number
From a forward pass/forward scan
Late ~ use smallest number
From a backward pass/backward scan
Total float = latest finish time -
duration - earliest start time