When a Simple Concurrent Program Defies Intuition
A seemingly simple concurrent program, involving two processes incrementing a variable 'n' ten times each, yielded a surprising result when analyzed with a model checker. Intuitively, the final value of 'n' should be between 10 and 20. However, an extreme interleaving of the processes resulted in 'n' being 2. While a Go program attempting to reproduce this behavior failed, highlighting the rarity of such extreme interleavings in practice, the example underscores the complexities and counter-intuitive nature of concurrent programming.
Read more