Action_Thermostats
Adding_Graph_to_ChangeBondActions
Adding_MD_integration_tests
Adding_StructOpt_integration_tests
AutomationFragmentation_failures
Candidate_v1.6.1
ChemicalSpaceEvaluator
Enhanced_StructuralOptimization
Enhanced_StructuralOptimization_continued
Exclude_Hydrogens_annealWithBondGraph
Fix_Verbose_Codepatterns
ForceAnnealing_with_BondGraph
ForceAnnealing_with_BondGraph_continued
ForceAnnealing_with_BondGraph_continued_betteresults
ForceAnnealing_with_BondGraph_contraction-expansion
Gui_displays_atomic_force_velocity
JobMarket_RobustOnKillsSegFaults
JobMarket_StableWorkerPool
PythonUI_with_named_parameters
Recreated_GuiChecks
StoppableMakroAction
TremoloParser_IncreasedPrecision
Last change
on this file since bccbe9 was bccbe9, checked in by Frederik Heber <frederik.heber@…>, 8 years ago |
Extracted extraction (subset of) nodes from BoostGraph into BreadthFirstSearchGatherer.
- also added helper namespace BoostGraphHelpers.
- we now treat the vertex indices and vertex names properly. Before that they
had to coincide. Now, the name is the atomic id associated with the node
and the index is the boost::graph internal index.
|
-
Property mode
set to
100644
|
File size:
1.0 KB
|
Line | |
---|
1 | /*
|
---|
2 | * BreadthFirstSearchGatherer.hpp
|
---|
3 | *
|
---|
4 | * Created on: May 17, 2017
|
---|
5 | * Author: heber
|
---|
6 | */
|
---|
7 |
|
---|
8 |
|
---|
9 | #ifndef GRAPH_BREADTHFIRSTSEARCHGATHERER_HPP_
|
---|
10 | #define GRAPH_BREADTHFIRSTSEARCHGATHERER_HPP_
|
---|
11 |
|
---|
12 | // include config.h
|
---|
13 | #ifdef HAVE_CONFIG_H
|
---|
14 | #include <config.h>
|
---|
15 | #endif
|
---|
16 |
|
---|
17 | #include <stddef.h>
|
---|
18 | #include <vector>
|
---|
19 |
|
---|
20 | #include "types.hpp"
|
---|
21 |
|
---|
22 | struct BoostGraphCreator;
|
---|
23 |
|
---|
24 | /** This struct performs a BFS on a given boost::graph and finds
|
---|
25 | * all nodes, i.e. atoms, up to a given limit.
|
---|
26 | */
|
---|
27 | struct BreadthFirstSearchGatherer
|
---|
28 | {
|
---|
29 | /** Cstor of class BreadthFirstSearchGatherer.
|
---|
30 | *
|
---|
31 | * \param _graph graph to work on
|
---|
32 | */
|
---|
33 | BreadthFirstSearchGatherer(BoostGraphCreator &_graph);
|
---|
34 |
|
---|
35 | /** Discovers all nodes from the given \a _discoverfrom and returns
|
---|
36 | * the vector of ids.
|
---|
37 | */
|
---|
38 | std::vector<atomId_t> operator()(const atomId_t &_discoverfrom);
|
---|
39 |
|
---|
40 | private:
|
---|
41 | //!> typedef for a vector with BFS discovery distances
|
---|
42 | typedef std::vector<size_t> distances_t;
|
---|
43 |
|
---|
44 | //!> graph to operate on
|
---|
45 | BoostGraphCreator &BGcreator;
|
---|
46 | };
|
---|
47 |
|
---|
48 |
|
---|
49 | #endif /* GRAPH_BREADTHFIRSTSEARCHGATHERER_HPP_ */
|
---|
Note:
See
TracBrowser
for help on using the repository browser.