Examples of findRoot()


Examples of io.fathom.cloud.persist.ZookeeperEntityTransaction.findRoot()

    @Override
    public ZookeeperStateNode getRoot(String id) {
        ZookeeperEntityManager entityManager = entityManagerProvider.get();
        ZookeeperEntityTransaction transaction = entityManager.getTransaction();
        ZookeeperStateNode stateNode = transaction.findRoot(id);
        if (stateNode == null) {
            stateNode = new ZookeeperStateNode(null, id);
            transaction.putRoot(id, stateNode);
        }
        return stateNode;
View Full Code Here

Examples of net.sf.doodleproject.numerics4j.root.BisectionRootFinder.findRoot()

        Bracket b = new Bracket(f);
        double[] bracket = b.bracketOut(lower, initial, upper);

        BisectionRootFinder bisection = new BisectionRootFinder(f);
        return bisection.findRoot(bracket[0], bracket[1]);
    }
}
View Full Code Here

Examples of net.sf.doodleproject.numerics4j.root.BisectionRootFinder.findRoot()

            } else {
                bracket = b.bracketOut(Double.NEGATIVE_INFINITY, y, 0.0);
            }

            BisectionRootFinder bisection = new BisectionRootFinder(f);
            ret = bisection.findRoot(bracket[0], bracket[1]);
        }
        return ret;
    }
}
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.