In this tutorial I want to show you two ways of solving the popular Knapsack Problem. You will learn how to use random guessing in combination with multiprocessing to maximize
Continue ReadingAutor: Sebastian Nichtern

Multiprocessing for Kids Part 2: Shared Variables
When working with multiprocessing, most often the problem occurs that the different processes have to share there results or need to change the same variables. This is not so easy
Continue Reading
In Python, because of the interpreter lock, it’s not trivial to make your code run on all available CPU’s. I provide you a script that makes it easy to do multiprocessing and speed up your code.
Multiprocessing for Kids
Introduction In Python, because of the interpreter lock, it's not trivial to make your code run on all available CPU's. You might have realized, that even when your program takes
Continue Reading