You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am PhD student working of design of efficient dynamic graph algorithms - currently trying to find optimizations for the SimRank algorithm. While trying to compile the SPS-Variants/APS-AllInOne i got the following errors:
ld failed to find libtcmalloc
unordered_set is not a member of std
unordered_map is not a member of std
I have fixed the first issue by installing libtcmalloc with yum install gperftools gperftools-devel, and the other two issues by including the headers for unordered_set and unordered_map in my fork of this repo.
The text was updated successfully, but these errors were encountered:
I also wanted to know the procedure of testing the algorithms. Do i use the python_experiments/ directory? Where do the graph datasets need to be stored? And what format do you use? Matrix Market?
Hello @CheYulin
I am PhD student working of design of efficient dynamic graph algorithms - currently trying to find optimizations for the SimRank algorithm. While trying to compile the SPS-Variants/APS-AllInOne i got the following errors:
I have fixed the first issue by installing
libtcmalloc
withyum install gperftools gperftools-devel
, and the other two issues by including the headers forunordered_set
andunordered_map
in my fork of this repo.The text was updated successfully, but these errors were encountered: