//public ulong this[int i]
        //{
        //	get
        //	{
        //		return bitstream[i];
        //	}
        //}

        /// <summary>
        /// Decompress this CompressedMatrix into the supplied nonalloc Matrix class.
        /// </summary>
        /// <param name="nonalloc">The target for the uncompressed TRS.</param>
        public void Decompress(Matrix nonalloc)
        {
            if (crusher != null)
            {
                crusher.Decompress(nonalloc, this);
            }
            else
            {
                nonalloc.Clear();
            }
        }
示例#2
0
 public Matrix Decompress()
 {
     return(crusher.Decompress(this));
 }