Chemical Data Processing Library C++ API - Version 1.1.1
Public Types | Public Member Functions | List of all members
CDPL::Chem::MatchExpression< ObjType, void > Class Template Reference

A generic boolean expression interface for the implementation of query/target object equivalence tests in molecular graph matching algorithms. More...

#include <MatchExpression.hpp>

+ Inheritance diagram for CDPL::Chem::MatchExpression< ObjType, void >:

Public Types

typedef std::shared_ptr< MatchExpressionSharedPointer
 A reference-counted smart pointer [SHPTR] for dynamically allocated MatchExpression instances. More...
 

Public Member Functions

virtual ~MatchExpression ()
 Virtual Destructor. More...
 
virtual bool operator() (const ObjType &query_obj, const ObjType &target_obj, const Base::Any &aux_data) const
 Performs an evaluation of the expression for the given query and target objects. More...
 
virtual bool operator() (const ObjType &query_obj, const ObjType &target_obj, const AtomBondMapping &mapping, const Base::Any &aux_data) const
 Performs an evaluation of the expression for the given query and target objects under consideration of the provided candidate atom/bond mapping. More...
 
virtual bool requiresAtomBondMapping () const
 Tells whether the expression must be reevaluated after a query to target atom/bond mapping candidate has been found. More...
 

Detailed Description

template<typename ObjType>
class CDPL::Chem::MatchExpression< ObjType, void >

A generic boolean expression interface for the implementation of query/target object equivalence tests in molecular graph matching algorithms.

The MatchExpression interface abstracts the task of checking a set of constraints on the attributes of target objects when performing query object equivalence tests in molecular graph matching procedures. Subclasses of MatchExpression must override one (or all, if required) of the provided function call operators to implement the logic of the constraint checks. The first form of the two operators gets called in the pre-mapping stage of the graph matching algorithm where all feasible query/target object pairings are determined. In this pre-mapping stage all sorts of query constraints can be checked that are invariant with respect to the final mapping between any of the other query and target objects. The second type of operator is invoked immediately after a complete graph mapping solution has been found and can be used to re-evaluate the validity of a given query/target object pairing in the context of the provided matching result. As soon as a pairing is found to be invalid, the current mapping solution is rejected and the algorithm proceeds to find the next possible query to target graph mapping (if any). For efficiency reasons, subclasses of MatchExpression which implement the post-mapping function call operator must explicitly enable its invocation by additionally overriding the MatchExpression::requiresAtomBondMapping() method. Its implementation simply has to return true (the default implementation returns false) to request the invocation of the operator.

Template Parameters
ObjTypeThe type of the query/target objects for which the expression gets evaluated.

Member Typedef Documentation

◆ SharedPointer

template<typename ObjType >
typedef std::shared_ptr<MatchExpression> CDPL::Chem::MatchExpression< ObjType, void >::SharedPointer

A reference-counted smart pointer [SHPTR] for dynamically allocated MatchExpression instances.

Constructor & Destructor Documentation

◆ ~MatchExpression()

template<typename ObjType >
virtual CDPL::Chem::MatchExpression< ObjType, void >::~MatchExpression ( )
inlinevirtual

Virtual Destructor.

Member Function Documentation

◆ operator()() [1/2]

template<typename ObjType >
bool CDPL::Chem::MatchExpression< ObjType, void >::operator() ( const ObjType &  query_obj,
const ObjType &  target_obj,
const Base::Any aux_data 
) const
virtual

Performs an evaluation of the expression for the given query and target objects.

Parameters
query_objThe query object.
target_objThe target object.
aux_dataProvides auxiliary information for the evaluation of the expression.
Returns
The result of the expression evaluation for the specified query and target objects.
Note
The default implementation returns true.

Reimplemented in CDPL::Chem::PropertyMatchExpression< ValueType, MatchFunc, ObjType, void >, CDPL::Chem::ORMatchExpressionList< ObjType, void >, CDPL::Chem::NOTMatchExpression< ObjType, void >, and CDPL::Chem::ANDMatchExpressionList< ObjType, void >.

◆ operator()() [2/2]

template<typename ObjType >
bool CDPL::Chem::MatchExpression< ObjType, void >::operator() ( const ObjType &  query_obj,
const ObjType &  target_obj,
const AtomBondMapping mapping,
const Base::Any aux_data 
) const
virtual

Performs an evaluation of the expression for the given query and target objects under consideration of the provided candidate atom/bond mapping.

Parameters
query_objThe query object.
target_objThe target object.
mappingThe current query to target atom/bond mapping candidate to evaluate.
aux_dataProvides auxiliary information for the evaluation of the expression.
Returns
The result of the expression evaluation for the specified query and target objects.
Note
The default implementation returns the result of operator()(query_obj, target_obj, aux_data).

Reimplemented in CDPL::Chem::ORMatchExpressionList< ObjType, void >, CDPL::Chem::NOTMatchExpression< ObjType, void >, and CDPL::Chem::ANDMatchExpressionList< ObjType, void >.

◆ requiresAtomBondMapping()

template<typename ObjType >
virtual bool CDPL::Chem::MatchExpression< ObjType, void >::requiresAtomBondMapping ( ) const
virtual

Tells whether the expression must be reevaluated after a query to target atom/bond mapping candidate has been found.

Returns
true if the expression needs to be evaluated again after a query to target atom/bond mapping candidate has been found, and false otherwise.
Note
The default implementation returns false.

Reimplemented in CDPL::Chem::NOTMatchExpression< ObjType, void >.


The documentation for this class was generated from the following file: