-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwcidhash.C
37 lines (30 loc) · 1.21 KB
/
wcidhash.C
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/****************************** -*- C++ -*- *****************************/
/* */
/* WordClust -- Word Clustering */
/* Version 2.00 */
/* by Ralf Brown */
/* */
/* File: idhash.C */
/* LastEdit: 21sep2018 */
/* */
/* (c) Copyright 2017,2018 Carnegie Mellon University */
/* This program may be redistributed and/or modified under the */
/* terms of the GNU General Public License, version 3, or an */
/* alternative license agreement as detailed in the accompanying */
/* file LICENSE. You should also have received a copy of the */
/* GPL (file COPYING) along with this program. If not, see */
/* http://www.gnu.org/licenses/ */
/* */
/* This program is distributed in the hope that it will be */
/* useful, but WITHOUT ANY WARRANTY; without even the implied */
/* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR */
/* PURPOSE. See the GNU General Public License for more details. */
/* */
/************************************************************************/
#include "template/hashtable.cc"
namespace Fr
{
// request explicit instantiation
template class HashTable<unsigned,size_t> ;
} // end namespace Fr
// end of file wcidhash.C //