Ejemplo n.º 1
0
    def test_13_high_sobol(self):
        """Test init of high-dimensional sobol sequences"""

        def f(x):
            return 0

        bounds = [(None, None), ] * 41
        SHGOc = SHGO(f, bounds)
        SHGOc.sobol_points(2, 50)
Ejemplo n.º 2
0
    def test_13_high_sobol(self):
        """Test init of high-dimensional sobol sequences"""

        def f(x):
            return 0

        bounds = [(None, None), ] * 41
        SHGOc = SHGO(f, bounds)
        SHGOc.sobol_points(2, 50)
Ejemplo n.º 3
0
 def test_7_2_minkwargs(self):
     """Test the minimizer_kwargs default inits"""
     minimizer_kwargs = {'ftol': 1e-5}
     options = {'disp': True}  # For coverage purposes
     SHGO(test3_1.f,
          test3_1.bounds,
          constraints=test3_1.cons[0],
          minimizer_kwargs=minimizer_kwargs,
          options=options)
Ejemplo n.º 4
0
 def test_9_cons_g(self):
     """Test single function constraint passing"""
     SHGO(test3_1.f, test3_1.bounds, constraints=test3_1.cons[0])