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

⟦7aad37814⟧ TextFile

    Length: 956 (0x3bc)
    Types: TextFile
    Names: »V«

Derivation

└─⟦85b835f43⟧ Bits:30000549 8mm tape, Rational 1000, Xlib rev 6.00
    └─ ⟦0c20f784e⟧ »DATA« 
        └─⟦1abbe589f⟧ 
            └─⟦306851c02⟧ 
                └─⟦this⟧ 

TextFile

with Xlbt_Arithmetic;  
use Xlbt_Arithmetic;

package Puz_Puzzle is

    type Direction       is (Left, Right, Up, Down, None);  
    type Direction_Array is array (S_Natural range <>) of Direction;  
    type Direction_List  is access Direction_Array;

    type S_Long_2d        is array (S_Natural range <>) of S_Long;  
    type S_Long_2d_Access is access S_Long_2d;

    Output_Logging : Boolean   := False;  
    Position       : S_Long_2d_Access;  
    Puzzle_Size    : S_Natural := 4;  
    Puzzle_Width   : S_Natural := 4;  
    Puzzle_Height  : S_Natural := 4;  
    Space_X        : S_Long;          -- location of space in
    Space_Y        : S_Long;          --  the position matrix

    procedure Initialize;  
    procedure Move_Space_To (Loc : S_Natural);  
    procedure Scramble;  
    procedure Abort_Solving;  
    function  Solving_Status return Boolean;  
    procedure Solve;

    function Random return S_Natural;

end Puz_Puzzle;