feat(rotating-polytrope): initial commit

This commit is contained in:
2026-02-12 07:53:26 -05:00
commit db8e02b0cd
6 changed files with 13419 additions and 0 deletions

20
makefile Normal file
View File

@@ -0,0 +1,20 @@
default: all
all: run
run: main.cpp
clang++ -O3 -o run main.cpp -lmfem -std=c++23
run_debug: main.cpp
clang++ -g -O0 -o run_debug main.cpp -lmfem -std=c++23
clean:
rm -f run run_debug
@.PHONY: all run run_debug clean
test: run
./run
debug: run_debug
lldb run_debug