Exemple #1
0
        static private void TestPackUnpack()
        {
            int aout; int bout;
            int a = 511;
            int b = 234400;

            ulong c = Sparse.PackInts(a, b);

            Sparse.UnpackInts(out aout, out bout, c);
            Debug.Assert(a == aout && b == bout);
        }