From 633b366666a669e5efed65d37f3623a21086934c Mon Sep 17 00:00:00 2001 From: Bausager Date: Fri, 19 Jun 2026 10:13:47 +0200 Subject: [PATCH] Update README.md --- README.md | 51 ++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 50 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c1dfccd..9614e68 100644 --- a/README.md +++ b/README.md @@ -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. \ No newline at end of file +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 +``` \ No newline at end of file