Hello, Sorry, previous message was a mess.... Based on Apache common math, I have implemented some commonplace optimization algorithms that could be integrated in ACM. This includes - Gradient Descent (en.wikipedia.org/wiki/Gradient_descent)
- Newton Raphson (https://en.wikipedia.org/wiki/Newton's_method_in_optimization) - BFGS (https://en.wikipedia.org/wiki/Broyden–Fletcher–Goldfarb–Shanno_algorithm) They are implemented in such a way that other algorithms of the same family (Newton) can be implemented easily from existing building blocks. I clone http://gitbox.apache.org/repos/asf/commons-math.git but I am a bit lost in the module structure. Should I put my code in one existing commons-math4-* module (if so which one?) or should I create a new module (for instance commons-math-optimization) ? Many thanks in advance François Laferrière