renamed: Algorithms/BFSComponentExplorer.h -> Algorithms/bfs_components.hpp

This commit is contained in:
Dennis Luxen 2014-11-20 16:58:35 +01:00
parent 7629e44e4c
commit d1cc8e7ad7
2 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
#ifndef BFS_COMPONENT_EXPLORER_H_
#define BFS_COMPONENT_EXPLORER_H_
#ifndef BFS_COMPONENTS_HPP_
#define BFS_COMPONENTS_HPP_
#include "../typedefs.h"
#include "../DataStructures/RestrictionMap.h"
@ -144,4 +144,4 @@ template <typename GraphT> class BFSComponentExplorer
const std::unordered_set<NodeID> &m_barrier_nodes;
};
#endif // BFS_COMPONENT_EXPLORER_H_
#endif // BFS_COMPONENTS_HPP_

View File

@ -26,7 +26,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "EdgeBasedGraphFactory.h"
#include "../Algorithms/BFSComponentExplorer.h"
#include "../Algorithms/bfs_components.hpp"
#include "../DataStructures/Percent.h"
#include "../DataStructures/Range.h"
#include "../Util/compute_angle.hpp"