/// <summary>
 /// Sets the hypotheses.
 /// </summary>
 /// <param name="boxModule">The box module.</param>
 /// <param name="value">The value.</param>
 public static void SetHypotheses(BoxModuleI boxModule, HypothesisStruct[] value)
 {
     HypothesesTI newValue = new HypothesesTI(value);
     boxModule.setProperty("Hypotheses", newValue);
 }
 /// <summary>
 /// Sets the generation info.
 /// </summary>
 /// <param name="boxModule">The box module.</param>
 /// <param name="value">The value.</param>
 public static void SetGenerationInfo(BoxModuleI boxModule, GeneratingStruct value)
 {
     GenerationInfoTI newValue = new GenerationInfoTI(value);
     boxModule.setProperty("GenerationInfo", newValue);
 }