home *** CD-ROM | disk | FTP | other *** search
/ Programmer's ROM - The Computer Language Library / programmersrom.iso / ada / metric / apath.doc < prev    next >
Encoding:
Text File  |  1988-05-03  |  1.8 KB  |  38 lines

  1. package AUTOMATIC_PATH_ANALYZER is
  2. -- This is a tool which will record the execution of an Ada program
  3. -- at runtime.  The analysis of the recorded data will provide information
  4. -- on the execution for given sets of test parameters.
  5.  
  6.    procedure auto_analyze (source_file: in Ada_SOURCE_FILE_TYPE;
  7.                            report_file: out REPORT_FILE_TYPE
  8.                            data_file  : in FILE_TYPE := STANDARD_INPUT);
  9.    -- is the procedure to invoke the automatic path analyzer.  The
  10.    -- data file contains the sets of input data for each execution of
  11.    -- the source.
  12.    
  13.    package TITLE_PAGE is new TITLE_PAGE_PACKAGE
  14.        (DEVELOPING_ORGANIZATION      => "Intermetrics, Inc.",
  15.         AUTHOR                       => "Kathy Velick",
  16.         CONTACT                      => "Ron Rathgeber",
  17.         ADDRESS                      => ("5392 Bolsa Avenue",
  18.                                          "Huntington Beach",
  19.                                          "CA","92649"),
  20.         PHONE                        => (714,891,4631),
  21.         DATE_SUBMITTED               => (20,NOV,1984));
  22.  
  23.    package TECHNICAL_PARAMETERS is new TECHNICAL_PARAMETERS_PACKAGE
  24.        (LINES_OF_SOURCE_CODE         => TBD,
  25.         DEVELOPMENT_COMPILER         => (IBM3083,AIE_UTS),
  26.         PLANNED_COMPILERS_SUPPORTED  => ((DECVAX,DECADA),
  27.                                          (DECVAX,TSIADA)),
  28.         AUXILIARY_FILES_SIZE         => (TBD);
  29.  
  30.    package DEVELOPMENT_SCHEDULE_AND_STATUS is new SCHEDULE_PACKAGE
  31.        (COMPLETED_EVENTS            => NULL;
  32.         SCHEDULED_EVENTS            => ((PDR,(13,JAN,1985)),
  33.                                         (CDR,(13,MAR,1985)),
  34.                                         (FIRST_BUILT,(13,FEB,1985)),
  35.                                         (DELIVERY,(13,JUL,1985)));
  36.  
  37. end AUTOMATIC_PATH_ANALYZER;
  38.