2026-08-04 14:24:55 -04:00
|
|
|
#!/bin/bash
|
2026-09-01 11:50:13 -04:00
|
|
|
find libmeanfield tests experiments -type f \( -name '*.cpp' \) | xargs -I{} clang-format -style=file:clang-format-styles/style -i {}
|
|
|
|
|
find libmeanfield tests experiments -type f \( -name '*.cppm' \) | xargs -I{} clang-format -style=file:clang-format-styles/style -i {}
|