run the "make" command in the root directory
Run "make run" and you are guided through the program by a commandline interface.
Example: ./bakery.o 1 3 1
This will run the testing script of Making Bread with "Pre Learners" as the scheduling emtric and sleeps deactivated
SYNTAX: ./bakery.o X [Y] [[Z]]
// X = 1 // Making Bread
// Y = 0 // Fairlearners
// Y = 1 // Fastlearners
// Y = 2 // Arrivalorder
// Y = 3 // Default, Prelearners (called fast learners in the project description)
// Y = 4 // Scenario 2
// Z = 0 // Slow test, the apprentices take some time to make bread, so the prints are printed slowly
// Z = 1 // Default, Fast test, so the apprentices bake bread as fast as they can, so the end statistics can be seen without waiting forever
Default Values used:
- Apprentices 1000
- Target number of Breads 10000
- Inventory Stock 20
- Number of Breadtypes 1
- Number of Ingredients 1
- Scheduling metric 3 (pre learners) [Y]
- fast 1 (sleep deactivated) [Z]
SYNTAX: ./bakery.o X [Y]
// X = 2 // Too Good To Go
// Y = 0 // FIFO
// Y = 1 // Second Chance
// Y = 2 // NRU
Default Values used:
- Number of Breadtypes 10
- Number of Breads of each Type 15
- Breads to be sold 50
- Ticks 7
- Grace Period 10
- Algorithm 1 (Second Chance)
SYNTAX: ./bakery.o X [Y] [[Z]]
// X = 3 // Additional Feature Sleeping Baker
// Y = Number of Customers
// Z = Number of Chairs
Default Values used:
- Number of Customers 30
- Number of Chairs 10
This parameter changes on which premise the baker allows apprentices to access the inventory.
- Fair Learners: Schedule the apprentice with the smallest number of breads he has already made first
- Fast Learners: Schedule the apprentice with the largest number of breads he has already made first
- Arrival Order: Schedule the apprentice that arrived first (using timestamps)
- Pre Learners: Schedule according to a predefined order (Apprentice IDs)