source: git/kernel/lpolynom.cc @ b546c0

fieker-DuValspielwiese
Last change on this file since b546c0 was ee3507, checked in by Hans Schönemann <hannes@…>, 16 years ago
*hannes: conventions git-svn-id: file:///usr/local/Singular/svn/trunk@10957 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 967 bytes
Line 
1/****************************************
2*  Computer Algebra System SINGULAR     *
3****************************************/
4/* $Id: lpolynom.cc,v 1.2 2008-08-07 13:18:36 Singular Exp $ */
5/*
6* ABSTRACT: lpolynomial definition
7*/
8#include "mod2.h"
9
10#ifdef HAVE_F5
11#include "kutil.h"
12#include "structs.h"
13#include "omalloc.h"
14#include "polys.h"
15#include "p_polys.h"
16#include "ideals.h"
17#include "febase.h"
18#include "kstd1.h"
19#include "khstd.h"
20#include "kbuckets.h"
21#include "weight.h"
22#include "intvec.h"
23#include "pInline1.h"
24#include "f5gb.h"
25#include "lpolynom.h"
26
27
28/*2
29* all functions working on the class lpoly for labeled polynomials
30*/
31
32void lpoly::setPoly(poly p)
33{
34        polynomial = p;
35}
36
37void lpoly::setTerm(poly t)
38{
39        term = t;
40}
41
42void lpoly::setIndex(long i)
43{
44        index = i;
45}
46
47poly lpoly::getPoly()
48{
49        return polynomial;
50}
51
52poly lpoly::getTerm()
53{
54        return term;
55}
56
57long lpoly::getIndex()
58{
59        return index;
60}
61
62
63#endif
Note: See TracBrowser for help on using the repository browser.