public GoldenSecantMinimum(ISimpleLogger logger)
 {
     _goldenSection = new GoldenSectionWithDerivativeConstrainedMinimum(logger);
     _secant        = new UnimodalSecantMinimum(logger);
 }
Example #2
0
 public GoldenSectionWithDerivativeConstrainedMinimumTests(ITestOutputHelper output) : base(output)
 {
     _method = new GoldenSectionWithDerivativeConstrainedMinimum(Logger);
 }