Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/algs/ags/solver.cc
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ void NLPSolver::UpdateH(double newValue, int index)
}
}

void NLPSolver::UpdateAllH(std::set<Interval*>::iterator iterator)
void NLPSolver::UpdateAllH(std::set<Interval*, ags::CompareIntervals>::iterator iterator)
{
Interval* pInterval = *iterator;
if (pInterval->pl.idx < 0)
Expand Down
2 changes: 1 addition & 1 deletion src/algs/ags/solver.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class NLPSolver
void InitDataStructures();
void ClearDataStructures();

void UpdateAllH(std::set<Interval*>::iterator);
void UpdateAllH(std::set<Interval*, ags::CompareIntervals>::iterator);
void UpdateH(double newValue, int index);
double CalculateR(Interval*) const;
double GetNextPointCoordinate(Interval*) const;
Expand Down
Loading