Skip to content
Snippets Groups Projects
Commit 16789a1f authored by Estelle Baup's avatar Estelle Baup
Browse files

start readme

parent 057e37e0
No related branches found
No related tags found
No related merge requests found
This is a template project structure for the *Programming concepts in scientific computing* (MATH-458)
# Project: *Programming concepts in scientific computing* (MATH-458, EPFL, 2024).
In order to compile it you should first install *googletest*
## Table of contents
- [Description of the project](#decription-of-the-project)
- [How to](#how-to)
- [Features](#features)
- [Limitations](#limitations)
## Description of the project
This project focuses on ODE, with generic non-linear function, i.e. $y'(t)=f(t,y(t)).$
We are interested in developping different methods to solve this problem.
## How to
In order to compile it you should first install *googletest* and *eigen*
```
git submodule update --init
```
Then, building is done as usual, e.g. with CLion or in the terminal:
Then, you can build the project as usual, e.g. with CLion or in the terminal by writing the following commands:
```
mkdir build
......@@ -14,5 +26,16 @@ cd build
cmake ..
make
```
After these lines, executable files are produced. To execute the mail file, you can either run 'main' on your IDE, or run the following lines on your terminal:
```
cd .. // or simply open your terminal in the root project folder
./main
```
Instructions should appear to guide you.
TODO complete instructions if needed, typical execution
## Features
## Limitations
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment