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_PartialTranslOptColl_h 00023 #define moses_PartialTranslOptColl_h 00024 00025 #include <list> 00026 #include <iostream> 00027 #include "TranslationOption.h" 00028 #include "Util.h" 00029 #include "StaticData.h" 00030 #include "FactorTypeSet.h" 00031 00032 namespace Moses 00033 { 00034 00044 class PartialTranslOptColl 00045 { 00046 friend std::ostream& operator<<(std::ostream& out, const PartialTranslOptColl& possibleTranslation); 00047 00048 protected: 00049 std::vector<TranslationOption*> m_list; 00050 float m_bestScore; 00051 float m_worstScore; 00052 size_t m_maxSize; 00053 size_t m_totalPruned; 00055 public: 00056 PartialTranslOptColl(); 00057 00059 ~PartialTranslOptColl() { 00060 RemoveAllInColl( m_list ); 00061 } 00062 00063 void AddNoPrune(TranslationOption *partialTranslOpt); 00064 void Add(TranslationOption *partialTranslOpt); 00065 void Prune(); 00066 00068 const std::vector<TranslationOption*>& GetList() const { 00069 return m_list; 00070 } 00071 00073 void DetachAll() { 00074 m_list.clear(); 00075 } 00076 00078 size_t GetPrunedCount() { 00079 return m_totalPruned; 00080 } 00081 00082 }; 00083 00084 } 00085 #endif
1.5.9