Add accept() wrapper
[xapian.git] / xapian-core / weight / coordweight.cc
blob059e78d7a49e6d17b3441c940c261cb1bb706c85
1 /** @file
2 * @brief Xapian::CoordWeight class - coordinate matching
3 */
4 /* Copyright (C) 2004,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 CoordWeight *
32 CoordWeight::clone() const
34 return new CoordWeight;
37 void
38 CoordWeight::init(double factor_)
40 factor = factor_;
43 string
44 CoordWeight::name() const
46 return "Xapian::CoordWeight";
49 string
50 CoordWeight::serialise() const
52 // No parameters to serialise.
53 return string();
56 CoordWeight *
57 CoordWeight::unserialise(const string& s) const
59 if (rare(!s.empty()))
60 throw Xapian::SerialisationError("Extra data in CoordWeight::unserialise()");
61 return new CoordWeight;
64 double
65 CoordWeight::get_sumpart(Xapian::termcount, Xapian::termcount,
66 Xapian::termcount) const
68 return factor;
71 double
72 CoordWeight::get_maxpart() const
74 return factor;
77 double
78 CoordWeight::get_sumextra(Xapian::termcount, Xapian::termcount) const
80 return 0;
83 double
84 CoordWeight::get_maxextra() const
86 return 0;