| Name | Date | Size | #Lines | LOC | ||
|---|---|---|---|---|---|---|
| .. | - | - | ||||
| .gitignore | H A D | 01-Feb-2018 | 4 | 2 | 1 | |
| Makefile | H A D | 30-Dec-2025 | 1.4 KiB | 54 | 29 | |
| README.md | H A D | 16-Jul-2025 | 436 | 19 | 12 | |
| bp1.cpp | H A D | 30-Dec-2025 | 5.7 KiB | 160 | 92 | |
| bp1.h | H A D | 30-Dec-2025 | 2.1 KiB | 61 | 34 | |
| bp1.hpp | H A D | 30-Dec-2025 | 8.2 KiB | 180 | 138 | |
| bp3.cpp | H A D | 30-Dec-2025 | 6.8 KiB | 195 | 123 | |
| bp3.h | H A D | 30-Dec-2025 | 4.8 KiB | 117 | 85 | |
| bp3.hpp | H A D | 30-Dec-2025 | 8.3 KiB | 183 | 139 |
README.md
1## libCEED MFEM Examples 2 3These examples show to write libCEED operators (BP1 and BP3) within the open-source finite element library [MFEM](https://www.mfem.org/). 4 5First compile MFEM and libCEED individually. After that, compile the MFEM example: 6 7```bash 8export MFEM_DIR=/path/to/mfem 9make 10``` 11 12To run the executable, write: 13 14``` 15./bp[1, 3] 16``` 17 18Optional command-line arguments are shown by adding the command-line argument "--help". 19