source: git/kernel/lpolynom.h @ 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: 690 bytes
Line 
1/****************************************
2*  Computer Algebra System SINGULAR     *
3****************************************/
4/* $Id: lpolynom.h,v 1.2 2008-08-07 13:18:36 Singular Exp $ */
5/*
6* ABSTRACT: f5gb interface
7*/
8#ifndef LPOLYNOM_HEADER
9#define LPOLYNOM_HEADER
10
11#ifdef HAVE_F5
12
13
14// class of a labeled polynomial
15class lpoly
16{
17        private:
18                poly term;
19                long index;
20                poly polynomial;
21
22        public:
23                void setPoly(poly p);
24                poly getPoly();
25                void setTerm(poly t);
26                poly getTerm();
27                void setIndex(long i);
28                long getIndex();
29};
30
31#endif
32#endif
33
34
Note: See TracBrowser for help on using the repository browser.