Skip to content
Snippets Groups Projects
Commit f40fdded authored by Sebastien GOYON's avatar Sebastien GOYON
Browse files

Last push

parent 443c56f5
Branches
No related tags found
No related merge requests found
...@@ -6,13 +6,12 @@ ...@@ -6,13 +6,12 @@
**Internship tutor :** Guilhem MARCILLAUD, IRIT SMAC team. **Internship tutor :** Guilhem MARCILLAUD, IRIT SMAC team.
- [**IoTAMAK : a framework for distributed MAS**](#iotamak--a-framework-for-distributed-mas) - [**IoTAMAK : a framework for distributed MAS**](#iotamak--a-framework-for-distributed-mas)
- [**Definition**](#definition) - [**Introduction**](#introduction)
- [**Goal**](#goal) - [**Definition**](#definition)
- [**Subject**](#subject)
- [**Context**](#context) - [**Context**](#context)
- [**Constraint**](#constraint) - [**Problem and objective**](#problem-and-objective)
- [**Solution**](#solution) - [**Solution**](#solution)
- [**Project managment**](#project-managment) - [**Project management**](#project-management)
- [**Development**](#development) - [**Development**](#development)
- [**IoTAMAK core**](#iotamak-core) - [**IoTAMAK core**](#iotamak-core)
- [**Code structure** :](#code-structure-) - [**Code structure** :](#code-structure-)
...@@ -73,8 +72,6 @@ The project will be split into 2 parts : ...@@ -73,8 +72,6 @@ The project will be split into 2 parts :
### **Project management** ### **Project management**
Meeting : weekly
Tool : Tool :
* Gitlab * Gitlab
* Trello * Trello
......
...@@ -69,7 +69,9 @@ class Amas(Schedulable, BaseAmas): ...@@ -69,7 +69,9 @@ class Amas(Schedulable, BaseAmas):
return return
self.publish("amas/all_metric", str(self.agents_metric)) self.publish("amas/all_metric", str(self.agents_metric))
self.publish("amas/graph", str(self.to_graph())) graph = self.to_graph()
if graph is not None:
self.publish("amas/graph", str(graph))
self.on_cycle_begin() self.on_cycle_begin()
self.client.publish("amas/action_done", "") self.client.publish("amas/action_done", "")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment