forked from ERGO-Code/HiGHS
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed references to getHighsOptions
- Loading branch information
Showing
4 changed files
with
100 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,6 +47,7 @@ local.properties | |
[Rr]elease/ | ||
x64/ | ||
build/ | ||
build64/ | ||
buildDebug/ | ||
[Bb]in/ | ||
[Oo]bj/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ | ||
/* */ | ||
/* This file is part of the HiGHS linear optimization suite */ | ||
/* */ | ||
/* Written and engineered 2008-2021 at the University of Edinburgh */ | ||
/* */ | ||
/* Available as open-source under the MIT License */ | ||
/* */ | ||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ | ||
/**@file lp_data/HighsDeprecated.cpp | ||
* @brief | ||
* @author Julian Hall, Ivet Galabova, Qi Huangfu and Michael Feldmeier | ||
*/ | ||
#include "HConfig.h" | ||
#include "Highs.h" | ||
|
||
HighsStatus Highs::setHighsOptionValue(const std::string& option, | ||
const bool value) { | ||
return setOptionValue(option, value); | ||
} | ||
|
||
HighsStatus Highs::setHighsOptionValue(const std::string& option, | ||
const HighsInt value) { | ||
return setOptionValue(option, value); | ||
} | ||
|
||
HighsStatus Highs::setHighsOptionValue(const std::string& option, | ||
const double value) { | ||
return setOptionValue(option, value); | ||
} | ||
|
||
HighsStatus Highs::setHighsOptionValue(const std::string& option, | ||
const std::string value) { | ||
return setOptionValue(option, value); | ||
} | ||
|
||
HighsStatus Highs::setHighsOptionValue(const std::string& option, | ||
const char* value) { | ||
return setOptionValue(option, value); | ||
} | ||
|
||
HighsStatus Highs::readHighsOptions(const std::string filename) { | ||
return readOptions(filename); | ||
} | ||
|
||
HighsStatus Highs::passHighsOptions(const HighsOptions& options) { | ||
return passOptions(options); | ||
} | ||
|
||
HighsStatus Highs::getHighsOptionValue(const std::string& option, bool& value) { | ||
return getOptionValue(option, value); | ||
} | ||
|
||
HighsStatus Highs::getHighsOptionValue(const std::string& option, | ||
HighsInt& value) { | ||
return getOptionValue(option, value); | ||
} | ||
|
||
HighsStatus Highs::getHighsOptionValue(const std::string& option, | ||
double& value) { | ||
return getOptionValue(option, value); | ||
} | ||
|
||
HighsStatus Highs::getHighsOptionValue(const std::string& option, | ||
std::string& value) { | ||
return getOptionValue(option, value); | ||
} | ||
|
||
HighsStatus Highs::getHighsOptionType(const std::string& option, | ||
HighsOptionType& type) { | ||
return getOptionType(option, type); | ||
} | ||
|
||
HighsStatus Highs::resetHighsOptions() { | ||
return resetOptions(); | ||
} | ||
|
||
HighsStatus Highs::writeHighsOptions( | ||
const std::string filename, const bool report_only_non_default_values) { | ||
return writeOptions(filename, report_only_non_default_values); | ||
} | ||
|
||
const HighsOptions& Highs::getHighsOptions() const { return getOptions(); } | ||
|
||
HighsStatus Highs::setHighsLogfile(FILE* logfile) { | ||
options_.output_flag = false; | ||
return HighsStatus::OK; | ||
} | ||
|
||
HighsStatus Highs::setHighsOutput(FILE* output) { | ||
options_.output_flag = false; | ||
return HighsStatus::OK; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters