matrix4j.matrix.builders.CSRMatrixBuilder Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2019 and onwards Makoto Yui
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package matrix4j.matrix.builders;
import matrix4j.matrix.sparse.CSRMatrix;
import matrix4j.utils.collections.lists.DoubleArrayList;
import matrix4j.utils.collections.lists.IntArrayList;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import javax.annotation.Nonnegative;
import javax.annotation.Nonnull;
/**
* Compressed Sparse Row Matrix builder.
*/
public final class CSRMatrixBuilder extends MatrixBuilder {
private final boolean sortRequired;
@Nonnull
private final IntArrayList rowPointers;
@Nonnull
private final IntArrayList columnIndices;
@Nonnull
private final DoubleArrayList values;
@Nonnull
private final List colCache;
private int maxNumColumns;
public CSRMatrixBuilder(@Nonnegative int initSize) {
this(initSize, true);
}
public CSRMatrixBuilder(@Nonnegative int initSize, boolean sortRequired) {
super();
this.sortRequired = sortRequired;
this.rowPointers = new IntArrayList(initSize + 1);
rowPointers.add(0);
this.columnIndices = new IntArrayList(initSize);
this.values = new DoubleArrayList(initSize);
this.colCache = new ArrayList<>(32);
this.maxNumColumns = 0;
}
@Override
public CSRMatrixBuilder nextRow() {
if (sortRequired) {
Collections.sort(colCache);
}
for (ColValue e : colCache) {
columnIndices.add(e.col);
values.add(e.value);
}
colCache.clear();
int ptr = values.size();
rowPointers.add(ptr);
return this;
}
@Override
public CSRMatrixBuilder nextColumn(@Nonnegative int col, double value) {
checkColIndex(col);
this.maxNumColumns = Math.max(col + 1, maxNumColumns);
if (value == 0.d) {
return this;
}
colCache.add(new ColValue(col, value));
return this;
}
@Override
public CSRMatrix buildMatrix() {
CSRMatrix matrix = new CSRMatrix(rowPointers.toArray(true), columnIndices.toArray(true),
values.toArray(true), maxNumColumns);
return matrix;
}
private static final class ColValue implements Comparable {
final int col;
final double value;
ColValue(int col, double value) {
this.col = col;
this.value = value;
}
@Override
public int compareTo(ColValue o) {
return Integer.compare(col, o.col);
}
@Override
public String toString() {
return "[column=" + col + ", value=" + value + ']';
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy