home *** CD-ROM | disk | FTP | other *** search
/ Crawly Crypt Collection 2 / crawlyvol2.bin / apps / math / calcb_11 / doc / readme.1st < prev   
Text File  |  1994-11-15  |  3KB  |  85 lines

  1.  
  2.       .oooooo.   oooo                              .o        .o
  3.      d8P'  `Y8b  `888                            o888      o888
  4.     888           888   .oooo.    .ooooo.         888       888
  5.     888           888  `P  )88b  d88' `"Y8        888       888
  6.     888           888   .oP"888  888              888       888
  7.     `88b    ooo   888  d8(  888  888   .o8        888  .o.  888
  8.      `Y8bood8P'  o888o `Y888""8o `Y8bod8P'       o888o Y8P o888o
  9.  
  10.  
  11.                  FREEWARE, 1994 (C) Eero Tamminen
  12.  
  13.  
  14. Clac is an expression evaluating program (ie. calculator) which has some
  15. functions rarily found in any other calculator. This text documents the
  16. Clac package. Refer to other documents for all the operators and
  17. functions included into Clac.
  18.  
  19.  
  20. Clac is composed of two internally separate components.
  21.  
  22. - The user interface (=UI) which gets the expressions, takes care of the
  23. variables and output.
  24. - The 'expression engine' just calculates the expression strings given
  25. to it by UI.
  26.  
  27. This imposes some limits as the UI can't get sub totals for the
  28. expression, but IMO the advantages of this approach far exceed that
  29. minor 'inconvenience'. Some of the advantages are:
  30.  
  31. - The expression engine is OS independent as it includes only ANSI C.
  32. - There can be several different UIs. The current text interface is
  33.   also OS independent.
  34. - More complex expressions can be evaluated without making the
  35.   program exessively complex, thus easing up the debugging and
  36.   addition of new features.
  37.  
  38.  
  39. The complete Clac package (1.10) contains files:
  40.  
  41. bin:
  42. total 96
  43.  37323 clac.prg*    GEM version of Clac compiled with SozobonX C
  44.             & xgemfast. Works both as an acc or prg.
  45.  50691 clac.ttp*    Text version of Clac compiled with GCC & pml.
  46.   4112 clac_rsc.rsc    Clac.prg resource file.
  47.    850 clac_rsc.rso    Resource editor index file for gui.rsc.
  48.    388 clacicon.rsc    Two b&w (desktop) icons for Clac.prg.
  49.     87 cli.ini        An examplary initialization file for clac.ttp.
  50.    329 example.gui    An example expression file for clac.prg.
  51.  
  52. doc:
  53. total 64
  54.   1700 changes.txt    Changes made to Clac since version 1.0.
  55.   8548 clac.dvi        Dvi file documenting the expression engine.
  56.   9342 clac.man        Ascii manual for the text version of Clac.
  57.  11011 clac.hyp        A compiled ST-Guide manual for Clac.
  58.   8874 clac.stg        ST-Guide manual in ascii format.
  59.   6165 clac.tex        TeX file documenting the expression engine.
  60.   1379 clac.txt        Some info on how to add functions into Clac.
  61.   5528 cli.dvi        Dvi file documenting the text user interface.
  62.   4072 cli.tex        TeX file documenting the text user interface.
  63.   3989 readme.1st    This text.
  64.  
  65. total 112
  66.  23523 clac.c        Main expression engine code.
  67.   2855 clac.h        Expression engine header.
  68.   2893 clac_rsc.h    Resource indexes for gui.c.
  69.   8723 cli.c        Text user interface code.
  70.   5709 common.c        Some common user interface functions.
  71.    598 common.h        Header for common.c.
  72.   2525 complex.c    Code for complex number operations
  73.             (not included into an ANSI C).
  74.   1465 complex.h    Header for complex.c.
  75.   6084 function.c    Code for Clac functions.
  76.   1360 function.h    Header for function.c. Includes function names.
  77.  33043 gui.c        Code for GEM interface.
  78.    843 makefile        Makefile for the text version.
  79.    379 makegui        Makefile for the GEM version.
  80.  15114 readline.c    Readline code from GnuPlot package for the cli.c.
  81.  
  82.  
  83.     - Eero -        /* t150315@cc.tut.fi */
  84.  
  85.