Question: # Tests 5 points: Tests with loop # First, a graph consisting only of a loop. ta = Task ( ' a ' , 1

# Tests 5 points: Tests with loop
# First, a graph consisting only of a loop.
ta = Task('a',1.)
tb = Task('b',1.)
tc = Task('c',2.)
s = TimedScheduler()
s.add_task(ta,[tb])
s.add_task(tb,[tc])
s.add_task(tc,[ta])
loop = False
try:
s.fast_compute_schedule()
except DependencyLoop:
loop = True
assert loop, "Loop should be true"

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!