Ejemplo n.º 1
0
        /// <summary>
        /// Loads a SAS+ input data from the given input file. Does not include an input data validation.
        /// </summary>
        /// <param name="problemFilePath">SAS+ problem input file.</param>
        /// <returns>Instance of master SAS+ input data structure.</returns>
        public static SASInputData LoadInputData(string problemFilePath)
        {
            SASInputData inputData = new SASInputData {
                Problem = LoadProblem(problemFilePath)
            };

            return(inputData);
        }
Ejemplo n.º 2
0
 /// <summary>
 /// Validates the given SAS+ input data. Throws ValidationException in case of a validation failure.
 /// </summary>
 /// <param name="inputData">SAS+ input data.</param>
 public static void ValidateInputData(SASInputData inputData)
 {
     ValidateProblem(inputData.Problem);
 }