Fix code messages

This commit is contained in:
2025-04-30 20:45:09 +02:00
parent 01c300dce1
commit 1c860f7e4c
6 changed files with 14 additions and 14 deletions

View File

@@ -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);
};

View File

@@ -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_;