AyushP123

xapian-rank.cc

Aug 18th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.07 KB | None | 0 0
  1. /** @file xapian-rank.cc
  2.  * @brief Command line search tool using Xapian::QueryParser and Xapian::Letor
  3.  */
  4. /* Copyright (C) 2004,2005,2006,2007,2008,2009,2010,2015 Olly Betts
  5.  * Copyright (C) 2011 Parth Gupta
  6.  * Copyright (C) 2016 Ayush Tomar
  7.  *
  8.  * This program is free software; you can redistribute it and/or
  9.  * modify it under the terms of the GNU General Public License as
  10.  * published by the Free Software Foundation; either version 2 of the
  11.  * License, or (at your option) any later version.
  12.  *
  13.  * This program is distributed in the hope that it will be useful,
  14.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  * GNU General Public License for more details.
  17.  *
  18.  * You should have received a copy of the GNU General Public License
  19.  * along with this program; if not, write to the Free Software
  20.  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301
  21.  * USA
  22.  */
  23. #include <xapian.h>
  24. #include <xapian-letor.h>
  25.  
  26. #include <iostream>
  27. #include <sstream>
  28. #include <string>
Add Comment
Please, Sign In to add comment