Skip to content

Commit cefc4aa

Browse files
committed
Clarify that web tool support for COO is for sorted variant
1 parent 9665ba6 commit cefc4aa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

javascripts/demo.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ function demo() {
161161
case "CSR":
162162
case "CSC":
163163
return function(i) { return (i == 0) ? 'd' : 's'; };
164-
case "COO":
164+
case "Sorted COO":
165165
return function(i) {
166166
if (i == 0) {
167167
return 'u';
@@ -182,13 +182,13 @@ function demo() {
182182
if (order == 1) {
183183
names.push("Sparse array");
184184
} else if (order == 2) {
185-
names.push("COO");
185+
names.push("Sorted COO");
186186
names.push("CSR");
187187
names.push("CSC");
188188
names.push("DCSR");
189189
names.push("DCSC");
190190
} else if (order >= 3) {
191-
names.push("COO");
191+
names.push("Sorted COO");
192192
names.push("CSF");
193193
}
194194
return names;

0 commit comments

Comments
 (0)