Chemical Data Processing Library Python API - Version 1.1.1
|
A generic boolean expression interface for the implementation of query/target object equivalence tests in molecular graph matching algorithms. More...
Public Member Functions | |
None | __init__ () |
Initializes the MolecularGraphMatchExpression instance. | |
int | getObjectID () |
Returns the numeric identifier (ID) of the wrapped C++ class instance. More... | |
bool | requiresAtomBondMapping () |
Tells whether the expression must be reevaluated after a query to target atom/bond mapping candidate has been found. More... | |
bool | __call__ (MolecularGraph query_molgraph, MolecularGraph target_molgraph, Base.Any aux_data) |
Performs an evaluation of the expression for the given query and target molecular graphs. More... | |
bool | __call__ (MolecularGraph query_molgraph, MolecularGraph target_molgraph, AtomBondMapping mapping, Base.Any aux_data) |
Performs an evaluation of the expression for the given query and target molecular graphs under consideration of the provided candidate atom/bond mapping. More... | |
Properties | |
objectID = property(getObjectID) | |
A generic boolean expression interface for the implementation of query/target object equivalence tests in molecular graph matching algorithms.
The MolecularGraphMatchExpression
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 MolecularGraphMatchExpression
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 MolecularGraphMatchExpression
which implement the post-mapping function call operator must explicitly enable its invocation by additionally overriding the MolecularGraphMatchExpression.requiresAtomBondMapping() method. Its implementation simply has to return True
(the default implementation returns False
) to request the invocation of the operator.
int CDPL.Chem.MolecularGraphMatchExpression.getObjectID | ( | ) |
Returns the numeric identifier (ID) of the wrapped C++ class instance.
Different Python MolecularGraphMatchExpression instances may reference the same underlying C++ class instance. The commonly used Python expression a is not b
thus cannot tell reliably whether the two MolecularGraphMatchExpression instances a and b reference different C++ objects. The numeric identifier returned by this method allows to correctly implement such an identity test via the simple expression a.getObjectID() != b.getObjectID()
.
Reimplemented in CDPL.Chem.MolecularGraphMatchExpressionList.
bool CDPL.Chem.MolecularGraphMatchExpression.requiresAtomBondMapping | ( | ) |
Tells whether the expression must be reevaluated after a query to target atom/bond mapping candidate has been found.
True
if the expression needs to be evaluated again after a query to target atom/bond mapping candidate has been found, and False
otherwise.False
. bool CDPL.Chem.MolecularGraphMatchExpression.__call__ | ( | MolecularGraph | query_molgraph, |
MolecularGraph | target_molgraph, | ||
Base.Any | aux_data | ||
) |
Performs an evaluation of the expression for the given query and target molecular graphs.
query_molgraph | The query molecular graph. |
target_molgraph | The target molecular graph. |
aux_data | Provides auxiliary information for the evaluation of the expression. |
True
. bool CDPL.Chem.MolecularGraphMatchExpression.__call__ | ( | MolecularGraph | query_molgraph, |
MolecularGraph | target_molgraph, | ||
AtomBondMapping | mapping, | ||
Base.Any | aux_data | ||
) |
Performs an evaluation of the expression for the given query and target molecular graphs under consideration of the provided candidate atom/bond mapping.
query_molgraph | The query molecular graph. |
target_molgraph | The target molecular graph. |
mapping | The current query to target atom/bond mapping candidate to evaluate. |
aux_data | Provides auxiliary information for the evaluation of the expression. |
call(query_molgraph, target_molgraph, aux_data)
.