00001 // $Id$ 00002 00003 /*********************************************************************** 00004 Moses - factored phrase-based language decoder 00005 Copyright (C) 2006 University of Edinburgh 00006 00007 This library is free software; you can redistribute it and/or 00008 modify it under the terms of the GNU Lesser General Public 00009 License as published by the Free Software Foundation; either 00010 version 2.1 of the License, or (at your option) any later version. 00011 00012 This library is distributed in the hope that it will be useful, 00013 but WITHOUT ANY WARRANTY; without even the implied warranty of 00014 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00015 Lesser General Public License for more details. 00016 00017 You should have received a copy of the GNU Lesser General Public 00018 License along with this library; if not, write to the Free Software 00019 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 00020 ***********************************************************************/ 00021 00022 #ifndef moses_TargetPhraseCollection_h 00023 #define moses_TargetPhraseCollection_h 00024 00025 #include <vector> 00026 #include "TargetPhrase.h" 00027 #include "Util.h" 00028 00029 namespace Moses 00030 { 00031 00033 class TargetPhraseCollection 00034 { 00035 protected: 00036 std::vector<TargetPhrase*> m_collection; 00037 00038 public: 00039 // iters 00040 typedef std::vector<TargetPhrase*>::iterator iterator; 00041 typedef std::vector<TargetPhrase*>::const_iterator const_iterator; 00042 00043 iterator begin() { 00044 return m_collection.begin(); 00045 } 00046 iterator end() { 00047 return m_collection.end(); 00048 } 00049 const_iterator begin() const { 00050 return m_collection.begin(); 00051 } 00052 const_iterator end() const { 00053 return m_collection.end(); 00054 } 00055 00056 ~TargetPhraseCollection() { 00057 RemoveAllInColl(m_collection); 00058 } 00059 00060 const std::vector<TargetPhrase*> &GetCollection() const { return m_collection; } 00061 00063 void NthElement(size_t tableLimit); 00064 00066 size_t GetSize() const { 00067 return m_collection.size(); 00068 } 00070 bool IsEmpty() const { 00071 return m_collection.empty(); 00072 } 00074 void Add(TargetPhrase *targetPhrase) { 00075 m_collection.push_back(targetPhrase); 00076 } 00077 00078 void Prune(bool adhereTableLimit, size_t tableLimit); 00079 void Sort(bool adhereTableLimit, size_t tableLimit); 00080 00081 }; 00082 00083 } 00084 00085 #endif
1.5.9