Tiago Antunes
Tiago Antunes
> same as me > Ubuntu 18.04 I tried 18.04 too and got the same problem
`for (uint i = 0; i < num_nodes; i++) outDegreeCounter[i] = 0;` @amirnodehi you're not initializing the array, it can contain random values, there are no guarantees that it is...
```==7724== Conditional jump or move depends on uninitialised value(s) ==7724== at 0x12509A: void dynamic(unsigned int, unsigned int, unsigned int, unsigned int*, unsigned int*, unsigned int*, unsigned int*, OutEdge*, OutEdge*) (in...
@kevinsouthxu there are more problems in the code, you can [check my solution](https://github.com/TiagoMAntunes/Subway/commit/0fd2ef688b9fff3714220e50b3f266227070c1c5)
@kevinsouthxu No it does not. The range is `[1,num_nodes-1)` -> `[1,num_nodes-2]` but inside you work with `outDegree[i-1]` which means you're actually using the range `[0,num_nodes-3]` Then at the end, he...
@kevinsouthxu it was actually running fine on mine too, but it's by luck since it's undefined behaviour. You should run tools such as `valgrind` or `compute-sanitizer` (the latter is available...
Any update regarding this issue? New versions of python can't support the library anymore as tensorflow is no longer available for those versions