Exemple #1
0
 public Sequential(Network net, Variable[] v, int[] l, ConstraintTypes cType, int weight)
     : base(net, cType, weight)
 {
     _v = new Variable[v.Length];
     v.CopyTo(_v, 0);
     _l = new int[l.Length];
     l.CopyTo(_l, 0);
 }
Exemple #2
0
 public NotEquals(Network net, Variable[] va, ConstraintTypes cType, int weight)
     : base(net, cType, weight)
 {
     _v = new Variable[va.Length];
     va.CopyTo(_v, 0);
 }