Changeset d4c1d0 in git
- Timestamp:
- Apr 22, 1998, 4:16:00 PM (25 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 1468f7abf1c920bb154e9ca7050ad6e25b46e666
- Parents:
- 30ae549770efe9d4bd2b4489572c5cf0f77e7c39
- Location:
- libfac
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
libfac/factor.h
r30ae54 rd4c1d0 11 11 12 12 // some values you can ask for: 13 extern c har * libfac_name;14 extern c har * libfac_version;15 extern c har * libfac_date;16 extern c har * libfac_author;13 extern const char * libfac_name; 14 extern const char * libfac_version; 15 extern const char * libfac_date; 16 extern const char * libfac_author; 17 17 18 18 //// Note: second argument for Factorize is for internal use only. -
libfac/factor/version.cc
r30ae54 rd4c1d0 2 2 /////////////////////////////////////////////////////////////////////////////// 3 3 // emacs edit mode for this file is -*- C++ -*- 4 // $Id: version.cc,v 1. 3 1997-09-12 07:20:02 SingularExp $4 // $Id: version.cc,v 1.4 1998-04-22 14:15:49 schmidt Exp $ 5 5 static char * rcsid = "@(#) libfac version 0.2.4 [May 29 1997] (C) 1996-97 M. Messollen"; 6 6 /////////////////////////////////////////////////////////////////////////////// 7 7 8 c har * libfac_name = "Factorization and characteristic sets library";9 c har * libfac_version = "0.3.0";10 c har * libfac_date = "Sep 11 1997";11 c har * libfac_author = "M. Messollen";8 const char * libfac_name = "Factorization and characteristic sets library"; 9 const char * libfac_version = "0.3.0"; 10 const char * libfac_date = "Sep 11 1997"; 11 const char * libfac_author = "M. Messollen"; 12 12 13 13 int libfac_interruptflag=0; -
libfac/header.tpl
r30ae54 rd4c1d0 10 10 11 11 // some values you can ask for: 12 extern c har * libfac_name;13 extern c har * libfac_version;14 extern c har * libfac_date;15 extern c har * libfac_author;12 extern const char * libfac_name; 13 extern const char * libfac_version; 14 extern const char * libfac_date; 15 extern const char * libfac_author; 16 16 17 17 //// Note: second argument for Factorize is for internal use only.
Note: See TracChangeset
for help on using the changeset viewer.