Changeset d92d71 in git for factory/libfac/factor
- Timestamp:
- Dec 14, 2011, 5:19:14 PM (12 years ago)
- Branches:
- (u'spielwiese', 'a719bcf0b8dbc648b128303a49777a094b57592c')
- Children:
- 67c1dcaf5b5069c5df300f7898cff740290bf5f1
- Parents:
- dcccebd9b733616f7e8c8d888299aa4c3073a094
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-12-14 17:19:14+01:00
- git-committer:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-01-06 21:09:33+01:00
- Location:
- factory/libfac/factor
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/libfac/factor/Factor.cc
rdccceb rd92d71 38 38 #endif 39 39 40 #include "debug.h"40 #include <libfac/factor/debug.h> 41 41 #include "timing.h" 42 42 TIMING_DEFINE_PRINT(factorize_time); -
factory/libfac/factor/MVMultiHensel.cc
rdccceb rd92d71 38 38 #endif 39 39 40 #include "debug.h"40 #include <libfac/factor/debug.h> 41 41 #include "interrupt.h" 42 42 #include "timing.h" -
factory/libfac/factor/SqrFree.cc
rdccceb rd92d71 5 5 /////////////////////////////////////////////////////////////////////////////// 6 6 // FACTORY - Includes 7 #include<factory.h> 7 8 #include<factory/factory.h> 9 8 10 #ifndef NOSTREAMIO 9 11 #ifdef HAVE_IOSTREAM … … 33 35 #endif 34 36 35 #include "debug.h"37 #include <libfac/factor/debug.h> 36 38 #include "timing.h" 37 39 TIMING_DEFINE_PRINT(squarefree_time); -
factory/libfac/factor/Truefactor.cc
rdccceb rd92d71 32 32 #endif 33 33 34 #include "debug.h"34 #include <libfac/factor/debug.h> 35 35 #include "timing.h" 36 36 -
factory/libfac/factor/homogfactor.cc
rdccceb rd92d71 32 32 #endif 33 33 34 #include "debug.h"34 #include <libfac/factor/debug.h> 35 35 #include "timing.h" 36 36 TIMING_DEFINE_PRINT(hfactorize_time); -
factory/libfac/factor/tmpl_inst.cc
rdccceb rd92d71 4 4 //////////////////////////////////////////////////////////// 5 5 6 // #include <factory/templates/ftmpl_array.cc> 6 7 7 #include <templates/ftmpl_array.cc> 8 #include <templates/ftmpl_factor.cc> 9 #include <templates/ftmpl_list.cc> 10 #include <templates/ftmpl_functions.h> 11 #include <templates/ftmpl_matrix.cc> 8 #include <factory/factory.h> 12 9 13 #include <factory.h> 10 11 12 #include <factory/templates/ftmpl_array.cc> 13 #include <factory/templates/ftmpl_factor.cc> 14 #include <factory/templates/ftmpl_list.cc> 15 #include <factory/templates/ftmpl_functions.h> 16 #include <factory/templates/ftmpl_matrix.cc> 14 17 15 18 template class Factor<CanonicalForm>; … … 47 50 48 51 // place here your own template stuff, not instantiated by factory 49 #include "tmpl_inst.h"50 #include "class.cc"52 #include <libfac/factor/tmpl_inst.h> 53 #include <libfac/factor/class.cc> 51 54 52 55 template class List<int>; -
factory/libfac/factor/tmpl_inst.h
rdccceb rd92d71 5 5 #ifndef TMPL_INST_H 6 6 #define TMPL_INST_H 7 #include "class.h" 7 8 #include <libfac/factor/class.h> 8 9 //typedef CanonicalForm CF; 9 10 //typedef List<CanonicalForm> CFList; -
factory/libfac/factor/version.cc
rdccceb rd92d71 3 3 // $Id$ 4 4 /////////////////////////////////////////////////////////////////////////////// 5 6 /* 5 7 #include "version.h" 6 8 … … 9 11 const char * libfac_date = LIBFAC_DATE; 10 12 const char * libfac_author = "M. Messollen"; 13 */ 11 14 12 int libfac_interruptflag =0;15 int libfac_interruptflag = 0;
Note: See TracChangeset
for help on using the changeset viewer.