Changeset 790737 in git for factory/README


Ignore:
Timestamp:
Sep 9, 1997, 2:21:07 PM (27 years ago)
Author:
Jens Schmidt <schmidt@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
6b76c234fa60b76f7d16f9ba2091e496804852a2
Parents:
ed59e2ab48721f830eb77175b2a09efae9902687
Message:
	* README: doc fix


git-svn-id: file:///usr/local/Singular/svn/trunk@686 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • factory/README

    red59e2 r790737  
    5151For example, to add together two polynomials one simply uses the '+'
    5252operator.  Because of this, Factory is easy to use even if you are not
    53 familar with C++ programming.
     53familiar with C++ programming.
    5454
    5555  There are a couple of utility classes provided by Factory such as lists,
    5656arrays, polynomial maps, etc.  These make the usage more comfortable.
     57
    5758
    5859
     
    6465let me know (e-mail: Jens Schmidt <schmidt@mathematik.uni-kl.de>).
    6566Comments and questions are welcome, too.
    66 
     67  Factory version 1.2c and newer define an external variable
     68'factoryVersion' describing the version of the library.  Please include
     69this version number in your bug reports.  You may either use the UNIX
     70utility 'what' to get this number ('what libcf.a') or compile and run
     71something similar to this:
     72
     73  #include <factory.h>
     74  main() { cout << factoryVersion << endl; }
    6775
    68763. Installation
     
    214222installation procedure for Singular should do everything for you.  If you
    215223want to configure/build the package on your own instead of letting
    216 Singulars configure do the work you should:
     224Singular's configure do the work you should:
    217225
    218226  ./configure --with-Singular --enable-gmp
     
    295303.emacs-file, all this would be done automatically for you:
    296304
     305  (load-file "factory-<version>/bin/folding.el")
     306  (load-file "factory-<version>/bin/fold-docu.el")
    297307  (add-hook 'c-mode-common-hook 'folding-mode)
    298308  (setq fold-fold-on-startup nil
    299309        fold-mode-marks-alist '((c++-mode "//{{{" "//}}}")))
    300310  (set-default 'fold-internal-margins nil)
    301   (load-file "factory-<version>/bin/fold-docu.el")
    302311
    303312  For more information, see the respective files.
Note: See TracChangeset for help on using the changeset viewer.