scriptindex: Improve error handling for LOAD action
[xapian.git] / xapian-core / weight / boolweight.cc
blobfc07a7a8e4c06feacc1f6218971c1b146315c851
1 /** @file boolweight.cc
2 * @brief Xapian::BoolWeight class - boolean weighting
3 */
4 /* Copyright (C) 2009,2011,2016 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 #include "xapian/error.h"
27 using namespace std;
29 namespace Xapian {
31 BoolWeight *
32 BoolWeight::clone() const
34 return new BoolWeight;
37 void
38 BoolWeight::init(double)
40 // Nothing to do here.
43 string
44 BoolWeight::name() const
46 return "Xapian::BoolWeight";
49 string
50 BoolWeight::serialise() const
52 // No parameters to serialise.
53 return string();
56 BoolWeight *
57 BoolWeight::unserialise(const string& s) const
59 if (rare(!s.empty()))
60 throw Xapian::SerialisationError("Extra data in BoolWeight::unserialise()");
61 return new BoolWeight;
64 double
65 BoolWeight::get_sumpart(Xapian::termcount, Xapian::termcount,
66 Xapian::termcount) const
68 return 0;
71 double
72 BoolWeight::get_maxpart() const
74 return 0;
77 double
78 BoolWeight::get_sumextra(Xapian::termcount, Xapian::termcount) const
80 return 0;
83 double
84 BoolWeight::get_maxextra() const
86 return 0;