Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'moses/src/FactorCollection.h')
-rwxr-xr-xmoses/src/FactorCollection.h74
1 files changed, 0 insertions, 74 deletions
diff --git a/moses/src/FactorCollection.h b/moses/src/FactorCollection.h
deleted file mode 100755
index 39122be46..000000000
--- a/moses/src/FactorCollection.h
+++ /dev/null
@@ -1,74 +0,0 @@
-// $Id$
-
-/***********************************************************************
-Moses - factored phrase-based language decoder
-Copyright (C) 2006 University of Edinburgh
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2.1 of the License, or (at your option) any later version.
-
-This library 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
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the Free Software
-Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
-***********************************************************************/
-
-#pragma once
-
-#include <string>
-#include "Factor.h"
-
-class LanguageModel;
-
-#if 0
-#include <ext/hash_set>
-
-struct StringHasher {
- __gnu_cxx::hash<const char*> hasher;
- size_t operator()(const std::string& s) const { return hasher(s.c_str()); }
-};
-struct FactorHasher {
- size_t operator()(const Factor& s) const { return s.hash(); }
-};
-
-typedef __gnu_cxx::hash_set<std::string, StringHasher> StringSet;
-typedef __gnu_cxx::hash_set<Factor, FactorHasher> FactorSet;
-#else
-#include <set>
-typedef std::set<Factor> FactorSet;
-typedef std::set<std::string> StringSet;
-#endif
-
-/** collects factors
- *
- * All Factors in moses are accessed and created by a FactorCollection.
- * By enforcing this strict creation processes (ie, forbidding factors
- * from being created on the stack, etc), their memory addresses can
- * be used as keys to uniquely identify them.
- */
-class FactorCollection
-{
- friend std::ostream& operator<<(std::ostream&, const FactorCollection&);
-
-protected:
-
- FactorSet m_collection;
- StringSet m_factorStringCollection;
-public:
- ~FactorCollection();
-
- bool Exists(FactorDirection direction, FactorType factorType, const std::string &factorString);
- const Factor *AddFactor(FactorDirection direction, FactorType factorType, const std::string &factorString);
-
- void LoadVocab(FactorDirection direction, FactorType factorType, const std::string &fileName);
-
- TO_STRING;
-
-};
-