MCPcopy Index your code
hub / github.com/WinVector/Logistic / VectorOptimizer

Interface VectorOptimizer

src/com/winvector/opt/def/VectorOptimizer.java:3–12  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1package com.winvector.opt.def;
2
3public interface VectorOptimizer {
4 /**
5 * run complete optimization
6 * @param f vector function to maximize
7 * @param x initial start
8 * @param maxRounds maximum number of rounds to try (approximate)
9 * @return
10 */
11 VEval maximize(final VectorFn f, double[] x, final int maxRounds);
12}

Callers 1

testMaxMethod · 0.65

Implementers 4

ConjugateGradientOptimizersrc/com/winvector/opt/impl/ConjugateGr
Newtonsrc/com/winvector/opt/impl/Newton.java
GradientDescentsrc/com/winvector/opt/impl/GradientDes
LinMaxsrc/com/winvector/opt/impl/LinMax.java

Calls

no outgoing calls

Tested by

no test coverage detected