-
Notifications
You must be signed in to change notification settings - Fork 2
/
CoursMagistral_9.py
786 lines (497 loc) · 20.5 KB
/
CoursMagistral_9.py
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
#!/usr/bin/env python
# coding: utf-8
# # Table of Contents
# <p><div class="lev1 toc-item"><a href="#ALGO1-:-Introduction-à-l'algorithmique" data-toc-modified-id="ALGO1-:-Introduction-à-l'algorithmique-1"><span class="toc-item-num">1 </span><a href="https://perso.crans.org/besson/teach/info1_algo1_2019/" target="_blank">ALGO1 : Introduction à l'algorithmique</a></a></div><div class="lev1 toc-item"><a href="#Cours-Magistral-9" data-toc-modified-id="Cours-Magistral-9-2"><span class="toc-item-num">2 </span>Cours Magistral 9</a></div><div class="lev2 toc-item"><a href="#Documentation-de-scipy.opt.linprog" data-toc-modified-id="Documentation-de-scipy.opt.linprog-21"><span class="toc-item-num">2.1 </span>Documentation de <code>scipy.opt.linprog</code></a></div><div class="lev2 toc-item"><a href="#Fonction-de-débogage" data-toc-modified-id="Fonction-de-débogage-22"><span class="toc-item-num">2.2 </span>Fonction de débogage</a></div><div class="lev2 toc-item"><a href="#Premier-exemple" data-toc-modified-id="Premier-exemple-23"><span class="toc-item-num">2.3 </span>Premier exemple</a></div><div class="lev2 toc-item"><a href="#Second-exemple" data-toc-modified-id="Second-exemple-24"><span class="toc-item-num">2.4 </span>Second exemple</a></div><div class="lev3 toc-item"><a href="#Essayons-avec-différentes-méthodes-de-résolution-:" data-toc-modified-id="Essayons-avec-différentes-méthodes-de-résolution-:-241"><span class="toc-item-num">2.4.1 </span>Essayons avec différentes méthodes de résolution :</a></div><div class="lev4 toc-item"><a href="#Avec-la-méthode-du-simplexe" data-toc-modified-id="Avec-la-méthode-du-simplexe-2411"><span class="toc-item-num">2.4.1.1 </span>Avec la méthode du simplexe</a></div><div class="lev4 toc-item"><a href="#Avec-la-méthode-du-point-intérieur-(un-autre-algorithme)" data-toc-modified-id="Avec-la-méthode-du-point-intérieur-(un-autre-algorithme)-2412"><span class="toc-item-num">2.4.1.2 </span>Avec la méthode du point intérieur (un autre algorithme)</a></div><div class="lev2 toc-item"><a href="#Bonus-:-implémentation-manuelle-de-l'algorithme-du-simplexe" data-toc-modified-id="Bonus-:-implémentation-manuelle-de-l'algorithme-du-simplexe-25"><span class="toc-item-num">2.5 </span>Bonus : implémentation manuelle de l'algorithme du simplexe</a></div><div class="lev3 toc-item"><a href="#Algorithme" data-toc-modified-id="Algorithme-251"><span class="toc-item-num">2.5.1 </span>Algorithme</a></div><div class="lev3 toc-item"><a href="#Conversion-en-forme-standard" data-toc-modified-id="Conversion-en-forme-standard-252"><span class="toc-item-num">2.5.2 </span>Conversion en forme standard</a></div><div class="lev3 toc-item"><a href="#Utilitaires-pour-les-matrices" data-toc-modified-id="Utilitaires-pour-les-matrices-253"><span class="toc-item-num">2.5.3 </span>Utilitaires pour les matrices</a></div><div class="lev3 toc-item"><a href="#L'algorithme-du-simplexe" data-toc-modified-id="L'algorithme-du-simplexe-254"><span class="toc-item-num">2.5.4 </span>L'algorithme du simplexe</a></div><div class="lev3 toc-item"><a href="#Un-premier-exemple" data-toc-modified-id="Un-premier-exemple-255"><span class="toc-item-num">2.5.5 </span>Un premier exemple</a></div><div class="lev3 toc-item"><a href="#Tests" data-toc-modified-id="Tests-256"><span class="toc-item-num">2.5.6 </span>Tests</a></div><div class="lev2 toc-item"><a href="#Conclusion" data-toc-modified-id="Conclusion-26"><span class="toc-item-num">2.6 </span>Conclusion</a></div>
# # [ALGO1 : Introduction à l'algorithmique](https://perso.crans.org/besson/teach/info1_algo1_2019/)
#
# - [Page du cours](https://perso.crans.org/besson/teach/info1_algo1_2019/) : https://perso.crans.org/besson/teach/info1_algo1_2019/
# - Magistère d'Informatique de Rennes - ENS Rennes - Année 2019/2020
# - Intervenants :
# + Cours : [Lilian Besson](https://perso.crans.org/besson/)
# + Travaux dirigés : [Raphaël Truffet](http://perso.eleves.ens-rennes.fr/people/Raphael.Truffet/)
# - Références :
# + [Open Data Structures](http://opendatastructures.org/ods-python.pdf)
# # Cours Magistral 9
#
# - Ce cours traite de programmation linéaire.
#
# - On va illustrer deux programmes linéaires résolus avec la fonction `scipy.optimize.linprog`.
# In[1]:
import numpy as np
import matplotlib.pyplot as plt
import scipy.optimize as opt
# ## Documentation de `scipy.opt.linprog`
# In[8]:
print("\n".join(opt.linprog.__doc__.split("\n")[:31]))
# La programmation linéaire résout des problèmes de la forme suivante :
#
# $$
# \begin{align}
# \min_x \ & c^T x \\
# \mbox{such that} \ & A_{ub} x \leq b_{ub},\\
# & A_{eq} x = b_{eq},\\
# & l \leq x \leq u ,
# \end{align}
# $$
#
# avec $x$ un vecteur de variables de décisions ; $c$, $b_{ub}$, $b_{eq}$, $l$, et $u$ sont des vecteurs ; $A_{ub}$ et $A_{eq}$ sont des matrices.
# ## Fonction de débogage
# In[16]:
def make_callback():
list_of_x, list_of_fun = [], []
def debug_callback(opt_res):
print("\nA new optimization step gave:")
print(f"Current solution x = {opt_res.x}")
list_of_x.append(opt_res.x)
print(f"Current value of c @ x = {opt_res.fun}")
list_of_fun.append(opt_res.fun)
print(f"Success? = {opt_res.success}")
print(f"The (nominally positive) values of the slack, b_ub - A_ub @ x. = {opt_res.slack}")
print(f"The (nominally zero) residuals of the equality constraints, b_eq - A_eq @ x. = {opt_res.con}")
print(f"Algorithm in phase {opt_res.phase}")
print(f"Algorithm in iteration number {opt_res.nit}")
status = {
0: "Optimization proceeding nominally.",
1: "Iteration limit reached.",
2: "Problem appears to be infeasible.",
3: "Problem appears to be unbounded.",
4: "Numerical difficulties encountered.",
}
print(f"Algorithm status {status[opt_res.status]}")
if opt_res.message: print(f"Algorithm message: {opt_res.message}")
return list_of_x, list_of_fun, debug_callback
# ## Premier exemple
#
# On va suivre l'exemple détaillé en cours :
#
# - Variables
# + $x$ nombre de tables fabriquées par semaine,
# + $y$ nombre de chaises fabriquées par semaine.
#
# - Objectif :
# + maximiser $30x + 10y$.
#
# - Contraintes :
# + heures de travail : $6x+3y \leq 36$,
# + demande : $y \geq 3x$,
# + stockage : $x + y/4 \leq 4$,
# + positivité : $x \geq 0$,
# + positivité : $y \geq 0$.
# Mise sous la forme requise par la fonction `linprog`, cela va donner :
#
# $$
# \begin{align}
# \min_{[x, y]} \ & [-30, -10]^T [x, y] \\
# \mbox{such that} \ &
# [
# [6, 3], [3, -1], [1, 1/4]
# ]
# [x, y]
# = [6x + 3y, 3x - y, x + y/4] \leq [36, 0, 4],\\
# & [0, 0] \leq [x, y] \leq [+\infty,+\infty] ,
# \end{align}
# $$
# Et donc avec Python cela sera :
# In[10]:
c = np.array([-30, -10])
A_ub = np.array([[6, 3], [3, -1], [1, 1/4]])
b_ub = np.array([36, 0, 4])
A_eq = None
b_eq = None
# all variables are bound to be in (0, +inf)
bounds = (0, None)
# Objectif :
# In[11]:
import sympy
x, y = sympy.var('x y')
# In[12]:
c.T @ [x, y]
# Contraintes d'inéqualités :
# In[13]:
A_ub @ [x, y]
# In[14]:
b_ub
# Essayons avec différentes méthodes de résolution :
# In[17]:
list_of_x, list_of_fun, debug_callback = make_callback()
opt.linprog(c,
A_ub=A_ub, b_ub=b_ub,
A_eq=A_eq, b_eq=b_eq,
bounds=bounds,
method="simplex",
callback=debug_callback,
)
# In[18]:
x_opt, y_opt = _.x
# La solution obtenue est donc $x = 2$ et $y = 8$, qui donnerait un profit maximal de $+140 €$ par semaine en respectant toutes les contraintes.
#
# Pour obtenir une solution entière, on a rien à faire ici.
#
# Si la solution optimale était par exemple $2.23$ et $6.43$, on pourrait essayer $x = 2, 3$ et $y = 6, 7$, ie. on arrondit en dessous et au dessus, et on prend la solution qui satisfait les contraintes et maximise l'objectif :
# In[19]:
x_opt, y_opt
# In[20]:
import itertools
# In[22]:
sol = None
min_obj = float("+inf")
for (x, y) in itertools.product(
[int(np.floor(x_opt)), int(np.ceil(x_opt))],
[int(np.floor(y_opt)), int(np.ceil(y_opt))],
):
obj = c.T @ [x, y]
ctr = (A_ub @ [x, y]) <= b_ub
print(f"Pour (x, y) = {x, y}, l'objectif vaut {obj}, la contrainte vaut {ctr}")
if np.all(ctr) and obj < min_obj:
min_obj = obj
sol = [x, y]
print(f"==> Donc on utilise la solution entière optimale = {sol}")
# La solution entière optimale à ce premier problème est donc de fabriquer $x=2$ tables et $y=8$ chaises chaque semaine.
# ## Second exemple
# <img src="figures/CM9_ensemble_admissible.png">
# Mise sous la forme requise par la fonction `linprog`, cela va donner :
#
# $$
# \begin{align}
# \min_{[x, y]} \ & [4, 3]^T [x, y] \\
# \mbox{such that} \ &
# [
# [-1, 4], [1, 1], [3, -1]
# ]
# [x, y]
# = [-x + 4y, x + y, 3x - y] \leq [16, 9, 15],\\
# & [0, 0] \leq [x, y] \leq [+\infty,+\infty] ,
# \end{align}
# $$
# Et donc avec Python cela sera :
# In[23]:
c = np.array([-4, -3])
A_ub = np.array([[-1, 4], [1, 1], [3, -1]])
b_ub = np.array([16, 9, 15])
A_eq = None
b_eq = None
# all variables are bound to be in (0, +inf)
bounds = (0, None)
# Objectif :
# In[24]:
import sympy
x, y = sympy.var('x y')
# In[25]:
c.T @ [x, y]
# Contraintes d'inéqualités :
# In[26]:
A_ub @ [x, y]
# In[27]:
b_ub
# ### Essayons avec différentes méthodes de résolution :
# #### Avec la méthode du simplexe
# In[38]:
list_of_x, list_of_fun, debug_callback = make_callback()
opt.linprog(c,
A_ub=A_ub, b_ub=b_ub,
A_eq=A_eq, b_eq=b_eq,
bounds=bounds,
method="simplex",
callback=debug_callback,
)
# In[39]:
plt.figure(figsize=(10, 7))
plt.title("Valeur de l'objectif étape par étape (méthode simplexe)")
plt.plot(list_of_fun, "ro-", lw=3, ms=14)
plt.show()
# In[40]:
plt.figure(figsize=(10, 7))
plt.title("Position des points étape par étape (méthode simplexe)")
list_of_X, list_of_Y = [x for (x,y) in list_of_x], [y for (x,y) in list_of_x]
# plt.plot(list_of_X, list_of_Y, 'bo-')
plt.plot(list_of_X, 'bo-', label="Valeur de x", lw=3, ms=14)
plt.plot(list_of_Y, 'gd-', label="Valeur de y", lw=3, ms=14)
plt.legend()
plt.show()
# #### Avec la méthode du point intérieur (un autre algorithme)
#
# Cet autre algorithme est plus récent, plus technique, et il fonctionne généralement mieux : plus rapide, plus stable numérique.
# In[41]:
list_of_x, list_of_fun, debug_callback = make_callback()
opt.linprog(c,
A_ub=A_ub, b_ub=b_ub,
A_eq=A_eq, b_eq=b_eq,
bounds=bounds,
method="interior-point",
callback=debug_callback,
)
# In[42]:
plt.figure(figsize=(10, 7))
plt.title("Valeur de l'objectif étape par étape (méthode point intérieur)")
plt.plot(list_of_fun, "ro-", lw=3, ms=14)
plt.show()
# In[43]:
plt.figure(figsize=(10, 7))
plt.title("Position des points étape par étape (méthode point intérieur)")
list_of_X, list_of_Y = [x for (x,y) in list_of_x], [y for (x,y) in list_of_x]
# plt.plot(list_of_X, list_of_Y, 'bo-')
plt.plot(list_of_X, 'bo-', label="Valeur de x", lw=3, ms=14)
plt.plot(list_of_Y, 'gd-', label="Valeur de y", lw=3, ms=14)
plt.legend()
plt.show()
# ----
# ## Bonus : implémentation manuelle de l'algorithme du simplexe
#
# - Refs : [ce poste de blogue](http://jeremykun.com/2014/12/01/linear-programming-and-the-simplex-algorithm/), [ces notes de cours](http://jeffe.cs.illinois.edu/teaching/algorithms/notes/I-simplex.pdf), et [cet autre poste de blogue](https://medium.com/@jacob.d.moore1/coding-the-simplex-algorithm-from-scratch-using-python-and-numpy-93e3813e6e70).
# - Code source venant de : https://github.com/j2kun/simplex-algorithm/
# ### Algorithme
# In[44]:
import numpy as np
import heapq
# In[89]:
def identity(numRows, numCols, val=1, rowStart=0):
""" Return a rectangular identity matrix with the specified diagonal entiries, possibly starting in the middle.
"""
# return val * np.ones((numRows, numCols))
return [
[
(val if i == j else 0)
for j in range(numCols)
]
for i in range(rowStart, numRows)
]
# ### Conversion en forme standard
# In[90]:
def standardForm(cost,
greaterThans=None, gtThreshold=None,
lessThans=None, ltThreshold=None,
equalities=None, eqThreshold=None,
maximization=True):
"""
standardForm: [float], [[float]], [float], [[float]], [float], [[float]], [float] -> [float], [[float]], [float]
Convert a linear program in general form to the standard form for the
simplex algorithm. The inputs are assumed to have the correct dimensions: cost
is a length n list, greaterThans is an n-by-m matrix, gtThreshold is a vector
of length m, with the same pattern holding for the remaining inputs. No
dimension errors are caught, and we assume there are no unrestricted variables.
"""
newVars = 0
numRows = 0
if gtThreshold:
newVars += len(gtThreshold)
numRows += len(gtThreshold)
if ltThreshold:
newVars += len(ltThreshold)
numRows += len(ltThreshold)
if eqThreshold:
numRows += len(eqThreshold)
if not maximization:
cost = [-x for x in cost]
if newVars == 0:
return cost, equalities, eqThreshold
newCost = list(cost) + ([0] * newVars)
constraints = [ ]
threshold = [ ]
oldConstraints = [(greaterThans, gtThreshold, -1), (lessThans, ltThreshold, 1),
(equalities, eqThreshold, 0)]
offset = 0
for constraintList, oldThreshold, coefficient in oldConstraints:
constraints += [c + r for c, r in zip(constraintList,
identity(numRows, newVars, coefficient, offset))]
threshold += oldThreshold
offset += len(oldThreshold)
return newCost, constraints, threshold
# ### Utilitaires pour les matrices
# In[91]:
def dot(a, b):
return sum(x*y for x, y in zip(a, b))
# In[92]:
def column(A, j):
return [row[j] for row in A]
# In[93]:
def transpose(A):
return [column(A, j) for j in range(len(A[0]))]
# In[94]:
def isPivotCol(col):
return (len([c for c in col if c == 0]) == len(col) - 1) and sum(col) == 1
def variableValueForPivotColumn(tableau, column):
pivotRow = [i for (i, x) in enumerate(column) if x == 1][0]
return tableau[pivotRow][-1]
# In[95]:
# assume the last m columns of A are the slack variables; the initial basis is
# the set of slack variables
def initialTableau(c, A, b):
tableau = [row[:] + [x] for row, x in zip(A, b)]
tableau.append([ci for ci in c] + [0])
return tableau
# In[96]:
def primalSolution(tableau):
# the pivot columns denote which variables are used
columns = transpose(tableau)
indices = [j for j, col in enumerate(columns[:-1]) if isPivotCol(col)]
return [(colIndex, variableValueForPivotColumn(tableau, columns[colIndex]))
for colIndex in indices]
# In[97]:
def objectiveValue(tableau):
return -(tableau[-1][-1])
# In[98]:
def canImprove(tableau):
lastRow = tableau[-1]
return any(x > 0 for x in lastRow[:-1])
# In[99]:
# this can be slightly faster
def moreThanOneMin(L):
if len(L) <= 1:
return False
x, y = heapq.nsmallest(2, L, key=lambda x: x[1])
return x == y
# In[100]:
def findPivotIndex(tableau):
# pick minimum positive index of the last row
column_choices = [(i, x) for (i, x) in enumerate(tableau[-1][:-1]) if x > 0]
column = min(column_choices, key=lambda a: a[1])[0]
# check if unbounded
if all(row[column] <= 0 for row in tableau):
raise Exception('Linear program is unbounded.')
# check for degeneracy: more than one minimizer of the quotient
quotients = [
(i, r[-1] / r[column])
for i, r in enumerate(tableau[:-1])
if r[column] > 0
]
if moreThanOneMin(quotients):
raise Exception('Linear program is degenerate.')
# pick row index minimizing the quotient
row = min(quotients, key=lambda x: x[1])[0]
return row, column
# In[101]:
def pivotAbout(tableau, pivot):
i, j = pivot
pivotDenom = tableau[i][j]
tableau[i] = [x / pivotDenom for x in tableau[i]]
for k,row in enumerate(tableau):
if k != i:
pivotRowMultiple = [y * tableau[k][j] for y in tableau[i]]
tableau[k] = [x - y for x,y in zip(tableau[k], pivotRowMultiple)]
# ### L'algorithme du simplexe
# In[102]:
def simplex(c, A, b):
"""
simplex: c: [float], A: [[float]], b: [float] -> [float], float
Solve the given standard-form linear program:
max <c, x>
s.t. Ax = b
x >= 0
Providing the optimal solution x* and the value of the objective function.
"""
tableau = initialTableau(c, A, b)
print("Initial tableau:")
for row in tableau:
print(row)
print()
while canImprove(tableau):
pivot = findPivotIndex(tableau)
print("Next pivot index is={}\n".format(pivot))
pivotAbout(tableau, pivot)
print("Tableau after pivot:")
for row in tableau:
print(row)
print()
return tableau, primalSolution(tableau), objectiveValue(tableau)
# ### Un premier exemple
# In[103]:
c = [300, 250, 450]
A = [[15, 20, 25], [35, 60, 60], [20, 30, 25], [0, 250, 0]]
b = [1200, 3000, 1500, 500]
# add slack variables by hand
A[0] += [1, 0, 0, 0]
A[1] += [0, 1, 0, 0]
A[2] += [0, 0, 1, 0]
A[3] += [0, 0, 0, -1]
c += [0, 0, 0, 0]
t, s, v = simplex(c, A, b)
print(s)
print(v)
# Et pou comparer avec la réponse donnée par `scipy.optimize.linprog` :
# In[104]:
opt_res = opt.linprog(-np.array(c), A_ub=A, b_ub=b, method="simplex")
opt_res
# La solution optimale trouvée par `scipy.optimize.linprog` est meilleure que celle trouvée par notre algorithme.
# In[105]:
v, - opt_res.fun
# Notre implémentation donne une solution :
# In[106]:
s
# Qui s'interprète comme étant assez proche de la solution trouvée par `scipy.optimize.linprog`.
# In[107]:
opt_res.x
# In[108]:
s2 = np.array([56, 2, 12, 0, 152, 0, 0])
s2
# In[109]:
np.linalg.norm(opt_res.x - s2) / np.linalg.norm(opt_res.x)
# C'est une différence relativement faible…
# ### Tests
# In[110]:
def test(expected, actual):
e, a = np.array(expected), np.array(actual)
if not np.isclose(np.linalg.norm(e - a), 0):
import sys, traceback
(filename, lineno, container, code) = traceback.extract_stack()[-2]
print("Test: {} failed on line {} in file {}.\nExpected {} but got {}\n".format((code, lineno, filename, expected, actual)))
# In[111]:
def testFromPost():
cost = [1, 1, 1]
gts = [[0, 1, 4]]
gtB = [10]
lts = [[3, -2, 0]]
ltB = [7]
eqs = [[1, 1, 0]]
eqB = [2]
expectedCost = [1,1,1,0,0]
expectedConstraints = [[0,1,4,-1,0], [3,-2,0,0,1], [1,1,0,0,0]]
expectedThresholds = [10,7,2]
c, cs, ts = standardForm(cost, gts, gtB, lts, ltB, eqs, eqB)
test(expectedCost, c)
test(expectedConstraints, cs)
test(expectedThresholds, ts)
A_ub = np.array([
[0, 1, 4],
[-3, 2, 0]
])
b_ub = np.array([10, -7])
opt_res = opt.linprog(-np.array(cost),
A_eq=np.array(eqs), b_eq=np.array(eqB),
A_ub=np.array(A_ub), b_ub=np.array(b_ub),
method="simplex")
print("Expected cost", expectedCost)
print("scipy.optimize.linprog gives a solution =", opt_res.x)
# In[112]:
testFromPost()
# Un second test :
# In[113]:
def test2():
cost = [1, 1, 1]
lts = [[3, -2, 0]]
ltB = [7]
eqs = [[1, 1, 0]]
eqB = [2]
expectedCost = [1, 1, 1, 0]
expectedConstraints = [[3, -2, 0, 1], [1 ,1 ,0 ,0]]
expectedThresholds = [7, 2]
test((expectedCost, expectedConstraints, expectedThresholds),
standardForm(cost, lessThans=lts, ltThreshold=ltB, equalities=eqs, eqThreshold=eqB))
# In[ ]:
test2()
# Un dernier test :
# In[115]:
def test3():
cost = [1, 1, 1]
eqs = [[1, 1, 0], [2, 2, 2]]
eqB = [2, 5]
expectedCost = [1, 1, 1]
expectedConstraints = [[3, -2, 0], [1, 1, 0]]
expectedThresholds = [2, 5]
test((expectedCost, expectedConstraints, expectedThresholds),
standardForm(cost, equalities=eqs, eqThreshold=eqB))
# In[ ]:
test3()
# Ca suffit pour ces exemples.
# ## Conclusion
#
# C'est bon pour aujourd'hui !