From 5e59a472250e4c05f82b8c51e1001f85d01abaf6 Mon Sep 17 00:00:00 2001
From: Tallulah Rytz <tallulah.rytz@epfl.ch>
Date: Fri, 13 Dec 2024 13:16:20 +0100
Subject: [PATCH] changement d'ordre dans ReadMe

---
 README.md | 33 ++++++++++++++++-----------------
 1 file changed, 16 insertions(+), 17 deletions(-)

diff --git a/README.md b/README.md
index dae0925..726476f 100644
--- a/README.md
+++ b/README.md
@@ -32,6 +32,22 @@ cd build
 cmake ..
 make
 ```
+
+## Running the Executable
+
+After building the project, the executable will be located in the `build/src` folder. This executable demonstrates the usage of the implemented methods for both sparse and dense matrices.
+
+By default, the matrix used for these examples is defined in the `src/main.cpp` file. You can modify this file to test the methods with different matrices.
+
+
+To run the executable, use the following command in the terminal from the `build` directory:
+
+
+    ./src/Eigenvalue
+
+
+This will execute the program and display the results for the provided matrix.
+
 ## Tests
 We have provided some simple tests for our methods:
 - Diagonal 5x5
@@ -49,23 +65,6 @@ In order to run these tests, use CLion/VSCode or run the following lines in the
 
 Voici une version corrigée et améliorée de la section :
 
----
-
-## Running the Executable
-
-After building the project, the executable will be located in the `build/src` folder. This executable demonstrates the usage of the implemented methods for both sparse and dense matrices.
-
-By default, the matrix used for these examples is defined in the `src/main.cpp` file. You can modify this file to test the methods with different matrices.
-
-
-To run the executable, use the following command in the terminal from the `build` directory:
-
-
-    ./src/Eigenvalue
-
-
-This will execute the program and display the results for the provided matrix.
-
 ## Documentation
 
 In order to create the documentation, make sure to have *doxygen* installed, and run the following lines in the terminal:
-- 
GitLab