Changeset adbeca
- Timestamp:
- May 19, 2017, 1:00:12 PM (8 years ago)
- Branches:
- ForceAnnealing_goodresults, ForceAnnealing_tocheck
- Children:
- 94791a
- Parents:
- 060fc3
- Location:
- src/Graph
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Graph/BoostGraphCreator.hpp
r060fc3 radbeca 27 27 class molecule; 28 28 29 class BoostGraphCreatorTest; 29 30 class BreadthFirstSearchGathererTest; 30 31 … … 34 35 struct BoostGraphCreator 35 36 { 37 //!> grant unit test access to private parts 38 friend class BoostGraphCreatorTest; 36 39 //!> grant unit test access to private parts that use BoostGraphCreator's internal graph 37 40 friend class BreadthFirstSearchGathererTest; -
src/Graph/unittests/Makefile.am
r060fc3 radbeca 5 5 ../Graph/unittests/AdjacencyListUnitTest.cpp \ 6 6 ../Graph/unittests/BondGraphUnitTest.cpp \ 7 ../Graph/unittests/BoostGraphCreatorUnitTest.cpp \ 7 8 ../Graph/unittests/BreadthFirstSearchGathererUnitTest.cpp 8 9 … … 10 11 ../Graph/unittests/AdjacencyListUnitTest.hpp \ 11 12 ../Graph/unittests/BondGraphUnitTest.hpp \ 13 ../Graph/unittests/BoostGraphCreatorUnitTest.hpp \ 12 14 ../Graph/unittests/BreadthFirstSearchGathererUnitTest.hpp 13 15 … … 15 17 AdjacencyListUnitTest \ 16 18 BondGraphUnitTest \ 19 BoostGraphCreatorUnitTest \ 17 20 BreadthFirstSearchGathererUnitTest 18 21 … … 47 50 BondGraphUnitTest_LDADD = ${GRAPHLIBS} 48 51 52 BoostGraphCreatorUnitTest_SOURCES = \ 53 ../Graph/unittests/BoostGraphCreatorUnitTest.cpp \ 54 ../Graph/unittests/BoostGraphCreatorUnitTest.hpp 55 BoostGraphCreatorUnitTest_LDADD = ${GRAPHLIBS} 56 49 57 BreadthFirstSearchGathererUnitTest_SOURCES = \ 50 58 ../Graph/unittests/BreadthFirstSearchGathererUnitTest.cpp \
Note:
See TracChangeset
for help on using the changeset viewer.