Is it expected for this code to utilize such a significant amount of memory, given the following Julia code that defines variables within a JuMP optimization model?
using JuMP, CPLEX
m = Model(CPLEX.Optimizer)
@variable(m, x[1:1000, 1:1000, 1:6, 1:60])