You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -22,7 +22,7 @@ libnumerixpp is a powerful, cross-platofrm C++ library designed for high-perform
22
22
23
23
You can join to our [small russian telegram blog](https://t.me/hex_warehouse).
24
24
25
-
> You can view docs for libnumerixpp [here](https://alxvdev.github.io/libnumerixpp).
25
+
> You can view docs for libnumerixpp [here](https://alexeev-prog.github.io/libnumerixpp).
26
26
27
27
## Key Features
28
28
-**Extensive Functionality**: libnumerixpp provides a wide range of functions coverint the core areas of mathematics, physics, and computer science, including:
@@ -47,10 +47,10 @@ Each module has its own set of header files and source files, ensuring flexibili
47
47
## Usage
48
48
To use libnumerixpp in your project, follow these steps:
3. Include the nessary modules in your code using [`#include`](https://github.com/alxvdev/libnumerixpp/tree/main/include) directives:
72
+
3. Include the nessary modules in your code using [`#include`](https://github.com/alexeev-prog/libnumerixpp/tree/main/include) directives:
70
73
71
74
```cpp
72
75
#include"libnumerixpp/core/common.hpp"// example
73
76
```
74
77
75
-
4. Start using the library functions in your applications! You can view [examples of usage here](https://github.com/alxvdev/libnumerixpp/tree/main/examples).
78
+
4. Start using the library functions in your applications! You can view [examples of usage here](https://github.com/alexeev-prog/libnumerixpp/tree/main/examples).
76
79
77
80
## Examples
78
-
Below you can see examples of using libnumerixpp in your project. Also, you can view [examples dir](https://github.com/alxvdev/libnumerixpp/tree/main/examples).
81
+
Below you can see examples of using libnumerixpp in your project. Also, you can view [examples dir](https://github.com/alexeev-prog/libnumerixpp/tree/main/examples).
This example shows how to calculate the *equations* using the `mathematics` and `mathematics::equations`.
99
102
@@ -104,29 +107,48 @@ linumerixpp utilizes the following tools and libraries:
104
107
-**Doxygen**: Documentation generation
105
108
106
109
## Documentation
107
-
Detailed documentation, including user guides, API reference, and code examples, is available in the [docs](https://alxvdev.github.io/libnumerixpp/). Or you can see articles or additional info in [en docs dir](https://github.com/alxvdev/libnumerixpp/blob/main/docs/en/index.md) or [ru docs dir](https://github.com/alxvdev/libnumerixpp/blob/main/docs/ru/index.md).
110
+
Detailed documentation, including user guides, API reference, and code examples, is available in the [docs](https://alexeev-prog.github.io/libnumerixpp/). Or you can see articles or additional info in [en docs dir](https://github.com/alexeev-prog/libnumerixpp/blob/main/docs/en/index.md) or [ru docs dir](https://github.com/alexeev-prog/libnumerixpp/blob/main/docs/ru/index.md).
108
111
109
-
If you have any questions, suggestions, or encounter issues, please create a new [issue](https://github.com/alxvdev/libnumerixpp/issues/new) in the repository. We'll be happy to assist you and improve the library.
112
+
If you have any questions, suggestions, or encounter issues, please create a new [issue](https://github.com/alexeev-prog/libnumerixpp/issues/new) in the repository. We'll be happy to assist you and improve the library.
110
113
111
114
You can also write to me on Telegram: [@alexeev_dev](https://t.me/alexeev_dev)
112
115
113
116
libnumerixpp is an Open Source project, and it only survives due to your feedback and support!
114
117
115
-
Project releases are available at [this link](https://github.com/alxvdev/libnumerixpp/releases).
118
+
Project releases are available at [this link](https://github.com/alexeev-prog/libnumerixpp/releases).
116
119
117
120
## Our Projects
118
121
Check other our projects:
119
122
120
-
+[Shegang - functional shell in C for linux](https://github.com/alxvdev/shegang).
121
-
+[Hex64 - software for benchmarking](https://github.com/alxvdev/hex64)
122
-
+[Pentest 154 - software for simple OSINT and search info about target](https://github.com/alxvdev/pentest154)
123
+
+[Shegang - functional shell in C for linux](https://github.com/alexeev-prog/shegang).
124
+
+[Hex64 - software for benchmarking](https://github.com/alexeev-prog/hex64)
125
+
+[Pentest 154 - software for simple OSINT and search info about target](https://github.com/alexeev-prog/pentest154)
123
126
124
127
## Project Architecture
125
128
126
129
```
127
130
├── build.sh
128
131
├── CHANGELOG.md
132
+
├── cmake
133
+
│ ├── coverage.cmake
134
+
│ ├── dev-mode.cmake
135
+
│ ├── docs-ci.cmake
136
+
│ ├── docs.cmake
137
+
│ ├── folders.cmake
138
+
│ ├── install-config.cmake
139
+
│ ├── install-rules.cmake
140
+
│ ├── lint.cmake
141
+
│ ├── lint-targets.cmake
142
+
│ ├── prelude.cmake
143
+
│ ├── project-is-top-level.cmake
144
+
│ ├── spell.cmake
145
+
│ ├── spell-targets.cmake
146
+
│ └── variables.cmake
129
147
├── CMakeLists.txt
148
+
├── CMakePresets.json
149
+
├── CMakeUserPresets.json
150
+
├── conanfile.py
151
+
├── cwpLvF9U
130
152
├── docs
131
153
│ ├── doxygen-styles.css
132
154
│ ├── en
@@ -158,17 +180,20 @@ Check other our projects:
158
180
│ ├── article.md
159
181
│ └── index.md
160
182
├── Doxyfile
183
+
├── Doxygen.cmake
161
184
├── examples
162
185
│ ├── example-1.cpp
163
186
│ ├── example-2.cpp
164
187
│ ├── example-3.cpp
165
188
│ └── example-4.cpp
189
+
├── format-code.py
166
190
├── include
167
191
│ └── libnumerixpp
168
192
│ ├── computerscience
169
193
│ │ └── core.hpp
170
194
│ ├── core
171
195
│ │ └── common.hpp
196
+
│ ├── export.h
172
197
│ ├── libnumerixpp.hpp
173
198
│ ├── mathematics
174
199
│ │ ├── core.hpp
@@ -180,23 +205,28 @@ Check other our projects:
180
205
│ └── kinematics.hpp
181
206
├── LICENSE
182
207
├── README.md
183
-
└── src
184
-
├── computerscience
185
-
│ └── core.cpp
186
-
├── core
187
-
│ └── common.cpp
188
-
├── libnumerixpp.cpp
189
-
├── mathematics
190
-
│ ├── core.cpp
191
-
│ ├── equations.cpp
192
-
│ ├── quadratic_equations.cpp
193
-
│ └── statistics.cpp
194
-
└── physics
195
-
├── core.cpp
196
-
└── kinematics.cpp
208
+
├── spacetabs.sh
209
+
├── src
210
+
│ ├── computerscience
211
+
│ │ └── core.cpp
212
+
│ ├── core
213
+
│ │ └── common.cpp
214
+
│ ├── libnumerixpp.cpp
215
+
│ ├── mathematics
216
+
│ │ ├── core.cpp
217
+
│ │ ├── equations.cpp
218
+
│ │ ├── quadratic_equations.cpp
219
+
│ │ └── statistics.cpp
220
+
│ └── physics
221
+
│ ├── core.cpp
222
+
│ └── kinematics.cpp
223
+
└── test
224
+
├── CMakeLists.txt
225
+
└── source
226
+
└── libnumerixpp_test.cpp
197
227
```
198
228
199
229
## Copyright
200
-
libnumerixpp is released under the [Apache License 2.0](https://github.com/alxvdev/libnumerixpp/blob/main/LICENSE).
230
+
libnumerixpp is released under the [Apache License 2.0](https://github.com/alexeev-prog/libnumerixpp/blob/main/LICENSE).
0 commit comments