Ignore:
Timestamp:
Oct 3, 2016, 5:40:40 PM (9 years ago)
Author:
Frederik Heber <heber@…>
Branches:
Fix_FitPotential_needs_atomicnumbers
Children:
ffad62
Parents:
a14673
Message:

tempcommit: Renamed PotentialSubgraph -> PotentialGraph.

File:
1 moved

Legend:

Unmodified
Added
Removed
  • src/FunctionApproximation/Subgraph/PotentialGraph.hpp

    ra14673 rddb998  
    11/*
    2  * PotentialSubgraph.hpp
     2 * PotentialGraph.hpp
    33 *
    44 *  Created on: Oct 3, 2016
     
    77
    88
    9 #ifndef POTENTIALS_POTENTIALSUBGRAPH_HPP_
    10 #define POTENTIALS_POTENTIALSUBGRAPH_HPP_
     9#ifndef POTENTIALS_POTENTIALGRAPH_HPP_
     10#define POTENTIALS_POTENTIALGRAPH_HPP_
    1111
    1212// include config.h
     
    1717#include <vector>
    1818
    19 #include "../../FunctionApproximation/Subgraph/SubgraphEdge.hpp"
     19#include "FunctionApproximation/Subgraph/SubgraphEdge.hpp"
    2020
    2121/** This class contains the specific definition of a subgraph that a specific
    2222 * empirical potential models. Note that the graph is undirected.
    2323 */
    24 class PotentialSubgraph
     24class PotentialGraph
    2525{
    2626public:
     
    2929  typedef std::vector<SubgraphEdge> edges_t;
    3030
    31   /** Default cstor of class PotentialSubgraph.
     31  /** Default cstor of class PotentialGraph.
    3232   *
    3333   */
    34   PotentialSubgraph()
     34  PotentialGraph()
    3535  {}
    3636
    37   /** Cstor of class PotentialSubgraph.
     37  /** Cstor of class PotentialGraph.
    3838   *
    3939   * \param _edges list of edges
    4040   */
    41   PotentialSubgraph(const edges_t &_edges) :
     41  PotentialGraph(const edges_t &_edges) :
    4242    edges(_edges)
    4343  {}
     
    6161
    6262
    63 #endif /* POTENTIALS_POTENTIALSUBGRAPH_HPP_ */
     63#endif /* POTENTIALS_POTENTIALGRAPH_HPP_ */
Note: See TracChangeset for help on using the changeset viewer.