tangxu
2022-11-03 e32f35f3850e3209f15d81b0b41117764febc6e2
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);
    }
}