Вопрос

I'm using AMPL and need to input my model that has nonnegative deviation variables (s+ - s-).

An example constraint is: (x - 5) = (s+ - s-)

Это было полезно?

Решение

This is the way to do it:

var x;
var sp >= 0;
var sm >= 0;

s.t.

cons1:
  (x - 5) = (sp - sm);

FYI, the AMPL book can be downloaded for free.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top