Uses of Class
shh.csparse.CSparse

Packages that use CSparse
shh.csparse   
shh.homolalg   
shh.util   
 

Uses of CSparse in shh.csparse
 

Methods in shh.csparse that return CSparse
 CSparse MPDQ.getMat()
          Returns the original matrix this MPDQ was asked to simplify, or null if the computation was destructive.
 CSparse MPDQ.getD()
          See the comment on the class MPDQ.
static CSparse CSparse.makeZeroAndId(int m, int n, int i0, int j0, int s)
          Returns an m × n CSparse that is zero except that, in the square block starting at i0,j0 and of side s, it is the identity.
 CSparse CSparse.copyWithoutZeroCols()
          Returns a new CSparse whose columns are copies of the columns of this, except that null or zero columns are omitted.
static CSparse CSparse.concatLeftRight(CSparse A, CSparse B)
          Concatenates A, B into (A | B).
 CSparse CSparse.copyMod(int p)
          If this CSparse has entries over Z, returns a new CSparse whose entries are their reductions mod p.
 

Methods in shh.csparse with parameters of type CSparse
static double MPDQ.bitLength(CSparse A)
          Sums SparseElt.bitLength() for all the entries, and returns the sum in kilobytes (kB).
 boolean CSparse.equalsCSparse(CSparse b)
          Returns true if and only if this and b have the same size and the entries are equal term by term.
static CSparse CSparse.concatLeftRight(CSparse A, CSparse B)
          Concatenates A, B into (A | B).
 

Constructors in shh.csparse with parameters of type CSparse
UnivCoeff(CSparse delta1, CSparse delta0)
          The constructor runs the jobs described in the comment on the class (UnivCoeff).
MPDQ(CSparse mat, boolean useP, boolean useQ, boolean destructive)
          Basic constructor.
MPDQ(CSparse mat)
          Constructs an MPDQ that remembers both P and Q and works non-destructively.
 

Uses of CSparse in shh.homolalg
 

Methods in shh.homolalg that return CSparse
protected  CSparse QvspMorphism.getMatrix()
          See the comment on the class.
 

Constructors in shh.homolalg with parameters of type CSparse
QvspMorphism(Qvsp source, Qvsp target, CSparse matrix)
          Constructor.
 

Uses of CSparse in shh.util
 

Constructors in shh.util with parameters of type CSparse
CSparseWin(CSparse A, String title)