1
2
3
4
5
6
7
8
9
10
11
12
| using IStation.Numerics.LinearAlgebra;
|
| namespace IStation.Numerics.Optimization.TrustRegion
| {
| public interface ITrustRegionSubproblem
| {
| Vector<double> Pstep { get; }
| bool HitBoundary { get; }
|
| void Solve(IObjectiveModel objective, double radius);
| }
| }
|
|