mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-03 21:44:30 +08:00
Allow the sources of conformer generation failures to be retrieved (#5960)
* support tracking where the conformer generation code fails * less verbose output * tests now pass * fix a stupid typo * fix SWIG wrappers * changes in response to review
This commit is contained in:
@@ -141,7 +141,7 @@
|
||||
basinThresh);
|
||||
}
|
||||
|
||||
static int EmbedMolecule(RDKit::ROMol &mol,const RDKit::DGeomHelpers::EmbedParameters ¶ms) {
|
||||
static int EmbedMolecule(RDKit::ROMol &mol,RDKit::DGeomHelpers::EmbedParameters ¶ms) {
|
||||
return RDKit::DGeomHelpers::EmbedMolecule(mol,params);
|
||||
}
|
||||
|
||||
@@ -179,7 +179,7 @@
|
||||
}
|
||||
static RDKit::INT_VECT EmbedMultipleConfs(RDKit::ROMol &mol,
|
||||
unsigned int numConfs,
|
||||
const RDKit::DGeomHelpers::EmbedParameters ¶ms) {
|
||||
RDKit::DGeomHelpers::EmbedParameters ¶ms) {
|
||||
return RDKit::DGeomHelpers::EmbedMultipleConfs(mol, numConfs, params);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user