Update README.md

This commit is contained in:
2026-06-19 10:13:47 +02:00
parent 487a48ba89
commit 633b366666
+50 -1
View File
@@ -48,4 +48,53 @@ Large language models may be used in a limited capacity during the development o
LLM-generated suggestions are not treated as authoritative. Code, algorithms, numerical methods, and design decisions should be reviewed, tested, and understood before being included in the project.
The goal of PANIC is to build a readable and inspectable numerical codebase. Any use of LLM assistance should support that goal, not replace understanding, verification, or careful implementation.
The goal of PANIC is to build a readable and inspectable numerical codebase. Any use of LLM assistance should support that goal, not replace understanding, verification, or careful implementation.
main.cpp
config.cpp/h?
modules/
math/
src/
sqrt.c
sqrt_serial.c
sqrt_omp.c
mul.c
mul_serial.c
mul_omp.c
include/
sqrt.h
sqrt_serial.h
sqrt_omp.h
mul.h
mul_serial.h
mul_omp.h
```
```text
main.cpp
modules/
config/
src/
config_omp.c
include/
config_omp.h
math/
src/
serial/
sqrt_serial.c
mul_serial.c
omp/
sqrt_omp.c
mul_omp.c
sqrt.c
include/
serial/
sqrt_serial.h
mul_serial.h
omp/
sqrt_omp.h
mul_omp.h
sqrt.h
```