Ejemplo n.º 1
0
 public PairwiseSubModel(int order, params PairwiseParameter[] parameters)
 {
     this.order      = order;
     this.parameters = new PairwiseParameterCollection(parameters);
 }
Ejemplo n.º 2
0
 public PairwiseModelLookupContext(PairwiseModel model, PairwiseSettings settings)
 {
     this.parameters = new PairwiseParameterCollection(model.Parameters);
     this.settings   = settings;
 }
Ejemplo n.º 3
0
 public PairwiseParameterCollection(PairwiseParameterCollection copy)
 {
     this.InnerList.AddRange(copy.InnerList);
 }