blob: 4d970557870e1db36a1c899c1445b6fef1e9b788 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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;
}
}
|