示例#1
0
文件: Bond.cpp 项目: Acpharis/rdkit
double Bond::getValenceContrib(Atom::ATOM_SPTR at) const {
  return getValenceContrib(at.get());
}
示例#2
0
bool QueryAtom::Match(const Atom::ATOM_SPTR what) const {
  return Match(what.get());
}
示例#3
0
文件: Bond.cpp 项目: Acpharis/rdkit
void Bond::setEndAtom(Atom::ATOM_SPTR at) {
  PRECONDITION( dp_mol != 0, "no owning molecule for bond");
  setEndAtomIdx(at->getIdx());
}