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

⟦02ff9e892⟧ TextFile

    Length: 1825 (0x721)
    Types: TextFile
    Names: »V«

Derivation

└─⟦149519bd4⟧ Bits:30000546 8mm tape, Rational 1000, !projects 93-07-13
    └─ ⟦124ff5788⟧ »DATA« 
        └─⟦this⟧ 
└─⟦f64eaa120⟧ Bits:30000752 8mm tape, Rational 1000, !projects 93 02 16
    └─ ⟦6f12a12be⟧ »DATA« 
        └─⟦this⟧ 

TextFile

with Context;
with Instance;
with Tuple;
with Tuple_Collection;

package Debugger is


    type Debugging_Mode is (Text, Graphic);

    type Item_Debugged is (Context_Entered, Strategy_Used, Conflict_Set_Started,
                           Conflict_Set_Finished, Condition_Evalued,
                           Choosed_Rule, Choosed_Action, Rule_Facts,
                           Action_Fact, New_Step, Failed, Completly);


    type Item_Set is array (Positive range <>) of Item_Debugged;

    procedure Main_Menu;

    procedure Send_Context_Entered   (With_Number : Context.Reference);
    procedure Send_Strategy_Used     (With_Name : Context.Strategy);
    procedure Send_Conflict_Set_Started;
    procedure Send_Conflict_Set_Finished;
    procedure Send_Condition_Evalued (In_Context : Context.Reference;
                                      With_Rule  : Context.Rule_Id;
                                      Result     : Boolean;
                                      Facts      : Tuple_Collection.Object);


    procedure Send_Choosed_Rule   (In_Context : Context.Reference;
                                   The_Rule   : Context.Rule_Id;
                                   The_Fact   : Tuple.Object);
    procedure Send_Choosed_Action (In_Context : Context.Reference;
                                   The_Rule   : Context.Rule_Id;
                                   The_Fact   : Tuple.Object);

    procedure Send_New_Step;
    procedure Send_Failed;

    function  Is_Debugged   (What : Item_Debugged) return Boolean;
    procedure Set_Debug_On  (Item : Item_Debugged);
    procedure Set_Debug_On  (Item : Item_Set);
    procedure Set_Debug_Off (Item : Item_Debugged);
    procedure Set_Debug_Off (Item : Item_Set);
    procedure Reset_Debug   (Mode : Debugging_Mode);
    procedure Refresh_Debug;

end Debugger;