Fix code messages
This commit is contained in:
@@ -39,7 +39,7 @@ class ReindeerMaze
|
||||
void initializeWorkList(std::list<ReindeerMazeCrossing>& crossings, const int entryVertex);
|
||||
void addCheckedIncidence(std::vector<ReindeerMazePathIncidence>& incidences, const Point2 start,
|
||||
const Point2 direction);
|
||||
Point2 findStart();
|
||||
Point2 findStart() const;
|
||||
void AddPathSegmentEdges(WeightedEdgeGraph& graph, const ReindeerMazePathIncidence& pathIncidence,
|
||||
const std::vector<ReindeerMazePathIncidence>& otherPathIncidences);
|
||||
};
|
||||
|
||||
@@ -19,13 +19,13 @@ class MullData
|
||||
{
|
||||
public:
|
||||
MullData();
|
||||
bool getIsEnabled();
|
||||
bool getIsEnabled() const;
|
||||
void setIsEnabled(const bool value);
|
||||
int getFactor(const int index);
|
||||
int getFactor(const int index) const;
|
||||
void setFactor(const int index, const int value);
|
||||
void updateResult();
|
||||
long long int getResultPart1();
|
||||
long long int getResultPart2();
|
||||
long long int getResultPart1() const;
|
||||
long long int getResultPart2() const;
|
||||
private:
|
||||
bool isEnabled_;
|
||||
int factor1_;
|
||||
|
||||
Reference in New Issue
Block a user