DataMuseum.dk

Presents historical artifacts from the history of:

Rational R1000/400 Tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about Rational R1000/400 Tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T V

⟦925e29a3b⟧ TextFile

    Length: 1110 (0x456)
    Types: TextFile
    Names: »V«

Derivation

└─⟦180fe333a⟧ Bits:30000405 8mm tape, Rational 1000, SW CATALOG, 10_20_0
└─⟦180fe333a⟧ Bits:30000537 8mm tape, Rational 1000, SW Catalog 10_20_0
    └─⟦5cb1d1d7f⟧ »DATA« 
        └─⟦3b1ee7bd8⟧ 
            └─⟦this⟧ 

TextFile

generic
    type Graph is limited private;
    type Vertex is private;
    type Iterator is limited private;
    with procedure Initialize_Vertices (The_Iterator : in out Iterator;
                                        With_The_Graph : in Graph);
    with procedure Initialize_Arcs (The_Iterator : in out Iterator;
                                    With_The_Vertex : in Vertex);
    with procedure Get_Next (The_Iterator : in out Iterator);
    with function Number_Of_Vertices_In (The_Graph : in Graph) return Natural;
    with function Value_Of (The_Iterator : in Iterator) return Vertex;
    with function Is_Done (The_Iterator : in Iterator) return Boolean;
package Topological_Sort_Bounded_Managed is

    generic
        Ignore_Self_Loops : in Boolean;
        Process_Cycles : in Boolean;
        with procedure Process_Acyclic
                          (The_Vertex : in Vertex; Continue : out Boolean);
        with procedure Process_Cyclic
                          (The_Vertex : in Vertex; Continue : out Boolean);
    procedure Sort (The_Graph : in Graph);

end Topological_Sort_Bounded_Managed;