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

⟦86646fa33⟧ TextFile

    Length: 761 (0x2f9)
    Types: TextFile
    Names: »B«

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

with Instrument;
use Instrument;
procedure Addsa2 is
    --  PRAGMA SUPPRESS (ACCESS_CHECK);
    --  PRAGMA SUPPRESS (DISCRIMINANT_CHECK);
    --  PRAGMA SUPPRESS (INDEX_CHECK);
    --  PRAGMA SUPPRESS (LENGTH_CHECK);
    --  PRAGMA SUPPRESS (RANGE_CHECK);
    --  PRAGMA SUPPRESS (DIVISION_CHECK);
    --  PRAGMA SUPPRESS (OVERFLOW_CHECK);
    --  PRAGMA SUPPRESS (STORAGE_CHECK);

    X : Float := 0.000_001;
    Y : Float := 0.0;

begin
    Start ("ADDSA2", "100_000 floating pt. Additions (test)");
    for I in 1 .. 1000 loop
        for J in 1 .. 10 loop
            Y := Y + X + X + X + X + X + X + X + X +
                    X + X;-- included in test ver
            Y := Float (Ident_Int (I + J));
        end loop;
    end loop;
    Stop;
end Addsa2;