Felipe Bofarull
- Total activity 3
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 1
Comments
Recent activity by Felipe Bofarull-
from gurobipy import *import math#n = int(input('n = '))n = 4print(n)X = []for i in range(1,n+2): X.append(int(i))print(X)# Modeloof = Model()# Variablesa = of.addVar(vtype=GRB.CONTINUOUS, name=...