nvGraph Status Error 9

I am trying to using the nvgraph sssp code.

I have used the following status check:

void check(nvgraphStatus_t status) {
if (status != NVGRAPH_STATUS_SUCCESS) {
printf(“ERROR : %d\n”, status);
exit(0);
}

After compiler is displaying ERROR :9

How do I find out what this error mean? I appreciate your help.

The errors are enumerated in nvgraph.h

On a typical linux install, this would be at /usr/local/cuda/include/nvgraph.h

error 9 appears to be NVGRAPH_STATUS_NOT_CONVERGED

thank you so much :)