-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Write raw optimization results [ANT-2302] #2565
Conversation
int optimizationNumber, | ||
Solver::IResultWriter& writer) | ||
{ | ||
Yuni::Clob buffer; |
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.
Yuni::Clob buffer;
:
Is it possible to get rid of Clob and use a std::string
instead (faster and more standard) ?
The IResultWriter
has a function :
void addEntryFromBuffer(const std::filesystem::path& entryPath,
std::string& entryContent)
Can we not use it ?
Quality Gate passedIssues Measures |
Allow the user to export solutions through new boolean option
include-export-solutions
(default=false
).