Package gavo :: Package rsc :: Module data :: Class DDDependencyGraph
[frames] | no frames]

Class DDDependencyGraph

source code

object --+
         |
        DDDependencyGraph

a graph giving the dependency structure between DDs.

This is constructed with a list of DDs.

From it, you can get a build sequence (least-depending thing build first) or a destroy sequence (most-depending things built first).

If you pass spanRDs=True, only DDs residing within the first DD's RD are considered.

Instance Methods
 
__init__(self, dds, spanRDs=True)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
getBuildSequence(self) source code
 
getDestroySequence(self) source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Properties

Inherited from object: __class__

Method Details

__init__(self, dds, spanRDs=True)
(Constructor)

source code 

x.__init__(...) initializes x; see help(type(x)) for signature

Overrides: object.__init__
(inherited documentation)