An open API service indexing awesome lists of open source software.

https://github.com/mehanix/algorithm-b-openmp

🧩 Implementation of algorithm B - Concurrent connected components algorithm
https://github.com/mehanix/algorithm-b-openmp

algorithms algorithms-and-data-structures combining-crcw concurrency concurrent concurrent-graph-algorithms concurrent-programming connected-components graph graph-algorithms parallel-programming tarjan

Last synced: 9 months ago
JSON representation

🧩 Implementation of algorithm B - Concurrent connected components algorithm

Awesome Lists containing this project

README

          

# 🧩 Algorithm B for computing connected components

This repo contains an implementation of algorithm B as described in the ![Simple Concurrent Connected Components Algorithms](https://arxiv.org/pdf/1812.06177.pdf) paper, Robert Tarjan and Cliff Liu, 2020.

The actual implementation is in `parallel.cpp` and includes comments detailing the steps. `main.cpp` contains driver code.