-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptimization_problem_test.go
More file actions
3251 lines (2775 loc) · 85.4 KB
/
optimization_problem_test.go
File metadata and controls
3251 lines (2775 loc) · 85.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package problem_test
/*
optimization_problem_test.go
Description:
Tests for all functions and objects defined in the optimization_problem.go file.
*/
import (
"fmt"
"strings"
"testing"
"github.com/MatProGo-dev/MatProInterface.go/causeOfProblemNonlinearity"
"github.com/MatProGo-dev/MatProInterface.go/mpiErrors"
"github.com/MatProGo-dev/MatProInterface.go/optim"
"github.com/MatProGo-dev/MatProInterface.go/problem"
getKMatrix "github.com/MatProGo-dev/SymbolicMath.go/get/KMatrix"
getKVector "github.com/MatProGo-dev/SymbolicMath.go/get/KVector"
"github.com/MatProGo-dev/SymbolicMath.go/symbolic"
"gonum.org/v1/gonum/mat"
)
/*
TestOptimizationProblem_NewProblem1
Description:
Tests the NewProblem function with a simple name.
Verifies that the name is set correctly and
that zero variables and constraints exist in the fresh
problem.
*/
func TestOptimizationProblem_NewProblem1(t *testing.T) {
// Constants
name := "TestProblem1"
// New Problem
p1 := problem.NewProblem(name)
// Check that the name is as expected in the problem.
if p1.Name != name {
t.Errorf("expected the name of the problem to be %v; received %v",
name, p1.Name)
}
// Check that the number of variables is zero.
if len(p1.Variables) != 0 {
t.Errorf("expected the number of variables to be 0; received %v",
len(p1.Variables))
}
// Check that the number of constraints is zero.
if len(p1.Constraints) != 0 {
t.Errorf("expected the number of constraints to be 0; received %v",
len(p1.Constraints))
}
}
/*
TestOptimizationProblem_AddVariable1
Description:
Tests the AddVariable function with a simple problem.
*/
func TestOptimizationProblem_AddVariable1(t *testing.T) {
// Constants
p1 := problem.NewProblem("TestProblem1")
// Algorithm
p1.AddVariable()
// Check that the number of variables is one.
if len(p1.Variables) != 1 {
t.Errorf("expected the number of variables to be 1; received %v",
len(p1.Variables))
}
// Verify that the type of the variable is as expected.
if p1.Variables[0].Type != symbolic.Continuous {
t.Errorf("expected the type of the variable to be %v; received %v",
symbolic.Continuous, p1.Variables[0].Type)
}
}
/*
TestOptimizationProblem_AddRealVariable1
Description:
Tests the AddRealVariable function with a simple problem.
*/
func TestOptimizationProblem_AddRealVariable1(t *testing.T) {
// Constants
p1 := problem.NewProblem("TestProblem1")
// Algorithm
p1.AddRealVariable()
// Check that the number of variables is one.
if len(p1.Variables) != 1 {
t.Errorf("expected the number of variables to be 1; received %v",
len(p1.Variables))
}
// Verify that the type of the variable is as expected.
if p1.Variables[0].Type != symbolic.Continuous {
t.Errorf("expected the type of the variable to be %v; received %v",
symbolic.Continuous, p1.Variables[0].Type)
}
}
/*
TestOptimizationProblem_AddVariableClassic1
Description:
Tests the AddVariableClassic function with a simple problem.
*/
func TestOptimizationProblem_AddVariableClassic1(t *testing.T) {
// Constants
p1 := problem.NewProblem("TestProblem1")
// Algorithm
p1.AddVariableClassic(0, 1, symbolic.Binary)
// Check that the number of variables is one.
if len(p1.Variables) != 1 {
t.Errorf("expected the number of variables to be 1; received %v",
len(p1.Variables))
}
// Verify that the type of the variable is as expected.
if p1.Variables[0].Type != symbolic.Binary {
t.Errorf("expected the type of the variable to be %v; received %v",
symbolic.Binary, p1.Variables[0].Type)
}
}
/*
TestOptimizationProblem_AddBinaryVariable1
Description:
Tests the AddBinaryVariable function with a simple problem.
*/
func TestOptimizationProblem_AddBinaryVariable1(t *testing.T) {
// Constants
p1 := problem.NewProblem("TestProblem1")
// Algorithm
p1.AddBinaryVariable()
// Check that the number of variables is one.
if len(p1.Variables) != 1 {
t.Errorf("expected the number of variables to be 1; received %v",
len(p1.Variables))
}
// Verify that the type of the variable is as expected.
if p1.Variables[0].Type != symbolic.Binary {
t.Errorf("expected the type of the variable to be %v; received %v",
symbolic.Binary, p1.Variables[0].Type)
}
}
/*
TestOptimizationProblem_AddVariableVector1
Description:
Tests the AddVariableVector function with a simple problem.
*/
func TestOptimizationProblem_AddVariableVector1(t *testing.T) {
// Constants
p1 := problem.NewProblem("TestProblem1")
dim := 5
// Algorithm
p1.AddVariableVector(dim)
// Check that the number of variables is as expected.
if len(p1.Variables) != dim {
t.Errorf("expected the number of variables to be %v; received %v",
dim, len(p1.Variables))
}
// Verify that the type of the variables is as expected.
for _, v := range p1.Variables {
if v.Type != symbolic.Continuous {
t.Errorf("expected the type of the variable to be %v; received %v",
symbolic.Continuous, v.Type)
}
}
}
/*
TestOptimizationProblem_AddVariableVectorClassic1
Description:
Tests the AddVariableVectorClassic function with a simple problem.
*/
func TestOptimizationProblem_AddVariableVectorClassic1(t *testing.T) {
// Constants
p1 := problem.NewProblem("TestProblem1")
dim := 5
// Algorithm
p1.AddVariableVectorClassic(dim, 0, 1, symbolic.Binary)
// Check that the number of variables is as expected.
if len(p1.Variables) != dim {
t.Errorf("expected the number of variables to be %v; received %v",
dim, len(p1.Variables))
}
// Verify that the type of the variables is as expected.
for _, v := range p1.Variables {
if v.Type != symbolic.Binary {
t.Errorf("expected the type of the variable to be %v; received %v",
symbolic.Binary, v.Type)
}
}
}
/*
TestOptimizationProblem_AddBinaryVariableVector1
Description:
Tests the AddBinaryVariableVector function with a simple problem.
*/
func TestOptimizationProblem_AddBinaryVariableVector1(t *testing.T) {
// Constants
p1 := problem.NewProblem("TestProblem1")
dim := 5
// Algorithm
p1.AddBinaryVariableVector(dim)
// Check that the number of variables is as expected.
if len(p1.Variables) != dim {
t.Errorf("expected the number of variables to be %v; received %v",
dim, len(p1.Variables))
}
// Verify that the type of the variables is as expected.
for _, v := range p1.Variables {
if v.Type != symbolic.Binary {
t.Errorf("expected the type of the variable to be %v; received %v",
symbolic.Binary, v.Type)
}
}
}
/*
TestOptimizationProblem_AddVariableMatrix1
Description:
Tests the AddVariableMatrix function with a simple problem.
*/
func TestOptimizationProblem_AddVariableMatrix1(t *testing.T) {
// Constants
p1 := problem.NewProblem("TestProblem1")
rows := 5
cols := 5
// Algorithm
p1.AddVariableMatrix(rows, cols, 0, 1, symbolic.Binary)
// Check that the number of variables is as expected.
if len(p1.Variables) != rows*cols {
t.Errorf("expected the number of variables to be %v; received %v",
rows*cols, len(p1.Variables))
}
// Verify that the type of the variables is as expected.
for _, v := range p1.Variables {
if v.Type != symbolic.Continuous {
t.Errorf("expected the type of the variable to be %v; received %v",
symbolic.Binary, v.Type)
}
}
}
/*
TestOptimizationProblem_AddBinaryVariableMatrix1
Description:
Tests the AddBinaryVariableMatrix function with a simple problem.
*/
func TestOptimizationProblem_AddBinaryVariableMatrix1(t *testing.T) {
// Constants
p1 := problem.NewProblem("TestProblem1")
rows := 5
cols := 5
// Algorithm
p1.AddBinaryVariableMatrix(rows, cols)
// Check that the number of variables is as expected.
if len(p1.Variables) != rows*cols {
t.Errorf("expected the number of variables to be %v; received %v",
rows*cols, len(p1.Variables))
}
// Verify that the type of the variables is as expected.
for _, v := range p1.Variables {
if v.Type != symbolic.Continuous {
t.Errorf("expected the type of the variable to be %v; received %v",
symbolic.Binary, v.Type)
}
}
}
/*
TestOptimizationProblem_SetObjective1
Description:
Tests the SetObjective function with a simple linear objective.
*/
func TestOptimizationProblem_SetObjective1(t *testing.T) {
// Constants
p1 := problem.NewProblem("TestOptimizationProblem_SetObjective1")
v1 := p1.AddVariable()
v2 := p1.AddVariable()
// Algorithm
err := p1.SetObjective(v1.Plus(v2), problem.SenseMaximize)
if err != nil {
t.Errorf("unexpected error: %v", err)
}
// Check that the objective is as expected.
if p1.Objective.Sense != problem.SenseMaximize {
t.Errorf("expected the sense of the objective to be %v; received %v",
problem.SenseMaximize, p1.Objective.Sense)
}
}
/*
TestOptimizationProblem_SetObjective2
Description:
Tests the SetObjective function with a vector objective
which should cause an error.
*/
func TestOptimizationProblem_SetObjective2(t *testing.T) {
// Constants
p1 := problem.NewProblem("TestOptimizationProblem_SetObjective2")
v1 := p1.AddVariableVector(5)
// Algorithm
err := p1.SetObjective(v1, problem.SenseMaximize)
if err == nil {
t.Errorf("expected an error; received nil")
} else {
if !strings.Contains(
err.Error(),
"trouble parsing input expression:",
) {
t.Errorf("unexpected error: %v", err)
}
}
}
/*
TestOptimizationProblem_ToSymbolicConstraint1
Description:
Tests the ToSymbolicConstraint function with a simple problem.
*/
func TestOptimizationProblem_ToSymbolicConstraint1(t *testing.T) {
// Constants
model1 := optim.NewModel("TestModel1")
v1 := model1.AddVariable()
v2 := model1.AddVariable()
v3 := model1.AddVariable()
// Algorithm
sum, err := v1.Plus(v2)
if err != nil {
t.Errorf("unexpected error: %v", err)
}
constr1, err := sum.LessEq(v3)
if err != nil {
t.Errorf("unexpected error: %v", err)
}
constr1prime, err := problem.ToSymbolicConstraint(constr1)
// Check that constr1prime is a VectorConstraint
if _, ok := constr1prime.(symbolic.ScalarConstraint); !ok {
t.Errorf("expected the type of constr1prime to be %T; received %T",
symbolic.VectorConstraint{}, constr1prime)
}
}
/*
TestOptimizationProblem_ToSymbolicConstraint2
Description:
Tests the ToSymbolicConstraint function with a simple problem
that has a vector constraint. This vector constraint
will be a GreaterThanEqual vector constraint between
a vector variable and a vector variable.
*/
func TestOptimizationProblem_ToSymbolicConstraint2(t *testing.T) {
// Constants
model1 := optim.NewModel("TestModel1")
v1 := model1.AddVariableVector(5)
v2 := model1.AddVariableVector(5)
// Algorithm
constr1, err := v1.GreaterEq(v2)
if err != nil {
t.Errorf("unexpected error: %v", err)
}
constr1prime, err := problem.ToSymbolicConstraint(constr1)
// Check that constr1prime is a VectorConstraint
if _, ok := constr1prime.(symbolic.VectorConstraint); !ok {
t.Errorf("expected the type of constr1prime to be %T; received %T",
symbolic.VectorConstraint{}, constr1prime)
}
}
/*
TestOptimizationProblem_ToSymbolicConstraint3
Description:
Tests the ToSymbolicConstraint function with a simple problem
that has a LeftHandSide that is not well-defined (in this case,
a variable). This should cause an error.
*/
func TestOptimizationProblem_ToSymbolicConstraint3(t *testing.T) {
// Constants
model1 := optim.NewModel("TestModel1")
v1 := model1.AddVariable()
v2 := optim.Variable{Lower: 0, Upper: -1}
// Algorithm
constr1 := optim.ScalarConstraint{
LeftHandSide: v2,
RightHandSide: v1,
Sense: optim.SenseLessThanEqual,
}
_, err := problem.ToSymbolicConstraint(constr1)
if err == nil {
t.Errorf("expected an error; received nil")
} else {
if !strings.Contains(
err.Error(),
v2.Check().Error(),
) {
t.Errorf("unexpected error: %v", err)
}
}
}
/*
TestOptimizationProblem_ToSymbolicConstraint4
Description:
Tests the ToSymbolicConstraint function with a simple constraint
that has a RightHandSide that is not well-defined (in this case,
a variable). This should cause an error.
*/
func TestOptimizationProblem_ToSymbolicConstraint4(t *testing.T) {
// Constants
model1 := optim.NewModel("TestModel1")
v1 := optim.Variable{Lower: 0, Upper: -1}
v2 := model1.AddVariable()
// Algorithm
constr1 := optim.ScalarConstraint{
LeftHandSide: v2,
RightHandSide: v1,
Sense: optim.SenseLessThanEqual,
}
_, err := problem.ToSymbolicConstraint(constr1)
if err == nil {
t.Errorf("expected an error; received nil")
} else {
if !strings.Contains(
err.Error(),
v1.Check().Error(),
) {
t.Errorf("unexpected error: %v", err)
}
}
}
/*
TestOptimizationProblem_From1
Description:
Tests the From function with a simple
model that doesn't have an objective.
*/
func TestOptimizationProblem_From1(t *testing.T) {
// Constants
model := optim.NewModel(
"TestOptimizationProblem_From1",
)
N := 5
for ii := 0; ii < N; ii++ {
model.AddVariable()
}
// Algorithm
_, err := problem.From(*model)
if err == nil {
t.Errorf("expected an error; received nil")
} else {
if !strings.Contains(
err.Error(),
"the input model has no objective function!",
) {
t.Errorf("unexpected error: %v", err)
}
}
}
/*
TestOptimizationProblem_From2
Description:
Tests the From function with a simple
model that doesn't have an objective.
*/
func TestOptimizationProblem_From2(t *testing.T) {
// Constants
model := optim.NewModel(
"TestOptimizationProblem_From2",
)
N := 5
var tempVar optim.Variable
for ii := 0; ii < N; ii++ {
tempVar = model.AddVariable()
}
model.SetObjective(tempVar, optim.SenseMaximize)
// Algorithm
problem1, err := problem.From(*model)
if err != nil {
t.Errorf("unexpected error: %v", err)
}
// Check that the number of variables is as expected.
if len(problem1.Variables) != 5 {
t.Errorf("expected the number of variables to be %v; received %v",
5, len(problem1.Variables))
}
// Verify that the type of the variables is as expected.
for _, v := range problem1.Variables {
if v.Type != symbolic.Continuous {
t.Errorf(
"expected the type of the variable to be %v; received %v",
symbolic.Continuous,
v.Type,
)
}
}
}
/*
TestOptimizationProblem_From3
Description:
Tests the From function with a convex optimization
model that has a quadratic objective and
at least two constraints.
*/
func TestOptimizationProblem_From3(t *testing.T) {
// Constants
model := optim.NewModel(
"TestOptimizationProblem_From3",
)
N := 5
var tempVar optim.Variable
for ii := 0; ii < N; ii++ {
tempVar = model.AddVariable()
}
// Add a quadratic objective
obj, err := tempVar.Multiply(tempVar)
if err != nil {
t.Errorf("unexpected error: %v", err)
}
err = model.SetObjective(obj, optim.SenseMaximize)
if err != nil {
t.Errorf("error while setting objective! %v", err)
}
// Add a constraint
constr1, err := tempVar.LessEq(1.0)
if err != nil {
t.Errorf("unexpected error: %v", err)
}
model.AddConstraint(constr1)
// Algorithm
problem1, err := problem.From(*model)
if err != nil {
t.Errorf("unexpected error: %v", err)
}
// Check that the number of variables is as expected.
if len(problem1.Variables) != N {
t.Errorf("expected the number of variables to be %v; received %v",
N, len(problem1.Variables))
}
// Verify that the type of the variables is as expected.
for _, v := range problem1.Variables {
if v.Type != symbolic.Continuous {
t.Errorf(
"expected the type of the variable to be %v; received %v",
symbolic.Continuous,
v.Type,
)
}
}
// Check that the number of constraints is as expected.
if len(problem1.Constraints) != 1 {
t.Errorf("expected the number of constraints to be %v; received %v",
1, len(problem1.Constraints))
}
}
/*
TestOptimizationProblem_From4
Description:
Tests the From function with a convex optimization
problem that has a linear objective and
a vector inequality constraint.
*/
func TestOptimizationProblem_From4(t *testing.T) {
// Constants
model := optim.NewModel(
"TestOptimizationProblem_From4",
)
N := 5
vv1 := model.AddVariableVector(N)
vle2 := optim.VectorLinearExpr{
L: *mat.NewDense(2, N, []float64{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}),
X: vv1,
C: *mat.NewVecDense(2, []float64{21, 22}),
}
// Add a linear objective
obj, err := vv1.Elements[0].Plus(vv1.Elements[2])
if err != nil {
t.Errorf("unexpected error: %v", err)
}
model.SetObjective(obj, optim.SenseMaximize)
// Add a vector constraint
constr1, err := vle2.LessEq(*mat.NewVecDense(2, []float64{11, 12}))
if err != nil {
t.Errorf("unexpected error: %v", err)
}
model.AddConstraint(constr1)
// Algorithm
problem1, err := problem.From(*model)
if err != nil {
t.Errorf("unexpected error: %v", err)
}
// Check that the number of variables is as expected.
if len(problem1.Variables) != N {
t.Errorf("expected the number of variables to be %v; received %v",
N, len(problem1.Variables))
}
// Verify that the type of the variables is as expected.
for _, v := range problem1.Variables {
if v.Type != symbolic.Continuous {
t.Errorf(
"expected the type of the variable to be %v; received %v",
symbolic.Continuous,
v.Type,
)
}
}
// Check that the number of constraints is as expected.
if len(problem1.Constraints) != 1 {
t.Errorf("expected the number of constraints to be %v; received %v",
1, len(problem1.Constraints))
}
}
/*
TestOptimizationProblem_From5
Description:
Tests the From function with a convex optimization
problem that has a linear objective and
two vector inequality constraints.
*/
func TestOptimizationProblem_From5(t *testing.T) {
// Constants
model := optim.NewModel(
"TestOptimizationProblem_From5",
)
N := 5
vv1 := model.AddVariableVector(N)
vle2 := optim.VectorLinearExpr{
L: *mat.NewDense(2, N, []float64{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}),
X: vv1,
C: *mat.NewVecDense(2, []float64{21, 22}),
}
vle3 := optim.VectorLinearExpr{
L: *mat.NewDense(2, N, []float64{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}),
X: vv1,
C: *mat.NewVecDense(2, []float64{31, 32}),
}
// Add a linear objective
obj, err := vv1.Elements[0].Plus(vv1.Elements[2])
if err != nil {
t.Errorf("unexpected error: %v", err)
}
model.SetObjective(obj, optim.SenseMaximize)
// Add a vector constraint
constr1, err := vle2.LessEq(*mat.NewVecDense(2, []float64{11, 12}))
if err != nil {
t.Errorf("unexpected error: %v", err)
}
model.AddConstraint(constr1)
// Add another vector constraint
constr2, err := vle3.LessEq(*mat.NewVecDense(2, []float64{41, 42}))
if err != nil {
t.Errorf("unexpected error: %v", err)
}
model.AddConstraint(constr2)
// Algorithm
problem1, err := problem.From(*model)
if err != nil {
t.Errorf("unexpected error: %v", err)
}
// Check that the number of variables is as expected.
if len(problem1.Variables) != N {
t.Errorf("expected the number of variables to be %v; received %v",
N, len(problem1.Variables))
}
// Verify that the type of the variables is as expected.
for _, v := range problem1.Variables {
if v.Type != symbolic.Continuous {
t.Errorf(
"expected the type of the variable to be %v; received %v",
symbolic.Continuous,
v.Type,
)
}
}
}
/*
TestOptimizationProblem_From6
Description:
Tests the From function properly produces an error
when the input model is not well-defined.
*/
func TestOptimizationProblem_From6(t *testing.T) {
// Constants
model := optim.NewModel(
"TestOptimizationProblem_From6",
)
// Algorithm
_, err := problem.From(*model)
if err == nil {
t.Errorf("unexpected error: %v", err)
} else {
if !strings.Contains(
err.Error(),
"the model has no variables!",
) {
t.Errorf("unexpected error: %v", err)
}
}
}
/*
TestOptimizationProblem_From7
Description:
Tests the From function properly produces an error
when the input model has an improperly defined objective.
*/
func TestOptimizationProblem_From7(t *testing.T) {
// Constants
model := optim.NewModel(
"TestOptimizationProblem_From7",
)
// Add a variable
model.AddVariable()
// Algorithm
_, err := problem.From(*model)
if err == nil {
t.Errorf("unexpected error: %v", err)
} else {
if !strings.Contains(
err.Error(),
"the input model has no objective function!",
) {
t.Errorf("unexpected error: %v", err)
}
}
}
/*
TestOptimizationProblem_From8
Description:
Tests the From function properly produces an error
when the input model has an objective function that
is not well-defined.
*/
func TestOptimizationProblem_From8(t *testing.T) {
// Constants
model := optim.NewModel(
"TestOptimizationProblem_From8",
)
// Add a variable
v1 := model.AddVariable()
// Add an objective
model.SetObjective(
optim.ScalarLinearExpr{
L: *mat.NewVecDense(2, []float64{1, 2}),
X: optim.VarVector{Elements: []optim.Variable{v1}},
C: 1.2,
},
optim.SenseMaximize,
)
// Algorithm
_, err := problem.From(*model)
if err == nil {
t.Errorf("expected an error, received none!")
} else {
if !strings.Contains(
err.Error(),
"the length of L",
) {
t.Errorf("unexpected error: %v", err)
}
}
}
/*
TestOptimizationProblem_From9
Description:
Tests that the From function properly produces an error
when a constraint has been added to the problem that is not well-defined.
*/
func TestOptimizationProblem_From9(t *testing.T) {
// Constants
model := optim.NewModel(
"TestOptimizationProblem_From9",
)
// Add a variable
v1 := model.AddVariable()
// Add an objective
model.SetObjective(v1, optim.SenseMaximize)
// Add a constraint
model.AddConstraint(optim.ScalarConstraint{
LeftHandSide: v1,
RightHandSide: optim.Variable{Lower: 1, Upper: 0},
Sense: optim.SenseLessThanEqual,
})
// Algorithm
_, err := problem.From(*model)
if err == nil {
t.Errorf("expected an error, received none!")
} else {
if !strings.Contains(
err.Error(),
fmt.Sprintf("there was a problem creating the %v-th constraint", 0),
) {
t.Errorf("unexpected error: %v", err)
}
}
}
/*
TestOptimizationProblem_From10
Description:
Tests that the From function properly produces an error
when the objective is not well-formed.
*/
func TestOptimizationProblem_From10(t *testing.T) {
// Constants
model := optim.NewModel(
"TestOptimizationProblem_From10",
)
// Add a variable
v1 := model.AddVariable()
// Add an objective
model.SetObjective(optim.Variable{Lower: 0, Upper: -1}, optim.SenseMaximize)
// Add a constraint
model.AddConstraint(optim.ScalarConstraint{
LeftHandSide: v1,
RightHandSide: optim.K(1.2),
Sense: optim.SenseLessThanEqual,
})
// Algorithm
_, err := problem.From(*model)
if err == nil {
t.Errorf("expected an error, received none!")
} else {
if !strings.Contains(
err.Error(),
model.Obj.Check().Error(),
) {
t.Errorf("unexpected error: %v", err)
}
}
}
/*
TestOptimizationProblem_Check1
Description:
Tests the Check function with a simple problem
that has one variable, one constraint and an objective
that is not well-defined.
*/
func TestOptimizationProblem_Check1(t *testing.T) {
// Constants
p1 := problem.NewProblem("TestOptimizationProblem_Check1")
v1 := p1.AddVariable()
c1 := v1.LessEq(1.0)
p1.Constraints = append(p1.Constraints, c1)
// Create bad objective
p1.Objective = *problem.NewObjective(
symbolic.Variable{}, problem.SenseMaximize,
)
// Algorithm
err := p1.Check()
if err == nil {
t.Errorf("expected an error; received nil")
} else {
if !strings.Contains(
err.Error(),
p1.Objective.Check().Error(),
) {
t.Errorf("unexpected error: %v", err)
}
}
}
/*
TestOptimizationProblem_Check2
Description:
Tests the Check function with a simple problem
that has one variable, one well-defined objective
and a set of constraints containing one bad constraint.
*/
func TestOptimizationProblem_Check2(t *testing.T) {
// Constants
p1 := problem.NewProblem("TestOptimizationProblem_Check2")
v1 := p1.AddVariable()