You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
2.0 KiB
64 lines
2.0 KiB
1 year ago
|
#ifndef IGL_BFS_H
|
||
|
#define IGL_BFS_H
|
||
|
#include "igl_inline.h"
|
||
|
#include <Eigen/Core>
|
||
|
#include <vector>
|
||
|
#include <Eigen/Sparse>
|
||
|
namespace igl
|
||
|
{
|
||
|
/// Traverse a **directed** graph represented by an adjacency list using.
|
||
|
/// breadth first search; outputs Eigen types.
|
||
|
///
|
||
|
/// @param[in] A #V list of adjacency lists or #V by #V adjacency matrix
|
||
|
/// @param[in] s starting node (index into A)
|
||
|
/// @param[out] D #V list of indices into rows of A in the order in which graph nodes
|
||
|
/// are discovered.
|
||
|
/// @param[out] P #V list of indices into rows of A of predecessor in resulting
|
||
|
/// spanning tree {-1 indicates root/not discovered), order corresponds to
|
||
|
/// V **not** D.
|
||
|
template <
|
||
|
typename AType,
|
||
|
typename DerivedD,
|
||
|
typename DerivedP>
|
||
|
IGL_INLINE void bfs(
|
||
|
const AType & A,
|
||
|
const size_t s,
|
||
|
Eigen::PlainObjectBase<DerivedD> & D,
|
||
|
Eigen::PlainObjectBase<DerivedP> & P);
|
||
|
|
||
|
/// Traverse a **directed** graph represented by an adjacency list using.
|
||
|
/// breadth first search; inputs adjacency lists, outputs lists.
|
||
|
///
|
||
|
/// @param[in] A #V list of adjacency lists
|
||
|
/// @param[in] s starting node (index into A)
|
||
|
/// @param[out] D #V list of indices into rows of A in the order in which graph nodes
|
||
|
/// are discovered.
|
||
|
/// @param[out] P #V list of indices into rows of A of predecessor in resulting
|
||
|
/// spanning tree {-1 indicates root/not discovered), order corresponds to
|
||
|
/// V **not** D.
|
||
|
template <
|
||
|
typename AType,
|
||
|
typename DType,
|
||
|
typename PType>
|
||
|
IGL_INLINE void bfs(
|
||
|
const std::vector<std::vector<AType> > & A,
|
||
|
const size_t s,
|
||
|
std::vector<DType> & D,
|
||
|
std::vector<PType> & P);
|
||
|
/// \overload
|
||
|
template <
|
||
|
typename AType,
|
||
|
typename DType,
|
||
|
typename PType>
|
||
|
IGL_INLINE void bfs(
|
||
|
const Eigen::SparseCompressedBase<AType> & A,
|
||
|
const size_t s,
|
||
|
std::vector<DType> & D,
|
||
|
std::vector<PType> & P);
|
||
|
}
|
||
|
#ifndef IGL_STATIC_LIBRARY
|
||
|
# include "bfs.cpp"
|
||
|
#endif
|
||
|
#endif
|
||
|
|