@@ -51,9 +51,7 @@ def setUp(self):
51
51
self .rblq_test = RBLQ (Q , R , A , B , C , beta , theta )
52
52
self .rblq_test_pf = RBLQ (Q_pf , R , A , B_pf , C , beta , theta )
53
53
self .lq_test = LQ (Q , R , A , B , C , beta )
54
-
55
- self .Fr , self .Kr , self .Pr = self .rblq_test .robust_rule ()
56
- self .Fr_pf , self .Kr_pf , self .Pr_pf = self .rblq_test_pf .robust_rule ()
54
+ self .methods = ['doubling' , 'qz' ]
57
55
58
56
def tearDown (self ):
59
57
del self .rblq_test
@@ -65,52 +63,48 @@ def test_pure_forecasting(self):
65
63
def test_robust_rule_vs_simple (self ):
66
64
rblq = self .rblq_test
67
65
rblq_pf = self .rblq_test_pf
68
- Fr , Kr , Pr = self .Fr , self .Kr , self .Pr
69
- Fr_pf , Kr_pf , Pr_pf = self .Fr_pf , self .Kr_pf , self .Pr_pf
70
66
71
- Fs , Ks , Ps = rblq .robust_rule_simple (P_init = Pr , tol = 1e-12 )
72
- Fs_pf , Ks_pf , Ps_pf = rblq_pf .robust_rule_simple (P_init = Pr_pf , tol = 1e-12 )
67
+ for method in self .methods :
68
+ Fr , Kr , Pr = self .rblq_test .robust_rule (method = method )
69
+ Fr_pf , Kr_pf , Pr_pf = self .rblq_test_pf .robust_rule (method = method )
70
+
71
+ Fs , Ks , Ps = rblq .robust_rule_simple (P_init = Pr , tol = 1e-12 )
72
+ Fs_pf , Ks_pf , Ps_pf = rblq_pf .robust_rule_simple (P_init = Pr_pf , tol = 1e-12 )
73
73
74
- assert_allclose (Fr , Fs , rtol = 1e-4 )
75
- assert_allclose (Kr , Ks , rtol = 1e-4 )
76
- assert_allclose (Pr , Ps , rtol = 1e-4 )
74
+ assert_allclose (Fr , Fs , rtol = 1e-4 )
75
+ assert_allclose (Kr , Ks , rtol = 1e-4 )
76
+ assert_allclose (Pr , Ps , rtol = 1e-4 )
77
77
78
- atol = 1e-10
79
- assert_allclose (Fr_pf , Fs_pf , rtol = 1e-4 )
80
- assert_allclose (Kr_pf , Ks_pf , rtol = 1e-4 , atol = atol )
81
- assert_allclose (Pr_pf , Ps_pf , rtol = 1e-4 , atol = atol )
78
+ atol = 1e-10
79
+ assert_allclose (Fr_pf , Fs_pf , rtol = 1e-4 )
80
+ assert_allclose (Kr_pf , Ks_pf , rtol = 1e-4 , atol = atol )
81
+ assert_allclose (Pr_pf , Ps_pf , rtol = 1e-4 , atol = atol )
82
82
83
83
84
84
def test_f2k_and_k2f (self ):
85
85
rblq = self .rblq_test
86
- Fr , Kr , Pr = self .Fr , self .Kr , self .Pr
87
-
88
- K_f2k , P_f2k = rblq .F_to_K (Fr )
89
- F_k2f , P_k2f = rblq .K_to_F (Kr )
90
86
91
- assert_allclose (K_f2k , Kr , rtol = 1e-4 )
92
- assert_allclose (F_k2f , Fr , rtol = 1e-4 )
93
- assert_allclose (P_f2k , P_k2f , rtol = 1e-4 )
87
+ for method in self .methods :
88
+ Fr , Kr , Pr = self .rblq_test .robust_rule (method = method )
89
+ K_f2k , P_f2k = rblq .F_to_K (Fr , method = method )
90
+ F_k2f , P_k2f = rblq .K_to_F (Kr , method = method )
91
+ assert_allclose (K_f2k , Kr , rtol = 1e-4 )
92
+ assert_allclose (F_k2f , Fr , rtol = 1e-4 )
93
+ assert_allclose (P_f2k , P_k2f , rtol = 1e-4 )
94
94
95
95
def test_evaluate_F (self ):
96
96
rblq = self .rblq_test
97
- Fr , Kr , Pr = self .Fr , self .Kr , self .Pr
98
-
99
- Kf , Pf , df , Of , of = rblq .evaluate_F (Fr )
100
-
101
- # In the future if we wanted, we could check more things, but I
102
- # think the other pieces are basically just plugging these into
103
- # equations so if these hold then the others should be correct
104
- # as well.
105
- assert_allclose (Pf , Pr )
106
- assert_allclose (Kf , Kr )
107
-
108
-
109
-
110
-
111
-
97
+ for method in self .methods :
98
+ Fr , Kr , Pr = self .rblq_test .robust_rule (method = method )
112
99
100
+ Kf , Pf , df , Of , of = rblq .evaluate_F (Fr )
113
101
102
+ # In the future if we wanted, we could check more things, but I
103
+ # think the other pieces are basically just plugging these into
104
+ # equations so if these hold then the others should be correct
105
+ # as well.
106
+ assert_allclose (Pf , Pr )
107
+ assert_allclose (Kf , Kr )
114
108
115
109
if __name__ == '__main__' :
116
110
suite = unittest .TestLoader ().loadTestsFromTestCase (TestRBLQControl )
0 commit comments