idol
A C++ Framework for Optimization
Loading...
Searching...
No Matches
logs.h
1//
2// Created by henri on 06.11.23.
3//
4
5#ifndef IDOL_LOGS_H
6#define IDOL_LOGS_H
7
8#include <ostream>
9#include <iomanip>
10#include "idol/general/numericals.h"
11
12namespace idol {
13
14 std::ostream& center(std::ostream& t_os, const std::string& t_string, unsigned int t_width, char t_fill = ' ');
15
16 std::string pretty_double(double t_value, unsigned int t_precision = Tolerance::Digits);
17
18}
19
20#endif //IDOL_LOGS_H