home *** CD-ROM | disk | FTP | other *** search
/ No Fragments Archive 10: Diskmags / nf_archive_10.iso / MAGS / ST_USER / 1992 / USERFB92.MSA / STUFEB92.ST / SIDE2 / PLAN / EXAMPLE next >
Text File  |  1991-12-07  |  3KB  |  84 lines

  1. %
  2. %   Note that any line beginning with a percentage character is ignored
  3. %   as are blank lines
  4. %
  5.  
  6. %   Somewhere in the file you should define the four keywords title,
  7. %   planner, version (of the plan) and base (base date: nothing can happen
  8. %   earlier than this).  If you don't define them then UNKNOWN is assumed
  9. %   for title, planner and version and 01/01/80 is assumed for the basedate
  10.  
  11. title Example Plan for Tutorial Purposes
  12. planner Chris Hobbs
  13. version 1.0
  14. base 11/6/90
  15.  
  16. holiday 25/12/90
  17. holiday 26/12/90
  18.  
  19. %
  20. % It is not necessary to specify the types of resources but if you do
  21. % then the program will add their usages up for you.  Resources may
  22. % be people or things ('scopes, ovens, etc) and in the future you will
  23. % be able to associate costs with them
  24.  
  25. % Here are the resources
  26. % ======================
  27.  
  28. resource programmers
  29. resource analysts
  30. resource testers
  31.  
  32. % Activities must be specified (otherwise you've got nothing to schedule).
  33. % With each activity you can associate all or any of the following 
  34. % keywards (in brackets as shewn):
  35. %
  36. %    earliest     (earliest start date: default is basedate)
  37. %    duration     (shortest, probable and maximum durations (days):
  38. %            default is zero)
  39. %    cost         (direct cost associated with the activity:
  40. %            default is zero)
  41. %    needs        (quantity and type of resource needed:
  42. %            default no resources)
  43.  
  44. % If there is more to come then end the line with a plus sign
  45.  
  46. % Here are the activities
  47. % =======================
  48.  
  49. activity start                    (earliest 12/01/91) +
  50.                    (duration 1,1,1)
  51. activity finish
  52. activity prepare feasibility study (duration 10,10,10) (needs 2 analysts) 
  53. activity write specification       (duration 20,25,40) +
  54.                    (needs 5 analysts) +
  55.                    (cost 100)
  56. activity design system             (duration 20,25,40) +
  57.                    (needs 3 analysts) +
  58.                    (needs 1 programmers) +
  59.                    (cost 230)
  60. activity code system               (duration 10,10,10)
  61. activity test system               (duration 10,10,10)
  62. activity write test specification  (duration 15,20,25) +
  63.                    (needs 2 testers) +
  64.                    (needs 1 programmers) +
  65.                    (needs 1 analysts) +
  66.                    (cost 150)
  67.  
  68. % Again, there is no need to specify dependencies but they are
  69. % normally needed.  The format is "dependency <percentage> <first> -> <last>
  70. % where the given percentage of the first must be complete before the
  71. % last starts
  72.  
  73. % Here are the dependencies
  74. % =========================
  75.  
  76. dependency 100 start                     -> prepare feasibility study
  77. dependency 100 prepare feasibility study -> write specification
  78. dependency 100 write specification       -> design system
  79. dependency 80  design system             -> code system
  80. dependency 100 code system               -> test system
  81. dependency 100 write test specification  -> test system
  82. dependency 100 prepare feasibility study -> write test specification
  83. dependency 100 test system               -> finish
  84.