Uses of Class
shh.csparse.SparseEltZ

Packages that use SparseEltZ
shh.csparse   
 

Uses of SparseEltZ in shh.csparse
 

Subclasses of SparseEltZ in shh.csparse
 class SparseEltZBig
          Elements of a sparse vector over Z, using arbitrary-precision integers (BigIntegers).
 class SparseEltZInt
          Elements of a sparse vector over Z, using int to store the values.
 

Fields in shh.csparse declared as SparseEltZ
static SparseEltZ SparseEltZ.ZERO
          A constant with value 0 and unspecified index.
static SparseEltZ SparseEltZ.ONE
          A constant with value 1 and unspecified index.
static SparseEltZ SparseEltZ.NEG_ONE
          A constant with value -1 and unspecified index.
 

Methods in shh.csparse that return SparseEltZ
 SparseEltZ SparseEltZInt.abs()
           
 SparseEltZ[] SparseEltZInt.divideAndRemainder(SparseEltZ y)
           
 SparseEltZ MPDQ.det()
          Returns a SparseEltZ whose value is the determinant of M and of unspecified index.
abstract  SparseEltZ SparseEltZ.abs()
          Returns a SparseEltZ whose value is the absolute value of the value of this, and whose index is that of this.
abstract  SparseEltZ[] SparseEltZ.divideAndRemainder(SparseEltZ y)
          Computes this/y and returns a two-element array with values quotient and remainder.
static SparseEltZ SparseEltZ.makeInstance(int index, BigInteger value)
          Makes a new instance of SparseEltZ, using the specified arguments.
static SparseEltZ SparseEltZ.makeInstance(int index, int value)
          Makes a new instance of SparseEltZ, using the specified arguments.
 SparseEltZ SparseEltZBig.abs()
           
 SparseEltZ[] SparseEltZBig.divideAndRemainder(SparseEltZ y)
           
 

Methods in shh.csparse with parameters of type SparseEltZ
 SparseEltZ[] SparseEltZInt.divideAndRemainder(SparseEltZ y)
           
abstract  SparseEltZ[] SparseEltZ.divideAndRemainder(SparseEltZ y)
          Computes this/y and returns a two-element array with values quotient and remainder.
 SparseEltZ[] SparseEltZBig.divideAndRemainder(SparseEltZ y)