Changeset 1450c9 in git
- Timestamp:
- Sep 8, 2011, 7:45:45 PM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 1a20e55502c0dfa3a9f2bef770f1555129241ab4
- Parents:
- 1da2a132d49570abee2ff48d0373549833495572
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-09-08 19:45:45+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 16:12:36+01:00
- Files:
-
- 1 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/fglm.cc
r1da2a13 r1450c9 20 20 21 21 #ifdef HAVE_FACTORY 22 #include <Singular/tok.h> 22 23 24 #include <omalloc/omalloc.h> 23 25 #include <misc/options.h> 26 27 #include <polys/monomials/ring.h> 28 #include <polys/monomials/maps.h> 29 30 #include <kernel/febase.h> 24 31 #include <kernel/polys.h> 25 32 #include <kernel/ideals.h> 26 #include <polys/monomials/ring.h> 33 34 #include <kernel/kstd1.h> 35 #include <kernel/fglm.h> 36 37 #include <Singular/fglm.h> 27 38 #include <Singular/ipid.h> 28 39 #include <Singular/ipshell.h> 29 #include <kernel/febase.h> 30 #include <polys/monomials/maps.h> 31 #include <omalloc/omalloc.h> 32 #include <kernel/kstd1.h> 33 #include <kernel/fglm.h> 40 #include <Singular/tok.h> 41 34 42 35 43 // internal Version: 1.18.1.6 -
Singular/iparith.cc
r1da2a13 r1450c9 70 70 #ifdef HAVE_FACTORY 71 71 # include <kernel/fglm.h> 72 # include <Singular/fglm.h> 72 73 #endif /* HAVE_FACTORY */ 73 74 #include <Singular/interpolation.h> -
Singular/makefile
r1da2a13 r1450c9 164 164 eigenval_ip.h \ 165 165 feOpt.h \ 166 fglm.h \ 166 167 gms.h \ 167 168 grammar.h \ -
factory/ftmpl_inst.cc
r1da2a13 r1450c9 16 16 #include "factoryconf.h" 17 17 18 #include "factory.h" 19 18 20 #include "templates/ftmpl_array.cc" 19 21 #include "templates/ftmpl_factor.cc" … … 21 23 #include "templates/ftmpl_functions.h" 22 24 #include "templates/ftmpl_matrix.cc" 23 24 #include "factory.h"25 25 26 26 -
kernel/fglm.h
r1da2a13 r1450c9 85 85 BOOLEAN fglmquot( ideal sourceIdeal, poly quot, ideal & destIdeal ); 86 86 87 // fglmproc(...):88 // The procedure which has to be called from the interpreter for fglm.89 // first is the sourceRing, second is the given ideal in sourceRing.90 // Returns the groebnerbasis of the sourceIdeal in the currentRing.91 // Checks, if the ideal is really a reduced groebner basis of a92 // 0-dimensional Ideal. Returns TRUE if an error occoured.93 BOOLEAN fglmProc( leftv result, leftv first, leftv second );94 95 // fglmquotproc(...):96 // The procedure which has to be called from the interpreter for fglmquot.97 // first is the ideal I, second is the polynomial q. The polynomial must98 // be reduced with respect to I.99 // Returns the groebnerbasis of I:q in the currentRing.100 // Checks, if the ideal is really a reduced groebner basis of a101 // 0-dimensional Ideal and if q is really reduced.102 // Returns TRUE if an error occoured.103 BOOLEAN fglmQuotProc( leftv result, leftv first, leftv second );104 105 // FindUnivariatePolys (test)106 BOOLEAN FindUnivariateWrapper( ideal source, ideal & dest );107 108 // wrapper for FindUnivariatePolys (test)109 BOOLEAN findUniProc( leftv result, leftv first);110 111 // homogeneous FGLM112 ideal fglmhomProc(leftv first, leftv second);113 87 #endif 114 88 #endif -
kernel/fglmzero.cc
r1da2a13 r1450c9 20 20 21 21 #include <kernel/mod2.h> 22 23 22 24 #ifdef HAVE_FACTORY 23 25 // assumes, that NOSTREAMIO is set in factoryconf.h, which is included 24 26 // by templates/list.h. 27 25 28 #include <factory/factory.h> 29 26 30 #include <factory/templates/ftmpl_list.h> 31 #include <factory/templates/ftmpl_list.cc> 32 33 #include <omalloc/omalloc.h> 27 34 28 35 #include <misc/options.h> 36 #include <misc/intvec.h> 37 38 #include <polys/monomials/maps.h> 39 #include <polys/monomials/ring.h> 40 29 41 #include <kernel/polys.h> 30 42 #include <kernel/ideals.h> 31 #include <polys/monomials/ring.h>32 43 #include <kernel/febase.h> 33 #include <polys/monomials/maps.h>34 #include <omalloc/omalloc.h>35 44 #include <kernel/kstd1.h> 36 #include <misc/intvec.h> 45 37 46 #include <kernel/fglm.h> 38 47 #include <kernel/fglmvec.h> 39 48 #include <kernel/fglmgauss.h> 49 40 50 #define PROT(msg) 41 51 #define STICKYPROT(msg) if (BTEST1(OPT_PROT)) Print(msg)
Note: See TracChangeset
for help on using the changeset viewer.