fixes and canva link

This commit is contained in:
Guillaume BONABAU 2024-04-10 14:20:34 +02:00 committed by g le-chartier
parent ac5c120ba2
commit 88a11b26bc
2 changed files with 4 additions and 2 deletions

View File

@ -2,6 +2,8 @@ When starting a task "TODO" edit it to "TODO-INPROGRESS"
When task is done edit it to "TODO-COMPLETE"
If there is an error in the code edit it to "TODO-ERROR"
Link Canva Whiteboard:
https://www.canva.com/design/DAGCBGF5b4c/4cNmhoS6lSC8Once9r_Tlg/edit?utm_content=DAGCBGF5b4c&utm_campaign=designshare&utm_medium=link2&utm_source=sharebutton
Reminder of game of life rules:
1. Any living cell with strictly fewer than two living neighbors dies (referred to

View File

@ -43,8 +43,8 @@ public class Simulator extends Thread {
//TODO-COMPLETE: add missing attribute initialization
//might want to changes those values later
this.width=100;
this.height=100;
this.width=COL_NUM;
this.height=LINE_NUM;
enableLogs = true; // for debugging purposes