bstellato / mlopt

The Machine Learning Optimizer
Apache License 2.0
101 stars 24 forks source link

Object-oriented strategies interface #6

Open bstellato opened 4 years ago

bstellato commented 4 years ago

Implement strategies with an abstract class. Each strategy will define useful information to help solving the problem and hopefully making it convex. Examples are (combinations of):

The object-oriented interface will deal with how to:

  1. Retrieve the strategy from the original problem solution
  2. Solve the problem with the strategic information

In order to do so, we need to inject the Strategy in the reduction chain (possible after the ParamProg).