#include <mpi.h>
#include <omp.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <fstream>
#include "dist_graph.h"
#include "comms.h"
#include "util.h"
Go to the source code of this file.
|
| int | scc_bfs_fw (dist_graph_t *g, mpi_data_t *comm, queue_data_t *q, uint64_t *scc, uint64_t root) |
| |
| uint64_t | scc_bfs_bw (dist_graph_t *g, mpi_data_t *comm, queue_data_t *q, uint64_t *scc, uint64_t root) |
| |
| int | scc_color (dist_graph_t *g, mpi_data_t *comm, queue_data_t *q, uint64_t *scc, uint64_t *colors) |
| |
| uint64_t | scc_find_sccs (dist_graph_t *g, mpi_data_t *comm, queue_data_t *q, uint64_t *scc, uint64_t *colors) |
| |
| int | scc_verify (dist_graph_t *g, uint64_t *scc) |
| |
| int | scc_output (dist_graph_t *g, uint64_t *scc, char *output_file) |
| |
| int | scc_dist (dist_graph_t *g, mpi_data_t *comm, queue_data_t *q, uint64_t root, char *output_file) |
| |
◆ SCC_EXPLORED_BW
| #define SCC_EXPLORED_BW 18446744073709551611 |
◆ SCC_EXPLORED_FW
| #define SCC_EXPLORED_FW 18446744073709551613 |
◆ SCC_MARKED
| #define SCC_MARKED 18446744073709551610 |
◆ SCC_NOT_VISITED
| #define SCC_NOT_VISITED 18446744073709551615 |
◆ SCC_VISITED_BW
| #define SCC_VISITED_BW 18446744073709551612 |
◆ SCC_VISITED_FW
| #define SCC_VISITED_FW 18446744073709551614 |
◆ scc_bfs_bw()
◆ scc_bfs_fw()
◆ scc_color()
◆ scc_dist()
◆ scc_find_sccs()
◆ scc_output()
◆ scc_verify()
◆ debug
◆ nprocs
◆ output
◆ procid
◆ verbose
◆ verify