Package org.ejml.alg.dense.decompose.lu

Source Code of org.ejml.alg.dense.decompose.lu.TestLUDecompositionNR

/*
* Copyright (c) 2009-2012, Peter Abeles. All Rights Reserved.
*
* This file is part of Efficient Java Matrix Library (EJML).
*
* EJML is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation, either version 3
* of the License, or (at your option) any later version.
*
* EJML is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with EJML.  If not, see <http://www.gnu.org/licenses/>.
*/

package org.ejml.alg.dense.decompose.lu;

import org.ejml.alg.dense.decomposition.lu.GeneralLuDecompositionChecks;
import org.ejml.alg.dense.decomposition.lu.LUDecompositionBase;
import org.ejml.alg.dense.decomposition.lu.LUDecompositionNR;

import java.util.Random;


/**
* @author Peter Abeles
*/
public class TestLUDecompositionNR extends GeneralLuDecompositionChecks {
    @Override
    public LUDecompositionBase create(int numRows, int numCols) {
        return new LUDecompositionNR();
    }
}
TOP

Related Classes of org.ejml.alg.dense.decompose.lu.TestLUDecompositionNR

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.