source: git/Singular/binom.h @ fdc537

spielwiese
Last change on this file since fdc537 was 416465, checked in by Olaf Bachmann <obachman@…>, 24 years ago
* bug-fixes from work with Thomas git-svn-id: file:///usr/local/Singular/svn/trunk@3826 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 718 bytes
Line 
1#ifndef BINOM_H
2#define BINOM_H
3/****************************************
4*  Computer Algebra System SINGULAR     *
5****************************************/
6/* $Id: binom.h,v 1.12 1999-11-15 17:19:49 obachman Exp $ */
7/*
8* ABSTRACT - set order (=number of monomial) for dp
9*/
10// #define TEST_MAC_ORDER
11// #define TEST_MAC_DEBUG
12
13#ifdef TEST_MAC_ORDER
14
15#include <limits.h>
16
17extern int      bHighdeg;
18extern int      bHighdeg_1;
19extern BOOLEAN  bNoAdd;
20extern int *    bBinomials;
21
22void            bSetm(poly p);
23void            bSetm0(poly p);
24void            bBinomSet(int * orders);
25int             bComp1dpc(poly p1, poly p2);
26int             bComp1cdp(poly p1, poly p2);
27
28#else
29#undef TEST_MAC_DEBUG
30#endif
31#endif
Note: See TracBrowser for help on using the repository browser.