walk.hpp 217 B

123456789101112
  1. #ifndef WALK_HPP
  2. #define WALK_HPP
  3. #include <time.h>
  4. #include "stack.hpp"
  5. #include "trim.hpp"
  6. #include "treat.hpp"
  7. #include "results.hpp"
  8. void walk(Stack& stack,Results &results,string filename,int timeout);
  9. #endif