No description
Find a file
2025-06-03 00:47:08 +02:00
be-graphes-algos chgt de tests prblm ouvert , version naive marche 2025-06-03 00:47:08 +02:00
be-graphes-gui chgt de tests prblm ouvert , version naive marche 2025-06-03 00:47:08 +02:00
be-graphes-model résolution bug dijkstra 2025-05-21 16:31:45 +02:00
.gitignore initiation initiale 2025-04-02 18:09:03 +02:00
eclipse-java-google-style.xml Init du repo 2025-04-02 17:54:59 +02:00
explications.txt ajout d'explications dans fichier note 2025-04-29 16:36:45 +02:00
pom.xml changement de version dans le fichier pom.xml 2025-04-04 08:10:58 +02:00
probleme_ouvert_voiture_elec.odt amélioration ProblemeOuvert (ne marche toujours pas cependant) 2025-05-27 15:26:21 +02:00
problemeOuvert.odt amélioration ProblemeOuvert (ne marche toujours pas cependant) 2025-05-27 15:26:21 +02:00
README.md Init du repo 2025-04-02 17:54:59 +02:00

Graph & Algorithm project — INSA Toulouse

This is an INSA local copy of Mikael CAPELLE's repository.

How to start?

  1. On your favorite platform, create a new empty repository of yours.
  1. On your computer or on an INSA computer, clone your own repository (in the following, we call it MINE)

    git clone (here-the-https-URL-to-your-own-repository)
    
  2. Somewhere else on the same computer, clone this repository (we call it THEIRS)

    git clone https://git.etud.insa-toulouse.fr/lebotlan/BE-Graphes.git
    
  3. In this cloned directory (THEIRS), remove the .git folder.

  4. Your repository (MINE) is initially empty. Move all the content of the BE-Graphes project (THEIRS) into it. Keep also the .gitignore file.

  5. Commit your changes (MINE):

    git status
    git add .
    git status    ## Check the added files
    git commit -m "My initial commit"
    git push