Esempio n. 1
0
double Bond::getValenceContrib(Atom::ATOM_SPTR at) const {
  return getValenceContrib(at.get());
}
Esempio n. 2
0
bool QueryAtom::Match(const Atom::ATOM_SPTR what) const {
  return Match(what.get());
}
Esempio n. 3
0
void Bond::setEndAtom(Atom::ATOM_SPTR at) {
  PRECONDITION( dp_mol != 0, "no owning molecule for bond");
  setEndAtomIdx(at->getIdx());
}