rltools.red 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. % ----------------------------------------------------------------------
  2. % $Id: rltools.red,v 1.2 1999/03/22 15:18:51 dolzmann Exp $
  3. % ----------------------------------------------------------------------
  4. % Copyright (c) 1995-1999 Andreas Dolzmann and Thomas Sturm
  5. % ----------------------------------------------------------------------
  6. % $Log: rltools.red,v $
  7. % Revision 1.2 1999/03/22 15:18:51 dolzmann
  8. % Changed copyright information.
  9. % Added list of exported procedures.
  10. % Added import list.
  11. %
  12. % Revision 1.1 1996/04/30 12:06:45 sturm
  13. % Merged ioto, lto, and sfto into rltools.
  14. %
  15. % ----------------------------------------------------------------------
  16. lisp <<
  17. fluid '(rltools_rcsid!* rltools_copyright!*);
  18. rltools_rcsid!* := "$Id: rltools.red,v 1.2 1999/03/22 15:18:51 dolzmann Exp $";
  19. rltools_copyright!* := "Copyright (c) 1995-1999 by A. Dolzmann and T. Sturm"
  20. >>;
  21. module rltools;
  22. % Redlog tools.
  23. create!-package('(rltools ioto lto sfto),nil);
  24. exports ioto_prin2,ioto_tprin2,ioto_prin2t,ioto_tprin2t,ioto_prtmsg,
  25. ioto_cterpri,ioto_cplu,ioto_realtime,ioto_flush,ioto_datestamp,
  26. lto_insert,lto_insertq,lto_mergesort,lto_catsoc,lto_natsoc,lto_cassoc,
  27. lto_nconcn,lto_alunion,lto_almerge,lto_sconcat2,lto_sconcat,lto_at2str,
  28. delq,delqip,adjoin,sfto_dcontentf,sfto_dprpartf,sfto_sqfpartf,
  29. sfto_ucontentf,sfto_uprpartf,sfto_tsqsumf,sfto_sqfdecf,sfto_pdecf,
  30. sfto_updecf,sfto_decdegf,sfto_reorder,sfto_groebnerf,sfto_preducef,
  31. sfto_greducef,sfto_gcdf!*,sfto_gcdf,sfto_sqrtf,sfto_monfp,sfto_sqfpartz,
  32. sfto_zdeqn,sfto_zdgtn,sfto_zdgen;
  33. imports groebner,groebnr2;
  34. endmodule; % [rltools]
  35. end; % of file