Exemplo n.º 1
0
 /// <summary>
 /// Compress this matrix using the crusher it was previously created with.
 /// </summary>
 /// <returns></returns>
 public CompressedMatrix Compress()
 {
     return(crusher.Compress(this));
 }
Exemplo n.º 2
0
 /// <summary>
 /// Compress this matrix using the crusher it was previously created with.
 /// </summary>
 /// <returns></returns>
 public void Compress(CompressedMatrix nonalloc)
 {
     crusher.Compress(nonalloc, this);
 }