-
Notifications
You must be signed in to change notification settings - Fork 9
DNMY: [SOF] Begin schema for stochastic file format #51
Conversation
Thanks Oscar, that's a step forward!
Anyway, I should have a deeper look at your article, I may find some answer to my questions. I think that a next step could be to describe Shapiro's Brazilian problem with SMOF. Feel free to ask if you need any help! |
Anyway, I am looking forward a usable benchmark for stochastic programming implemented with SMOF files! |
We represent multi-dimensional random variables by their cartesian product. The
Empty arc to
This is a bigger MOF problem (#6). If we find a solution for that, we find a solution for this.
The arc probabilities are independent of the probabilities within a node. The paper describes the motivation for this. It is a core, required feature of the format.
I'm not sure about this. Probably with a field in each model that lists the non-anticipative variables: "nonanticipative_variables": ["u", "y"]
Please do.
Do you have a copy? My next step is to make a reader/writer for |
Vincent has a copy of Shapiro's problem. The formulation behind dual SDDP challenges a lot or own way to formulate stochastic problems (as we cannot decompose local stage problems across the different realizations of the noises). I will try to figure out how to formulate dual stochastic problem with the format you are currently proposing. |
I wouldn't rush. This will probably change a bit.
I think we have to distinguish between formulating the model, and solving the dual problem. You can write down the decomposed primal version of the problem which is "the model." Your solver should take this formulation and transform it into something that is more amenable to your solution process. |
Hello !
Seems to be a good job, I'll need a deeper look to make more comments.
For Shapiro's data unfortunately I cannot give them to you, but I can look
for the name of the Brazilian guy who could release them.
Best,
On Mon, 4 Mar 2019 at 22:58 François Pacaud ***@***.***> wrote:
Vincent has a copy of Shapiro's problem.
I am currently refactoring the code I wrote during my PhD to release it
open-source. I will try to implement a SMOF writer to export the problems I
studied in a shareable format.
The formulation behind dual SDDP challenges a lot or own way to formulate
stochastic problems (as we cannot decompose local stage problems across the
different realizations of the noises). I will try to figure out how to
formulate dual stochastic problem with the format you are currently
proposing.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#51 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AJCk3VpnTZcIDaXJRZAJaSDwJo6tMuWdks5vTZbrgaJpZM4bbYW2>
.
--
Vincent Leclère
|
"type": "string" | ||
} | ||
} | ||
}] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We also need MultirowChange.
Closing and moving development to https://github.com/odow/StochOptFormat |
This PR is an exploratory look at how we could build a multistage stochastic file format out of nested MathOptFormat models (#47).
Based on the formulation outlined here: http://www.optimization-online.org/DB_HTML/2018/11/6914.html
Biggest question is to which modifications (#3) are incorporated into StochOptFormat, or whether they are natively supported in MOF.
cc @joaquimg @frapac @blegat