An error occurred upon my first attempt to use Julia for solving a meaningful convex optimization problem:
using Convex x = Variable(3) t = rand(3) s = t+rand(3) constraints = [x>=0, x<=s] p = minimize(sum(1./(x-t)), constraints) `./` has no method matching ./(::Int64, ::AdditionAtom) Searched for awhile for a fix but to no avail. Can anyone help? Thanks in advance!
