Package org.jquantlib.math.integrals

Examples of org.jquantlib.math.integrals.GaussKronrodNonAdaptive


    public void testGaussKronrodNonAdaptive() {
        QL.info("Testing non-adaptive Gauss-Kronrod integration...");
        final double precision = tolerance;
        final int maxEvaluations = 100;
        final double relativeAccuracy = tolerance;
        final GaussKronrodNonAdaptive gaussKronrodNonAdaptive = new GaussKronrodNonAdaptive(precision, maxEvaluations, relativeAccuracy);
        testSeveral(gaussKronrodNonAdaptive);
    }
View Full Code Here


    public void testGaussKronrodNonAdaptive() {
        QL.info("Testing non-adaptive Gauss-Kronrod integration...");
        final double precision = tolerance;
        final int maxEvaluations = 100;
        final double relativeAccuracy = tolerance;
        final GaussKronrodNonAdaptive gaussKronrodNonAdaptive = new GaussKronrodNonAdaptive(precision, maxEvaluations, relativeAccuracy);
        testSeveral(gaussKronrodNonAdaptive);
    }
View Full Code Here

TOP

Related Classes of org.jquantlib.math.integrals.GaussKronrodNonAdaptive

Copyright © 2018 www.massapicom. 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.