SciPy - Advanced Optimization
Find the bug in this code:
from scipy.optimize import linprog c = [1, 1] A_eq = [[1, 2], [3, 4]] b_eq = [5] result = linprog(c, A_eq=A_eq, b_eq=b_eq) print(result.success)
