Is there any simple way to extract the feasible range for the variables from solve result ?
For example, when I do solve({x-y = 10, x+y < 100}) I get {x = y + 10, y < 45}
From here, I need -inf<y<45 and -inf<x<55. Is it possible ? (I tried few methods, but it is not working for all cases.)