* Contributors: Details at https://graphviz.org
*************************************************************************/
-#ifndef COUNTRY_GRAPH_CLUSTERING_H
-#define COUNTRY_GRAPH_CLUSTERING_H
+#pragma once
#include <sparse/SparseMatrix.h>
void country_graph_coloring(int seed, SparseMatrix A, int **p);
void improve_antibandwidth_by_swapping(SparseMatrix A, int *p);
-
-#endif
* Contributors: Details at https://graphviz.org
*************************************************************************/
-#ifndef MAKE_MAP_H
-#define MAKE_MAP_H
+#pragma once
#include <sparse/SparseMatrix.h>
#include <cgraph/cgraph.h>
#define edge_tail(e) edge_table[2*(e)+1]
#define cycle_prev(e) cycle[2*(e)]
#define cycle_next(e) cycle[2*(e)+1]
-
-#endif
* Contributors: Details at https://graphviz.org
*************************************************************************/
-#ifndef POWER_H
-#define POWER_H
+#pragma once
#include <sparse/general.h>
void power_method(void *A, int n, int K, int random_seed,
real **eigv, real *eigs);
-
-#endif