diff --git a/oldsrc/localthread.py b/oldsrc/localthread.py
deleted file mode 100644
index 95dbf92..0000000
--- a/oldsrc/localthread.py
+++ /dev/null
@@ -1,62 +0,0 @@
-#=----------------------------------------------------------------------------=#
-# Local computing threads related functions #
-# #
-# Copyright © 2021 The Gem-graph Project #
-# #
-# This file is part of gem-graph. #
-# #
-# This program is free software: you can redistribute it and/or modify #
-# it under the terms of the GNU Affero General Public License as #
-# published by the Free Software Foundation, either version 3 of the #
-# License, or (at your option) any later version. #
-# #
-# This program is distributed in the hope that it will be useful, #
-# but WITHOUT ANY WARRANTY; without even the implied warranty of #
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
-# GNU Affero General Public License for more details. #
-# #
-# You should have received a copy of the GNU Affero General Public License #
-# along with this program. If not, see . #
-#=----------------------------------------------------------------------------=#
-
-import random
-import multiprocessing
-
-class CurrentlyComputing(Exception):
- pass
-
-class SuccessfulOperation(Exception):
- pass
-
-class FailedOperation(Exception):
- pass
-
-## Local Threads
-
-class LocalComputingUnit(multiprocessing.Process):
-
- def __init__(self, id, shared_memory, address, orientation, transitions):
-
- multiprocessing.Process.__init__(self)
-
- self.id = id
- self.address = address
- self.orientation = orientation
- self.transitions = transitions
- self.namespace = shared_memory.Namespace()
- self.namespace.returncode = CurrentlyComputing()
-
- def run(self):
- try:
- # Actual code
- print("Thread local n°{} parle depuis {} !".format(self.id, self.address))
-
- L = [random.randint(0,3000) for x in range(random.randint(0, 300))]
-
- for i in range(10000000):
- sum(range(100))
-
- self.namespace.returncode = SuccessfulOperation()
-
- except Exception as exception:
- self.namespace.returncode = exception
\ No newline at end of file
diff --git a/oldsrc/main.py b/oldsrc/main.py
deleted file mode 100644
index 2bbe97b..0000000
--- a/oldsrc/main.py
+++ /dev/null
@@ -1,41 +0,0 @@
-#=----------------------------------------------------------------------------=#
-# Server interface related functions #
-# #
-# Copyright © 2021 The Gem-graph Project #
-# #
-# This file is part of gem-graph. #
-# #
-# This program is free software: you can redistribute it and/or modify #
-# it under the terms of the GNU Affero General Public License as #
-# published by the Free Software Foundation, either version 3 of the #
-# License, or (at your option) any later version. #
-# #
-# This program is distributed in the hope that it will be useful, #
-# but WITHOUT ANY WARRANTY; without even the implied warranty of #
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
-# GNU Affero General Public License for more details. #
-# #
-# You should have received a copy of the GNU Affero General Public License #
-# along with this program. If not, see . #
-#=----------------------------------------------------------------------------=#
-
-import server
-import scheduler
-import random
-
-ARROW_NUMBER = 150
-MAX_CYCLES = 40000
-SPACE_SIZE = 10000
-PREEMPTION_GLOBAL_SPACE = [True] * SPACE_SIZE
-DRAWING_GLOBAL_SPACE = []
-ARROW_LIST = [(random.randint(0,SPACE_SIZE - 1),0) for x in range(ARROW_NUMBER)]
-TRANSITIONS_TREE = None
-MAX_THREAD = 0
-
-masterThread = scheduler.GreatScheduler(PREEMPTION_GLOBAL_SPACE, TRANSITIONS_TREE, ARROW_LIST, MAX_THREAD, MAX_CYCLES)
-
-masterThread.start()
-server.ServerCLI.start()
-
-## Exiting
-masterThread.stopped = True
diff --git a/oldsrc/scheduler.py b/oldsrc/scheduler.py
deleted file mode 100644
index eec255a..0000000
--- a/oldsrc/scheduler.py
+++ /dev/null
@@ -1,109 +0,0 @@
-#=----------------------------------------------------------------------------=#
-# Scheduler related functions #
-# #
-# Copyright © 2021 The Gem-graph Project #
-# #
-# This file is part of gem-graph. #
-# #
-# This program is free software: you can redistribute it and/or modify #
-# it under the terms of the GNU Affero General Public License as #
-# published by the Free Software Foundation, either version 3 of the #
-# License, or (at your option) any later version. #
-# #
-# This program is distributed in the hope that it will be useful, #
-# but WITHOUT ANY WARRANTY; without even the implied warranty of #
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
-# GNU Affero General Public License for more details. #
-# #
-# You should have received a copy of the GNU Affero General Public License #
-# along with this program. If not, see . #
-#=----------------------------------------------------------------------------=#
-
-import os, multiprocessing, threading
-import random
-
-import localthread
-
-## Master Thread
-class GreatScheduler(threading.Thread):
-
- def __init__(self, preemption_space, transitions_tree, arrow_list, n_thread, nmax_cycles):
-
- threading.Thread.__init__(self)
-
- self.preemption_space = preemption_space
- self.transition_tree = transitions_tree
- self.arrow_list = arrow_list
-
- if n_thread == 0: # No limit
- # Use number of usable CPUs multiplied by 3
- self.n_thread = len(os.sched_getaffinity(0)) * 3
- else:
- self.n_thread = n_thread
-
- self.cur_id = -1
- self.n_cycle = -1
- self.nmax_cycles = nmax_cycles
-
- self.stopped = False
-
- def run(self):
- thread_list = []
- shared_memory = multiprocessing.Manager()
-
- while not self.stopped and self.n_cycle != self.nmax_cycles:
-
- self.n_cycle += 1
-
- #print("--- Mesures et écoute ---")
- #print("Espace global de préemption :\t {}".format(self.preemption_space))
- #print("Liste des flèches :\t {}".format(self.arrow_list))
-
- ## Tirer une flêche au hasard
- n = int(random.random()*len(self.arrow_list))
- elected_arrow = self.arrow_list[n]
-
- ## Vérification de l'espace global de préemption autour de la flêche
- if not(len(thread_list) >= self.n_thread) and self.preemption_space[elected_arrow[0]]:
- print("Espace local libre à {}".format(elected_arrow[0]))
- self.preemption_space[elected_arrow[0]] = False
-
- ## Création du thread local
-
- self.cur_id += 1
-
- thread_list.append(
- localthread.LocalComputingUnit(self.cur_id,
- shared_memory,
- elected_arrow[0],
- elected_arrow[1],
- self.transition_tree
- )
- )
-
- ## Lancer le thread local
- thread_list[-1].start()
-
- for thread in thread_list:
- if not thread.is_alive():
- if not thread.namespace.returncode.__class__ is localthread.SuccessfulOperation:
- if thread.namespace.returncode.__class__ is localthread.FailedOperation:
- print("A optimiser : créer une règle")
- else:
- raise thread.namespace.returncode
- print("Thread local n°{} est terminé".format(thread.id))
-
- self.preemption_space[thread.address] = True
- thread_list.pop(thread_list.index(thread))
-
- ## Sortie du scheduler
- print("Attente de la fin des thread locaux")
-
- for thread in thread_list:
- thread.join()
- if not thread.namespace.returncode.__class__ is localthread.SuccessfulOperation:
- if thread.namespace.returncode.__class__ is localthread.FailedOperation:
- print("A optimiser : créer une règle")
- else:
- raise thread.namespace.returncode
- print("Thread local n°{} est terminé".format(thread.id))
diff --git a/oldsrc/server.py b/oldsrc/server.py
deleted file mode 100644
index a6c4aa4..0000000
--- a/oldsrc/server.py
+++ /dev/null
@@ -1,28 +0,0 @@
-#=----------------------------------------------------------------------------=#
-# Server interface related functions #
-# #
-# Copyright © 2021 The Gem-graph Project #
-# #
-# This file is part of gem-graph. #
-# #
-# This program is free software: you can redistribute it and/or modify #
-# it under the terms of the GNU Affero General Public License as #
-# published by the Free Software Foundation, either version 3 of the #
-# License, or (at your option) any later version. #
-# #
-# This program is distributed in the hope that it will be useful, #
-# but WITHOUT ANY WARRANTY; without even the implied warranty of #
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
-# GNU Affero General Public License for more details. #
-# #
-# You should have received a copy of the GNU Affero General Public License #
-# along with this program. If not, see . #
-#=----------------------------------------------------------------------------=#
-
-class ServerCLI:
-
- def start():
- stopped = False
- while not stopped:
- stopped = input()
- return
\ No newline at end of file
diff --git a/oldsrc/test.py b/oldsrc/test.py
deleted file mode 100644
index e69de29..0000000