From 5e31f1cc8c98f9443c313a2eafe0cd701960b5bf Mon Sep 17 00:00:00 2001
From: Armin Damon Riess <armindamon.riess@uzh.ch>
Date: Thu, 15 Dec 2022 16:18:48 +0100
Subject: [PATCH] Include OpenMP installation guide

---
 README.md | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index b1cbe57..d4b9ea8 100644
--- a/README.md
+++ b/README.md
@@ -1,8 +1,13 @@
 # N Body Simulation
 
 This code simulates particles under self-gravity. The forces are calculated via direct summation or with a tree and multipole expansion. 
+
 Most of the code is written in C++, Python is used to make plots and animations. OpenMP is used for parallelisation. 
 
+## Install OpenMP
+
+https://www.geeksforgeeks.org/openmp-introduction-with-installation-guide/
+
 ## Make build directory
 
 ```
@@ -11,9 +16,9 @@ nbody$ cd build
 nbody/build$ cmake ..
 ```
 
-## Compiling and running the simulation
+## Compiling and running the program
 
 ```
 nbody/build$ make
 nbody/build$ ./nbody
-```
\ No newline at end of file
+```
-- 
GitLab