Public Member Functions | Data Fields
resVector Struct Reference

Public Member Functions

void init ()
 
void init (const poly m)
 
poly getElem (const int i)
 index von 0 ... More...
 
number getElemNum (const int i)
 index von 0 ... More...
 

Data Fields

poly mon
 
poly dividedBy
 
bool isReduced
 
int elementOfS
 number of the set S mon is element of More...
 
int * numColParNr
 holds the index of u0, u1, ..., un, if (elementOfS == linPolyS) the size is given by (currRing->N) More...
 
number * numColVector
 holds the column vector if (elementOfS != linPolyS) More...
 
int numColVectorSize
 size of numColVector More...
 
number * numColVecCopy
 

Detailed Description

Definition at line 2003 of file mpr_base.cc.

Member Function Documentation

poly resVector::getElem ( const int  i)

index von 0 ...

numVectors-1

Definition at line 2049 of file mpr_base.cc.

2050 {
2051  assume( 0 < i || i > numColVectorSize );
2052  poly out= pOne();
2053  pSetCoeff( out, numColVector[i] );
2054  pTest( out );
2055  return( out );
2056 }
#define pTest(p)
Definition: polys.h:387
number * numColVector
holds the column vector if (elementOfS != linPolyS)
Definition: mpr_base.cc:2039
#define assume(x)
Definition: mod2.h:405
int i
Definition: cfEzgcd.cc:123
#define pOne()
Definition: polys.h:286
int numColVectorSize
size of numColVector
Definition: mpr_base.cc:2042
polyrec * poly
Definition: hilb.h:10
#define pSetCoeff(p, n)
deletes old coeff before setting the new one
Definition: polys.h:31
number resVector::getElemNum ( const int  i)

index von 0 ...

numVectors-1

Definition at line 2058 of file mpr_base.cc.

2059 {
2060  assume( i >= 0 && i < numColVectorSize );
2061  return( numColVector[i] );
2062 }
number * numColVector
holds the column vector if (elementOfS != linPolyS)
Definition: mpr_base.cc:2039
#define assume(x)
Definition: mod2.h:405
int i
Definition: cfEzgcd.cc:123
int numColVectorSize
size of numColVector
Definition: mpr_base.cc:2042
void resVector::init ( )
inline

Definition at line 2006 of file mpr_base.cc.

2007  {
2008  isReduced = FALSE;
2009  elementOfS = SFREE;
2010  mon = NULL;
2011  }
#define FALSE
Definition: auxiliary.h:140
poly mon
Definition: mpr_base.cc:2026
bool isReduced
Definition: mpr_base.cc:2028
#define SFREE
Definition: mpr_base.h:15
int elementOfS
number of the set S mon is element of
Definition: mpr_base.cc:2031
#define NULL
Definition: omList.c:10
void resVector::init ( const poly  m)
inline

Definition at line 2012 of file mpr_base.cc.

2013  {
2014  isReduced = FALSE;
2015  elementOfS = SFREE;
2016  mon = m;
2017  }
#define FALSE
Definition: auxiliary.h:140
poly mon
Definition: mpr_base.cc:2026
int m
Definition: cfEzgcd.cc:119
bool isReduced
Definition: mpr_base.cc:2028
#define SFREE
Definition: mpr_base.h:15
int elementOfS
number of the set S mon is element of
Definition: mpr_base.cc:2031

Field Documentation

poly resVector::dividedBy

Definition at line 2027 of file mpr_base.cc.

int resVector::elementOfS

number of the set S mon is element of

Definition at line 2031 of file mpr_base.cc.

bool resVector::isReduced

Definition at line 2028 of file mpr_base.cc.

poly resVector::mon

Definition at line 2026 of file mpr_base.cc.

int* resVector::numColParNr

holds the index of u0, u1, ..., un, if (elementOfS == linPolyS) the size is given by (currRing->N)

Definition at line 2036 of file mpr_base.cc.

number* resVector::numColVecCopy

Definition at line 2044 of file mpr_base.cc.

number* resVector::numColVector

holds the column vector if (elementOfS != linPolyS)

Definition at line 2039 of file mpr_base.cc.

int resVector::numColVectorSize

size of numColVector

Definition at line 2042 of file mpr_base.cc.


The documentation for this struct was generated from the following file: