| [13a953] | 1 | /*
 | 
|---|
| [0fad93] | 2 |  * AdjacencyList.hpp
 | 
|---|
| [13a953] | 3 |  *
 | 
|---|
 | 4 |  *  Created on: Mar 3, 2011
 | 
|---|
 | 5 |  *      Author: heber
 | 
|---|
 | 6 |  */
 | 
|---|
 | 7 | 
 | 
|---|
| [0fad93] | 8 | #ifndef ADJACENCYLIST_HPP_
 | 
|---|
 | 9 | #define ADJACENCYLIST_HPP_
 | 
|---|
| [13a953] | 10 | 
 | 
|---|
 | 11 | // include config.h
 | 
|---|
 | 12 | #ifdef HAVE_CONFIG_H
 | 
|---|
 | 13 | #include <config.h>
 | 
|---|
 | 14 | #endif
 | 
|---|
 | 15 | 
 | 
|---|
 | 16 | #include <iosfwd>
 | 
|---|
 | 17 | #include <map>
 | 
|---|
| [ec87e4] | 18 | #include <set>
 | 
|---|
 | 19 | 
 | 
|---|
 | 20 | #include "types.hpp"
 | 
|---|
 | 21 | #include "World.hpp"
 | 
|---|
| [13a953] | 22 | 
 | 
|---|
 | 23 | class atom;
 | 
|---|
 | 24 | 
 | 
|---|
| [0fad93] | 25 | /** This class contains the adjacency structure inside an internal map of atoms.
 | 
|---|
 | 26 |  *
 | 
|---|
 | 27 |  * The adjacency structure is either from a file or from a given set of atoms.
 | 
|---|
| [06f41f3] | 28 |  *
 | 
|---|
 | 29 |  * We may compare a subset of atoms against this internal bond structure. It is
 | 
|---|
 | 30 |  * true it is a true subset of the bond structure.
 | 
|---|
 | 31 |  */
 | 
|---|
| [0fad93] | 32 | class AdjacencyList
 | 
|---|
| [13a953] | 33 | {
 | 
|---|
| [ec87e4] | 34 |   //!> Unit test is granted access to internal data
 | 
|---|
| [0fad93] | 35 |   friend class AdjacencyListTest;
 | 
|---|
| [13a953] | 36 | public:
 | 
|---|
| [06f41f3] | 37 |   typedef std::vector<atomId_t> atomids_t;
 | 
|---|
 | 38 | 
 | 
|---|
| [3aa8a5] | 39 |   /** Default constructor for class AdjacencyList.
 | 
|---|
 | 40 |    *
 | 
|---|
 | 41 |    * We simply have an empty adjacency list here.
 | 
|---|
 | 42 |    */
 | 
|---|
 | 43 |   AdjacencyList() {}
 | 
|---|
| [0fad93] | 44 |   AdjacencyList(std::istream &File);
 | 
|---|
 | 45 |   AdjacencyList(const atomids_t &atoms);
 | 
|---|
 | 46 |   ~AdjacencyList();
 | 
|---|
 | 47 | 
 | 
|---|
| [3aa8a5] | 48 |   bool operator<(const AdjacencyList &other) const;
 | 
|---|
 | 49 | 
 | 
|---|
 | 50 |   /** Comparison operator whether this adjacency list is a subset of \a other.
 | 
|---|
 | 51 |    *
 | 
|---|
 | 52 |    * @return true - is subset, false - is not subset
 | 
|---|
 | 53 |    */
 | 
|---|
 | 54 |   bool operator>(const AdjacencyList &other) const {
 | 
|---|
 | 55 |     return other < *this;
 | 
|---|
 | 56 |   }
 | 
|---|
 | 57 |   /** Equality operator, determines whether both adjacencies are the same.
 | 
|---|
 | 58 |    *
 | 
|---|
 | 59 |    * @return true - both are the same, false - at least one is not a subset of the other
 | 
|---|
 | 60 |    */
 | 
|---|
 | 61 |   bool operator==(const AdjacencyList &other) const {
 | 
|---|
 | 62 |     return (other < *this) && (*this < other);
 | 
|---|
 | 63 |   }
 | 
|---|
 | 64 |   /** Inquality operator, determines whether both adjacencies are not equal.
 | 
|---|
 | 65 |    *
 | 
|---|
 | 66 |    * @return true - both are not equal, false - both are the subset of one another
 | 
|---|
 | 67 |    */
 | 
|---|
 | 68 |   bool operator!=(const AdjacencyList &other) const {
 | 
|---|
 | 69 |     return !(*this == other);
 | 
|---|
 | 70 |   }
 | 
|---|
 | 71 | 
 | 
|---|
 | 72 |   /** Stores the adjacency contained in this instance to file.
 | 
|---|
 | 73 |    *
 | 
|---|
 | 74 |    * @param File stream to write to
 | 
|---|
 | 75 |    * @return true - File is good, false - else
 | 
|---|
 | 76 |    */
 | 
|---|
 | 77 |   bool StoreToFile(std::ostream &File) const;
 | 
|---|
| [13a953] | 78 | 
 | 
|---|
 | 79 | private:
 | 
|---|
| [ec87e4] | 80 |   typedef std::set<atomId_t> KeysSet;
 | 
|---|
 | 81 |   typedef std::set<atomId_t> ValuesSet;
 | 
|---|
 | 82 |   typedef std::pair<atomId_t, atomId_t> AtomBondPair;
 | 
|---|
 | 83 |   typedef std::multimap< atomId_t, atomId_t > AtomBondMap;
 | 
|---|
 | 84 |   typedef std::pair<AtomBondMap::const_iterator, AtomBondMap::const_iterator> AtomBondRange;
 | 
|---|
| [3aa8a5] | 85 |   AtomBondMap atombondmap;
 | 
|---|
| [13a953] | 86 | 
 | 
|---|
| [42c9e2] | 87 |   KeysSet getKeys(const AtomBondRange &_range) const;
 | 
|---|
 | 88 |   ValuesSet getValues(const AtomBondRange&_range) const;
 | 
|---|
 | 89 | 
 | 
|---|
| [3aa8a5] | 90 |   void CreateMap(atomids_t atoms);
 | 
|---|
 | 91 |   bool ParseFromFile(std::istream &File);
 | 
|---|
| [13a953] | 92 | };
 | 
|---|
 | 93 | 
 | 
|---|
| [0fad93] | 94 | #endif /* ADJACENCYLIST_HPP_ */
 | 
|---|