⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 parameter.h.svn-base

📁 moses开源的机器翻译系统
💻 SVN-BASE
字号:
// $Id$/***********************************************************************Moses - factored phrase-based language decoderCopyright (C) 2006 University of EdinburghThis library is free software; you can redistribute it and/ormodify it under the terms of the GNU Lesser General PublicLicense as published by the Free Software Foundation; eitherversion 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 ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNULesser General Public License for more details.You should have received a copy of the GNU Lesser General PublicLicense along with this library; if not, write to the Free SoftwareFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA***********************************************************************/#pragma once#include <string>#include <map>#include <vector>#include "TypeDef.h"typedef std::vector<std::string>						PARAM_VEC;typedef std::map<std::string, PARAM_VEC > 	PARAM_MAP;typedef std::map<std::string, bool>         PARAM_BOOL;typedef std::map<std::string, std::string > PARAM_STRING;/** Handles parameter values set in config file or on command line. * Process raw parameter data (names and values as strings) for StaticData  * to parse; to get useful values, see StaticData. */class Parameter{protected:	PARAM_MAP m_setting;	PARAM_BOOL m_valid;	PARAM_STRING m_abbreviation;	PARAM_STRING m_description;	std::string FindParam(const std::string &paramSwitch, int argc, char* argv[]);	void OverwriteParam(const std::string &paramSwitch, const std::string &paramName, int argc, char* argv[]);	bool ReadConfigFile( std::string filePath );	bool FilesExist(const std::string &paramName, size_t tokenizeIndex,std::vector<std::string> const& fileExtension=std::vector<std::string>(1,""));	bool isOption(const char* token);	bool Validate();	void AddParam(const std::string &paramName, const std::string &description);	void AddParam(const std::string &paramName, const std::string &abbrevName, const std::string &description);	void PrintCredit();public:	Parameter();	~Parameter();	bool LoadParam(int argc, char* argv[]);	bool LoadParam(const std::string &filePath);	void Explain();	/** return a vector of strings holding the whitespace-delimited values on the ini-file line corresponding to the given parameter name */	const PARAM_VEC &GetParam(const std::string &paramName)	{		return m_setting[paramName];	}	/** check if parameter is defined (either in moses.ini or as switch) */	bool isParamSpecified(const std::string &paramName)	{	  return  m_setting.find( paramName ) != m_setting.end();	}};

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -