Wed Jun 22 12:50:48 2022 ccs_to_st_test(): Python version: 3.6.9 Test ccs_to_st(). ccs_to_st_test01() Convert a 1-based CCS matrix to ST format. The CCS matrix: # I J A ---- ---- ---- -------------- 1 1 1 2 2 2 1 3 3 1 2 3 4 3 2 -1 5 5 2 4 6 2 3 4 7 3 3 -3 8 4 3 1 9 5 3 2 10 3 4 2 11 2 5 6 12 5 5 1 The ST matrix: 5 rows by 5 columns 0 0 0 2.00000000 1 1 0 3.00000000 2 0 1 3.00000000 3 2 1 -1.00000000 4 4 1 4.00000000 5 1 2 4.00000000 6 2 2 -3.00000000 7 3 2 1.00000000 8 4 2 2.00000000 9 2 3 2.00000000 10 1 4 6.00000000 11 4 4 1.00000000 ccs_to_st_test02(): Convert a 0-based CCS matrix to ST format. The CCS matrix: # 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 The ST matrix: 5 rows by 5 columns 0 0 0 2.00000000 1 1 0 3.00000000 2 0 1 3.00000000 3 2 1 -1.00000000 4 4 1 4.00000000 5 1 2 4.00000000 6 2 2 -3.00000000 7 3 2 1.00000000 8 4 2 2.00000000 9 2 3 2.00000000 10 1 4 6.00000000 11 4 4 1.00000000 ccs_to_st_test(): Normal end of execution. Wed Jun 22 12:50:49 2022