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

⟦caf24b779⟧ TextFile

    Length: 1517 (0x5ed)
    Types: TextFile
    Names: »V«

Derivation

└─⟦5f3412b64⟧ Bits:30000745 8mm tape, Rational 1000, ENVIRONMENT 12_6_5 TOOLS 
    └─ ⟦91c658230⟧ »DATA« 
        └─⟦458657fb6⟧ 
            └─⟦1472c4407⟧ 
                └─⟦3d4b48c74⟧ 
└─⟦d10a02448⟧ Bits:30000409 8mm tape, Rational 1000, ENVIRONMENT, D_12_7_3
    └─ ⟦fc9b38f02⟧ »DATA« 
        └─⟦9b46a407a⟧ 
            └─⟦2e03b931c⟧ 
                └─⟦3d4b48c74⟧ 
                    └─⟦this⟧ 
└─⟦5f3412b64⟧ Bits:30000745 8mm tape, Rational 1000, ENVIRONMENT 12_6_5 TOOLS 
    └─ ⟦91c658230⟧ »DATA« 
        └─⟦458657fb6⟧ 
            └─⟦1472c4407⟧ 
                └─⟦6fef9baf9⟧ 
└─⟦d10a02448⟧ Bits:30000409 8mm tape, Rational 1000, ENVIRONMENT, D_12_7_3
    └─ ⟦fc9b38f02⟧ »DATA« 
        └─⟦9b46a407a⟧ 
            └─⟦2e03b931c⟧ 
                └─⟦6fef9baf9⟧ 
                    └─⟦this⟧ 

TextFile

package Long_Primitive_Functions is

-- from "Proposed Standard for a Generic package of Primitive Functions
-- for Ada" ISO-IEC/JTC1/SC22/WG9 (Ada) Numerics Rapporteur Group
-- Draft 1.0, 13 December 1990

-- This package is equivalent to the instantiation:
--  package Primitive_Functions is
--        new Generic_Primitive_Functions (Long_Float, Integer);

    function Exponent (X : Long_Float) return Integer;
    function Fraction (X : Long_Float) return Long_Float;
    procedure Decompose (X : in Long_Float;
                         Fraction : out Long_Float;
                         Exponent : out Integer);
    function Compose (Fraction : Long_Float;  
                      Exponent : Integer) return Long_Float;
    function Scale (X : Long_Float;  
                    Exponent : Integer) return Long_Float;

    function Floor (X : Long_Float) return Long_Float;
    function Ceiling (X : Long_Float) return Long_Float;
    function Round (X : Long_Float) return Long_Float;
    function Truncate (X : Long_Float) return Long_Float;
    function Remainder (X, Y : Long_Float) return Long_Float;

    function Adjacent (X, Towards : Long_Float) return Long_Float;
    function Successor (X : Long_Float) return Long_Float;
    function Predecessor (X : Long_Float) return Long_Float;

    function Copy_Sign (Value, Sign : Long_Float) return Long_Float;
    function Leading_Part (X : Long_Float;  
                           Radix_Digits : Positive) return Long_Float;

end Long_Primitive_Functions;