- Make destructor, copy constructor, and assignment operator for breadthdirectedfirstpaths
- Remember to initialize arrays to a default value, otherwise there will be screwy behavior. Default zero initialization is done with () after the declaration.
- Can't use
INFINITY' for maximum integer value. Need to use
and call
std::numeric_limits::max()`