public class Constraint { public String op; public Position[] positions; public int targNumber; public Constraint(int targNumber,String op,Position[] pos) { this.op = op; positions = pos; this.targNumber = targNumber; } }