Skip to content

Commit

Permalink
Renaming infeasibility analyzer : renaming in class Constraint
Browse files Browse the repository at this point in the history
  • Loading branch information
guilpier-code committed Jul 2, 2024
1 parent 7145e40 commit 0580371
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 27 deletions.
44 changes: 22 additions & 22 deletions src/solver/infeasible-problem-analysis/constraint.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,37 +33,37 @@ const std::string kUnknown = "<unknown>";
namespace Antares::Optimization
{
Constraint::Constraint(const std::string& input, const double slackValue):
mInput(input),
mSlackValue(slackValue)
name_(input),
slackValue_(slackValue)
{
}

std::size_t Constraint::extractItems()
std::size_t Constraint::extractComponentsFromName()
{
const auto beg = mInput.begin();
const auto end = mInput.end();
const auto beg = name_.begin();
const auto end = name_.end();
std::size_t newPos = 0;
const std::size_t sepSize = 2;
const std::size_t inputSize = mInput.size();
const std::size_t inputSize = name_.size();
for (std::size_t pos = 0; pos < inputSize; pos = newPos + sepSize)
{
newPos = mInput.find("::", pos);
newPos = name_.find("::", pos);
if (newPos == std::string::npos)
{
mItems.emplace_back(beg + pos, end);
nameComponents_.emplace_back(beg + pos, end);
break;
}
if (newPos > pos)
{
mItems.emplace_back(beg + pos, beg + newPos);
nameComponents_.emplace_back(beg + pos, beg + newPos);
}
}
return mItems.size();
return nameComponents_.size();
}

double Constraint::getSlackValue() const
{
return mSlackValue;
return slackValue_;
}

class StringIsNotWellFormated: public std::runtime_error
Expand Down Expand Up @@ -117,7 +117,7 @@ std::string Constraint::getAreaName() const
{
return "<none>";
}
return StringBetweenAngleBrackets(mItems.at(1));
return StringBetweenAngleBrackets(nameComponents_.at(1));
}

std::string Constraint::getTimeStepInYear() const
Expand All @@ -129,36 +129,36 @@ std::string Constraint::getTimeStepInYear() const
case ConstraintType::fictitious_load:
case ConstraintType::hydro_reservoir_level:
case ConstraintType::short_term_storage_level:
return StringBetweenAngleBrackets(mItems.at(mItems.size() - 2));
return StringBetweenAngleBrackets(nameComponents_.at(nameComponents_.size() - 2));
default:
return kUnknown;
}
}

ConstraintType Constraint::getType() const
{
assert(mItems.size() > 1);
if (mItems.at(1) == "hourly")
assert(nameComponents_.size() > 1);
if (nameComponents_.at(1) == "hourly")
{
return ConstraintType::binding_constraint_hourly;
}
if (mItems.at(1) == "daily")
if (nameComponents_.at(1) == "daily")
{
return ConstraintType::binding_constraint_daily;
}
if (mItems.at(1) == "weekly")
if (nameComponents_.at(1) == "weekly")
{
return ConstraintType::binding_constraint_weekly;
}
if (mItems.at(0) == "FictiveLoads")
if (nameComponents_.at(0) == "FictiveLoads")
{
return ConstraintType::fictitious_load;
}
if (mItems.at(0) == "AreaHydroLevel")
if (nameComponents_.at(0) == "AreaHydroLevel")
{
return ConstraintType::hydro_reservoir_level;
}
if (mItems.at(0) == "Level")
if (nameComponents_.at(0) == "Level")
{
return ConstraintType::short_term_storage_level;
}
Expand All @@ -172,7 +172,7 @@ std::string Constraint::getBindingConstraintName() const
case ConstraintType::binding_constraint_hourly:
case ConstraintType::binding_constraint_daily:
case ConstraintType::binding_constraint_weekly:
return mItems.at(0);
return nameComponents_.at(0);
default:
return kUnknown;
}
Expand All @@ -182,7 +182,7 @@ std::string Constraint::getSTSName() const
{
if (getType() == ConstraintType::short_term_storage_level)
{
return StringBetweenAngleBrackets(mItems.at(2));
return StringBetweenAngleBrackets(nameComponents_.at(2));
}
else
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,14 @@ class Constraint
double getSlackValue() const;

// Extract items, check consistency
std::size_t extractItems();
std::size_t extractComponentsFromName();
std::string prettyPrint() const;
ConstraintType getType() const;

private:
std::string mInput;
std::vector<std::string> mItems;
double mSlackValue;
std::string name_;
std::vector<std::string> nameComponents_;
double slackValue_;

// Get specific items
std::string getAreaName() const;
Expand Down
2 changes: 1 addition & 1 deletion src/solver/infeasible-problem-analysis/report.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ void InfeasibleProblemReport::extractItems()
{
for (auto& c: mConstraints)
{
if (c.extractItems() == 0)
if (c.extractComponentsFromName() == 0)
{
return;
}
Expand Down

0 comments on commit 0580371

Please sign in to comment.