tangxu
2022-10-24 805b967b4ee65cd5022cad20451299f6ce56c949
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using IStation.Numerics.Optimization.TrustRegion.Subproblems;
 
namespace IStation.Numerics.Optimization.TrustRegion
{
    public static class TrustRegionSubproblem
    {
        public static ITrustRegionSubproblem DogLeg()
        {
            return new DogLegSubproblem();
        }
 
        public static ITrustRegionSubproblem NewtonCG()
        {
            return new NewtonCGSubproblem();
        }
    }
}