| 1 | package com.winvector.opt.def; |
| 2 | |
| 3 | public 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 | } |
no outgoing calls
no test coverage detected