mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-04 21:54:27 +08:00
17 lines
355 B
C++
17 lines
355 B
C++
//
|
|
// Copyright (C) 2003-2006 Rational Discovery LLC
|
|
//
|
|
// @@ All Rights Reserved @@
|
|
//
|
|
#ifndef _GRIDUTILS_H_20050126
|
|
#define _GRIDUTILS_H_20050126
|
|
|
|
namespace RDGeom {
|
|
template<class GRIDTYPE> double tanimotoDistance(const GRIDTYPE &grid1,
|
|
const GRIDTYPE &grid2);
|
|
|
|
}
|
|
|
|
#endif
|
|
|