You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
mat4 is the dataframe representation of a sparse data set. The column names of mat[1:3] are the index names in the model. To clarify my idea, convert the index names of the variable x to the the real index names:
The MIPModel fails when replacing the explicit list object in the model with the externally assigned list_1. Allowing external assignments to internal model structure elements is the request to simplify model syntax. Note that the list_2b assignment derived directly from the dataframe is identical to list_1. So ideally, an externally assigned list object in the model could be created directly from a sparse dataframe and then used inside the model.
Note that my reference paradigm in the is MPL algebraic model manager. A sample model below that demonstrates creating objects external to the model and then using those objects inside the model as a formulation ideal.
{ Plandb3.mpl }
TITLE
Production_Planning_Database3;
OPTIONS
DatabaseType=Access
DatabaseAccess="Plandb3.mdb"
DatabaseExcel="Plandb3.xls"
INDEX
product := DATABASE("Products","ProductID");
DATA
Price[product] := DATABASE("Products","Price");
Demand[product] := DATABASE("Products","Demand");
ProdCost[product] := DATABASE("Products","ProdCost");
ProdRate[product] := DATABASE("Products","ProdRate");
ProdDaysAvail := 22;
VARIABLES
Produce[product] -> Prod
EXPORT TO DATABASE("Products","Produce");
MACROS
TotalRevenue := SUM(product: Price * Produce);
TotalCost := SUM(product: ProdCost * Produce);
MODEL
MAX Profit = TotalRevenue - TotalCost;
SUBJECT TO
ProdCapacity -> PCap:
SUM(product: Produce / ProdRate) <= ProdDaysAvail;
BOUNDS
Produce <= Demand;
END
The text was updated successfully, but these errors were encountered:
Reference here is Discussion item: #412 (comment)
Dirk provides an very nice solution for declaring a sparse data structure inside of a MIPModel:
mat4
is the dataframe representation of a sparse data set. The column names ofmat[1:3]
are the index names in the model. To clarify my idea, convert the index names of thevariable x
to the the real index names:The request is to allow the list object in the model to be declared outside the model and then used as a "macro" inside the model.
The MIPModel fails when replacing the explicit list object in the model with the externally assigned list_1. Allowing external assignments to internal model structure elements is the request to simplify model syntax. Note that the list_2b assignment derived directly from the dataframe is identical to list_1. So ideally, an externally assigned list object in the model could be created directly from a sparse dataframe and then used inside the model.
Note that my reference paradigm in the is MPL algebraic model manager. A sample model below that demonstrates creating objects external to the model and then using those objects inside the model as a formulation ideal.
The text was updated successfully, but these errors were encountered: