Sun Mar 15 12:00:59 2026 ccs_to_ge_test(): python version: 3.10.12 numpy version: 1.26.4 Test ccs_to_ge(). ccs_to_ge_test01() Convert a 1-based CCS matrix to GE 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 GE matrix: array([[ 2., 3., 0., 0., 0.], [ 3., 0., 4., 0., 6.], [ 0., -1., -3., 2., 0.], [ 0., 0., 1., 0., 0.], [ 0., 4., 2., 0., 1.]]) ccs_to_ge_test02(): Convert a 0-based CCS matrix to GE 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 GE matrix: array([[ 2., 3., 0., 0., 0.], [ 3., 0., 4., 0., 6.], [ 0., -1., -3., 2., 0.], [ 0., 0., 1., 0., 0.], [ 0., 4., 2., 0., 1.]]) ccs_to_ge_test(): Normal end of execution. Sun Mar 15 12:00:59 2026