diff --git a/binarycpython/utils/grid.py b/binarycpython/utils/grid.py
index da0239e41179532942a4954bff5a8398494cfa88..5ba426fe010373f604a554b896b43169ec6e2ffe 100644
--- a/binarycpython/utils/grid.py
+++ b/binarycpython/utils/grid.py
@@ -38,9 +38,6 @@ import argparse
 import subprocess
 import importlib.util
 
-import cProfile
-
-
 from typing import Union, Any
 from pathos.helpers import mp as pathos_multiprocess
 
@@ -962,15 +959,6 @@ class Population:
         This function is called by _evolve_population_grid
         """
 
-
-
-
-        import tracemalloc
-        tracemalloc.start()
-        # ... start your application ...
-
-        snapshot1 = tracemalloc.take_snapshot()
-
         # set start timer
         start_process_time = datetime.datetime.now()
 
@@ -1244,24 +1232,6 @@ class Population:
             0,
         )
 
-        print("INSIDE THREAD")
-        print(Moecache.keys())
-        for key in Moecache.keys():
-            print(key, Moecache[key])
-        print("")
-        print("INSIDE THREAD")
-
-
-        # ... call the function leaking memory ...
-        snapshot2 = tracemalloc.take_snapshot()
-
-        top_stats = snapshot2.compare_to(snapshot1, 'lineno')
-
-        print("[ Top 10 differences ]")
-        for stat in top_stats[:10]:
-            print(stat)
-
-
         return output_dict
 
     # Single system