source: git/libpolys/polys/monomials/monomials.cc @ f3094a

spielwiese
Last change on this file since f3094a was f3094a, checked in by Oleksandr Motsak <motsak@…>, 12 years ago
moved the definition of p_GetShortExpVector(poly, ring) to p_polys.cc
  • Property mode set to 100644
File size: 798 bytes
Line 
1/****************************************
2*  Computer Algebra System SINGULAR     *
3****************************************/
4/* $Id$ */
5
6/***************************************************************
7 *
8 * File:       polys-impl.cc
9 * Purpose:    low-level procuders for polys.
10 *
11 * If you touch anything here, you better know what you are doing.
12 * What is here should not be used directly from other routines -- the
13 * encapsulations in polys.[h,cc] should be used, instead.
14 *
15 ***************************************************************/
16#ifndef POLYS_IMPL_CC
17#define POLYS_IMPL_CC
18
19#include <stdio.h>
20#include <string.h>
21
22#include "config.h"
23
24#include <omalloc/omalloc.h>
25#include <misc/auxiliary.h>
26
27#ifdef PDEBUG
28#undef NO_INLINE3
29#define NO_INLINE3
30#endif
31
32
33#endif // POLYS_IMPL_CC
Note: See TracBrowser for help on using the repository browser.