Support: quest -f cjk_ngram
[xapian.git] / xapian-core / weight / boolweight.cc
blob55ccbf661516453f921b43e0b9c8b387da6da324
1 /** @file boolweight.cc
2 * @brief Xapian::BoolWeight class - boolean weighting
3 */
4 /* Copyright (C) 2009,2011 Olly Betts
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; either version 2 of the
9 * License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 #include <config.h>
23 #include "xapian/weight.h"
25 using namespace std;
27 namespace Xapian {
29 BoolWeight *
30 BoolWeight::clone() const
32 return new BoolWeight;
35 void
36 BoolWeight::init(double)
38 // Nothing to do here.
41 string
42 BoolWeight::name() const
44 return "Xapian::BoolWeight";
47 string
48 BoolWeight::serialise() const
50 // No parameters to serialise.
51 return string();
54 BoolWeight *
55 BoolWeight::unserialise(const string &) const
57 return new BoolWeight;
60 double
61 BoolWeight::get_sumpart(Xapian::termcount, Xapian::termcount,
62 Xapian::termcount) const
64 return 0;
67 double
68 BoolWeight::get_maxpart() const
70 return 0;
73 double
74 BoolWeight::get_sumextra(Xapian::termcount, Xapian::termcount) const
76 return 0;
79 double
80 BoolWeight::get_maxextra() const
82 return 0;