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 - download
Index: ┃ T V

⟦f980315ad⟧ TextFile

    Length: 1357 (0x54d)
    Types: TextFile
    Names: »V«

Derivation

└─⟦2f6cfab89⟧ Bits:30000547 8mm tape, Rational 1000, !projects 94-01-04
    └─ ⟦d65440be7⟧ »DATA« 
        └─⟦this⟧ 

TextFile

--  Nom : Etape
--  Specifications du package ETAPE
--  Auteur : Sebastien BROCHET
--  Date   : 27 Novembre 1993
--  Etat   : operationnel

package Etape is     -- specifications
    subtype Temps is Integer;
    type Action is
        record
            Valeur1 : Integer;
            Valeur2 : Integer;
        end record;
    type Celluleetape;
    type Etape is access Celluleetape;
    type Celluleetape is
        record
            Letemps : Temps;
            Laction : Action;
            Lasuite : Etape;
        end record;
    Etapeinexistante : constant Etape := null;
    function Creeruneetape
                (Untemps : Temps; Uneaction : Action; Uneetape : Etape)
                return Etape;
    function Letempsdeletape (Uneetape : Etape) return Temps;
    function Lactiondeletape (Uneetape : Etape) return Action;
    function Lasuitedeletape (Uneetape : Etape) return Etape;
    procedure Changerletempsdeletape (Uneetape : in out Etape; Untemps : Temps);
    procedure Changerlactiondeletape
                 (Uneetape : in out Etape; Uneaction : Action);
    procedure Caseruneactiondanslesetapes
                 (T : Temps; A : Action; E : in out Etape);
    procedure Detruireletape (E : in out Etape);
    procedure Exclureuneactiondesetapes (E : in out Etape; T : Temps);

    procedure Afficheruneetape (E : Etape);
end Etape;