
- Renamed all folders from format NEx (e.g., 1Ex, 2Ex...) to 0NEx (01Ex, 02Ex, etc.) - Updated subdirectories and files accordingly - Removed old main Makefile and tasks (a01.c–a09.c, solve.c, io_status.h), likely obsolete - Cleaned up deprecated task binaries and configs
102 lines
1.9 KiB
JSON
102 lines
1.9 KiB
JSON
{
|
|
"exe": "a03.exe",
|
|
"filename": "matrix.txt",
|
|
"tests": [
|
|
{
|
|
"name": "File Matrix Test",
|
|
"k": 0,
|
|
"matrix": "1 2 3 4\n1 2 3 4\n1 2 3 4\n1 2 3 4"
|
|
},
|
|
{
|
|
"name": "Generated Matrix (k=1)",
|
|
"k": 1,
|
|
"n": 3,
|
|
"p": 3
|
|
},
|
|
{
|
|
"name": "Generated Matrix (k=3)",
|
|
"k": 3,
|
|
"n": 3,
|
|
"p": 3
|
|
},
|
|
{
|
|
"name": "File Matrix (Basic Trace)",
|
|
"k": 0,
|
|
"n": 3,
|
|
"p": 3,
|
|
"matrix": "1 2 3\n4 5 6\n7 8 9"
|
|
},
|
|
{
|
|
"name": "File Matrix (Negative Numbers)",
|
|
"k": 0,
|
|
"n": 3,
|
|
"p": 3,
|
|
"matrix": "-1 -2 -3\n-4 -5 -6\n-7 -8 -9"
|
|
},
|
|
{
|
|
"name": "File Matrix (Mixed Positive and Negative)",
|
|
"k": 0,
|
|
"n": 3,
|
|
"p": 3,
|
|
"matrix": "1 -2 3\n-4 5 -6\n7 -8 9"
|
|
},
|
|
{
|
|
"name": "File Matrix (Floating Point Values)",
|
|
"k": 0,
|
|
"n": 3,
|
|
"p": 3,
|
|
"matrix": "1.1 2.2 3.3\n4.4 5.5 6.6\n7.7 8.8 9.9"
|
|
},
|
|
{
|
|
"name": "Generated Matrix (k=1)",
|
|
"k": 1,
|
|
"n": 3,
|
|
"p": 3
|
|
},
|
|
{
|
|
"name": "Generated Matrix (k=2)",
|
|
"k": 2,
|
|
"n": 3,
|
|
"p": 3
|
|
},
|
|
{
|
|
"name": "Generated Matrix (k=3)",
|
|
"k": 3,
|
|
"n": 3,
|
|
"p": 3
|
|
},
|
|
{
|
|
"name": "Generated Matrix (k=4, Fractional Values)",
|
|
"k": 4,
|
|
"n": 3,
|
|
"p": 3
|
|
},
|
|
{
|
|
"name": "1x1 Matrix (Single Element)",
|
|
"k": 0,
|
|
"n": 1,
|
|
"p": 1,
|
|
"matrix": "42"
|
|
},
|
|
{
|
|
"name": "2x2 Matrix",
|
|
"k": 0,
|
|
"n": 2,
|
|
"p": 2,
|
|
"matrix": "1 2\n3 4"
|
|
},
|
|
{
|
|
"name": "4x4 Identity Matrix",
|
|
"k": 0,
|
|
"n": 4,
|
|
"p": 4,
|
|
"matrix": "1 0 0 0\n0 1 0 0\n0 0 1 0\n0 0 0 1"
|
|
},
|
|
{
|
|
"name": "1000x1000 Large Matrix",
|
|
"k": 1,
|
|
"n": 1000,
|
|
"p": 5
|
|
}
|
|
]
|
|
}
|