You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "Input for a single matrix generation operation",
5
+
"type": "object",
6
+
"properties": {
7
+
"filename": {
8
+
"type": "string"
9
+
},
10
+
"problem": {
11
+
"type": "object",
12
+
"properties": {
13
+
"type": {
14
+
"enum": [
15
+
"block-diagonal"
16
+
]
17
+
},
18
+
"num_blocks": {
19
+
"type": "integer",
20
+
"minimum": 1
21
+
},
22
+
"block_size": {
23
+
"type": "integer",
24
+
"minimum": 1
25
+
}
26
+
}
27
+
}
28
+
},
29
+
"required": [
30
+
"filename",
31
+
"problem"
32
+
],
33
+
"examples": [
34
+
{
35
+
"$comment": "The generated matrix will have a dense block of size <block-size>, with random real values chosen uniformly in the interval [-1, 1], repeated <num-blocks> times on the diagonal"
0 commit comments