-
π Iβm currently working on instance generation for Combinatorial Optimisation Problems
-
π± Iβm currently learning Rust, and ML with Tensorflow and Keras
-
π― Iβm looking to collaborate on Open Source Optimisation Tools
-
How to reach me
- π« amarrerd@ull.edu.es
- πΌ LinkedIn
- π¬ Researchgate
- π« Google Scholar
A computer would deserve to be called intelligent if it could deceive a human into believing that it was human - Alan Turing
def routine(self, pomodoros: int = 6, coffee: Coffee):
counter = 0
while is_day_time() and counter < pomodoros:
if coffee.empty():
coffee.refill()
self.drink(coffee)
self.work(during=50)
self.chill(during=10)
counter += 1