Changeset 6db552 in git
- Timestamp:
- Dec 15, 2010, 3:53:39 PM (12 years ago)
- Branches:
- (u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
- Children:
- d08ed84a213b4110fe1dbe0d38276dce7695a481
- Parents:
- 3da413f2c6332c298e7f4115ffffdc526d5e914a
- Location:
- factory
- Files:
-
- 5 deleted
- 18 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/DegreePattern.cc
r3da413f r6db552 17 17 #include "DegreePattern.h" 18 18 #include "cf_iter.h" 19 #include " ftmpl_functions.h"19 #include "templates/ftmpl_functions.h" 20 20 #include "gfops.h" 21 21 -
factory/DegreePattern.h
r3da413f r6db552 21 21 #include "canonicalform.h" 22 22 #include "cf_iter.h" 23 #include " ftmpl_functions.h"23 #include "templates/ftmpl_functions.h" 24 24 #include "gfops.h" 25 25 -
factory/GNUmakefile.in
r3da413f r6db552 261 261 ffops.h \ 262 262 ffreval.h \ 263 ftmpl_array.h \264 ftmpl_factor.h \265 ftmpl_functions.h \266 263 ftmpl_list.h \ 267 264 ftmpl_matrix.h \ -
factory/canonicalform.cc
r3da413f r6db552 421 421 { 422 422 int what = is_imm( value ); 423 #if 0 423 424 if ( what ) 424 425 if ( what == FFMARK ) … … 430 431 else if ( value->inBaseDomain() ) 431 432 return value->degree(); 433 #else 434 switch(what) 435 { 436 case FFMARK: return imm_iszero_p( value ) ? -1 : 0; 437 case INTMARK: return imm_iszero( value ) ? -1 : 0; 438 case GFMARK: return imm_iszero_gf( value ) ? -1 : 0; 439 case 0: if ( value->inBaseDomain() ) 440 return value->degree(); 441 break; 442 } 443 #endif 432 444 433 445 Variable x = value->variable(); -
factory/canonicalform.h
r3da413f r6db552 21 21 #include "cf_defs.h" 22 22 #include "variable.h" 23 #include " ftmpl_list.h"24 #include " ftmpl_array.h"25 #include " ftmpl_factor.h"26 #include " ftmpl_matrix.h"23 #include "templates/ftmpl_list.h" 24 #include "templates/ftmpl_array.h" 25 #include "templates/ftmpl_factor.h" 26 #include "templates/ftmpl_matrix.h" 27 27 28 28 /*BEGINPUBLIC*/ -
factory/cf_algorithm.cc
r3da413f r6db552 29 29 #include "variable.h" 30 30 #include "cf_iter.h" 31 #include " ftmpl_functions.h"31 #include "templates/ftmpl_functions.h" 32 32 33 33 void out_cf(const char *s1,const CanonicalForm &f,const char *s2); -
factory/cf_gcd.cc
r3da413f r6db552 17 17 #include "cf_algorithm.h" 18 18 #include "fac_util.h" 19 #include " ftmpl_functions.h"19 #include "templates/ftmpl_functions.h" 20 20 #include "ffreval.h" 21 21 #include "algext.h" -
factory/cf_gcd_smallp.cc
r3da413f r6db552 28 28 #include "cf_map.h" 29 29 #include "cf_util.h" 30 #include " ftmpl_functions.h"30 #include "templates/ftmpl_functions.h" 31 31 #include "cf_random.h" 32 32 #include "ffreval.h" -
factory/cf_map.cc
r3da413f r6db552 15 15 #include "cf_map.h" 16 16 #include "cf_iter.h" 17 #include " ftmpl_functions.h"17 #include "templates/ftmpl_functions.h" 18 18 19 19 //{{{ MapPair & MapPair::operator = ( const MapPair & p ) -
factory/cf_map.h
r3da413f r6db552 25 25 #include "variable.h" 26 26 #include "canonicalform.h" 27 #include " ftmpl_list.h"27 #include "templates/ftmpl_list.h" 28 28 29 29 /*BEGINPUBLIC*/ -
factory/facFqBivarUtil.cc
r3da413f r6db552 17 17 #include "cf_map.h" 18 18 #include "cf_map_ext.h" 19 #include " ftmpl_functions.h"19 #include "templates/ftmpl_functions.h" 20 20 #include "ExtensionInfo.h" 21 21 #include "cf_algorithm.h" -
factory/facHensel.h
r3da413f r6db552 26 26 #include "canonicalform.h" 27 27 #include "cf_iter.h" 28 #include " ftmpl_functions.h"28 #include "templates/ftmpl_functions.h" 29 29 #include "algext.h" 30 30 -
factory/fac_ezgcd.cc
r3da413f r6db552 15 15 #include "cf_primes.h" 16 16 #include "fac_distrib.h" 17 #include " ftmpl_functions.h"17 #include "templates/ftmpl_functions.h" 18 18 19 19 static void findeval( const CanonicalForm & F, const CanonicalForm & G, CanonicalForm & Fb, CanonicalForm & Gb, CanonicalForm & Db, REvaluation & b, int delta, int degF, int degG ); -
factory/ffreval.cc
r3da413f r6db552 9 9 #include "cf_primes.h" 10 10 #include "fac_distrib.h" 11 #include " ftmpl_functions.h"11 #include "templates/ftmpl_functions.h" 12 12 #include "ffreval.h" 13 13 #include "cf_binom.h" -
factory/int_intdiv.cc
r3da413f r6db552 17 17 #include "cf_gmp.h" 18 18 #include "gmpext.h" 19 #include " ftmpl_functions.h"19 #include "templates/ftmpl_functions.h" 20 20 21 21 //{{{ InternalCF * InternalInteger::dividesame, dividecoeff ( InternalCF * c ) -
factory/sm_sparsemod.cc
r3da413f r6db552 28 28 #include "sm_util.h" 29 29 #include "sm_sparsemod.h" 30 #include " ftmpl_array.h"31 #include " ftmpl_functions.h"30 #include "templates/ftmpl_array.h" 31 #include "templates/ftmpl_functions.h" 32 32 33 33 static CanonicalForm -
factory/sm_util.cc
r3da413f r6db552 23 23 #include "canonicalform.h" 24 24 #include "variable.h" 25 #include " ftmpl_array.h"25 #include "templates/ftmpl_array.h" 26 26 27 27 //{{{ static CanonicalForm fmonome( const CanonicalForm & f ) -
factory/sm_util.h
r3da413f r6db552 17 17 #include "canonicalform.h" 18 18 #include "cf_reval.h" 19 #include " ftmpl_array.h"19 #include "templates/ftmpl_array.h" 20 20 21 21 typedef Array<REvaluation> REArray;
Note: See TracChangeset
for help on using the changeset viewer.