Changeset 208cd5 in git
- Timestamp:
- Jul 6, 2010, 12:32:18 PM (13 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 1b816a3ddb5c34f33ea139cdcf225e3a6e8a49f3
- Parents:
- 4cfe968e9f2c139f34f69fccb257823023c3890e
- git-author:
- Hans Schoenemann <hannes@mathematik.uni-kl.de>2010-07-06 12:32:18+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 11:55:22+01:00
- Location:
- polys/monomials
- Files:
-
- 4 moved
Legend:
- Unmodified
- Added
- Removed
-
polys/monomials/p_polys.h
r4cfe96 r208cd5 13 13 #define P_POLYS_H 14 14 15 #include <kernel/structs.h>16 #include <kernel/polys-impl.h>15 #include "ring.h" 16 #include "polys-impl.h" 17 17 /* 18 18 Some general remarks: -
polys/monomials/polys-impl.cc
r4cfe96 r208cd5 19 19 #include <stdio.h> 20 20 #include <string.h> 21 #include < kernel/mod2.h>21 #include <auxialiary.h> 22 22 23 23 #include <omalloc/omalloc.h> … … 26 26 #define NO_INLINE3 27 27 #endif 28 #include < kernel/polys-impl.h>28 #include <polys-impl.h> 29 29 30 #include <kernel/structs.h>31 #include < kernel/febase.h>32 #include < kernel/numbers.h>33 #include <kernel/polys.h>34 #include <kernel/ring.h>35 #include <kernel/p_Procs.h>36 #include < kernel/dError.h>30 #include "ring.h" 31 #include <reporter.h> 32 #include <numbers.h> 33 #include "polys.h" 34 #include "ring.h" 35 #include "p_Procs.h" 36 #include <dError.h> 37 37 38 38 #ifdef PDEBUG … … 45 45 * 46 46 ***************************************************************/ 47 48 49 poly pHeadProc(poly p)50 {51 return pHead(p);52 }53 47 54 48 -
polys/monomials/polys-impl.h
r4cfe96 r208cd5 47 47 * 48 48 ***************************************************************/ 49 #ifdef NO_PDEBUG50 #undef PDEBUG51 #endif52 53 49 // determines inlining of poly procs which iter through polys 54 50 #if defined(DO_PINLINE0) && !defined(PDEBUG) … … 243 239 #define rRing_has_Comp(r) (r->pCompIndex >= 0) 244 240 245 // number of Variables246 extern int pVariables;247 248 241 #endif // POLYS_IMPL_H
Note: See TracChangeset
for help on using the changeset viewer.