-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpythonic.h
More file actions
67 lines (41 loc) · 1.26 KB
/
pythonic.h
File metadata and controls
67 lines (41 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
//
// Created by Vova on 24.05.2020.
//
#pragma once
#include <optional>
#include "other/typedefs.h"
#include "encoding/encoder.h"
#include "files/file_reader.h"
#include "files/file_walker.h"
#include "maths/simple_functions.h"
#include "maths/statistics.h"
#include "maths/numpyic.h"
#include "maths/randomizator.h"
#include "displaying/byte_sizes/ByteSizeCommon.h"
#include "displaying/byte_sizes/BitSize.h"
#include "displaying/byte_sizes/ByteSize.h"
using namespace hvn3;
#include "displaying/print_stl.h"
#include "displaying/colored_printing.h"
#include "displaying/type_printer.h"
#include "displaying/printing_utils.h"
#include "plotting/plotter.h"
#include "geometry/line.h"
#include "geometry/point.h"
#include "geometry/circle.h"
#include "n_dim/nd_array.h"
#include "n_dim/nd_point.h"
#include "smoothing/smoothing.h"
#include "smoothing/density_counter.h"
#include "other/letter_utils.h"
#include "other/python_builtins.h"
#include "threading/thread_utils.h"
#include "threading/static_thread_pool.h"
#include "timing/Timer.h"
#include "timing/delayed_launcher.h"
#include "timing/task_scheduler.h"
#include "timing/easy_measurer.h"
#include "timing/multirun_timer.h"
#include "date_library/date.h"
/// Algorithms:
#include <algorithms/binary_search.h>