Typical Parallel Bugs
Problem: incorrectly pointing to the same place
Symptom: bad answers
Fix: initialization of local pointers
Problem: incorrectly pointing to different places
Symptom: segmentation violation
Fix: localization of shared data
Problem: incorrect initialization of parallel regions
Symptom: bad answers
Fix: Copy in? / Use parallel region outside parallel do.