Constraint constructor

Constraint(
  1. Expression expression,
  2. Relation relation
)

Creates a new Constraint by specifying a single Expression. This assumes that the right hand side Expression is the constant zero. (<expression> <relation> <0>)

Implementation

Constraint(this.expression, this.relation);