SciPy - Advanced Optimization
Identify the error in this code snippet that uses
linprog:from scipy.optimize import linprog c = [1, 2] A = [[-1, 1], [3, 4]] b = [1, 12] res = linprog(c, A_eq=A, b_eq=b) print(res.success)
