make it compile

This commit is contained in:
Mylloon 2023-10-27 18:01:17 +02:00
parent 3b21fdbe9b
commit 7f55fb9a5e
Signed by: Anri
GPG key ID: A82D63DFF8D1317F
5 changed files with 73 additions and 54 deletions

View file

@ -1,43 +1,43 @@
#ifndef TP5_PROJET_HPP #ifndef TP5_PROJET_HPP
#define TP5_PROJET_HPP 1 #define TP5_PROJET_HPP 1
#include <iostream>
#include <vector>
#include <utility>
#include "../includes/Tache.hpp" #include "../includes/Tache.hpp"
#include <iostream>
#include <utility>
#include <vector>
struct Projet {
// Alias parce que le type est long
using VecTaches = std::vector<std::pair<Tache *, bool>>;
class Projet { private:
// Héritage de tache ? // Héritage de tache ?
// Tache fin; // Tache fin;
std::vector<Tache *, bool> taches; VecTaches taches;
friend std::ostream &operator<<(std::ostream &, const Projet &); friend std::ostream &operator<<(std::ostream &, const Projet &);
public: public:
Projet(); Projet(); // constructor
Projet(std::vector<Tache *, bool> taches); // constructor Projet(VecTaches); // constructor
virtual ~Projet(); // destructor virtual ~Projet(); // destructor
Projet(const Projet &); // copy constructor Projet(const Projet &); // copy constructor
const Projet &operator=(const Projet &); // copy assignement const Projet &operator=(const Projet &); // copy assignement
std::vector<Tache *, bool> getTaches(){ VecTaches getTaches() { return taches; }
return taches;
}
// Retourne une paire d'indentifiants de tâches au hasard // Retourne une paire d'indentifiants de tâches au hasard
std::pair<int, int> pick_two_random_tasks(); std::pair<int, int> pick_two_random_tasks();
// Indique pour une tâche si elle fait partie du projet // Indique pour une tâche si elle fait partie du projet
Tache* Projet::contains(int id); Tache *contains(int id);
// Donne une version du vecteur de tâches non modifiable // Donne une version du vecteur de tâches non modifiable
const std::vector<Tache *, bool> consult_tasks() const{ const VecTaches consult_tasks() const { return taches; };
return taches;
};
// Corrige les éventuelles anomalies du vector de tâches // Corrige les éventuelles anomalies du vector de tâches
const std::vector<Tache *, bool> topologicalSort(); const VecTaches topologicalSort();
}; };
#endif #endif

View file

@ -3,25 +3,24 @@
#include <iostream> #include <iostream>
#include <vector> #include <vector>
#include "Projet.hpp" #include "Projet.hpp"
class ProtoProjet : public Projet { class ProtoProjet : public Projet {
Tache debut; /* Tache taches; */
Tache fin;
friend std::ostream &operator<<(std::ostream &, const ProtoProjet &); friend std::ostream &operator<<(std::ostream &, const ProtoProjet &);
public: public:
ProtoProjet(std::vector<Tache *, bool> taches, Tache debut, Tache fin); // constructor ProtoProjet();
ProtoProjet(VecTaches taches, Tache debut,
Tache fin); // constructor
virtual ~ProtoProjet(); // destructor virtual ~ProtoProjet(); // destructor
ProtoProjet(const ProtoProjet &); // copy constructor ProtoProjet(const ProtoProjet &); // copy constructor
const ProtoProjet &operator=(const ProtoProjet &); // copy assignement const ProtoProjet &operator=(const ProtoProjet &); // copy assignement
// Remet tous les marquages à leur valeur initiale // Remet tous les marquages à leur valeur initiale
std::vector<Tache *, bool> cleanMarks(){ void cleanMarks();
for(bool t:this->getTaches())
t=false;
};
// Insère une nouvelle tâche en la plaçant entre deux tâches au hasars // Insère une nouvelle tâche en la plaçant entre deux tâches au hasars
bool ajoute(std::string nom, int duree); bool ajoute(std::string nom, int duree);

View file

@ -4,6 +4,8 @@
#include <iostream> #include <iostream>
#include <vector> #include <vector>
struct Projet;
class Tache { class Tache {
// Compteur global pour les IDs // Compteur global pour les IDs
static int counter_id; static int counter_id;
@ -23,6 +25,7 @@ class Tache {
std::vector<Tache *> dependances; std::vector<Tache *> dependances;
friend std::ostream &operator<<(std::ostream &, const Tache &); friend std::ostream &operator<<(std::ostream &, const Tache &);
friend Projet;
// Auxilliaire pour simplifier les copies // Auxilliaire pour simplifier les copies
void _copy(const Tache &); void _copy(const Tache &);

View file

@ -1,9 +1,9 @@
#include "../includes/Projet.hpp" #include "../includes/Projet.hpp"
Projet::Projet(std::vector<Tache *, bool> taches){ taches=taches;}
Projet::Projet() {} Projet::Projet() {}
Projet::Projet(VecTaches t) : taches(t) {}
Projet::~Projet() {} Projet::~Projet() {}
Projet::Projet(const Projet &) {} Projet::Projet(const Projet &) {}
@ -20,29 +20,38 @@ std::pair <int, int> Projet::pick_two_random_tasks(){
int size = this->taches.size(); int size = this->taches.size();
int rand1 = rand() % size; int rand1 = rand() % size;
int rand2 = rand() % size; int rand2 = rand() % size;
if(this->taches[rand1]->depends_from(*this->taches[rand2])) pick_two_random_tasks(); if (this->taches[rand1].first->depends_from(*this->taches[rand2].first))
pick_two_random_tasks();
// Heritage de tache ? // Heritage de tache ?
int id1 = this->taches[rand1]->unique_id; int id1 = this->taches[rand1].first->unique_id;
int id2 = this->taches[rand2]->unique_id; int id2 = this->taches[rand2].first->unique_id;
return std::make_pair(id1, id2); return std::make_pair(id1, id2);
} }
// Comment acceder à unique_id ici ? // Comment acceder à unique_id ici ?
Tache *Projet::contains(int id) { Tache *Projet::contains(int id) {
for(Tache *t:this->taches) for (auto t : this->taches) {
if(id==t->unique_id) return t; if (id == t.first->unique_id) {
return t.first;
}
}
return nullptr; return nullptr;
} }
// Comment acceder à taches ici ? // Comment acceder à taches ici ?
std::ostream& operator<<(std::ostream &out, Projet &x){ std::ostream &operator<<(std::ostream &out, const Projet &data) {
for(Tache *t: x.taches) for (auto t : data.taches) {
out << *t; out << t.first << " is " << std::boolalpha << t.second;
}
return out; return out;
} }
const std::vector<Tache *, bool> topologicalSort(){ const Projet::VecTaches Projet::topologicalSort() {
// Recupere le calcul fait par PP_postfixe et construit son tri // Recupere le calcul fait par PP_postfixe et construit son tri
// PP_postfixe(this->taches); // PP_postfixe(this->taches);
}
return VecTaches(); /* TODO */
}

View file

@ -1,15 +1,17 @@
#include "../includes/ProtoProjet.hpp" #include "../includes/ProtoProjet.hpp"
ProtoProjet::ProtoProjet(std::vector<Tache *, bool> taches, Tache debut, Tache fin) { ProtoProjet::ProtoProjet() {}
taches=taches;
taches.push_back(debut); ProtoProjet::ProtoProjet(VecTaches t, Tache debut, Tache fin) : Projet(t) {
taches.push_back(fin); /* taches.push_back(debut);
taches.push_back(fin); */
debut.ajouteDependance(fin); debut.ajouteDependance(fin);
} }
ProtoProjet::~ProtoProjet() {} ProtoProjet::~ProtoProjet() {}
ProtoProjet::ProtoProjet(const ProtoProjet &) {} ProtoProjet::ProtoProjet(const ProtoProjet &src)
: Projet(VecTaches() /* TODO*/) {}
const ProtoProjet &ProtoProjet::operator=(const ProtoProjet &src) { const ProtoProjet &ProtoProjet::operator=(const ProtoProjet &src) {
if (this == &src) { if (this == &src) {
@ -19,6 +21,12 @@ const ProtoProjet &ProtoProjet::operator=(const ProtoProjet &src) {
return *this; return *this;
} }
bool ajoute(std::string nom, int duree){ void ProtoProjet::cleanMarks() {
for (auto t : this->getTaches()) {
t.second = false;
}
};
bool ProtoProjet::ajoute(std::string nom, int duree) {
return false; /* TODO */
} }