Skip to content

Commit

Permalink
Merge pull request #36 from UmbrellaLeaf5/dijkstras_algorithm
Browse files Browse the repository at this point in the history
Fix comments
  • Loading branch information
UmbrellaLeaf5 authored Apr 12, 2024
2 parents 9f21abc + c27fa17 commit 182a465
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Backend/littles_algorithm/adjacency_matrix.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ namespace math {

#define inf std::numeric_limits<double>::infinity()

// @brief структура для хранения двух минимумов строки/столбца
/// @brief структура для хранения двух минимумов строки/столбца
struct Minimums {
double first;
double second;
};

// @brief матрица смежности для алгоритма Литтла
/// @brief матрица смежности для алгоритма Литтла
class AdjacencyMatrix {
public:
/**
Expand Down
2 changes: 1 addition & 1 deletion Backend/littles_algorithm/travelling_salesmans_problem.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

namespace math {

// @brief решение задачи коммивояжера
/// @brief решение задачи коммивояжера
class TravellingSalesmansProblem {
public:
/**
Expand Down
4 changes: 2 additions & 2 deletions Backend/littles_algorithm/tspgraph.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

namespace math {

// @brief ребро между двумя контрольными точками
/// @brief ребро между двумя контрольными точками
struct Edge {
/**
* @brief создает новый экземпляр Edge
Expand All @@ -21,7 +21,7 @@ struct Edge {
std::size_t end_num;
};

// @brief вершина дерева с соответствующей матрицей смежности
/// @brief вершина дерева с соответствующей матрицей смежности
struct TSPNode {
/**
* @brief создает новый экземпляр TSPNode
Expand Down

0 comments on commit 182a465

Please sign in to comment.