- Timestamp:
- Apr 23, 2021, 9:01:20 PM (5 years ago)
- Branches:
- Candidate_v1.7.0, stable
- Children:
- 0ec9f5
- Parents:
- cd79d0
- git-author:
- Frederik Heber <frederik.heber@…> (04/02/21 09:09:37)
- git-committer:
- Frederik Heber <frederik.heber@…> (04/23/21 21:01:20)
- Location:
- src
- Files:
- 
      - 6 added
- 6 edited
 
 - 
          
  Actions/GlobalListOfActions.hpp (modified) (1 diff)
- 
          
  Actions/GraphAction/PrintSelectedAtomsAsGraphStringAction.cpp (added)
- 
          
  Actions/GraphAction/PrintSelectedAtomsAsGraphStringAction.def (added)
- 
          
  Actions/GraphAction/PrintSelectedAtomsAsGraphStringAction.hpp (added)
- 
          
  Actions/Makefile.am (modified) (3 diffs)
- 
          
  Graph/Graph6Writer.cpp (added)
- 
          
  Graph/Graph6Writer.hpp (added)
- 
          
  Graph/Makefile.am (modified) (2 diffs)
- 
          
  Python/Makefile.am (modified) (1 diff)
- 
          
  Python/PythonScripting_impl.hpp (modified) (1 diff)
- 
          
  Python/getGraph6String.cpp (added)
- 
          
  Python/modules.hpp (modified) (2 diffs)
 
Legend:
- Unmodified
- Added
- Removed
- 
      src/Actions/GlobalListOfActions.hpprcd79d0 r5061d9 83 83 (GraphDepthFirstSearch) \ 84 84 (GraphDestroyAdjacency) \ 85 (GraphPrintSelectedAtomsAsGraphString) \ 85 86 (GraphSubgraphDissection) \ 86 87 (MoleculeBondFile) \ 
- 
      src/Actions/Makefile.amrcd79d0 r5061d9 323 323 Actions/GraphAction/DepthFirstSearchAction.cpp \ 324 324 Actions/GraphAction/DestroyAdjacencyAction.cpp \ 325 Actions/GraphAction/PrintSelectedAtomsAsGraphStringAction.cpp \ 325 326 Actions/GraphAction/SubgraphDissectionAction.cpp \ 326 327 Actions/GraphAction/UpdateMoleculesAction.cpp … … 331 332 Actions/GraphAction/DepthFirstSearchAction.hpp \ 332 333 Actions/GraphAction/DestroyAdjacencyAction.hpp \ 334 Actions/GraphAction/PrintSelectedAtomsAsGraphStringAction.hpp \ 333 335 Actions/GraphAction/SubgraphDissectionAction.hpp \ 334 336 Actions/GraphAction/UpdateMoleculesAction.hpp … … 339 341 Actions/GraphAction/DepthFirstSearchAction.def \ 340 342 Actions/GraphAction/DestroyAdjacencyAction.def \ 343 Actions/GraphAction/PrintSelectedAtomsAsGraphStringAction.def \ 341 344 Actions/GraphAction/SubgraphDissectionAction.def \ 342 345 Actions/GraphAction/UpdateMoleculesAction.def 
- 
      src/Graph/Makefile.amrcd79d0 r5061d9 11 11 Graph/CyclicStructureAnalysis.cpp \ 12 12 Graph/DepthFirstSearchAnalysis.cpp \ 13 Graph/Graph6Reader.cpp 13 Graph/Graph6Reader.cpp \ 14 Graph/Graph6Writer.cpp 14 15 15 16 GRAPHHEADER = \ … … 25 26 Graph/DepthFirstSearchAnalysis.hpp \ 26 27 Graph/Graph6Reader.hpp \ 28 Graph/Graph6Writer.hpp \ 27 29 Graph/ListOfLocalAtoms.hpp 28 30 
- 
      src/Python/Makefile.amrcd79d0 r5061d9 6 6 Python/getBoundingBox.cpp \ 7 7 Python/getDomainVolume.cpp \ 8 Python/getGraph6String.cpp \ 8 9 Python/getSelectedAtomElements.cpp \ 9 10 Python/getSelectedAtomIds.cpp \ 
- 
      src/Python/PythonScripting_impl.hpprcd79d0 r5061d9 90 90 "Waits until all currently queued actions have been processed." 91 91 ); 92 boost::python::def< std::string() >( 93 "getGraph6String", 94 MoleCuilder::detail::module_getGraph6String, 95 "returns chemical graph of the current selected set of atoms as graph6 representation." 96 ); 97 boost::python::def< std::string() >( 98 "getElementListAsString", 99 MoleCuilder::detail::module_getElementListAsString, 100 "returns list of elements over the nodes of the graph of the current selected set of atoms." 101 ); 92 102 boost::python::def< MoleCuilder::detail::doubleVec() >( 93 103 "getBoundingBox", 
- 
      src/Python/modules.hpprcd79d0 r5061d9 14 14 #endif 15 15 16 #include <string> 16 17 #include <vector> 17 18 … … 38 39 double module_getSelectedMolarMass(); 39 40 41 std::string module_getGraph6String(); 42 std::string module_getElementListAsString(); 43 40 44 } /* namespace detail */ 41 45 
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  
