Changeset c52abd
- Timestamp:
- Jun 22, 2018, 7:26:30 AM (7 years ago)
- Branches:
- Candidate_v1.6.1, ChemicalSpaceEvaluator
- Children:
- 883599
- Parents:
- d661b2
- git-author:
- Frederik Heber <frederik.heber@…> (10/05/17 17:54:04)
- git-committer:
- Frederik Heber <frederik.heber@…> (06/22/18 07:26:30)
- Location:
- src/Graph
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Graph/Graph6Reader.hpp
rd661b2 rc52abd 20 20 #include <vector> 21 21 22 class Graph6ReaderUnitTest; 23 22 24 /** This functor parses graph6 formatted strings and returns number of nodes 23 25 * and a edge list. … … 31 33 struct Graph6Reader 32 34 { 35 //!> grant unit test access to private parts 36 friend class Graph6ReaderUnitTest; 37 33 38 typedef std::pair<int, int> edge_t; 34 39 typedef std::vector< edge_t > edges_t; -
src/Graph/unittests/Makefile.am
rd661b2 rc52abd 6 6 ../Graph/unittests/BondGraphUnitTest.cpp \ 7 7 ../Graph/unittests/BoostGraphCreatorUnitTest.cpp \ 8 ../Graph/unittests/BreadthFirstSearchGathererUnitTest.cpp 8 ../Graph/unittests/BreadthFirstSearchGathererUnitTest.cpp \ 9 ../Graph/unittests/Graph6ReaderUnitTest.cpp 9 10 10 11 GRAPHTESTSHEADERS = \ … … 12 13 ../Graph/unittests/BondGraphUnitTest.hpp \ 13 14 ../Graph/unittests/BoostGraphCreatorUnitTest.hpp \ 14 ../Graph/unittests/BreadthFirstSearchGathererUnitTest.hpp 15 ../Graph/unittests/BreadthFirstSearchGathererUnitTest.hpp \ 16 ../Graph/unittests/Graph6ReaderUnitTest.hpp 15 17 16 18 GRAPHTESTS = \ … … 18 20 BondGraphUnitTest \ 19 21 BoostGraphCreatorUnitTest \ 20 BreadthFirstSearchGathererUnitTest 22 BreadthFirstSearchGathererUnitTest \ 23 Graph6ReaderUnitTest 21 24 22 25 TESTS += $(GRAPHTESTS) … … 60 63 BreadthFirstSearchGathererUnitTest_LDADD = ${GRAPHLIBS} 61 64 65 Graph6ReaderUnitTest_SOURCES = \ 66 ../Graph/unittests/Graph6ReaderUnitTest.cpp \ 67 ../Graph/unittests/Graph6ReaderUnitTest.hpp 68 Graph6ReaderUnitTest_LDADD = ${GRAPHLIBS} 62 69 63 70 #AUTOMAKE_OPTIONS = parallel-tests
Note:
See TracChangeset
for help on using the changeset viewer.