@kv  0.0.4
Library for graph problems in C and Python
scc.h
1 
18 #if !defined(AT_CORE_H_INSIDE)
19 #error "Only <at/core.h> can be included directly."
20 #endif
21 #ifndef AT_SCC_H
22 #define AT_SCC_H
23 
24 #include <at/core/grapharray.h>
25 #include <at/core/type.h>
26 AT_BEGIN_DECLS
27 typedef struct{
28  uint32_t *l; // 00+8
29  uint32_t n; // 08+4
30  uint8_t pd[4];// 12+4
31 }AtSCC; // 16
32 
33 AtSCC*
34 at_grapharrayu8_scc(AtGraphArray* grapharray, AtSCCAlgorithm algorithm);
35 
36 void
37 at_scc_destroy(AtSCC** scc);
38 
39 AT_END_DECLS
40 #endif
A directed weighted grid graph.
Definition: grapharray.h:43
Definition: scc.h:27