org.ojalgo.matrix.store.SingleStore Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ojalgo Show documentation
Show all versions of ojalgo Show documentation
oj! Algorithms - ojAlgo - is Open Source Java code that has to do with mathematics, linear algebra and optimisation.
/*
* Copyright 1997-2020 Optimatika
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package org.ojalgo.matrix.store;
import org.ojalgo.ProgrammingError;
import org.ojalgo.scalar.Scalar;
import org.ojalgo.structure.Access1D;
final class SingleStore> extends FactoryStore {
private final N myNumber;
private final double myValue;
private SingleStore(final PhysicalStore.Factory factory, final int rowsCount, final int columnsCount) {
super(factory, rowsCount, columnsCount);
myNumber = null;
myValue = 0;
ProgrammingError.throwForIllegalInvocation();
}
SingleStore(final PhysicalStore.Factory factory, final Comparable element) {
super(factory, 1, 1);
Scalar converted = factory.scalar().convert(element);
myNumber = converted.get();
myValue = converted.doubleValue();
}
@Override
public MatrixStore conjugate() {
return new SingleStore<>(this.physical(), this.physical().scalar().convert(myNumber).conjugate().get());
}
@Override
public double doubleValue(final long anInd) {
return myValue;
}
public double doubleValue(final long aRow, final long aCol) {
return myValue;
}
public N get(final long aRow, final long aCol) {
return myNumber;
}
public void multiply(final Access1D right, final TransformableRegion target) {
// TODO Auto-generated method stub
super.multiply(right, target);
}
public MatrixStore multiply(final double scalar) {
// TODO Auto-generated method stub
return super.multiply(scalar);
}
@Override
public MatrixStore multiply(final MatrixStore right) {
final PhysicalStore.Factory tmpFactory = this.physical();
final PhysicalStore retVal = tmpFactory.copy(right);
retVal.modifyAll(tmpFactory.function().multiply().first(myNumber));
return retVal;
}
public MatrixStore multiply(final N scalar) {
// TODO Auto-generated method stub
return super.multiply(scalar);
}
@Override
public N multiplyBoth(final Access1D leftAndRight) {
// TODO Auto-generated method stub
return super.multiplyBoth(leftAndRight);
}
public ElementsSupplier premultiply(final Access1D left) {
// TODO Auto-generated method stub
return super.premultiply(left);
}
public void supplyTo(final TransformableRegion receiver) {
receiver.fillOne(0L, 0L, myNumber);
}
public Scalar toScalar(final long row, final long column) {
return this.physical().scalar().convert(myNumber);
}
@Override
public MatrixStore transpose() {
return this;
}
}