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

⟦66bf08e18⟧ TextFile

    Length: 1352 (0x548)
    Types: TextFile
    Names: »V«

Derivation

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

TextFile

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;
--  Nom : Moteur.adp
--  Test du package ETAPE
--  Auteur : Sebastien BROCHET
--  Date   : 27 Novembre 1993
--  Etat   : operationnel