/* $Id: simdist.cc 1107 2007-04-16 23:59:13Z rvernica $ Copyright (C) 2007 by The Regents of the University of California Redistribution of this file is permitted under the terms of the GNU Public License (GPL). Date: 01/14/2006 Author: Rares Vernica */ #include "simdist.h" #if _simdist_h_ == 1 #include "util/ed.h" SimType (*SimDist)(const string&, const string&) = ed; #elif _simdist_h_ == 2 #include "util/jd.h" inline float jdQ(const string &s1, const string &s2) { return jd(s1, s2, Q_GRAM); } SimType (*SimDist)(const string&, const string&) = jdQ; #endif