Commit df009351 authored by Макаров Денис Дмитриевич's avatar Макаров Денис Дмитриевич
Browse files

Заполнил файл констант дял второго пункта

parent 48f50c86
No related merge requests found
Showing with 22 additions and 0 deletions
+22 -0
No preview for this file type
#pragma once
#include "matrix_new.h"
#include "graph.h"
#include <vector>
#include <limits>
#include <set> //хранит уникальные элементы в отсортированном порядке
using node_name_t = unsigned int;
using weight_t = double;
using matrix_t = linalg::Matrix<weight_t>;
template<typename T>
using graph_t = graph::Graph<node_name_t, T, weight_t>
using components_t = std::set<std::set<node_name_t>>;
using route_t = std::vector<node_name_t>
const double INF = std::numeric_limits<double>::infinity();
const double EPS = srd::numeric_limits<double>::epsilon();
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment