diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2020-09-27 17:53:53 +0200 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2020-09-27 17:53:53 +0200 |
| commit | 51857521f770caae7b36e3a36a30d5b6986e66d1 (patch) | |
| tree | 8b56e84794c6a3be67db33bc3d9cea435e2a2b2c /src/philo/event.py | |
| parent | 20e0b28ec3c8e9e0a63759116a32438c18941a59 (diff) | |
| download | philosophers_test-51857521f770caae7b36e3a36a30d5b6986e66d1.tar.gz philosophers_test-51857521f770caae7b36e3a36a30d5b6986e66d1.tar.bz2 philosophers_test-51857521f770caae7b36e3a36a30d5b6986e66d1.zip | |
Added should be dead check, Moved philo classes in src/test/philo.py
Diffstat (limited to 'src/philo/event.py')
| -rw-r--r-- | src/philo/event.py | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/src/philo/event.py b/src/philo/event.py deleted file mode 100644 index 62f7ca6..0000000 --- a/src/philo/event.py +++ /dev/null @@ -1,21 +0,0 @@ -# ############################################################################ # -# # -# ::: :::::::: # -# event.py :+: :+: :+: # -# +:+ +:+ +:+ # -# By: charles <me@cacharle.xyz> +#+ +:+ +#+ # -# +#+#+#+#+#+ +#+ # -# Created: 2020/09/27 16:04:04 by charles #+# #+# # -# Updated: 2020/09/27 16:28:43 by charles ### ########.fr # -# # -# ############################################################################ # - -from enum import Enum - - -class Event(Enum): - EATING = 1 - SLEEPING = 2 - THINKING = 3 - DIED = 4 - NONE = 5 |
