Open positions
Open research positions in SNAP group are available here.

SNAP Frequently Asked Questions

SNAP definition of min and max macros conflicts with another package

SNAP defines min and max macros, which might cause conflicts with other packages. As a result, the program does not compile.

A solution is to undefine min and max after the Snap.h include statement and then include other packages:

#include "Snap.h" #undef max #undef min #include ...