mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-12-19 22:13:28 -06:00
5 lines
129 B
C
5 lines
129 B
C
#ifndef DFS_H_INCLUDED
|
|
#define DFS_H_INCLUDED
|
|
void dfs (int size, int *ia, int *ja, int *ncolors, int *color, int* work);
|
|
#endif
|