All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jeometry.test.math.decomposition.CholeskyDecompositionTest Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
package org.jeometry.test.math.decomposition;


import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import static org.junit.jupiter.api.Assertions.fail;

import org.jeometry.Jeometry;
import org.jeometry.factory.JeometryFactory;
import org.jeometry.math.Matrix;
import org.jeometry.math.decomposition.CholeskyDecomposition;
import org.jeometry.test.math.MathTestData;
import org.jeometry.test.math.solver.ResolvableTest;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;


/**
 * A test suite dedicated to the {@link CholeskyDecomposition}.
*
* Usage: *

* This test class will test the Cholesky decomposition that is given by {@link JeometryFactory#createCholeskyDecomposition(Matrix)}. * To test a specific implementation you can create a class that extends this one and add the method:

* * {@literal @}BeforeClass
* public static void initClass() {
*   GeometryFactory.setMathBuilder([the math builder]);
*
*   decompositionClass = [the decomposition to test];
* }

*
* If the decomposition that is provided by {@link JeometryFactory#createCholeskyDecomposition(Matrix)} is not from the same class as decompositionClass, tests will fail. * @author Julien Seinturier - COMEX S.A. - [email protected] - https://github.com/jorigin/jeometry * @version {@value Jeometry#version} * @since 1.0.0 */ public class CholeskyDecompositionTest { /** * Epsilon for numeric comparison. */ public static double EPSILON = 0.0000001d; /** * The class of the decomposition */ protected static Class decompositionClass = null; /** * Initialize the test static context. */ @BeforeAll public static void initClass() { fail("method public static void init() has to be set up with @BeforeClass annotation"); } /** * A test dedicated to the {@link CholeskyDecomposition}. */ @Test public void choleskyDecompositionTest() { Matrix input = JeometryFactory.createMatrix(MathTestData.DECOMPOSITION_CHOLESKY_INPUT); CholeskyDecomposition decomposition = JeometryFactory.createCholeskyDecomposition(input); assertNotNull(decomposition, "Decomposition is null"); if (decompositionClass != null) { assertEquals(decompositionClass, decomposition.getClass(), "Expected decomposition class "+decompositionClass.getSimpleName()+" but got "+decomposition.getClass().getSimpleName()); } Matrix r = decomposition.getR(); assertNotNull(r, "R is null"); assertEquals(MathTestData.DECOMPOSITION_CHOLESKY_R.length, r.getRowsCount(), "R size error, expected ("+MathTestData.DECOMPOSITION_CHOLESKY_R.length+", "+MathTestData.DECOMPOSITION_CHOLESKY_R[0].length+") but got ("+r.getRowsCount()+", "+r.getColumnsCount()+")"); assertEquals(MathTestData.DECOMPOSITION_CHOLESKY_R[0].length, r.getColumnsCount(), "R size error, expected ("+MathTestData.DECOMPOSITION_CHOLESKY_R.length+", "+MathTestData.DECOMPOSITION_CHOLESKY_R[0].length+") but got ("+r.getRowsCount()+", "+r.getColumnsCount()+")"); // Test composition Matrix composed = r.multiply(r.transpose()); assertNotNull(composed, "Composed is null"); assertEquals(MathTestData.DECOMPOSITION_CHOLESKY_INPUT.length, composed.getRowsCount(), "Composed size error, expected ("+MathTestData.DECOMPOSITION_CHOLESKY_INPUT.length+", "+MathTestData.DECOMPOSITION_CHOLESKY_INPUT[0].length+") but got ("+composed.getRowsCount()+", "+composed.getColumnsCount()+")"); assertEquals(MathTestData.DECOMPOSITION_CHOLESKY_INPUT[0].length, composed.getColumnsCount(), "Composed size error, expected ("+MathTestData.DECOMPOSITION_CHOLESKY_INPUT.length+", "+MathTestData.DECOMPOSITION_CHOLESKY_INPUT[0].length+") but got ("+composed.getRowsCount()+", "+composed.getColumnsCount()+")"); for(int row = 0; row < composed.getRowsCount(); row++) { for(int col = 0; col < composed.getColumnsCount(); col++) { assertEquals(MathTestData.DECOMPOSITION_CHOLESKY_INPUT[row][col], composed.getValue(row, col), EPSILON, "Bad value ("+row+", "+col+")"); } } // Test solve double[][] solveInput = MathTestData.DECOMPOSITION_CHOLESKY_INPUT; double[] solveConstant = MathTestData.DECOMPOSITION_CHOLESKY_SOLVE_CONSTANT; double[] solveResult = MathTestData.DECOMPOSITION_CHOLESKY_SOLVE_RESULT; ResolvableTest.testSolve(JeometryFactory.createMatrix(solveInput), JeometryFactory.createMatrix(solveConstant.length, 1, solveConstant, Matrix.ROW_MAJOR), JeometryFactory.createMatrix(solveResult.length, 1, solveResult, Matrix.ROW_MAJOR), decomposition, EPSILON); ResolvableTest.testSolve(JeometryFactory.createMatrix(solveInput), JeometryFactory.createVector(solveConstant), JeometryFactory.createVector(solveResult), decomposition, EPSILON); ResolvableTest.testSolveResult(JeometryFactory.createMatrix(solveInput), JeometryFactory.createMatrix(solveConstant.length, 1, solveConstant, Matrix.ROW_MAJOR), JeometryFactory.createMatrix(solveResult.length, 1, solveResult, Matrix.ROW_MAJOR), decomposition, EPSILON); ResolvableTest.testSolveResult(JeometryFactory.createMatrix(solveInput), JeometryFactory.createVector(solveConstant), JeometryFactory.createVector(solveResult), decomposition, EPSILON); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy