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: ┃ B T

⟦5a1af7abf⟧ TextFile

    Length: 1040 (0x410)
    Types: TextFile
    Names: »B«

Derivation

└─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11
    └─ ⟦129cab021⟧ »DATA« 
        └─⟦this⟧ 

TextFile

with Sfam_Units;
with Sfam;
procedure Test is
    type Input_Range is range 1 .. 2;
    type Input_Pattern is array (Input_Range) of Sfam_Units.Pattern;
    type Category is (Inside, Outside);
    Base_Vigilance : Sfam_Units.Pattern := 0.4;
    package Sfam_Test is new Sfam (Input_Range, Input_Pattern, Category,
                                   Base_Vigilance, Category'Image);
begin
    Sfam_Test.Treat_Labeled_Pattern
       (Its_Category => Inside,
        Its_Pattern => Input_Pattern'(1 => 0.3, 2 => 0.3));
    Sfam_Test.Treat_Labeled_Pattern
       (Its_Category => Inside,
        Its_Pattern => Input_Pattern'(1 => 0.7, 2 => 0.7));
    Sfam_Test.Treat_Labeled_Pattern
       (Its_Category => Outside,
        Its_Pattern => Input_Pattern'(1 => 0.1, 2 => 0.1));
    Sfam_Test.Treat_Labeled_Pattern
       (Its_Category => Outside,
        Its_Pattern => Input_Pattern'(1 => 0.9, 2 => 0.9));
    Sfam_Test.Treat_Labeled_Pattern
       (Its_Category => Outside,
        Its_Pattern => Input_Pattern'(1 => 0.1, 2 => 0.8));
end Test;