Merge remote-tracking branch 'origin/sparse-arithmetic' into v2-sparse

This commit is contained in:
Rogelio J. Baucells 2015-04-27 12:24:03 -04:00
commit 36777eaeb3

View File

@ -628,7 +628,7 @@ function factory (type, config, load, typed) {
size: [arows, bcolumns]
});
// workspace
var x = new Array(arows);
var x = values ? new Array(arows) : undefined;
// vector with marks indicating a value x[i] exists in a given column
var w = new Array(arows);