Examples of GaussKronrodNonAdaptive


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

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
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.