Changeset d83d64 for src


Ignore:
Timestamp:
Jun 21, 2018, 9:12:08 AM (7 years ago)
Author:
Frederik Heber <frederik.heber@…>
Children:
a951f3
Parents:
8d56a6
git-author:
Frederik Heber <frederik.heber@…> (09/26/17 22:30:01)
git-committer:
Frederik Heber <frederik.heber@…> (06/21/18 09:12:08)
Message:

Added Graph6Reader, extended BoostGraphCreator, added ChemicalSpaceEvaluatorAction.

  • TESTS: due to new option "graph6" containing a digit we needed to modify moltest_check.py to also scan for digits and not just letters.
Location:
src
Files:
5 added
7 edited

Legend:

Unmodified
Added
Removed
  • src/Actions/GlobalListOfActions.hpp

    r8d56a6 rd83d64  
    7575  (GeometryPositionToVector) \
    7676  (GeometryRemove) \
     77  (GraphChemicalSpaceEvaluator) \
    7778  (GraphUpdateMolecules) \
    7879  (GraphCorrectBondDegree) \
  • src/Actions/Makefile.am

    r8d56a6 rd83d64  
    312312
    313313GRAPHACTIONSOURCE = \
     314  Actions/GraphAction/ChemicalSpaceEvaluatorAction.cpp \
    314315  Actions/GraphAction/CorrectBondDegreeAction.cpp \
    315316  Actions/GraphAction/CreateAdjacencyAction.cpp \
     
    319320  Actions/GraphAction/UpdateMoleculesAction.cpp
    320321GRAPHACTIONHEADER = \
     322  Actions/GraphAction/ChemicalSpaceEvaluatorAction.hpp \
    321323  Actions/GraphAction/CorrectBondDegreeAction.hpp \
    322324  Actions/GraphAction/CreateAdjacencyAction.hpp \
     
    326328  Actions/GraphAction/UpdateMoleculesAction.hpp
    327329GRAPHACTIONDEFS = \
     330  Actions/GraphAction/ChemicalSpaceEvaluatorAction.def \
    328331  Actions/GraphAction/CorrectBondDegreeAction.def \
    329332  Actions/GraphAction/CreateAdjacencyAction.def \
  • src/FunctionApproximation/Extractors.cpp

    r8d56a6 rd83d64  
    6767
    6868using namespace boost::assign;
     69
     70using namespace Extractors;
    6971
    7072FunctionModel::arguments_t
     
    186188}
    187189
    188 typedef size_t level_t;
    189 typedef size_t node_t;
    190 typedef std::multimap< level_t, node_t > nodes_per_level_t;
    191 typedef std::set<node_t> nodes_t;
    192 typedef std::set<nodes_t> set_of_nodes_t;
    193 typedef boost::property_map < boost::adjacency_list <>, boost::vertex_index_t >::type index_map_t;
    194 
    195 typedef boost::bimap<
    196     boost::bimaps::set_of< size_t >,
    197     boost::bimaps::multiset_of< Extractors::ParticleType_t >
    198 > type_index_lookup_t;
    199 
    200 typedef std::set<node_t> set_type;
    201 typedef std::set<set_type> powerset_type;
    202 
    203 typedef boost::adjacency_list < boost::vecS, boost::vecS, boost::undirectedS,
    204     boost::no_property, boost::no_property > UndirectedGraph;
    205 typedef boost::subgraph< UndirectedGraph > UndirectedSubgraph;
    206 
    207 typedef std::map< node_t, std::pair<Extractors::ParticleType_t, size_t> > node_FragmentNode_map_t;
    208 
    209 typedef std::map< argument_t::indices_t, size_t> argument_placement_map_t;
    210 
    211 typedef std::map<size_t, size_t> argindex_to_nodeindex_t;
    212 
    213190void insertIntoNodeFragmentMap(
    214191    node_FragmentNode_map_t &_node_FragmentNode_map,
     
    334311 * \param index_map with indices per \a graph' vertex
    335312 */
    336 static void generateAllInducedConnectedSubgraphs(
     313void generateAllInducedConnectedSubgraphs(
    337314    const size_t N,
    338315    const level_t level,
     
    438415}
    439416
    440 static HomologyGraph createHomologyGraphFromNodes(
     417HomologyGraph createHomologyGraphFromNodes(
    441418    const nodes_t &nodes,
    442419    const type_index_lookup_t &type_index_lookup,
     
    501478
    502479  return HomologyGraph(graph_nodes, graph_edges);
    503 }
    504 
    505 /**
    506  * I have no idea why this is so complicated with BGL ...
    507  *
    508  * This is taken from the book "The Boost Graph Library: User Guide and Reference Manual, Portable Documents",
    509  * chapter "Basic Graph Algorithms", example on calculating the bacon number.
    510  */
    511 template <typename DistanceMap>
    512 class distance_recorder : public boost::default_bfs_visitor
    513 {
    514 public:
    515   distance_recorder(DistanceMap dist) : d(dist) {}
    516 
    517   template <typename Edge, typename Graph>
    518   void tree_edge(Edge e, const Graph &g) const {
    519     typename boost::graph_traits<Graph>::vertex_descriptor u = source(e,g), v = target(e,g);
    520     d[v] = d[u] + 1;
    521   }
    522 
    523 private:
    524   DistanceMap d;
    525 };
    526 
    527 template <typename DistanceMap>
    528 distance_recorder<DistanceMap> record_distance(DistanceMap d)
    529 {
    530   return distance_recorder<DistanceMap>(d);
    531480}
    532481
  • src/FunctionApproximation/Extractors.hpp

    r8d56a6 rd83d64  
    5151  typedef std::vector<ParticleType_t> ParticleTypes_t;
    5252
     53  typedef size_t level_t;
     54  typedef size_t node_t;
     55  typedef std::multimap< level_t, node_t > nodes_per_level_t;
     56  typedef std::set<node_t> nodes_t;
     57  typedef std::set<nodes_t> set_of_nodes_t;
     58  typedef boost::property_map < boost::adjacency_list <>, boost::vertex_index_t >::type index_map_t;
     59
     60  typedef boost::bimap<
     61      boost::bimaps::set_of< size_t >,
     62      boost::bimaps::multiset_of< Extractors::ParticleType_t >
     63  > type_index_lookup_t;
     64
     65  typedef std::set<node_t> set_type;
     66  typedef std::set<set_type> powerset_type;
     67
     68  typedef boost::adjacency_list < boost::vecS, boost::vecS, boost::undirectedS,
     69      boost::no_property, boost::no_property > UndirectedGraph;
     70  typedef boost::subgraph< UndirectedGraph > UndirectedSubgraph;
     71
     72  typedef std::map< node_t, std::pair<Extractors::ParticleType_t, size_t> > node_FragmentNode_map_t;
     73
     74  typedef std::map< argument_t::indices_t, size_t> argument_placement_map_t;
     75
     76  typedef std::map<size_t, size_t> argindex_to_nodeindex_t;
     77
     78  /**
     79   * I have no idea why this is so complicated with BGL ...
     80   *
     81   * This is taken from the book "The Boost Graph Library: User Guide and Reference Manual, Portable Documents",
     82   * chapter "Basic Graph Algorithms", example on calculating the bacon number.
     83   */
     84  template <typename DistanceMap>
     85  class distance_recorder : public boost::default_bfs_visitor
     86  {
     87  public:
     88    distance_recorder(DistanceMap dist) : d(dist) {}
     89
     90    template <typename Edge, typename Graph>
     91    void tree_edge(Edge e, const Graph &g) const {
     92      typename boost::graph_traits<Graph>::vertex_descriptor u = source(e,g), v = target(e,g);
     93      d[v] = d[u] + 1;
     94    }
     95
     96  private:
     97    DistanceMap d;
     98  };
     99
     100  template <typename DistanceMap>
     101  distance_recorder<DistanceMap> record_distance(DistanceMap d)
     102  {
     103    return distance_recorder<DistanceMap>(d);
     104  }
     105
     106  HomologyGraph createHomologyGraphFromNodes(
     107      const nodes_t &nodes,
     108      const type_index_lookup_t &type_index_lookup,
     109      const UndirectedGraph &graph,
     110      const index_map_t &index_map
     111      );
     112
     113  void generateAllInducedConnectedSubgraphs(
     114      const size_t N,
     115      const level_t level,
     116      const nodes_t &nodes,
     117      set_of_nodes_t &set_of_nodes,
     118      const nodes_per_level_t &nodes_per_level,
     119      const UndirectedGraph &graph,
     120      const std::vector<size_t> &_distance,
     121      const index_map_t &index_map);
     122
    53123  /** Namespace for some internal helper functions.
    54124   *
  • src/Graph/BoostGraphCreator.cpp

    r8d56a6 rd83d64  
    4343
    4444#include "Atom/atom.hpp"
     45#include "Graph/Graph6Reader.hpp"
    4546#include "molecule.hpp"
    4647
     
    9495}
    9596
     97void BoostGraphCreator::createFromGraph6String(
     98    const std::string &_graph_string)
     99{
     100  Graph6Reader reader;
     101  {
     102    std::stringstream inputstream(_graph_string);
     103    reader(inputstream);
     104  }
     105
     106  graph = UndirectedGraph();
     107
     108  // add nodes
     109  for(int numbers = 0; numbers < reader.get_num_nodes(); ++numbers) {
     110    const atomId_t atomid = numbers;
     111    Vertex v = boost::add_vertex(atomid, graph);
     112    const atomId_t vertexname = boost::get(boost::get(boost::vertex_name, graph), v);
     113    const nodeId_t vertexindex = boost::get(boost::get(boost::vertex_index, graph), v);
     114    LOG(2, "DEBUG: Adding node " << vertexindex << " associated to atom #" << vertexname);
     115    ASSERT( vertexname == atomid,
     116        "BoostGraphCreator::createFromRange() - atomid "+toString(atomid)
     117        +" is not name of vertex "+toString(vertexname)+".");
     118    atomids_nodeids.insert( std::make_pair(vertexname, vertexindex) );
     119  }
     120
     121  // add edges
     122  const Graph6Reader::edges_t &edges = reader.get_edges();
     123  for(Graph6Reader::edges_t::const_iterator iter = edges.begin();
     124      iter != edges.end(); ++iter) {
     125    // graph6 contains only upper triangle of adjacency matrix, hence add only once
     126    const nodeId_t leftnodeid = iter->first;
     127    const nodeId_t rightnodeid = iter->second;
     128    boost::add_edge(leftnodeid, rightnodeid, graph);
     129  }
     130}
     131
    96132BoostGraphCreator::nodeId_t BoostGraphCreator::getNodeId(
    97133    const atomId_t &_atomid) const
  • src/Graph/BoostGraphCreator.hpp

    r8d56a6 rd83d64  
    9090      const predicate_t &_pred);
    9191
     92  /** Creates the boost::graph from the defining graph6 string where the atom
     93   * nodes map is simply the identity.
     94   *
     95   * \param _graph_string graph6 string defining the graph
     96   */
     97  void createFromGraph6String(
     98      const std::string &_graph_string);
     99
    92100  /** Getter for the created graph.
    93101   *
  • src/Graph/Makefile.am

    r8d56a6 rd83d64  
    1010        Graph/ConnectedSubgraph.cpp \
    1111        Graph/CyclicStructureAnalysis.cpp \
    12         Graph/DepthFirstSearchAnalysis.cpp
    13                                  
     12        Graph/DepthFirstSearchAnalysis.cpp \
     13        Graph/Graph6Reader.cpp
     14
    1415GRAPHHEADER = \
    1516        Graph/AdjacencyList.hpp \
     
    2324        Graph/CyclicStructureAnalysis.hpp \
    2425        Graph/DepthFirstSearchAnalysis.hpp \
     26        Graph/Graph6Reader.hpp \
    2527        Graph/ListOfLocalAtoms.hpp
    2628
Note: See TracChangeset for help on using the changeset viewer.