|
1 | 1 | # HighsLp |
2 | 2 |
|
3 | | -An LP model is communicated via an instance of the HighsLp class |
| 3 | +An LP model is communicated via an instance of the `HighsLp` class |
4 | 4 |
|
5 | | -- num\_col\_: Scalar of type integer - Number of columns in the model |
6 | | -- num\_row\_: Scalar of type integer - Number of rows in the model |
7 | | -- col\_cost\_: Vector of type double - Coefficients of the linear term in the objective function |
8 | | -- col\_lower\_: Vector of type double - Lower bounds on the variables |
9 | | -- col\_upper\_: Vector of type double - Upper bounds on the variables |
10 | | -- row\_lower\_: Vector of type double - Lower bounds on the constraints |
11 | | -- row\_upper\_: Vector of type double - Upper bounds on the constraints |
12 | | -- a\_matrix\_: Instance of [HighsSparseMatrix](@ref) class - Constraint matrix |
13 | | -- sense\_: Scalar of type [ObjSense](@ref) - Optimization sense of the model |
14 | | -- offset\_: Scalar of type double - Constant term in the objective function |
15 | | -- model\_name\_: Scalar of type string - Name of the model |
16 | | -- objective\_name\_: Scalar of type string - Name of the objective function |
17 | | -- col\_names\_: Vector of type string - Names of the variables |
18 | | -- row\_names\_: Vector of type string - Names of the constraints |
19 | | -- integrality\_: Vector of type [HighsVarType](@ref) - Type of each variable |
| 5 | +- `num\_col\_`: Scalar of type integer - Number of columns in the model |
| 6 | +- `num\_row\_`: Scalar of type integer - Number of rows in the model |
| 7 | +- `col\_cost\_`: Vector of type double - Coefficients of the linear term in the objective function |
| 8 | +- `col\_lower\_`: Vector of type double - Lower bounds on the variables |
| 9 | +- `col\_upper\_`: Vector of type double - Upper bounds on the variables |
| 10 | +- `row\_lower\_`: Vector of type double - Lower bounds on the constraints |
| 11 | +- `row\_upper\_`: Vector of type double - Upper bounds on the constraints |
| 12 | +- `a\_matrix\_`: Instance of [HighsSparseMatrix](@ref) class - Constraint matrix |
| 13 | +- `sense\_`: Scalar of type [ObjSense](@ref) - Optimization sense of the model |
| 14 | +- `offset\_`: Scalar of type double - Constant term in the objective function |
| 15 | +- `model\_name\_`: Scalar of type string - Name of the model |
| 16 | +- `objective\_name\_`: Scalar of type string - Name of the objective function |
| 17 | +- `col\_names\_`: Vector of type string - Names of the variables |
| 18 | +- `row\_names\_`: Vector of type string - Names of the constraints |
| 19 | +- `integrality\_`: Vector of type [HighsVarType](@ref) - Type of each variable |
0 commit comments