Domanda

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-)

È stato utile?

Soluzione

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.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top