Locus No Pilotus
Project of four first grade MIPT DAFE/RSE students (for engineering practical work in the second semester) in Qt C++
Loading...
Searching...
No Matches
infinity.h
Go to the documentation of this file.
1#pragma once
2
3// std libs:
4#include <limits>
5
6namespace lib {
7
8/// @brief Infinity
9constexpr double inf = std::numeric_limits<double>::infinity();
10
11} // namespace lib
Definition base.h:10