コード例 #1
0
    def test_include_constraint_equality_w_external_var(self):
        theta = MX.sym('theta')

        aop = AbstractOptimizationProblem()
        x = aop.create_variable('x', 2)

        aop.include_constraint(x + 2 == theta)
コード例 #2
0
    def test_set_objective(self):
        aop = AbstractOptimizationProblem()
        x = aop.create_variable('x', 2)
        f = x[0]**2 + x[1]**2
        aop.set_objective(f)

        self.assertTrue(is_equal(aop.f, f))
コード例 #3
0
 def test_include_inequality_ub_wrong_size(self):
     ub = -DM(range(1, 5))
     lb = DM(range(5, 8))
     aop = AbstractOptimizationProblem()
     x = aop.create_variable('x', 2)
     g = x[0] - x[1]
     self.assertRaises(ValueError, aop.include_inequality, g, lb=lb, ub=ub)
コード例 #4
0
 def test_include_equality_scalar_bound(self):
     rhs = 2
     aop = AbstractOptimizationProblem()
     x = aop.create_variable('x', 2)
     g = 2 * x
     aop.include_equality(g, rhs=rhs)
     self.assertTrue(is_equal(aop.g_lb, repmat(rhs, 2)))
     self.assertTrue(is_equal(aop.g_ub, repmat(rhs, 2)))
コード例 #5
0
 def test_include_equality(self):
     aop = AbstractOptimizationProblem()
     x = aop.create_variable('x', 2)
     g = x[0] - x[1]
     aop.include_equality(g)
     self.assertTrue(is_equal(aop.g, g))
     self.assertTrue(is_equal(aop.g_lb, 0))
     self.assertTrue(is_equal(aop.g_ub, 0))
コード例 #6
0
 def test_include_equality_with_bounds(self):
     rhs = 2
     aop = AbstractOptimizationProblem()
     x = aop.create_variable('x', 2)
     g = x[0] - x[1]
     aop.include_equality(g, rhs=rhs)
     self.assertTrue(is_equal(aop.g, g))
     self.assertTrue(is_equal(aop.g_lb, rhs))
     self.assertTrue(is_equal(aop.g_ub, rhs))
コード例 #7
0
 def test_include_inequality_scalar_bound(self):
     lb = 1
     ub = 4
     aop = AbstractOptimizationProblem()
     x = aop.create_variable('x', 2)
     g = 2 * x
     aop.include_inequality(g, lb=lb, ub=ub)
     self.assertTrue(is_equal(aop.g_lb, repmat(lb, 2)))
     self.assertTrue(is_equal(aop.g_ub, repmat(ub, 2)))
コード例 #8
0
    def test_include_equality_w_external_variable_in_expr(self):
        theta = MX.sym('theta')

        aop = AbstractOptimizationProblem()
        x = aop.create_variable('x', 2)
        g = theta * x[0] - x[1]
        aop.include_equality(g)
        self.assertTrue(is_equal(aop.g, g))
        self.assertTrue(is_equal(aop.g_lb, 0))
        self.assertTrue(is_equal(aop.g_ub, 0))
コード例 #9
0
 def test_include_inequality_with_lb_greater_ub(self):
     lb = 5
     ub = 1
     aop = AbstractOptimizationProblem()
     x = aop.create_variable('x', 2)
     self.assertRaises(ValueError,
                       aop.include_inequality,
                       x[0] - x[1],
                       lb=lb,
                       ub=ub)
コード例 #10
0
 def test_include_inequality_with_bounds(self):
     lb = 2
     ub = 3
     aop = AbstractOptimizationProblem()
     x = aop.create_variable('x', 2)
     g = x[0] - x[1]
     aop.include_inequality(g, lb=lb, ub=ub)
     self.assertTrue(is_equal(aop.g, g))
     self.assertTrue(is_equal(aop.g_lb, lb))
     self.assertTrue(is_equal(aop.g_ub, ub))
コード例 #11
0
 def test_include_inequality_w_external_variable_in_bound(self):
     theta = MX.sym('theta')
     lb = -theta
     ub = theta
     aop = AbstractOptimizationProblem()
     x = aop.create_variable('x', 2)
     g = x[0] - x[1]
     aop.include_inequality(g, lb=lb, ub=ub)
     self.assertTrue(is_equal(aop.g, g))
     self.assertTrue(is_equal(aop.g_lb, lb))
     self.assertTrue(is_equal(aop.g_ub, ub))
コード例 #12
0
    def test_get_problem_dict(self):
        aop = AbstractOptimizationProblem()
        x = aop.create_variable('x', 3)
        p = aop.create_parameter('p', 3)
        f = sum([x[i]**2 for i in range(x.numel())])
        g = x[0] - x[1] + 2 * x[2]
        aop.set_objective(f)
        aop.include_inequality(g, lb=-10, ub=20)
        d_res = {'x': x, 'p': p, 'f': f, 'g': g}

        d = aop.get_problem_dict()
        for key in set(d_res.keys()).union(set(d.keys())):
            self.assertTrue(is_equal(d_res[key], d[key]))
コード例 #13
0
    def test_get_default_call_dict(self):
        aop = AbstractOptimizationProblem()

        lbx = -DM([2, 3, 10])
        ubx = DM([2, 3, 10])

        x = aop.create_variable('x', 3, lb=lbx, ub=ubx)
        p = aop.create_parameter('p', 3)
        f = sum([x[i]**2 for i in range(x.numel())])
        g = x[0] - x[1] + 2 * x[2]

        aop.set_objective(f)
        aop.include_inequality(g, lb=-10, ub=20)

        expected = {'lbx': lbx, 'ubx': ubx, 'lbg': DM(-10), 'ubg': DM(20)}

        d = aop.get_default_call_dict()
        for key in set(expected.keys()).union(set(d.keys())):
            self.assertTrue(is_equal(expected[key], d[key]))
コード例 #14
0
    def test_include_constraint_equality(self):
        aop = AbstractOptimizationProblem()
        x = aop.create_variable('x', 2)

        aop.include_constraint(x + 2 == 1)
コード例 #15
0
 def test_create_variable(self):
     aop = AbstractOptimizationProblem()
     aop = AbstractOptimizationProblem()
     x = aop.create_variable('x', 3)
     self.assertTrue(is_equal(aop.x, x))
コード例 #16
0
    def test_set_objective_wrong_size(self):
        aop = AbstractOptimizationProblem()
        x = aop.create_variable('x', 2)

        self.assertRaises(ValueError, aop.set_objective, x**2)