- Sep 20, 2024
-
-
Tessa Richardson authored
-
Tessa Richardson authored
-
Tessa Richardson authored
-
Tessa Richardson authored
-
Tessa Richardson authored
-
Tessa Richardson authored
-
Tessa Richardson authored
-
Tessa Richardson authored
-
Tessa Richardson authored
-
Tessa Richardson authored
-
- Sep 04, 2024
-
-
Sibusisiwe Ncube authored
-
- Aug 18, 2024
-
-
Sibusisiwe Ncube authored
Uploaded first version of bacteria class See merge request !1
-
- Aug 16, 2024
-
-
Sibusisiwe Ncube authored
Our simulator's basic version deals in sequential code, only having one bacteria and no mutual exclusion measures implmented but comments record where they may be made use of in further iterations The code spawns teh single bacteria in a random location on the grid (given it's free) then has the grid simply wander across teh grid for a user specified number of steps. Added prin statements to allow users to see bacteria activity
-
Sibusisiwe Ncube authored
Added full (but slightly limited) functionalities regarding grid blocks. Added getters and setters of their position, as well as equals() method
-
Sibusisiwe Ncube authored
Grid now stores grid blocks and oversees their status. Grid class is an intermeidary for classes to access the grid blocks and their details, and keeps track of their activity.
-
Sibusisiwe Ncube authored
Bacteria variables fleshed out for this first iteration.
-
- Aug 14, 2024
-
-
Sibusisiwe Ncube authored
The grid block is the unit that makes up the grid. For this basic iteration, all the grid blocks care about is their x-y position (that's how they're identified in the grid) and if they are occupied or not.
-
Sibusisiwe Ncube authored
The grid class is the main control for grid blocks which is what the bacteria move on. Grid keeps track of both grid blocks and bacteria, tracking what's available and what is not.
-
Sibusisiwe Ncube authored
The plan is to have this class be a super class for the cell and the nutrients. Class simply handles moving the object.
-
- Aug 11, 2024
-
-
Ogechukwu Chuks authored
-