Changeset d482ee in git
- Timestamp:
- Sep 4, 1997, 5:21:57 PM (26 years ago)
- Branches:
- (u'spielwiese', '91e5db82acc17434e4062bcfa44e6efa7d41fd30')
- Children:
- 483c5cfbbdf816c025128e64ec601e944f069ff3
- Parents:
- 3dfd7cad61384e65919fb881a65e757a81c090e6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/cf_algorithm.h
r3dfd7c rd482ee 1 1 /* emacs edit mode for this file is -*- C++ -*- */ 2 /* $Id: cf_algorithm.h,v 1. 5 1997-09-01 09:10:10schmidt Exp $ */2 /* $Id: cf_algorithm.h,v 1.6 1997-09-04 15:21:57 schmidt Exp $ */ 3 3 4 4 #ifndef INCL_CF_ALGORITHM_H … … 14 14 // 15 15 // This header file corresponds to: 16 // cf_chinese.cc, cf_factor.cc, cf_linsys.cc, cf_resultant.cc 16 // 17 // cf_algorithms.cc, cf_chinese.cc, cf_factor.cc, cf_linsys.cc, 18 // cf_resultant.cc 17 19 // 18 20 //}}} … … 25 27 /*BEGINPUBLIC*/ 26 28 29 //{{{ declarations from cf_algorithm.cc 30 CanonicalForm psr ( const CanonicalForm & f, const CanonicalForm & g, const Variable & x ); 31 32 CanonicalForm psq ( const CanonicalForm & f, const CanonicalForm & g, const Variable & x ); 33 34 void psqr ( const CanonicalForm & f, const CanonicalForm & g, CanonicalForm & q, CanonicalForm & r, const Variable & x ); 35 36 CanonicalForm common_den ( const CanonicalForm & f ); 37 //}}} 38 27 39 //{{{ declarations from cf_chinese.cc 28 void chineseRemainder ( const CanonicalForm x1, const CanonicalForm q1, const CanonicalForm x2, const CanonicalForm q2, CanonicalForm & xnew, CanonicalForm & qnew );40 void chineseRemainder ( const CanonicalForm x1, const CanonicalForm q1, const CanonicalForm x2, const CanonicalForm q2, CanonicalForm & xnew, CanonicalForm & qnew ); 29 41 30 void chineseRemainder ( const CFArray & x, const CFArray & q, CanonicalForm & xnew, CanonicalForm & qnew );42 void chineseRemainder ( const CFArray & x, const CFArray & q, CanonicalForm & xnew, CanonicalForm & qnew ); 31 43 //}}} 32 44 … … 42 54 43 55 //{{{ declarations from cf_linsys.cc 44 bool linearSystemSolve ( CFMatrix & M );56 bool linearSystemSolve ( CFMatrix & M ); 45 57 46 CanonicalForm determinant ( const CFMatrix & M, int n );58 CanonicalForm determinant ( const CFMatrix & M, int n ); 47 59 //}}} 48 60 … … 50 62 CFArray subResChain ( const CanonicalForm & f, const CanonicalForm & g, const Variable & x ); 51 63 52 CanonicalForm resultant ( const CanonicalForm & f, const CanonicalForm& g, const Variable & x );64 CanonicalForm resultant ( const CanonicalForm & f, const CanonicalForm & g, const Variable & x ); 53 65 //}}} 54 66
Note: See TracChangeset
for help on using the changeset viewer.