29 #ifndef CDPL_CHEM_REACTIONSUBSTRUCTURESEARCH_HPP
30 #define CDPL_CHEM_REACTIONSUBSTRUCTURESEARCH_HPP
38 #include <boost/iterator/indirect_iterator.hpp>
73 typedef std::vector<AtomBondMapping*> ABMappingList;
79 typedef boost::indirect_iterator<ABMappingList::iterator, AtomBondMapping>
MappingIterator;
84 typedef boost::indirect_iterator<ABMappingList::const_iterator, const AtomBondMapping>
ConstMappingIterator;
275 typedef std::pair<std::size_t, std::size_t> IndexOffsetPair;
279 void initQueryData();
280 void initTargetData();
282 bool findEquivAtoms();
283 bool findEquivBonds();
287 std::size_t nextQueryAtom()
const;
288 bool nextTargetAtom(std::size_t,
unsigned int, std::size_t&, std::size_t&)
const;
290 bool atomMappingAllowed(std::size_t, std::size_t)
const;
292 bool mapBonds(
const Atom*,
const Atom*,
const IndexOffsetPair&);
293 bool mapAtoms(std::size_t);
294 bool mapAtoms(std::size_t, std::size_t);
298 bool hasPostMappingMatchExprs()
const;
301 bool foundMappingUnique();
303 void freeAtomBondMappings();
304 void freeAtomBondMapping();
312 void initAtomMask(std::size_t);
313 void initBondMask(std::size_t);
315 void setAtomBit(std::size_t);
316 void resetAtomBit(std::size_t);
318 bool testAtomBit(std::size_t)
const;
320 void setBondBit(std::size_t);
321 void resetBondMask();
323 bool operator<(
const ABMappingMask&)
const;
324 bool operator>(
const ABMappingMask&)
const;
333 typedef std::vector<Util::BitSet> BitMatrix;
334 typedef std::vector<const Atom*> AtomMappingTable;
335 typedef std::vector<std::size_t> BondMappingTable;
336 typedef std::deque<std::size_t> AtomQueue;
337 typedef std::set<ABMappingMask> UniqueMappingList;
338 typedef std::vector<const Atom*> AtomList;
339 typedef std::vector<const Bond*> BondList;
340 typedef std::vector<std::size_t> IndexList;
341 typedef std::vector<MatchExpression<Atom, MolecularGraph>::SharedPointer> AtomMatchExprTable;
342 typedef std::vector<MatchExpression<Bond, MolecularGraph>::SharedPointer> BondMatchExprTable;
343 typedef std::vector<IndexOffsetPair> IndexOffsetTable;
350 AtomList targetAtoms;
351 BondList targetBonds;
352 IndexOffsetTable queryABIndexOffsets;
353 IndexOffsetTable targetABIndexOffsets;
354 BitMatrix atomEquivMatrix;
355 BitMatrix bondEquivMatrix;
356 AtomQueue termQueryAtoms;
357 AtomMappingTable queryAtomMapping;
358 BondMappingTable queryBondMapping;
360 ABMappingMask targetMappingMask;
361 ABMappingList foundMappings;
362 UniqueMappingList uniqueMappings;
363 AtomMatchExprTable atomMatchExprTable;
364 BondMatchExprTable bondMatchExprTable;
365 ReactionMatchExprPtr rxnMatchExpression;
366 IndexList postMappingMatchAtoms;
367 IndexList postMappingMatchBonds;
368 MappingCache mappingCache;
370 bool initQueryMappingData;
373 unsigned int enabledRxnRoles;
374 std::size_t numQueryAtoms;
375 std::size_t numQueryBonds;
376 std::size_t numTargetAtoms;
377 std::size_t numTargetBonds;
378 std::size_t maxNumMappings;
Definition of class CDPL::Chem::AtomBondMapping.
Declaration of type CDPL::Util::BitSet.
Definition of the preprocessor macro CDPL_CHEM_API.
#define CDPL_CHEM_API
Tells the compiler/linker which classes, functions and variables are part of the library API.
Definition of class CDPL::Chem::MatchExpression.
Definition of class CDPL::Util::ObjectStack.
Data structure for the common storage of related atom to atom and bond to bond mappings.
Definition: AtomBondMapping.hpp:55
Abstract base class representing a chemical atom and its bonded neighborhood.
Definition: Atom.hpp:58
Generic boolean expression interface for the implementation of query/target object equivalence tests ...
Definition: MatchExpression.hpp:75
Searches for substructures of the components of a target reaction that match a given query reaction p...
Definition: ReactionSubstructureSearch.hpp:71
MappingIterator getMappingsBegin()
Returns a mutable iterator pointing to the beginning of the stored Chem::AtomBondMapping objects.
ReactionSubstructureSearch()
Constructs and initializes the ReactionSubstructureSearch instance.
ConstMappingIterator end() const
Returns a constant iterator pointing to the end of the stored const Chem::AtomBondMapping objects.
std::size_t getNumMappings() const
Returns the number of atom/bond mappings that were recorded in the last call to findMappings().
bool mappingExists(const Reaction &target)
Tells whether the query reaction pattern matches the target reaction target.
std::size_t getMaxNumMappings() const
Returns the specified limit on the number of stored atom/bond mappings.
void setQuery(const Reaction &query)
Sets query as the new query reaction pattern.
bool findMappings(const Reaction &target)
Searches for all possible atom/bond mappings between the query reaction pattern and the target reacti...
const AtomBondMapping & getMapping(std::size_t idx) const
Returns a const reference to the stored atom/bond mapping object at index idx.
void setMaxNumMappings(std::size_t max_num_mappings)
Allows to specify a limit on the number of stored atom/bond mappings.
MappingIterator getMappingsEnd()
Returns a mutable iterator pointing to the end of the stored Chem::AtomBondMapping objects.
void setEnabledReactionRoles(unsigned int roles)
Allows the reaction role specific exclusion of query and target components from the search for matchi...
boost::indirect_iterator< ABMappingList::const_iterator, const AtomBondMapping > ConstMappingIterator
A constant random access iterator used to iterate over the stored const Chem::AtomBondMapping objects...
Definition: ReactionSubstructureSearch.hpp:84
ConstMappingIterator begin() const
Returns a constant iterator pointing to the beginning of the stored const Chem::AtomBondMapping objec...
ReactionSubstructureSearch & operator=(const ReactionSubstructureSearch &)=delete
void uniqueMappingsOnly(bool unique)
Allows to specify whether or not to store only unique atom/bond mappings.
bool uniqueMappingsOnly() const
Tells whether duplicate atom/bond mappings are discarded.
AtomBondMapping & getMapping(std::size_t idx)
Returns a non-const reference to the stored atom/bond mapping object at index idx.
~ReactionSubstructureSearch()
Destructor.
ReactionSubstructureSearch(const Reaction &query)
Constructs and initializes the ReactionSubstructureSearch instance for the specified query reaction p...
boost::indirect_iterator< ABMappingList::iterator, AtomBondMapping > MappingIterator
A mutable random access iterator used to iterate over the stored Chem::AtomBondMapping mapping object...
Definition: ReactionSubstructureSearch.hpp:79
MappingIterator begin()
Returns a mutable iterator pointing to the beginning of the stored Chem::AtomBondMapping objects.
unsigned int getEnabledReactionRoles() const
Tells which reaction component roles are considered in the search for matching reaction substructures...
ReactionSubstructureSearch(const ReactionSubstructureSearch &)=delete
MappingIterator end()
Returns a mutable iterator pointing to the end of the stored Chem::AtomBondMapping objects.
ConstMappingIterator getMappingsBegin() const
Returns a constant iterator pointing to the beginning of the stored const Chem::AtomBondMapping objec...
ConstMappingIterator getMappingsEnd() const
Returns a constant iterator pointing to the end of the stored const Chem::AtomBondMapping objects.
Abstract base class for chemical reactions composed of role-tagged reaction components of type Chem::...
Definition: Reaction.hpp:59
bool operator<(const Array< ValueType > &array1, const Array< ValueType > &array2)
Less than comparison operator.
boost::dynamic_bitset BitSet
Dynamic bitset class.
Definition: BitSet.hpp:46
bool operator>(const Array< ValueType > &array1, const Array< ValueType > &array2)
Greater than comparison operator.
The namespace of the Chemical Data Processing Library.