Jupyter is a way of creating interactive notebooks that blend text, graphics, and code. This is a unique form of programming.
2d_heat_solver/ ├── src/ # Source code │ ├── main.cpp # Serial version entry point │ ├── main_mpi.cpp # MPI parallel version entry point │ ├── heat_solver.h # Serial solver class declaration │ ├── ...