MpsReader.Read Method

Definition

Namespace: Numerics.NET.Optimization
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

Read(StreamReader) Reads a linear programming model from a stream.
Read(String) Reads a linear programming model from an MPS file.

Read(StreamReader)

Reads a linear programming model from a stream.
C#
public static LinearProgram Read(
	StreamReader reader
)

Parameters

reader  StreamReader
A StreamReader.

Return Value

LinearProgram
The QuadraticProgram read in MPS format from reader.

Remarks

Use this method to read a linear program from a stream in MPS format.

Several extensions of the MPS format have been defined over the years. The current implementation of MpsReader doesn't support these extensions. A FormatException is thrown when an unrecognized extension is found.

The MPS format is also used to specify Integer Programming (IP) and Mixed Integer Programming (MIP) problems. The QuadraticProgram class does not support these types of problems. When integer variables are encountered in an MPS file, a NotSupportedException is thrown.

Exceptions

ArgumentNullException

reader is null.

FormatException

The data is not in correct MPS format.

NotSupportedException

The data contains features, such as integer variables, that are not supported.

IOException

An I/O error has occurred.

Read(String)

Reads a linear programming model from an MPS file.
C#
public static LinearProgram Read(
	string path
)

Parameters

path  String
The path to the MPS file.

Return Value

LinearProgram
The LinearProgram contained in the file specified by path.

Remarks

Use this method to read a linear program from a file in MPS format.

Several extensions of the MPS format have been defined over the years. The current implementation of MpsReader doesn't support these extensions. A FormatException is thrown when an unrecognized extension is found.

Exceptions

FormatException

The data is not in correct MPS format.

NotSupportedException

The data contains features, such as integer variables, that are not supported.

IOException

An I/O error has occurred.

UnauthorizedAccessException

The caller does not have the required permission.

ArgumentException

path is a zero-length string, contains only white space, or contains one or more invalid characters as defined by GetInvalidPathChars().

ArgumentNullException

path is null.

PathTooLongException

The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters.

DirectoryNotFoundException

The specified path is invalid, (for example, it is on an unmapped drive).

FileNotFoundException

The file specified in path was not found.

ArgumentNullException

path is null.

See Also