01: package it.unimi.dsi.mg4j.index.cluster;
02:
03: /*
04: * MG4J: Managing Gigabytes for Java
05: *
06: * Copyright (C) 2006-2007 Sebastiano Vigna
07: *
08: * This library is free software; you can redistribute it and/or modify it
09: * under the terms of the GNU Lesser General Public License as published by the Free
10: * Software Foundation; either version 2.1 of the License, or (at your option)
11: * any later version.
12: *
13: * This library is distributed in the hope that it will be useful, but
14: * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15: * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
16: * for more details.
17: *
18: * You should have received a copy of the GNU Lesser General Public License
19: * along with this program; if not, write to the Free Software
20: * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21: *
22: */
23:
24: import it.unimi.dsi.fastutil.ints.IntList;
25: import it.unimi.dsi.mg4j.index.Index;
26: import it.unimi.dsi.mg4j.index.TermProcessor;
27: import it.unimi.dsi.mg4j.index.payload.Payload;
28: import it.unimi.dsi.util.BloomFilter;
29: import it.unimi.dsi.util.Properties;
30:
31: /** A {@link it.unimi.dsi.mg4j.index.cluster.DocumentalCluster} that merges the
32: * postings of its local indices.
33: *
34: * @author Sebastiano Vigna
35: */
36:
37: public class DocumentalMergedCluster extends DocumentalCluster {
38: private static final long serialVersionUID = 1L;
39:
40: public DocumentalMergedCluster(final Index[] localIndex,
41: final DocumentalClusteringStrategy strategy,
42: final boolean flat, final BloomFilter[] termFilter,
43: final int numberOfDocuments, final int numberOfTerms,
44: final long numberOfPostings, final long numberOfOccurences,
45: final int maxCount, final Payload payload,
46: final boolean hasCounts, final boolean hasPositions,
47: final TermProcessor termProcessor, final String field,
48: final IntList sizes, final Properties properties) {
49: super(localIndex, strategy, flat, termFilter,
50: numberOfDocuments, numberOfTerms, numberOfPostings,
51: numberOfOccurences, maxCount, payload, hasCounts,
52: hasPositions, termProcessor, field, sizes, properties);
53: }
54: }
|