18 February 2020 08:28:37 AM ccs_io_test C++ version Test the ccs_io library. TEST01 Write a sparse matrix in CCS format to 3 files. Full rows M = 5 Full columns N = 5 Full storage = 25 The matrix in 0-based CCS format: # I J A ---- ---- ---- ---------------- 0 0 0 2 1 1 0 3 2 0 1 3 3 2 1 -1 4 4 1 4 5 1 2 4 6 2 2 -3 7 3 2 1 8 4 2 2 9 2 3 2 10 1 4 6 11 4 4 1 TEST02 Read a sparse matrix in CCS format from 3 files. The matrix in 0-based CCS format: # I J A ---- ---- ---- ---------------- 0 0 0 2 1 1 0 3 2 0 1 3 3 2 1 -1 4 4 1 4 5 1 2 4 6 2 2 -3 7 3 2 1 8 4 2 2 9 2 3 2 10 1 4 6 11 4 4 1 ccs_io_test Normal end of execution. 18 February 2020 08:28:37 AM