We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9665ba6 commit cefc4aaCopy full SHA for cefc4aa
javascripts/demo.js
@@ -161,7 +161,7 @@ function demo() {
161
case "CSR":
162
case "CSC":
163
return function(i) { return (i == 0) ? 'd' : 's'; };
164
- case "COO":
+ case "Sorted COO":
165
return function(i) {
166
if (i == 0) {
167
return 'u';
@@ -182,13 +182,13 @@ function demo() {
182
if (order == 1) {
183
names.push("Sparse array");
184
} else if (order == 2) {
185
- names.push("COO");
+ names.push("Sorted COO");
186
names.push("CSR");
187
names.push("CSC");
188
names.push("DCSR");
189
names.push("DCSC");
190
} else if (order >= 3) {
191
192
names.push("CSF");
193
}
194
return names;
0 commit comments