Project: step 5
Statistics

Goals: Complete the predator-prey model simulation tool to enable the display of statistics.

Required concepts: classes, constructors/destructors, inheritance, polymorphism, standard library

Required files: partie5.zip


Setup

The archive provided for this step contains a new version of CMakeLists.txt allowing you to compile the material for this part. It also contains:

You will work for this step in the directory ~/Desktop/myfiles/Programmation/cpp/projet/partie5/.

General description of the classes to be produced

To complete the predator-prey model simulation, it is useful to allow the display of statistics on populations in the form of curves. Indeed, it is interesting to observe the evolution of parameters such as population size, the number of males and females, etc.

You will code a class Stats to display evolution curves of different parameters over time.

Here, to summarize, is the essence of the architecture you should achieve by the end of this stage:

Modele

Module to program

There is only one module to complete this step:


Back to main document