From 3e983abc668e8976799ce4bdc660b563d6a176cd Mon Sep 17 00:00:00 2001 From: HPDell Date: Wed, 7 Feb 2024 10:54:12 +0000 Subject: [PATCH 1/6] edit: rename GWDR to SDR --- README.md | 2 +- include/gwmodel.h | 2 +- include/gwmodelpp/{GWDR.h => SDR.h} | 50 +++++++-------- src/CMakeLists.txt | 4 +- src/gwmodelpp/{GWDR.cpp => SDR.cpp} | 96 ++++++++++++++--------------- test/CMakeLists.txt | 8 +-- test/{testGWDR.cpp => testSDR.cpp} | 78 +++++++++++------------ 7 files changed, 120 insertions(+), 120 deletions(-) rename include/gwmodelpp/{GWDR.h => SDR.h} (90%) rename src/gwmodelpp/{GWDR.cpp => SDR.cpp} (87%) rename test/{testGWDR.cpp => testSDR.cpp} (89%) diff --git a/README.md b/README.md index 71e4603f..ba6862e6 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ This library consist of C++ implementations of some geographically weighted mode - [Scalable GWR][scgwr] - [Geographically Weighted Summary Statistics (GWSS)][gwss] - [Geographically Weighted Principal Component Analysis (GWPCA)][gwpca] -- Geographically Weighted Density Regression (GWDR) +- Geographically Weighted Density Regression (SDR) Comparing with other libraries, this library has these features: diff --git a/include/gwmodel.h b/include/gwmodel.h index 4ab4889b..55347d5a 100644 --- a/include/gwmodel.h +++ b/include/gwmodel.h @@ -36,7 +36,7 @@ #include "gwmodelpp/GWRMultiscale.h" #include "gwmodelpp/GWRRobust.h" #include "gwmodelpp/GWRScalable.h" -#include "gwmodelpp/GWDR.h" +#include "gwmodelpp/SDR.h" #include "gwmodelpp/GWAverage.h" #include "gwmodelpp/GWCorrelation.h" #include "gwmodelpp/GWPCA.h" diff --git a/include/gwmodelpp/GWDR.h b/include/gwmodelpp/SDR.h similarity index 90% rename from include/gwmodelpp/GWDR.h rename to include/gwmodelpp/SDR.h index 5c95e9c8..8ae8b413 100644 --- a/include/gwmodelpp/GWDR.h +++ b/include/gwmodelpp/SDR.h @@ -1,5 +1,5 @@ -#ifndef GWDR_H -#define GWDR_H +#ifndef SDR_H +#define SDR_H #include #include "armadillo_config.h" @@ -18,12 +18,12 @@ namespace gwm * @brief \~english Geographically Weighted Density Regression \~chinese 地理加权密度回归模型 * */ -class GWDR : public SpatialAlgorithm, public IRegressionAnalysis, public IVarialbeSelectable, public IParallelizable, public IParallelOpenmpEnabled +class SDR : public SpatialAlgorithm, public IRegressionAnalysis, public IVarialbeSelectable, public IParallelizable, public IParallelOpenmpEnabled { public: - typedef arma::mat (GWDR::*PredictCalculator)(const arma::mat&, const arma::mat&, const arma::vec&); //!< \~english Calculator to predict \~chinese 用于预测的函数 + typedef arma::mat (SDR::*PredictCalculator)(const arma::mat&, const arma::mat&, const arma::vec&); //!< \~english Calculator to predict \~chinese 用于预测的函数 - typedef arma::mat (GWDR::*FitCalculator)(const arma::mat&, const arma::vec&, arma::mat&, arma::vec&, arma::vec&, arma::mat&); //!< \~english Calculator to fit \~chinese 用于拟合的函数 + typedef arma::mat (SDR::*FitCalculator)(const arma::mat&, const arma::vec&, arma::mat&, arma::vec&, arma::vec&, arma::mat&); //!< \~english Calculator to fit \~chinese 用于拟合的函数 /** * @brief \~english Type of bandwidth criterion. \~chinese 带宽优选指标值类型。 @@ -35,9 +35,9 @@ class GWDR : public SpatialAlgorithm, public IRegressionAnalysis, public IVarial AIC //!< AIC }; - typedef double (GWDR::*BandwidthCriterionCalculator)(const std::vector&); //!< \~english Calculator to get criterion for bandwidth optimization \~chinese 带宽优选指标值计算函数 + typedef double (SDR::*BandwidthCriterionCalculator)(const std::vector&); //!< \~english Calculator to get criterion for bandwidth optimization \~chinese 带宽优选指标值计算函数 - typedef double (GWDR::*IndepVarCriterionCalculator)(const std::vector&); //!< \~english Calculator to get criterion for variable optimization \~chinese 变量优选指标值计算函数 + typedef double (SDR::*IndepVarCriterionCalculator)(const std::vector&); //!< \~english Calculator to get criterion for variable optimization \~chinese 变量优选指标值计算函数 public: /** @@ -95,13 +95,13 @@ class GWDR : public SpatialAlgorithm, public IRegressionAnalysis, public IVarial public: /** - * @brief \~english Construct a new GWDR object. \~chinese 构造一个新的 GWDR 对象。 + * @brief \~english Construct a new SDR object. \~chinese 构造一个新的 SDR 对象。 * */ - GWDR() {} + SDR() {} /** - * @brief \~english Construct a new GWDR object. \~chinese 构造一个新的 GWDR 对象。 + * @brief \~english Construct a new SDR object. \~chinese 构造一个新的 SDR 对象。 * * @param x \~english Independent variables \~chinese 自变量 * @param y \~english Dependent variables \~chinese 因变量 @@ -110,7 +110,7 @@ class GWDR : public SpatialAlgorithm, public IRegressionAnalysis, public IVarial * @param hasHatMatrix \~english Whether has hat matrix \~chinese 是否计算帽子矩阵 * @param hasIntercept \~english Whether has intercept \~chinese 是否包含截距 */ - GWDR(const arma::mat& x, const arma::vec& y, const arma::mat& coords, const std::vector& spatialWeights, bool hasHatMatrix = true, bool hasIntercept = true) : SpatialAlgorithm(coords), + SDR(const arma::mat& x, const arma::vec& y, const arma::mat& coords, const std::vector& spatialWeights, bool hasHatMatrix = true, bool hasIntercept = true) : SpatialAlgorithm(coords), mX(x), mY(y), mSpatialWeights(spatialWeights), @@ -120,10 +120,10 @@ class GWDR : public SpatialAlgorithm, public IRegressionAnalysis, public IVarial } /** - * @brief \~english Destroy the GWDR object. \~chinese 销毁 GWDR 对象。 + * @brief \~english Destroy the SDR object. \~chinese 销毁 SDR 对象。 * */ - virtual ~GWDR() {} + virtual ~SDR() {} public: @@ -493,12 +493,12 @@ class GWDR : public SpatialAlgorithm, public IRegressionAnalysis, public IVarial bool mHasIntercept = true; //!< \~english Whether has intercept \~chinese 是否包含截距 RegressionDiagnostic mDiagnostic = RegressionDiagnostic(); //!< \~english Diagnostic information \~chinese 诊断信息 - PredictCalculator mPredictFunction = &GWDR::predictSerial; //!< \~english Calculator to predict \~chinese 用于预测的函数 - FitCalculator mFitFunction = &GWDR::fitSerial; //!< \~english Calculator to fit \~chinese 用于拟合的函数 + PredictCalculator mPredictFunction = &SDR::predictSerial; //!< \~english Calculator to predict \~chinese 用于预测的函数 + FitCalculator mFitFunction = &SDR::fitSerial; //!< \~english Calculator to fit \~chinese 用于拟合的函数 bool mEnableBandwidthOptimize = false; //!< \~english Whether bandwidth optimization is enabled \~chinese 是否进行带宽优选 BandwidthCriterionType mBandwidthCriterionType = BandwidthCriterionType::CV; //!< \~english Type of criterion for bandwidth optimization \~chinese 带宽优选指标类型 - BandwidthCriterionCalculator mBandwidthCriterionFunction = &GWDR::bandwidthCriterionCVSerial; //!< \~english Calculator to get criterion for given bandwidth value \~chinese 用于根据给定带宽值计算指标值的函数 + BandwidthCriterionCalculator mBandwidthCriterionFunction = &SDR::bandwidthCriterionCVSerial; //!< \~english Calculator to get criterion for given bandwidth value \~chinese 用于根据给定带宽值计算指标值的函数 double mBandwidthOptimizeEps = 1e-6; //!< \~english Threshold for bandwidth optimization \~chinese 带宽优选阈值 std::size_t mBandwidthOptimizeMaxIter = 100000; //!< \~english Maximum iteration for bandwidth optimization \~chinese 带宽优选最大迭代次数 double mBandwidthOptimizeStep = 0.01; //!< \~english Step size for bandwidth optimization \~chinese 带宽优选步长 @@ -507,7 +507,7 @@ class GWDR : public SpatialAlgorithm, public IRegressionAnalysis, public IVarial bool mEnableIndepVarSelect = false; //!< \~english Whether independent variable selection is enabled \~chinese 是否优选变量 double mIndepVarSelectThreshold = 3.0; //!< \~english Threshold for independent variable selection \~chinese 变量优选阈值 VariablesCriterionList mIndepVarCriterionList; //!< \~english List of criterion values for each variable combination in independent variable selection \~chinese 变量优选过程中每种变量组合对应的指标值列表 - IndepVarCriterionCalculator mIndepVarCriterionFunction = &GWDR::indepVarCriterionSerial; //!< \~english Calculator to get criterion for given independent variable combination \~chinese 用于根据给定变量组合计算指标值的函数 + IndepVarCriterionCalculator mIndepVarCriterionFunction = &SDR::indepVarCriterionSerial; //!< \~english Calculator to get criterion for given independent variable combination \~chinese 用于根据给定变量组合计算指标值的函数 std::vector mSelectedIndepVars; //!< \~english Selected independent variable \~chinese 选中的变量组合 std::size_t mIndepVarSelectionProgressTotal = 0; //!< \~english Total number of independent variable combination. \~chinese 自变量所有组合总数。 std::size_t mIndepVarSelectionProgressCurrent = 0; //!< \~english Current progress of independent variable selection. \~chinese 当前自变量优选的进度。 @@ -522,7 +522,7 @@ class GWDR : public SpatialAlgorithm, public IRegressionAnalysis, public IVarial }; -class GWDRBandwidthOptimizer +class SDRBandwidthOptimizer { public: @@ -532,7 +532,7 @@ class GWDRBandwidthOptimizer */ struct Parameter { - GWDR* instance; //!< \~english A GWDR instance \~chinese 一个 GWDR 实例 + SDR* instance; //!< \~english A SDR instance \~chinese 一个 SDR 实例 std::vector* bandwidths; //!< \~english Bandwidths \~chinese 带宽 arma::uword featureCount; //!< \~english Total number of features \~chinese 要素总数 }; @@ -585,23 +585,23 @@ class GWDRBandwidthOptimizer public: /** - * @brief \~english Construct a new GWDRBandwidthOptimizer object. \~chinese 构造一个新的 GWDRBandwidthOptimizer 对象。 + * @brief \~english Construct a new SDRBandwidthOptimizer object. \~chinese 构造一个新的 SDRBandwidthOptimizer 对象。 * * @param weights \~english Initial values of bandwidths \~chinese 带宽初始值 */ - explicit GWDRBandwidthOptimizer(const std::vector& weights) : mBandwidths(weights) {} + explicit SDRBandwidthOptimizer(const std::vector& weights) : mBandwidths(weights) {} /** - * @brief \~english Optimize bandwidth for a GWDR model. \~chinese 为 GWDR 模型优选带宽。 + * @brief \~english Optimize bandwidth for a SDR model. \~chinese 为 SDR 模型优选带宽。 * - * @param instance \~english A GWDR instance \~chinese 一个 GWDR 实例 + * @param instance \~english A SDR instance \~chinese 一个 SDR 实例 * @param featureCount \~english Total number of features \~chinese 要素总数 * @param maxIter \~english Maximum of iteration \~chinese 最大迭代次数 * @param eps \~english Threshold of convergence \~chinese 收敛阈值 * @param step \~english Step size \~chinese 步长 * @return const int \~english Optimizer status \~chinese 优化器退出状态 */ - const int optimize(GWDR* instance, arma::uword featureCount, std::size_t maxIter, double eps, double step); + const int optimize(SDR* instance, arma::uword featureCount, std::size_t maxIter, double eps, double step); private: std::vector mBandwidths; //!< \~english Bandwidths \~chinese 带宽 @@ -609,4 +609,4 @@ class GWDRBandwidthOptimizer } -#endif // GWDR_H \ No newline at end of file +#endif // SDR_H \ No newline at end of file diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index bd420d67..25f44d30 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -74,7 +74,7 @@ set(SOURCES_CXX gwmodelpp/GWAverage.cpp gwmodelpp/GWCorrelation.cpp gwmodelpp/GWPCA.cpp - gwmodelpp/GWDR.cpp + gwmodelpp/SDR.cpp gwmodelpp/GWRMultiscale.cpp gwmodelpp/GWRRobust.cpp gwmodelpp/GWRGeneralized.cpp @@ -113,7 +113,7 @@ set(HEADERS_CXX ../include/gwmodelpp/GWAverage.h ../include/gwmodelpp/GWCorrelation.h ../include/gwmodelpp/GWPCA.h - ../include/gwmodelpp/GWDR.h + ../include/gwmodelpp/SDR.h ../include/gwmodelpp/GWRMultiscale.h ../include/gwmodelpp/Logger.h ../include/gwmodelpp/GWRRobust.h diff --git a/src/gwmodelpp/GWDR.cpp b/src/gwmodelpp/SDR.cpp similarity index 87% rename from src/gwmodelpp/GWDR.cpp rename to src/gwmodelpp/SDR.cpp index e845b65e..feb3617b 100644 --- a/src/gwmodelpp/GWDR.cpp +++ b/src/gwmodelpp/SDR.cpp @@ -1,4 +1,4 @@ -#include "GWDR.h" +#include "SDR.h" #include #include #include @@ -14,7 +14,7 @@ using namespace std; using namespace arma; using namespace gwm; -RegressionDiagnostic GWDR::CalcDiagnostic(const mat& x, const vec& y, const mat& betas, const vec& shat) +RegressionDiagnostic SDR::CalcDiagnostic(const mat& x, const vec& y, const mat& betas, const vec& shat) { vec r = y - sum(betas % x, 1); double rss = sum(r % r); @@ -29,7 +29,7 @@ RegressionDiagnostic GWDR::CalcDiagnostic(const mat& x, const vec& y, const mat& return { rss, AIC, AICc, enp, edf, r2, r2_adj }; } -mat GWDR::fit() +mat SDR::fit() { GWM_LOG_STAGE("Initialization"); uword nDims = mCoords.n_cols, nDp = mCoords.n_rows, nVars = mX.n_cols; @@ -84,14 +84,14 @@ mat GWDR::fit() bws.push_back(iter.weight()); } - GWM_LOG_INFO(GWDRBandwidthOptimizer::infoBandwidthCriterion(bws)); - GWDRBandwidthOptimizer optimizer(bws); + GWM_LOG_INFO(SDRBandwidthOptimizer::infoBandwidthCriterion(bws)); + SDRBandwidthOptimizer optimizer(bws); int resultCode = optimizer.optimize(this, mCoords.n_rows, mBandwidthOptimizeMaxIter, mBandwidthOptimizeEps, mBandwidthOptimizeStep); GWM_LOG_STOP_RETURN(mStatus, mat(nDp, nVars, arma::fill::zeros)); if (resultCode) { - throw runtime_error("[GWDR::fit] Bandwidth optimization invoke failed."); + throw runtime_error("[SDR::fit] Bandwidth optimization invoke failed."); } GWM_LOG_STOP_RETURN(mStatus, mat(nDp, nVars, arma::fill::zeros)); } @@ -127,7 +127,7 @@ mat GWDR::fit() return mBetas; } -mat GWDR::predictSerial(const mat& locations, const mat& x, const vec& y) +mat SDR::predictSerial(const mat& locations, const mat& x, const vec& y) { uword nDp = locations.n_rows, nVar = mX.n_cols; mat betas(nVar, nDp, arma::fill::zeros); @@ -160,7 +160,7 @@ mat GWDR::predictSerial(const mat& locations, const mat& x, const vec& y) } #ifdef ENABLE_OPENMP -mat GWDR::predictOmp(const mat& locations, const mat& x, const vec& y) +mat SDR::predictOmp(const mat& locations, const mat& x, const vec& y) { uword nDp = locations.n_rows, nVar = mX.n_cols; mat betas(nVar, nDp, arma::fill::zeros); @@ -204,7 +204,7 @@ mat GWDR::predictOmp(const mat& locations, const mat& x, const vec& y) } #endif -mat GWDR::fitSerial(const mat& x, const vec& y, mat& betasSE, vec& shat, vec& qdiag, mat& S) +mat SDR::fitSerial(const mat& x, const vec& y, mat& betasSE, vec& shat, vec& qdiag, mat& S) { uword nDp = mCoords.n_rows, nVar = x.n_cols; mat betas(nVar, nDp, arma::fill::zeros); @@ -255,7 +255,7 @@ mat GWDR::fitSerial(const mat& x, const vec& y, mat& betasSE, vec& shat, vec& qd } #ifdef ENABLE_OPENMP -mat GWDR::fitOmp(const mat& x, const vec& y, mat& betasSE, vec& shat, vec& qdiag, mat& S) +mat SDR::fitOmp(const mat& x, const vec& y, mat& betasSE, vec& shat, vec& qdiag, mat& S) { uword nDp = mCoords.n_rows, nVar = x.n_cols; mat betas(nVar, nDp, arma::fill::zeros); @@ -319,7 +319,7 @@ mat GWDR::fitOmp(const mat& x, const vec& y, mat& betasSE, vec& shat, vec& qdiag } #endif -double GWDR::bandwidthCriterionCVSerial(const vector& bandwidths) +double SDR::bandwidthCriterionCVSerial(const vector& bandwidths) { uword nDp = mCoords.n_rows, nDim = mCoords.n_cols; double cv = 0.0; @@ -357,7 +357,7 @@ double GWDR::bandwidthCriterionCVSerial(const vector& bandwidt } if (mStatus == Status::Success && success && isfinite(cv)) { - GWM_LOG_INFO(GWDRBandwidthOptimizer::infoBandwidthCriterion(bandwidths, cv)); + GWM_LOG_INFO(SDRBandwidthOptimizer::infoBandwidthCriterion(bandwidths, cv)); GWM_LOG_PROGRESS_PERCENT(exp(- abs(mBandwidthLastCriterion - cv - mBandwidthOptimizeEps))); mBandwidthLastCriterion = cv; return cv; @@ -366,7 +366,7 @@ double GWDR::bandwidthCriterionCVSerial(const vector& bandwidt } #ifdef ENABLE_OPENMP -double GWDR::bandwidthCriterionCVOmp(const vector& bandwidths) +double SDR::bandwidthCriterionCVOmp(const vector& bandwidths) { uword nDp = mCoords.n_rows, nDim = mCoords.n_cols; vec cv_all(mOmpThreadNum, arma::fill::zeros); @@ -408,7 +408,7 @@ double GWDR::bandwidthCriterionCVOmp(const vector& bandwidths) double cv = sum(cv_all); if (mStatus == Status::Success && success && isfinite(cv)) { - GWM_LOG_INFO(GWDRBandwidthOptimizer::infoBandwidthCriterion(bandwidths, cv)); + GWM_LOG_INFO(SDRBandwidthOptimizer::infoBandwidthCriterion(bandwidths, cv)); GWM_LOG_PROGRESS_PERCENT(exp(- abs(mBandwidthLastCriterion - cv - mBandwidthOptimizeEps))); mBandwidthLastCriterion = cv; return cv; @@ -417,7 +417,7 @@ double GWDR::bandwidthCriterionCVOmp(const vector& bandwidths) } #endif -double GWDR::bandwidthCriterionAICSerial(const vector& bandwidths) +double SDR::bandwidthCriterionAICSerial(const vector& bandwidths) { uword nDp = mCoords.n_rows, nDim = mCoords.n_cols, nVar = mX.n_cols; mat betas(nVar, nDp, fill::zeros); @@ -454,10 +454,10 @@ double GWDR::bandwidthCriterionAICSerial(const vector& bandwid } } if (!flag) return DBL_MAX; - double value = GWDR::AICc(mX, mY, betas.t(), { trS, 0.0 }); + double value = SDR::AICc(mX, mY, betas.t(), { trS, 0.0 }); if (mStatus == Status::Success && isfinite(value)) { - GWM_LOG_INFO(GWDRBandwidthOptimizer::infoBandwidthCriterion(bandwidths, value)); + GWM_LOG_INFO(SDRBandwidthOptimizer::infoBandwidthCriterion(bandwidths, value)); GWM_LOG_PROGRESS_PERCENT(exp(- abs(mBandwidthLastCriterion - value - mBandwidthOptimizeEps))); mBandwidthLastCriterion = value; return value; @@ -466,7 +466,7 @@ double GWDR::bandwidthCriterionAICSerial(const vector& bandwid } #ifdef ENABLE_OPENMP -double GWDR::bandwidthCriterionAICOmp(const vector& bandwidths) +double SDR::bandwidthCriterionAICOmp(const vector& bandwidths) { uword nDp = mCoords.n_rows, nDim = mCoords.n_cols, nVar = mX.n_cols; mat betas(nVar, nDp, arma::fill::zeros); @@ -508,10 +508,10 @@ double GWDR::bandwidthCriterionAICOmp(const vector& bandwidths } if (!success) return DBL_MAX; double trS = sum(trS_all); - double value = GWDR::AICc(mX, mY, betas.t(), { trS, 0.0 }); + double value = SDR::AICc(mX, mY, betas.t(), { trS, 0.0 }); if (mStatus == Status::Success && isfinite(value)) { - GWM_LOG_INFO(GWDRBandwidthOptimizer::infoBandwidthCriterion(bandwidths, value)); + GWM_LOG_INFO(SDRBandwidthOptimizer::infoBandwidthCriterion(bandwidths, value)); GWM_LOG_PROGRESS_PERCENT(exp(- abs(mBandwidthLastCriterion - value - mBandwidthOptimizeEps))); mBandwidthLastCriterion = value; return value; @@ -520,7 +520,7 @@ double GWDR::bandwidthCriterionAICOmp(const vector& bandwidths } #endif -double GWDR::indepVarCriterionSerial(const vector& indepVars) +double SDR::indepVarCriterionSerial(const vector& indepVars) { mat x = mX.cols(VariableForwardSelector::index2uvec(indepVars, mHasIntercept)); vec y = mY; @@ -593,7 +593,7 @@ double GWDR::indepVarCriterionSerial(const vector& indepVars) GWM_LOG_PROGRESS(++mIndepVarSelectionProgressCurrent, mIndepVarSelectionProgressTotal); if (mStatus == Status::Success && success) { - double value = success ? GWDR::AICc(x, y, betas.t(), { trS, 0.0 }) : DBL_MAX; + double value = success ? SDR::AICc(x, y, betas.t(), { trS, 0.0 }) : DBL_MAX; GWM_LOG_INFO(IVarialbeSelectable::infoVariableCriterion(indepVars, value)); return isfinite(value) ? value : DBL_MAX; } @@ -601,7 +601,7 @@ double GWDR::indepVarCriterionSerial(const vector& indepVars) } #ifdef ENABLE_OPENMP -double GWDR::indepVarCriterionOmp(const vector& indepVars) +double SDR::indepVarCriterionOmp(const vector& indepVars) { mat x = mX.cols(VariableForwardSelector::index2uvec(indepVars, mHasIntercept)); vec y = mY; @@ -679,7 +679,7 @@ double GWDR::indepVarCriterionOmp(const vector& indepVars) GWM_LOG_PROGRESS(++mIndepVarSelectionProgressCurrent, mIndepVarSelectionProgressTotal); if (mStatus == Status::Success && success) { - double value = success ? GWDR::AICc(x, y, betas.t(), { trS, 0.0 }) : DBL_MAX; + double value = success ? SDR::AICc(x, y, betas.t(), { trS, 0.0 }) : DBL_MAX; GWM_LOG_INFO(IVarialbeSelectable::infoVariableCriterion(indepVars, value)); return isfinite(value) ? value : DBL_MAX; } @@ -687,7 +687,7 @@ double GWDR::indepVarCriterionOmp(const vector& indepVars) } #endif -void GWDR::setBandwidthCriterionType(const BandwidthCriterionType& type) +void SDR::setBandwidthCriterionType(const BandwidthCriterionType& type) { mBandwidthCriterionType = type; unordered_map mapper; @@ -695,60 +695,60 @@ void GWDR::setBandwidthCriterionType(const BandwidthCriterionType& type) { case ParallelType::SerialOnly: mapper = { - make_pair(BandwidthCriterionType::AIC, &GWDR::bandwidthCriterionAICSerial), - make_pair(BandwidthCriterionType::CV, &GWDR::bandwidthCriterionCVSerial) + make_pair(BandwidthCriterionType::AIC, &SDR::bandwidthCriterionAICSerial), + make_pair(BandwidthCriterionType::CV, &SDR::bandwidthCriterionCVSerial) }; - mBandwidthCriterionFunction = &GWDR::bandwidthCriterionAICSerial; + mBandwidthCriterionFunction = &SDR::bandwidthCriterionAICSerial; break; #ifdef ENABLE_OPENMP case ParallelType::OpenMP: mapper = { - make_pair(BandwidthCriterionType::AIC, &GWDR::bandwidthCriterionAICOmp), - make_pair(BandwidthCriterionType::CV, &GWDR::bandwidthCriterionCVOmp) + make_pair(BandwidthCriterionType::AIC, &SDR::bandwidthCriterionAICOmp), + make_pair(BandwidthCriterionType::CV, &SDR::bandwidthCriterionCVOmp) }; - mBandwidthCriterionFunction = &GWDR::bandwidthCriterionAICOmp; + mBandwidthCriterionFunction = &SDR::bandwidthCriterionAICOmp; break; #endif default: mapper = { - make_pair(BandwidthCriterionType::AIC, &GWDR::bandwidthCriterionAICSerial), - make_pair(BandwidthCriterionType::CV, &GWDR::bandwidthCriterionCVSerial) + make_pair(BandwidthCriterionType::AIC, &SDR::bandwidthCriterionAICSerial), + make_pair(BandwidthCriterionType::CV, &SDR::bandwidthCriterionCVSerial) }; - mBandwidthCriterionFunction = &GWDR::bandwidthCriterionAICSerial; + mBandwidthCriterionFunction = &SDR::bandwidthCriterionAICSerial; break; } mBandwidthCriterionFunction = mapper[mBandwidthCriterionType]; } -void GWDR::setParallelType(const ParallelType& type) +void SDR::setParallelType(const ParallelType& type) { if (type & parallelAbility()) { mParallelType = type; switch (type) { case ParallelType::SerialOnly: - mPredictFunction = &GWDR::predictSerial; - mFitFunction = &GWDR::fitSerial; - mIndepVarCriterionFunction = &GWDR::indepVarCriterionSerial; + mPredictFunction = &SDR::predictSerial; + mFitFunction = &SDR::fitSerial; + mIndepVarCriterionFunction = &SDR::indepVarCriterionSerial; break; #ifdef ENABLE_OPENMP case ParallelType::OpenMP: - mPredictFunction = &GWDR::predictOmp; - mFitFunction = &GWDR::fitOmp; - mIndepVarCriterionFunction= &GWDR::indepVarCriterionOmp; + mPredictFunction = &SDR::predictOmp; + mFitFunction = &SDR::fitOmp; + mIndepVarCriterionFunction= &SDR::indepVarCriterionOmp; break; #endif default: - mPredictFunction = &GWDR::predictSerial; - mFitFunction = &GWDR::fitSerial; - mIndepVarCriterionFunction = &GWDR::indepVarCriterionSerial; + mPredictFunction = &SDR::predictSerial; + mFitFunction = &SDR::fitSerial; + mIndepVarCriterionFunction = &SDR::indepVarCriterionSerial; break; } } setBandwidthCriterionType(mBandwidthCriterionType); } -bool GWDR::isValid() +bool SDR::isValid() { if (SpatialAlgorithm::isValid()) { @@ -762,10 +762,10 @@ bool GWDR::isValid() else return false; } -double GWDRBandwidthOptimizer::criterion_function(const gsl_vector* bws, void* params) +double SDRBandwidthOptimizer::criterion_function(const gsl_vector* bws, void* params) { Parameter* p = static_cast(params); - GWDR* instance = p->instance; + SDR* instance = p->instance; const vector& bandwidths = *(p->bandwidths); double nFeature = double(p->featureCount); for (size_t m = 0; m < bandwidths.size(); m++) @@ -776,7 +776,7 @@ double GWDRBandwidthOptimizer::criterion_function(const gsl_vector* bws, void* p return instance->bandwidthCriterion(bandwidths); } -const int GWDRBandwidthOptimizer::optimize(GWDR* instance, uword featureCount, size_t maxIter, double eps, double step) +const int SDRBandwidthOptimizer::optimize(SDR* instance, uword featureCount, size_t maxIter, double eps, double step) { size_t nDim = mBandwidths.size(); gsl_multimin_fminimizer* minimizer = gsl_multimin_fminimizer_alloc(gsl_multimin_fminimizer_nmsimplex2rand, nDim); diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index c3a0e58e..3ab4ad2e 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -69,11 +69,11 @@ add_test( COMMAND $ --success ) -add_executable(testGWDR testGWDR.cpp) -target_link_libraries(testGWDR PRIVATE gwmodel londonhp100 telegram ${ARMADILLO_LIBRARIES} Catch2::Catch2WithMain) +add_executable(testSDR testSDR.cpp) +target_link_libraries(testSDR PRIVATE gwmodel londonhp100 telegram ${ARMADILLO_LIBRARIES} Catch2::Catch2WithMain) add_test( - NAME testGWDR - COMMAND $ --success + NAME testSDR + COMMAND $ --success ) add_executable(testGWRMultiscale testGWRMultiscale.cpp) diff --git a/test/testGWDR.cpp b/test/testSDR.cpp similarity index 89% rename from test/testGWDR.cpp rename to test/testSDR.cpp index 4b3cfe3b..e143d839 100644 --- a/test/testGWDR.cpp +++ b/test/testSDR.cpp @@ -4,7 +4,7 @@ #include #include #include -#include "gwmodelpp/GWDR.h" +#include "gwmodelpp/SDR.h" #include "gwmodelpp/spatialweight/OneDimDistance.h" #include "gwmodelpp/spatialweight/BandwidthWeight.h" #include "gwmodelpp/spatialweight/SpatialWeight.h" @@ -15,11 +15,11 @@ using namespace std; using namespace arma; using namespace gwm; -class GWDRTerminateCheckTelegram : public TerminateCheckTelegram +class SDRTerminateCheckTelegram : public TerminateCheckTelegram { public: - GWDRTerminateCheckTelegram(std::string breakStage, std::size_t breakProgress) : TerminateCheckTelegram(breakStage, breakProgress) {} + SDRTerminateCheckTelegram(std::string breakStage, std::size_t breakProgress) : TerminateCheckTelegram(breakStage, breakProgress) {} void print(std::string message, LogLevel level, std::string fun_name, std::string file_name) override { @@ -33,7 +33,7 @@ class GWDRTerminateCheckTelegram : public TerminateCheckTelegram std::string last; }; -TEST_CASE("GWDR: basic flow") +TEST_CASE("SDR: basic flow") { mat londonhp100_coord, londonhp100_data; vector londonhp100_fields; @@ -54,7 +54,7 @@ TEST_CASE("GWDR: basic flow") vec y = londonhp100_data.col(0); mat x = join_rows(ones(londonhp100_data.n_rows), londonhp100_data.cols(1, 3)); - GWDR algorithm; + SDR algorithm; algorithm.setCoords(londonhp100_coord); algorithm.setDependentVariable(y); algorithm.setIndependentVariables(x); @@ -70,7 +70,7 @@ TEST_CASE("GWDR: basic flow") REQUIRE(algorithm.hasIntercept() == true); } -// TEST_CASE("GWDR: basic flow with bandwidth optimization (CV)") +// TEST_CASE("SDR: basic flow with bandwidth optimization (CV)") // { // mat londonhp100_coord, londonhp100_data; // vector londonhp100_fields; @@ -91,14 +91,14 @@ TEST_CASE("GWDR: basic flow") // vec y = londonhp100_data.col(0); // mat x = join_rows(ones(londonhp100_data.n_rows), londonhp100_data.cols(1, 3)); -// GWDR algorithm; +// SDR algorithm; // algorithm.setCoords(londonhp100_coord); // algorithm.setDependentVariable(y); // algorithm.setIndependentVariables(x); // algorithm.setSpatialWeights(spatials); // algorithm.setEnableBandwidthOptimize(true); // algorithm.setBandwidthOptimizeStep(0.01); -// algorithm.setBandwidthCriterionType(GWDR::CV); +// algorithm.setBandwidthCriterionType(SDR::CV); // algorithm.setHasHatMatrix(true); // REQUIRE_NOTHROW(algorithm.fit()); @@ -107,7 +107,7 @@ TEST_CASE("GWDR: basic flow") // // REQUIRE_THAT(spatialWeights[1].weight()->bandwidth(), Catch::Matchers::WithinAbs(2550816, 1e-12)); // } -TEST_CASE("GWDR: basic flow with bandwidth optimization (AIC)") +TEST_CASE("SDR: basic flow with bandwidth optimization (AIC)") { mat londonhp100_coord, londonhp100_data; vector londonhp100_fields; @@ -128,13 +128,13 @@ TEST_CASE("GWDR: basic flow with bandwidth optimization (AIC)") vec y = londonhp100_data.col(0); mat x = join_rows(ones(londonhp100_data.n_rows), londonhp100_data.cols(1, 3)); - GWDR algorithm; + SDR algorithm; algorithm.setCoords(londonhp100_coord); algorithm.setDependentVariable(y); algorithm.setIndependentVariables(x); algorithm.setSpatialWeights(spatials); algorithm.setEnableBandwidthOptimize(true); - algorithm.setBandwidthCriterionType(GWDR::AIC); + algorithm.setBandwidthCriterionType(SDR::AIC); algorithm.setHasHatMatrix(true); REQUIRE_NOTHROW(algorithm.fit()); @@ -143,7 +143,7 @@ TEST_CASE("GWDR: basic flow with bandwidth optimization (AIC)") REQUIRE_THAT(spatialWeights[1].weight()->bandwidth(), Catch::Matchers::WithinAbs(189, 1e-12)); } -TEST_CASE("GWDR: basic flow with independent variable selection") +TEST_CASE("SDR: basic flow with independent variable selection") { mat londonhp100_coord, londonhp100_data; vector londonhp100_fields; @@ -164,13 +164,13 @@ TEST_CASE("GWDR: basic flow with independent variable selection") vec y = londonhp100_data.col(0); mat x = join_rows(ones(londonhp100_data.n_rows), londonhp100_data.cols(1, 3)); - GWDR algorithm; + SDR algorithm; algorithm.setCoords(londonhp100_coord); algorithm.setDependentVariable(y); algorithm.setIndependentVariables(x); algorithm.setSpatialWeights(spatials); algorithm.setEnableIndepVarSelect(true); - algorithm.setBandwidthCriterionType(GWDR::AIC); + algorithm.setBandwidthCriterionType(SDR::AIC); algorithm.setHasHatMatrix(true); REQUIRE_NOTHROW(algorithm.fit()); @@ -193,7 +193,7 @@ TEST_CASE("GWDR: basic flow with independent variable selection") } #ifdef ENABLE_OPENMP -TEST_CASE("GWDR: basic flow (multithread)") +TEST_CASE("SDR: basic flow (multithread)") { mat londonhp100_coord, londonhp100_data; vector londonhp100_fields; @@ -214,14 +214,14 @@ TEST_CASE("GWDR: basic flow (multithread)") vec y = londonhp100_data.col(0); mat x = join_rows(ones(londonhp100_data.n_rows), londonhp100_data.cols(1, 3)); - GWDR algorithm; + SDR algorithm; algorithm.setCoords(londonhp100_coord); algorithm.setDependentVariable(y); algorithm.setIndependentVariables(x); algorithm.setSpatialWeights(spatials); algorithm.setEnableBandwidthOptimize(true); algorithm.setEnableIndepVarSelect(true); - algorithm.setBandwidthCriterionType(GWDR::AIC); + algorithm.setBandwidthCriterionType(SDR::AIC); algorithm.setHasHatMatrix(true); algorithm.setParallelType(ParallelType::OpenMP); REQUIRE_NOTHROW(algorithm.fit()); @@ -255,7 +255,7 @@ TEST_CASE("GWDR: basic flow (multithread)") #endif // #ifdef ENABLE_OPENMP -// TEST_CASE("GWDR: basic flow with bandwidth optimization (CV, multithread)") +// TEST_CASE("SDR: basic flow with bandwidth optimization (CV, multithread)") // { // mat londonhp100_coord, londonhp100_data; // vector londonhp100_fields; @@ -276,14 +276,14 @@ TEST_CASE("GWDR: basic flow (multithread)") // vec y = londonhp100_data.col(0); // mat x = join_rows(ones(londonhp100_data.n_rows), londonhp100_data.cols(1, 3)); -// GWDR algorithm; +// SDR algorithm; // algorithm.setCoords(londonhp100_coord); // algorithm.setDependentVariable(y); // algorithm.setIndependentVariables(x); // algorithm.setSpatialWeights(spatials); // algorithm.setEnableBandwidthOptimize(true); // algorithm.setBandwidthOptimizeStep(0.01); -// algorithm.setBandwidthCriterionType(GWDR::CV); +// algorithm.setBandwidthCriterionType(SDR::CV); // algorithm.setHasHatMatrix(true); // algorithm.setParallelType(ParallelType::OpenMP); // REQUIRE_NOTHROW(algorithm.fit()); @@ -295,7 +295,7 @@ TEST_CASE("GWDR: basic flow (multithread)") // #endif -TEST_CASE("GWDR: cancel") +TEST_CASE("SDR: cancel") { mat londonhp100_coord, londonhp100_data; vector londonhp100_fields; @@ -334,8 +334,8 @@ TEST_CASE("GWDR: cancel") for (auto &&stage : fit_stages) { cout << "Stage: " << stage.first << " (" << stage.second << ")\n"; - auto telegram = make_unique(stage.first, stage.second); - GWDR algorithm; + auto telegram = make_unique(stage.first, stage.second); + SDR algorithm; algorithm.setTelegram(std::move(telegram)); algorithm.setCoords(londonhp100_coord); algorithm.setDependentVariable(y); @@ -343,7 +343,7 @@ TEST_CASE("GWDR: cancel") algorithm.setSpatialWeights(spatials); algorithm.setEnableBandwidthOptimize(true); algorithm.setEnableIndepVarSelect(true); - algorithm.setBandwidthCriterionType(GWDR::CV); + algorithm.setBandwidthCriterionType(SDR::CV); algorithm.setHasHatMatrix(true); REQUIRE_NOTHROW(algorithm.fit()); REQUIRE(algorithm.status() == Status::Terminated); @@ -355,8 +355,8 @@ TEST_CASE("GWDR: cancel") for (auto &&stage : fit_stages) { cout << "Stage: " << stage.first << " (" << stage.second << ")\n"; - auto telegram = make_unique(stage.first, stage.second); - GWDR algorithm; + auto telegram = make_unique(stage.first, stage.second); + SDR algorithm; algorithm.setTelegram(std::move(telegram)); algorithm.setCoords(londonhp100_coord); algorithm.setDependentVariable(y); @@ -364,7 +364,7 @@ TEST_CASE("GWDR: cancel") algorithm.setSpatialWeights(spatials); algorithm.setEnableBandwidthOptimize(true); algorithm.setEnableIndepVarSelect(true); - algorithm.setBandwidthCriterionType(GWDR::AIC); + algorithm.setBandwidthCriterionType(SDR::AIC); algorithm.setHasHatMatrix(true); REQUIRE_NOTHROW(algorithm.fit()); REQUIRE(algorithm.status() == Status::Terminated); @@ -375,8 +375,8 @@ TEST_CASE("GWDR: cancel") { for (auto &&stage : fit_stages) { - auto telegram = make_unique(stage.first, stage.second); - GWDR algorithm; + auto telegram = make_unique(stage.first, stage.second); + SDR algorithm; algorithm.setTelegram(std::move(telegram)); algorithm.setCoords(londonhp100_coord); algorithm.setDependentVariable(y); @@ -384,7 +384,7 @@ TEST_CASE("GWDR: cancel") algorithm.setSpatialWeights(spatials); algorithm.setEnableBandwidthOptimize(true); algorithm.setEnableIndepVarSelect(true); - algorithm.setBandwidthCriterionType(GWDR::AIC); + algorithm.setBandwidthCriterionType(SDR::AIC); algorithm.setHasHatMatrix(true); REQUIRE_NOTHROW(algorithm.fit()); REQUIRE_NOTHROW(algorithm.predict(londonhp100_coord)); @@ -398,8 +398,8 @@ TEST_CASE("GWDR: cancel") for (auto &&stage : fit_stages) { cout << "Stage: " << stage.first << " (" << stage.second << ")\n"; - auto telegram = make_unique(stage.first, stage.second); - GWDR algorithm; + auto telegram = make_unique(stage.first, stage.second); + SDR algorithm; algorithm.setTelegram(std::move(telegram)); algorithm.setCoords(londonhp100_coord); algorithm.setDependentVariable(y); @@ -407,7 +407,7 @@ TEST_CASE("GWDR: cancel") algorithm.setSpatialWeights(spatials); algorithm.setEnableBandwidthOptimize(true); algorithm.setEnableIndepVarSelect(true); - algorithm.setBandwidthCriterionType(GWDR::CV); + algorithm.setBandwidthCriterionType(SDR::CV); algorithm.setHasHatMatrix(true); algorithm.setParallelType(ParallelType::OpenMP); REQUIRE_NOTHROW(algorithm.fit()); @@ -420,8 +420,8 @@ TEST_CASE("GWDR: cancel") for (auto &&stage : fit_stages) { cout << "Stage: " << stage.first << " (" << stage.second << ")\n"; - auto telegram = make_unique(stage.first, stage.second); - GWDR algorithm; + auto telegram = make_unique(stage.first, stage.second); + SDR algorithm; algorithm.setTelegram(std::move(telegram)); algorithm.setCoords(londonhp100_coord); algorithm.setDependentVariable(y); @@ -429,7 +429,7 @@ TEST_CASE("GWDR: cancel") algorithm.setSpatialWeights(spatials); algorithm.setEnableBandwidthOptimize(true); algorithm.setEnableIndepVarSelect(true); - algorithm.setBandwidthCriterionType(GWDR::AIC); + algorithm.setBandwidthCriterionType(SDR::AIC); algorithm.setHasHatMatrix(true); algorithm.setParallelType(ParallelType::OpenMP); REQUIRE_NOTHROW(algorithm.fit()); @@ -441,8 +441,8 @@ TEST_CASE("GWDR: cancel") { for (auto &&stage : fit_stages) { - auto telegram = make_unique(stage.first, stage.second); - GWDR algorithm; + auto telegram = make_unique(stage.first, stage.second); + SDR algorithm; algorithm.setTelegram(std::move(telegram)); algorithm.setCoords(londonhp100_coord); algorithm.setDependentVariable(y); @@ -450,7 +450,7 @@ TEST_CASE("GWDR: cancel") algorithm.setSpatialWeights(spatials); algorithm.setEnableBandwidthOptimize(true); algorithm.setEnableIndepVarSelect(true); - algorithm.setBandwidthCriterionType(GWDR::CV); + algorithm.setBandwidthCriterionType(SDR::CV); algorithm.setHasHatMatrix(true); algorithm.setParallelType(ParallelType::OpenMP); REQUIRE_NOTHROW(algorithm.fit()); From 1f153f89befd36fd12ad508dc4c77e6a7b4e2ffd Mon Sep 17 00:00:00 2001 From: HPDell Date: Wed, 7 Feb 2024 12:04:35 +0000 Subject: [PATCH 2/6] edit: update docs --- Doxyfile | 2 +- Doxyfile.zh-Hans | 2 +- docs/conf.py | 1 + .../zh_CN/LC_MESSAGES/api/classgwm_1_1SDR.po | 95 +++++++++++++++++++ .../api/classgwm_1_1SDRBandwidthOptimizer.po | 57 +++++++++++ 5 files changed, 155 insertions(+), 2 deletions(-) create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1SDR.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1SDRBandwidthOptimizer.po diff --git a/Doxyfile b/Doxyfile index 55ab784e..a299702f 100644 --- a/Doxyfile +++ b/Doxyfile @@ -577,7 +577,7 @@ INTERNAL_DOCS = NO # (including Cygwin) and Mac users are advised to set this option to NO. # The default value is: system dependent. -CASE_SENSE_NAMES = NO +CASE_SENSE_NAMES = YES # If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with # their full class and namespace scopes in the documentation. If set to YES, the diff --git a/Doxyfile.zh-Hans b/Doxyfile.zh-Hans index 3529ebdc..ba5461e3 100644 --- a/Doxyfile.zh-Hans +++ b/Doxyfile.zh-Hans @@ -577,7 +577,7 @@ INTERNAL_DOCS = NO # (including Cygwin) and Mac users are advised to set this option to NO. # The default value is: system dependent. -CASE_SENSE_NAMES = NO +CASE_SENSE_NAMES = YES # If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with # their full class and namespace scopes in the documentation. If set to YES, the diff --git a/docs/conf.py b/docs/conf.py index 446b8cd5..9c85af89 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -211,6 +211,7 @@ INPUT = ../include MACRO_EXPANSION = YES OUTPUT_LANGUAGE = {lang} + CASE_SENSE_NAMES = YES """.format(lang=language_map.get(doxygen_language, 'en'))) } diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1SDR.po b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1SDR.po new file mode 100644 index 00000000..79e9cf9c --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1SDR.po @@ -0,0 +1,95 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/classgwm_1_1SDR.rst:4 +msgid "Class SDR" +msgstr "类 SDR" + +#: ../../api/classgwm_1_1SDR.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_SDR.h`" +msgstr "定义于 :ref:`file_include_gwmodelpp_SDR.h`" + +#: ../../api/classgwm_1_1SDR.rst:10 +msgid "Inheritance Relationships" +msgstr "继承关系" + +#: ../../api/classgwm_1_1SDR.rst:13 +msgid "Base Types" +msgstr "基类" + +#: ../../api/classgwm_1_1SDR.rst:15 +msgid "" +"``public gwm::SpatialAlgorithm`` " +"(:ref:`exhale_class_classgwm_1_1SpatialAlgorithm`)" +msgstr "" + +#: ../../api/classgwm_1_1SDR.rst:16 +msgid "" +"``public gwm::IRegressionAnalysis`` " +"(:ref:`exhale_struct_structgwm_1_1IRegressionAnalysis`)" +msgstr "" + +#: ../../api/classgwm_1_1SDR.rst:17 +msgid "" +"``public gwm::IVarialbeSelectable`` " +"(:ref:`exhale_struct_structgwm_1_1IVarialbeSelectable`)" +msgstr "" + +#: ../../api/classgwm_1_1SDR.rst:18 +msgid "" +"``public gwm::IParallelizable`` " +"(:ref:`exhale_struct_structgwm_1_1IParallelizable`)" +msgstr "" + +#: ../../api/classgwm_1_1SDR.rst:19 +msgid "" +"``public gwm::IParallelOpenmpEnabled`` " +"(:ref:`exhale_struct_structgwm_1_1IParallelOpenmpEnabled`)" +msgstr "" + +#: ../../api/classgwm_1_1SDR.rst:23 +msgid "Class Documentation" +msgstr "类文档" + +#: ../../api/classgwm_1_1SDR.rst +msgid "Public Types" +msgstr "公有类型" + +#: ../../api/classgwm_1_1SDR.rst +msgid "Public Functions" +msgstr "公有方法" + +#: ../../api/classgwm_1_1SDR.rst +msgid "Returns" +msgstr "返回" + +#: ../../api/classgwm_1_1SDR.rst +msgid "Parameters" +msgstr "参数" + +#: ../../api/classgwm_1_1SDR.rst +msgid "Public Static Functions" +msgstr "公有静态方法" + +#: ../../api/classgwm_1_1SDR.rst +msgid "Protected Functions" +msgstr "保护方法" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1SDRBandwidthOptimizer.po b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1SDRBandwidthOptimizer.po new file mode 100644 index 00000000..7220322e --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1SDRBandwidthOptimizer.po @@ -0,0 +1,57 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/classgwm_1_1SDRBandwidthOptimizer.rst:4 +msgid "Class SDRBandwidthOptimizer" +msgstr "类 SDRBandwidthOptimizer" + +#: ../../api/classgwm_1_1SDRBandwidthOptimizer.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_SDR.h`" +msgstr "定义于 :ref:`file_include_gwmodelpp_SDR.h`" + +#: ../../api/classgwm_1_1SDRBandwidthOptimizer.rst:10 +msgid "Nested Relationships" +msgstr "嵌套关系" + +#: ../../api/classgwm_1_1SDRBandwidthOptimizer.rst:14 +msgid "Nested Types" +msgstr "嵌套类型" + +#: ../../api/classgwm_1_1SDRBandwidthOptimizer.rst:16 +msgid ":ref:`exhale_struct_structgwm_1_1SDRBandwidthOptimizer_1_1Parameter`" +msgstr "" + +#: ../../api/classgwm_1_1SDRBandwidthOptimizer.rst:20 +msgid "Class Documentation" +msgstr "类文档" + +#: ../../api/classgwm_1_1SDRBandwidthOptimizer.rst +msgid "Public Functions" +msgstr "公有方法" + +#: ../../api/classgwm_1_1SDRBandwidthOptimizer.rst +msgid "Public Static Functions" +msgstr "公有静态方法" + +#: ../../api/classgwm_1_1SDRBandwidthOptimizer.rst +msgid "Public Members" +msgstr "公有成员" + From 86b600dea049f67b5dca702776bc1cf56d70a09e Mon Sep 17 00:00:00 2001 From: HPDell Date: Wed, 7 Feb 2024 12:25:33 +0000 Subject: [PATCH 3/6] edit: update translation messages --- .../LC_MESSAGES/api/classGWRBasicGpuTask.po | 49 +++++++ .../LC_MESSAGES/api/classIGWRBasicGpuTask.po | 49 +++++++ .../zh_CN/LC_MESSAGES/api/classStdTelegram.po | 49 +++++++ .../zh_CN/LC_MESSAGES/api/classcubase.po | 65 +++++++++ .../zh_CN/LC_MESSAGES/api/classcubatched.po | 41 ++++++ .../zh_CN/LC_MESSAGES/api/classcumat.po | 57 ++++++++ .../locale/zh_CN/LC_MESSAGES/api/classcuop.po | 49 +++++++ .../LC_MESSAGES/api/classcuop__diagmul.po | 37 +++++ .../zh_CN/LC_MESSAGES/api/classcuop__inv.po | 37 +++++ .../LC_MESSAGES/api/classcuop__matmul.po | 37 +++++ ..._1_1Mat_00_01cubase_1_1Type_1_1Mat_01_4.po | 37 +++++ .../zh_CN/LC_MESSAGES/api/classcuop__trans.po | 57 ++++++++ .../zh_CN/LC_MESSAGES/api/classcustride.po | 57 ++++++++ .../zh_CN/LC_MESSAGES/api/classcuview.po | 45 ++++++ .../api/classcuview_3_01custride_01_4.po | 45 ++++++ .../LC_MESSAGES/api/classgwm_1_1Algorithm.po | 30 ++-- .../api/classgwm_1_1BandwidthWeight.po | 28 ++-- .../api/classgwm_1_1CRSDistance.po | 32 ++--- .../api/classgwm_1_1CRSSTDistance.po | 65 +++++++++ .../LC_MESSAGES/api/classgwm_1_1Distance.po | 42 +++--- .../zh_CN/LC_MESSAGES/api/classgwm_1_1GTWR.po | 95 ++++++++++++ .../zh_CN/LC_MESSAGES/api/classgwm_1_1GWDA.po | 85 +++++++++++ .../LC_MESSAGES/api/classgwm_1_1GWRBase.po | 39 ++--- .../LC_MESSAGES/api/classgwm_1_1GWRBasic.po | 42 +++--- .../api/classgwm_1_1GWRMultiscale.po | 39 ++--- .../LC_MESSAGES/api/classgwm_1_1Logger.po | 49 +++++-- .../api/classgwm_1_1MinkwoskiDistance.po | 25 ++-- .../api/classgwm_1_1SpatialAlgorithm.po | 24 ++-- .../classgwm_1_1SpatialMonoscaleAlgorithm.po | 25 ++-- .../LC_MESSAGES/api/classgwm_1_1Weight.po | 29 ++-- ...m_8h_1a133188f010eccb753b0451a52fe03a9a.po | 33 +++++ ...m_8h_1a3e7277692bce66fb31ec0fafdf2c2f44.po | 33 +++++ ...m_8h_1a517c29498b507893108fb2961e3140d7.po | 33 +++++ ...m_8h_1a63405819e78dea96e294ff200c113a37.po | 33 +++++ ...m_8h_1a70ae4960df6ada8395844443dca7f5cc.po | 37 +++++ ...m_8h_1a78536ea976dfe7442b894b9c0ea3d69c.po | 33 +++++ ...m_8h_1a81aeca29b10fe0fe76ad2a31d9816c2f.po | 33 +++++ ...m_8h_1a86d76dda1788cd388f5033ec6e989d9c.po | 33 +++++ ...m_8h_1a9a6822a722a1654fe9358651500657b2.po | 33 +++++ ...m_8h_1aa0c46696737698397f560901beb58425.po | 33 +++++ ...m_8h_1abd85b0789ff6ea0203e7b326c852a0bb.po | 37 +++++ ...m_8h_1af8fe0908c1e018bf2839d0958be6a708.po | 37 +++++ ...s_8h_1a98e5ae1fe30ec3f2c1d7f60ffaf70e8e.po | 33 +++++ ...s_8h_1af956e3938f5abff900fb99c4a25446a5.po | 33 +++++ ...R_8h_1a4ee22f0a6287445f494fa646d5f9cec5.po | 33 +++++ ...e_8h_1a4de4b07e497281666f6e679e8dfb3f34.po | 33 +++++ ...e_8h_1ac91c337e12bc54e52a6afa7dcd3541a0.po | 33 +++++ ...e_8h_1aeea4650739600703f02c2211eebabad2.po | 33 +++++ ...e_8h_1ac255781338c0f15a823cefaca6911599.po | 33 +++++ ...k_8h_1ab09548a5cce8126021f32a1468f4e75f.po | 33 +++++ ...e_8h_1a3f837f4b03b05c949efd517a382ef535.po | 33 +++++ .../zh_CN/LC_MESSAGES/api/dir_include.po | 19 ++- .../api/dir_include_gwmodelcuda.po | 49 +++++++ .../LC_MESSAGES/api/dir_include_gwmodelpp.po | 88 +++++++----- .../dir_include_gwmodelpp_spatialweight.po | 43 ++++-- ...ir_include_gwmodelpp_spatialweight_cuda.po | 52 +++++++ .../api/dir_include_gwmodelpp_utils.po | 47 ++++++ ...s_8h_1a9b4ae87cab1052ee0eebebe5a1ae19d9.po | 33 +++++ .../LC_MESSAGES/api/file_include_gwmodel.h.po | 112 +++++++++------ ...e_include_gwmodelcuda_GWRBasicGpuTask.h.po | 73 ++++++++++ ..._include_gwmodelcuda_IGWRBasicGpuTask.h.po | 79 ++++++++++ .../file_include_gwmodelcuda_StdTelegram.h.po | 79 ++++++++++ .../api/file_include_gwmodelpp_Algorithm.h.po | 102 +++++++++++-- .../api/file_include_gwmodelpp_GTWR.h.po | 119 +++++++++++++++ .../api/file_include_gwmodelpp_GWDA.h.po | 75 ++++++++++ .../api/file_include_gwmodelpp_GWRBase.h.po | 39 ++--- .../api/file_include_gwmodelpp_GWRBasic.h.po | 49 ++++--- .../file_include_gwmodelpp_GWRMultiscale.h.po | 70 +++++---- ...nclude_gwmodelpp_IBandwidthSelectable.h.po | 64 ++++++--- ...lude_gwmodelpp_IMultivariableAnalysis.h.po | 25 ++-- ...ile_include_gwmodelpp_IParallelizable.h.po | 58 +++++--- ...include_gwmodelpp_IRegressionAnalysis.h.po | 24 ++-- ...include_gwmodelpp_IVarialbeSelectable.h.po | 64 ++++++--- .../api/file_include_gwmodelpp_Logger.h.po | 81 +++++++---- ...nclude_gwmodelpp_RegressionDiagnostic.h.po | 33 +++-- .../api/file_include_gwmodelpp_SDR.h.po | 119 +++++++++++++++ ...le_include_gwmodelpp_SpatialAlgorithm.h.po | 16 ++- ...e_gwmodelpp_SpatialMonoscaleAlgorithm.h.po | 35 +++-- .../api/file_include_gwmodelpp_Status.h.po | 71 +++++++++ ...ude_gwmodelpp_VariableForwardSelector.h.po | 20 +-- ...e_gwmodelpp_spatialweight_CRSDistance.h.po | 30 ++-- ...gwmodelpp_spatialweight_CRSSTDistance.h.po | 88 ++++++++++++ ...wmodelpp_spatialweight_OneDimDistance.h.po | 28 ++-- ...gwmodelpp_spatialweight_SpatialWeight.h.po | 70 +++++---- ...tialweight_cuda_BandwidthWeightKernel.h.po | 58 ++++++++ ..._spatialweight_cuda_CRSDistanceKernel.h.po | 60 ++++++++ ...patialweight_cuda_ISpatialCudaEnabled.h.po | 58 ++++++++ ...ile_include_gwmodelpp_utils_CudaUtils.h.po | 91 ++++++++++++ .../file_include_gwmodelpp_utils_cumat.hpp.po | 119 +++++++++++++++ ...l_8h_1a80af99b3d9c47285057b5757e39cde91.po | 35 +++++ ...l_8h_1acf021181612760b19cb9c5a3428765d1.po | 35 +++++ ...l_8h_1af589c252f084801a3e3fa00ee16e6e82.po | 35 +++++ ...s_8h_1a138a22974a45a8f0f5138bee9fbfe945.po | 33 +++++ ...s_8h_1a983eb15543aa503ed6debbbacd80a9ba.po | 33 +++++ ...s_8h_1ab482795defda1d6e788779ff084ea367.po | 33 +++++ ...s_8h_1aca8809fc28cec1e825e8889d7ee6d58a.po | 33 +++++ ...s_8h_1afbdb4d184d3ecef8e1d0fbc640e962f4.po | 33 +++++ ...k_8h_1a4487a31588c77e3eceebf257737787d8.po | 33 +++++ ...k_8h_1a9739dbf3a5bee2b7bed9fb1bf83cca7a.po | 33 +++++ ...k_8h_1acd31edf00fab8b297f6c01bd12adfc24.po | 33 +++++ ...r_8h_1a4c6d814c9e79f32979fa8c78c2024ff9.po | 33 +++++ .../zh_CN/LC_MESSAGES/api/namespace_gwm.po | 136 +++++++++++------- .../zh_CN/LC_MESSAGES/api/page_deprecated.po | 21 ++- .../locale/zh_CN/LC_MESSAGES/api/page_todo.po | 18 ++- ...e_include_gwmodelcuda_GWRBasicGpuTask.h.po | 32 +++++ ..._include_gwmodelcuda_IGWRBasicGpuTask.h.po | 32 +++++ ..._file_include_gwmodelcuda_StdTelegram.h.po | 32 +++++ ...m_listing_file_include_gwmodelpp_GTWR.h.po | 31 ++++ ...m_listing_file_include_gwmodelpp_GWDA.h.po | 31 ++++ ...am_listing_file_include_gwmodelpp_SDR.h.po | 31 ++++ ...listing_file_include_gwmodelpp_Status.h.po | 31 ++++ ...gwmodelpp_spatialweight_CRSSTDistance.h.po | 32 +++++ ...tialweight_cuda_BandwidthWeightKernel.h.po | 32 +++++ ..._spatialweight_cuda_CRSDistanceKernel.h.po | 32 +++++ ...patialweight_cuda_ISpatialCudaEnabled.h.po | 32 +++++ ...ile_include_gwmodelpp_utils_CudaUtils.h.po | 32 +++++ ..._file_include_gwmodelpp_utils_cumat.hpp.po | 32 +++++ .../locale/zh_CN/LC_MESSAGES/api/reference.po | 17 ++- .../api/structISpatialCudaEnabled.po | 39 +++++ .../zh_CN/LC_MESSAGES/api/structcurange.po | 37 +++++ .../zh_CN/LC_MESSAGES/api/structcutraits.po | 37 +++++ .../structgwm_1_1CRSDistance_1_1Parameter.po | 29 ++-- .../api/structgwm_1_1IBandwidthSelectable.po | 38 +++-- .../structgwm_1_1IMultivariableAnalysis.po | 19 ++- .../api/structgwm_1_1IParallelCudaEnabled.po | 29 +++- .../structgwm_1_1IParallelOpenmpEnabled.po | 42 ++++-- .../api/structgwm_1_1IParallelizable.po | 42 ++++-- .../api/structgwm_1_1IRegressionAnalysis.po | 24 ++-- .../LC_MESSAGES/api/structgwm_1_1ITelegram.po | 53 +++++++ .../api/structgwm_1_1IVarialbeSelectable.po | 23 ++- ...m_1_1SDRBandwidthOptimizer_1_1Parameter.po | 47 ++++++ 131 files changed, 5160 insertions(+), 710 deletions(-) create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/classGWRBasicGpuTask.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/classIGWRBasicGpuTask.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/classStdTelegram.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/classcubase.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/classcubatched.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/classcumat.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/classcuop.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/classcuop__diagmul.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/classcuop__inv.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/classcuop__matmul.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/classcuop__matmul_3_01A_00_01B_00_01cubase_1_1Type_1_1Mat_00_01cubase_1_1Type_1_1Mat_01_4.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/classcuop__trans.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/classcustride.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/classcuview.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/classcuview_3_01custride_01_4.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1CRSSTDistance.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GTWR.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GWDA.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a133188f010eccb753b0451a52fe03a9a.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a3e7277692bce66fb31ec0fafdf2c2f44.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a517c29498b507893108fb2961e3140d7.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a63405819e78dea96e294ff200c113a37.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a70ae4960df6ada8395844443dca7f5cc.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a78536ea976dfe7442b894b9c0ea3d69c.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a81aeca29b10fe0fe76ad2a31d9816c2f.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a86d76dda1788cd388f5033ec6e989d9c.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a9a6822a722a1654fe9358651500657b2.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1aa0c46696737698397f560901beb58425.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1abd85b0789ff6ea0203e7b326c852a0bb.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1af8fe0908c1e018bf2839d0958be6a708.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/define_CudaUtils_8h_1a98e5ae1fe30ec3f2c1d7f60ffaf70e8e.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/define_CudaUtils_8h_1af956e3938f5abff900fb99c4a25446a5.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/define_GTWR_8h_1a4ee22f0a6287445f494fa646d5f9cec5.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/define_GWRMultiscale_8h_1a4de4b07e497281666f6e679e8dfb3f34.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/define_GWRMultiscale_8h_1ac91c337e12bc54e52a6afa7dcd3541a0.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/define_GWRMultiscale_8h_1aeea4650739600703f02c2211eebabad2.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/define_IBandwidthSelectable_8h_1ac255781338c0f15a823cefaca6911599.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/define_IGWRBasicGpuTask_8h_1ab09548a5cce8126021f32a1468f4e75f.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/define_IVarialbeSelectable_8h_1a3f837f4b03b05c949efd517a382ef535.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/dir_include_gwmodelcuda.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/dir_include_gwmodelpp_spatialweight_cuda.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/dir_include_gwmodelpp_utils.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/enum_Status_8h_1a9b4ae87cab1052ee0eebebe5a1ae19d9.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelcuda_GWRBasicGpuTask.h.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelcuda_IGWRBasicGpuTask.h.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelcuda_StdTelegram.h.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_GTWR.h.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_GWDA.h.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_SDR.h.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_Status.h.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_spatialweight_CRSSTDistance.h.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_spatialweight_cuda_BandwidthWeightKernel.h.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_spatialweight_cuda_CRSDistanceKernel.h.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_spatialweight_cuda_ISpatialCudaEnabled.h.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_utils_CudaUtils.h.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_utils_cumat.hpp.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/function_BandwidthWeightKernel_8h_1a80af99b3d9c47285057b5757e39cde91.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/function_CRSDistanceKernel_8h_1acf021181612760b19cb9c5a3428765d1.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/function_CRSDistanceKernel_8h_1af589c252f084801a3e3fa00ee16e6e82.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/function_CudaUtils_8h_1a138a22974a45a8f0f5138bee9fbfe945.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/function_CudaUtils_8h_1a983eb15543aa503ed6debbbacd80a9ba.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/function_CudaUtils_8h_1ab482795defda1d6e788779ff084ea367.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/function_CudaUtils_8h_1aca8809fc28cec1e825e8889d7ee6d58a.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/function_CudaUtils_8h_1afbdb4d184d3ecef8e1d0fbc640e962f4.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/function_IGWRBasicGpuTask_8h_1a4487a31588c77e3eceebf257737787d8.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/function_IGWRBasicGpuTask_8h_1a9739dbf3a5bee2b7bed9fb1bf83cca7a.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/function_IGWRBasicGpuTask_8h_1acd31edf00fab8b297f6c01bd12adfc24.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/function_Logger_8h_1a4c6d814c9e79f32979fa8c78c2024ff9.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelcuda_GWRBasicGpuTask.h.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelcuda_IGWRBasicGpuTask.h.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelcuda_StdTelegram.h.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_GTWR.h.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_GWDA.h.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_SDR.h.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_Status.h.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_spatialweight_CRSSTDistance.h.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_spatialweight_cuda_BandwidthWeightKernel.h.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_spatialweight_cuda_CRSDistanceKernel.h.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_spatialweight_cuda_ISpatialCudaEnabled.h.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_utils_CudaUtils.h.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_utils_cumat.hpp.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/structISpatialCudaEnabled.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/structcurange.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/structcutraits.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1ITelegram.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1SDRBandwidthOptimizer_1_1Parameter.po diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/classGWRBasicGpuTask.po b/docs/locale/zh_CN/LC_MESSAGES/api/classGWRBasicGpuTask.po new file mode 100644 index 00000000..29f2d46f --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/classGWRBasicGpuTask.po @@ -0,0 +1,49 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: 2024-02-07 12:21+0000\n" +"Last-Translator: \n" +"Language-Team: zh_CN \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"Generated-By: Babel 2.11.0\n" +"X-Generator: Poedit 3.4.2\n" + +#: ../../api/classGWRBasicGpuTask.rst:4 +msgid "Class GWRBasicGpuTask" +msgstr "类 GWRBasicGpuTask" + +#: ../../api/classGWRBasicGpuTask.rst:6 +msgid "Defined in :ref:`file_include_gwmodelcuda_GWRBasicGpuTask.h`" +msgstr "定义于 :ref:`file_include_gwmodelcuda_GWRBasicGpuTask.h`" + +#: ../../api/classGWRBasicGpuTask.rst:10 +msgid "Inheritance Relationships" +msgstr "继承关系" + +#: ../../api/classGWRBasicGpuTask.rst:13 +msgid "Base Type" +msgstr "基类" + +#: ../../api/classGWRBasicGpuTask.rst:15 +msgid "``public IGWRBasicGpuTask`` (:ref:`exhale_class_classIGWRBasicGpuTask`)" +msgstr "" + +#: ../../api/classGWRBasicGpuTask.rst:19 +msgid "Class Documentation" +msgstr "类文档" + +#: ../../api/classGWRBasicGpuTask.rst +msgid "Public Functions" +msgstr "公有方法" diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/classIGWRBasicGpuTask.po b/docs/locale/zh_CN/LC_MESSAGES/api/classIGWRBasicGpuTask.po new file mode 100644 index 00000000..734e3130 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/classIGWRBasicGpuTask.po @@ -0,0 +1,49 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: 2024-02-07 12:21+0000\n" +"Last-Translator: \n" +"Language-Team: zh_CN \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"Generated-By: Babel 2.11.0\n" +"X-Generator: Poedit 3.4.2\n" + +#: ../../api/classIGWRBasicGpuTask.rst:4 +msgid "Class IGWRBasicGpuTask" +msgstr "类 IGWRBasicGpuTask" + +#: ../../api/classIGWRBasicGpuTask.rst:6 +msgid "Defined in :ref:`file_include_gwmodelcuda_IGWRBasicGpuTask.h`" +msgstr "定义于 :ref:`file_include_gwmodelcuda_IGWRBasicGpuTask.h`" + +#: ../../api/classIGWRBasicGpuTask.rst:10 +msgid "Inheritance Relationships" +msgstr "继承关系" + +#: ../../api/classIGWRBasicGpuTask.rst:13 +msgid "Derived Type" +msgstr "派生类" + +#: ../../api/classIGWRBasicGpuTask.rst:15 +msgid "``public GWRBasicGpuTask`` (:ref:`exhale_class_classGWRBasicGpuTask`)" +msgstr "" + +#: ../../api/classIGWRBasicGpuTask.rst:19 +msgid "Class Documentation" +msgstr "类文档" + +#: ../../api/classIGWRBasicGpuTask.rst +msgid "Public Functions" +msgstr "公有方法" diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/classStdTelegram.po b/docs/locale/zh_CN/LC_MESSAGES/api/classStdTelegram.po new file mode 100644 index 00000000..7bbb7406 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/classStdTelegram.po @@ -0,0 +1,49 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: 2024-02-07 12:21+0000\n" +"Last-Translator: \n" +"Language-Team: zh_CN \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"Generated-By: Babel 2.11.0\n" +"X-Generator: Poedit 3.4.2\n" + +#: ../../api/classStdTelegram.rst:4 +msgid "Class StdTelegram" +msgstr "类 StdTelegram" + +#: ../../api/classStdTelegram.rst:6 +msgid "Defined in :ref:`file_include_gwmodelcuda_StdTelegram.h`" +msgstr "定义于 :ref:`file_include_gwmodelcuda_StdTelegram.h`" + +#: ../../api/classStdTelegram.rst:10 +msgid "Inheritance Relationships" +msgstr "继承关系" + +#: ../../api/classStdTelegram.rst:13 +msgid "Base Type" +msgstr "基类" + +#: ../../api/classStdTelegram.rst:15 +msgid "``public gwm::Logger`` (:ref:`exhale_class_classgwm_1_1Logger`)" +msgstr "" + +#: ../../api/classStdTelegram.rst:19 +msgid "Class Documentation" +msgstr "类文档" + +#: ../../api/classStdTelegram.rst +msgid "Public Functions" +msgstr "公有方法" diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/classcubase.po b/docs/locale/zh_CN/LC_MESSAGES/api/classcubase.po new file mode 100644 index 00000000..620aecc4 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/classcubase.po @@ -0,0 +1,65 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: 2024-02-07 12:11+0000\n" +"Last-Translator: \n" +"Language-Team: zh_CN \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"Generated-By: Babel 2.11.0\n" +"X-Generator: Poedit 3.4.2\n" + +#: ../../api/classcubase.rst:4 +msgid "Class cubase" +msgstr "类 cubase" + +#: ../../api/classcubase.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_utils_cumat.hpp`" +msgstr "在 :ref:`file_include_gwmodelpp_utils_cumat.hpp` 中定义" + +#: ../../api/classcubase.rst:10 +msgid "Inheritance Relationships" +msgstr "继承关系" + +#: ../../api/classcubase.rst:13 +msgid "Derived Types" +msgstr "派生类型" + +#: ../../api/classcubase.rst:15 +msgid "``public cumat`` (:ref:`exhale_class_classcumat`)" +msgstr "" + +#: ../../api/classcubase.rst:16 +msgid "``public custride`` (:ref:`exhale_class_classcustride`)" +msgstr "" + +#: ../../api/classcubase.rst:20 +msgid "Class Documentation" +msgstr "类文件" + +#: ../../api/classcubase.rst +msgid "Public Types" +msgstr "公共类型" + +#: ../../api/classcubase.rst +msgid "Public Functions" +msgstr "公共职能" + +#: ../../api/classcubase.rst +msgid "Public Static Attributes" +msgstr "公共静态属性" + +#: ../../api/classcubase.rst +msgid "Protected Attributes" +msgstr "受保护属性" diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/classcubatched.po b/docs/locale/zh_CN/LC_MESSAGES/api/classcubatched.po new file mode 100644 index 00000000..3009c1b4 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/classcubatched.po @@ -0,0 +1,41 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: 2024-02-07 12:15+0000\n" +"Last-Translator: \n" +"Language-Team: zh_CN \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"Generated-By: Babel 2.11.0\n" +"X-Generator: Poedit 3.4.2\n" + +#: ../../api/classcubatched.rst:4 +msgid "Class cubatched" +msgstr "类 cubatched" + +#: ../../api/classcubatched.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_utils_cumat.hpp`" +msgstr "" + +#: ../../api/classcubatched.rst:10 +msgid "Class Documentation" +msgstr "类文档" + +#: ../../api/classcubatched.rst +msgid "Public Functions" +msgstr "公有方法" + +#: ../../api/classcubatched.rst +msgid "Public Static Attributes" +msgstr "公有静态属性" diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/classcumat.po b/docs/locale/zh_CN/LC_MESSAGES/api/classcumat.po new file mode 100644 index 00000000..3d360c61 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/classcumat.po @@ -0,0 +1,57 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: 2024-02-07 12:16+0000\n" +"Last-Translator: \n" +"Language-Team: zh_CN \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"Generated-By: Babel 2.11.0\n" +"X-Generator: Poedit 3.4.2\n" + +#: ../../api/classcumat.rst:4 +msgid "Class cumat" +msgstr "类 cumat" + +#: ../../api/classcumat.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_utils_cumat.hpp`" +msgstr "" + +#: ../../api/classcumat.rst:10 +msgid "Inheritance Relationships" +msgstr "继承关系" + +#: ../../api/classcumat.rst:13 +msgid "Base Type" +msgstr "基类" + +#: ../../api/classcumat.rst:15 +msgid "``public cubase`` (:ref:`exhale_class_classcubase`)" +msgstr "" + +#: ../../api/classcumat.rst:19 +msgid "Class Documentation" +msgstr "类文档" + +#: ../../api/classcumat.rst +msgid "Public Functions" +msgstr "公有方法" + +#: ../../api/classcumat.rst +msgid "Public Static Attributes" +msgstr "公有静态属性" + +#: ../../api/classcumat.rst +msgid "Protected Attributes" +msgstr "保护属性" diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/classcuop.po b/docs/locale/zh_CN/LC_MESSAGES/api/classcuop.po new file mode 100644 index 00000000..934636ce --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/classcuop.po @@ -0,0 +1,49 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: 2024-02-07 12:17+0000\n" +"Last-Translator: \n" +"Language-Team: zh_CN \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"Generated-By: Babel 2.11.0\n" +"X-Generator: Poedit 3.4.2\n" + +#: ../../api/classcuop.rst:4 +msgid "Class cuop" +msgstr "类 cuop" + +#: ../../api/classcuop.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_utils_cumat.hpp`" +msgstr "定义于 :ref:`file_include_gwmodelpp_utils_cumat.hpp`" + +#: ../../api/classcuop.rst:10 +msgid "Inheritance Relationships" +msgstr "继承关系" + +#: ../../api/classcuop.rst:13 +msgid "Derived Type" +msgstr "派生类" + +#: ../../api/classcuop.rst:15 +msgid "``public cuop_trans< T >`` (:ref:`exhale_class_classcuop__trans`)" +msgstr "" + +#: ../../api/classcuop.rst:19 +msgid "Class Documentation" +msgstr "类文档" + +#: ../../api/classcuop.rst +msgid "Public Types" +msgstr "公有类型" diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/classcuop__diagmul.po b/docs/locale/zh_CN/LC_MESSAGES/api/classcuop__diagmul.po new file mode 100644 index 00000000..5684e9ce --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/classcuop__diagmul.po @@ -0,0 +1,37 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: 2024-02-07 12:17+0000\n" +"Last-Translator: \n" +"Language-Team: zh_CN \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"Generated-By: Babel 2.11.0\n" +"X-Generator: Poedit 3.4.2\n" + +#: ../../api/classcuop__diagmul.rst:4 +msgid "Class cuop_diagmul" +msgstr "类 cuop_diagmul" + +#: ../../api/classcuop__diagmul.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_utils_cumat.hpp`" +msgstr "定义于 :ref:`file_include_gwmodelpp_utils_cumat.hpp`" + +#: ../../api/classcuop__diagmul.rst:10 +msgid "Class Documentation" +msgstr "类文档" + +#: ../../api/classcuop__diagmul.rst +msgid "Public Functions" +msgstr "公有方法" diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/classcuop__inv.po b/docs/locale/zh_CN/LC_MESSAGES/api/classcuop__inv.po new file mode 100644 index 00000000..9bcccf61 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/classcuop__inv.po @@ -0,0 +1,37 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: 2024-02-07 12:18+0000\n" +"Last-Translator: \n" +"Language-Team: zh_CN \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"Generated-By: Babel 2.11.0\n" +"X-Generator: Poedit 3.4.2\n" + +#: ../../api/classcuop__inv.rst:4 +msgid "Class cuop_inv" +msgstr "类 cuop_inv" + +#: ../../api/classcuop__inv.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_utils_cumat.hpp`" +msgstr "定义于 :ref:`file_include_gwmodelpp_utils_cumat.hpp`" + +#: ../../api/classcuop__inv.rst:10 +msgid "Class Documentation" +msgstr "类文档" + +#: ../../api/classcuop__inv.rst +msgid "Public Functions" +msgstr "公有方法" diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/classcuop__matmul.po b/docs/locale/zh_CN/LC_MESSAGES/api/classcuop__matmul.po new file mode 100644 index 00000000..9359bc28 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/classcuop__matmul.po @@ -0,0 +1,37 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: 2024-02-07 12:18+0000\n" +"Last-Translator: \n" +"Language-Team: zh_CN \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"Generated-By: Babel 2.11.0\n" +"X-Generator: Poedit 3.4.2\n" + +#: ../../api/classcuop__matmul.rst:4 +msgid "Template Class cuop_matmul" +msgstr "模板类 cuop_matmul" + +#: ../../api/classcuop__matmul.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_utils_cumat.hpp`" +msgstr "定义于 :ref:`file_include_gwmodelpp_utils_cumat.hpp`" + +#: ../../api/classcuop__matmul.rst:10 +msgid "Class Documentation" +msgstr "类文档" + +#: ../../api/classcuop__matmul.rst +msgid "Public Functions" +msgstr "公有方法" diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/classcuop__matmul_3_01A_00_01B_00_01cubase_1_1Type_1_1Mat_00_01cubase_1_1Type_1_1Mat_01_4.po b/docs/locale/zh_CN/LC_MESSAGES/api/classcuop__matmul_3_01A_00_01B_00_01cubase_1_1Type_1_1Mat_00_01cubase_1_1Type_1_1Mat_01_4.po new file mode 100644 index 00000000..fa137ddb --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/classcuop__matmul_3_01A_00_01B_00_01cubase_1_1Type_1_1Mat_00_01cubase_1_1Type_1_1Mat_01_4.po @@ -0,0 +1,37 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: 2024-02-07 12:18+0000\n" +"Last-Translator: \n" +"Language-Team: zh_CN \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"Generated-By: Babel 2.11.0\n" +"X-Generator: Poedit 3.4.2\n" + +#: ../../api/classcuop__matmul_3_01A_00_01B_00_01cubase_1_1Type_1_1Mat_00_01cubase_1_1Type_1_1Mat_01_4.rst:4 +msgid "Template Class cuop_matmul< A, B, cubase::Type::Mat, cubase::Type::Mat >" +msgstr "模板类 cuop_matmul< A, B, cubase::Type::Mat, cubase::Type::Mat >" + +#: ../../api/classcuop__matmul_3_01A_00_01B_00_01cubase_1_1Type_1_1Mat_00_01cubase_1_1Type_1_1Mat_01_4.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_utils_cumat.hpp`" +msgstr "定义于 :ref:`file_include_gwmodelpp_utils_cumat.hpp`" + +#: ../../api/classcuop__matmul_3_01A_00_01B_00_01cubase_1_1Type_1_1Mat_00_01cubase_1_1Type_1_1Mat_01_4.rst:10 +msgid "Class Documentation" +msgstr "类文档" + +#: ../../api/classcuop__matmul_3_01A_00_01B_00_01cubase_1_1Type_1_1Mat_00_01cubase_1_1Type_1_1Mat_01_4.rst +msgid "Public Functions" +msgstr "公有方法" diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/classcuop__trans.po b/docs/locale/zh_CN/LC_MESSAGES/api/classcuop__trans.po new file mode 100644 index 00000000..f62b6d98 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/classcuop__trans.po @@ -0,0 +1,57 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: 2024-02-07 12:19+0000\n" +"Last-Translator: \n" +"Language-Team: zh_CN \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"Generated-By: Babel 2.11.0\n" +"X-Generator: Poedit 3.4.2\n" + +#: ../../api/classcuop__trans.rst:4 +msgid "Template Class cuop_trans" +msgstr "模板类 cuop_trans" + +#: ../../api/classcuop__trans.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_utils_cumat.hpp`" +msgstr "定义于 :ref:`file_include_gwmodelpp_utils_cumat.hpp`" + +#: ../../api/classcuop__trans.rst:10 +msgid "Inheritance Relationships" +msgstr "继承关系" + +#: ../../api/classcuop__trans.rst:13 +msgid "Base Type" +msgstr "基类" + +#: ../../api/classcuop__trans.rst:15 +msgid "``public cuop`` (:ref:`exhale_class_classcuop`)" +msgstr "" + +#: ../../api/classcuop__trans.rst:19 +msgid "Class Documentation" +msgstr "类文档" + +#: ../../api/classcuop__trans.rst +msgid "Public Functions" +msgstr "公有方法" + +#: ../../api/classcuop__trans.rst +msgid "Public Members" +msgstr "" + +#: ../../api/classcuop__trans.rst +msgid "Public Static Attributes" +msgstr "公有静态属性" diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/classcustride.po b/docs/locale/zh_CN/LC_MESSAGES/api/classcustride.po new file mode 100644 index 00000000..cc169967 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/classcustride.po @@ -0,0 +1,57 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: 2024-02-07 12:20+0000\n" +"Last-Translator: \n" +"Language-Team: zh_CN \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"Generated-By: Babel 2.11.0\n" +"X-Generator: Poedit 3.4.2\n" + +#: ../../api/classcustride.rst:4 +msgid "Class custride" +msgstr "类 custride" + +#: ../../api/classcustride.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_utils_cumat.hpp`" +msgstr "定义于 :ref:`file_include_gwmodelpp_utils_cumat.hpp`" + +#: ../../api/classcustride.rst:10 +msgid "Inheritance Relationships" +msgstr "继承关系" + +#: ../../api/classcustride.rst:13 +msgid "Base Type" +msgstr "基类" + +#: ../../api/classcustride.rst:15 +msgid "``public cubase`` (:ref:`exhale_class_classcubase`)" +msgstr "" + +#: ../../api/classcustride.rst:19 +msgid "Class Documentation" +msgstr "类文档" + +#: ../../api/classcustride.rst +msgid "Public Functions" +msgstr "公有方法" + +#: ../../api/classcustride.rst +msgid "Public Static Attributes" +msgstr "公有静态属性" + +#: ../../api/classcustride.rst +msgid "Protected Attributes" +msgstr "保护属性" diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/classcuview.po b/docs/locale/zh_CN/LC_MESSAGES/api/classcuview.po new file mode 100644 index 00000000..da628f80 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/classcuview.po @@ -0,0 +1,45 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: 2024-02-07 12:20+0000\n" +"Last-Translator: \n" +"Language-Team: zh_CN \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"Generated-By: Babel 2.11.0\n" +"X-Generator: Poedit 3.4.2\n" + +#: ../../api/classcuview.rst:4 +msgid "Template Class cuview" +msgstr "模板类 cuview" + +#: ../../api/classcuview.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_utils_cumat.hpp`" +msgstr "定义于 :ref:`file_include_gwmodelpp_utils_cumat.hpp`" + +#: ../../api/classcuview.rst:10 +msgid "Class Documentation" +msgstr "类文档" + +#: ../../api/classcuview.rst +msgid "Public Functions" +msgstr "公有方法" + +#: ../../api/classcuview.rst +msgid "Public Static Attributes" +msgstr "公有静态属性" + +#: ../../api/classcuview.rst +msgid "Protected Attributes" +msgstr "保护属性" diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/classcuview_3_01custride_01_4.po b/docs/locale/zh_CN/LC_MESSAGES/api/classcuview_3_01custride_01_4.po new file mode 100644 index 00000000..1c67ccde --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/classcuview_3_01custride_01_4.po @@ -0,0 +1,45 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: 2024-02-07 12:20+0000\n" +"Last-Translator: \n" +"Language-Team: zh_CN \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"Generated-By: Babel 2.11.0\n" +"X-Generator: Poedit 3.4.2\n" + +#: ../../api/classcuview_3_01custride_01_4.rst:4 +msgid "Template Class cuview< custride >" +msgstr "模板类 cuview< custride >" + +#: ../../api/classcuview_3_01custride_01_4.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_utils_cumat.hpp`" +msgstr "定义于 :ref:`file_include_gwmodelpp_utils_cumat.hpp`" + +#: ../../api/classcuview_3_01custride_01_4.rst:10 +msgid "Class Documentation" +msgstr "类文档" + +#: ../../api/classcuview_3_01custride_01_4.rst +msgid "Public Functions" +msgstr "公有方法" + +#: ../../api/classcuview_3_01custride_01_4.rst +msgid "Public Static Attributes" +msgstr "公有静态属性" + +#: ../../api/classcuview_3_01custride_01_4.rst +msgid "Protected Attributes" +msgstr "保护属性" diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1Algorithm.po b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1Algorithm.po index d6da18fb..b5c993ac 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1Algorithm.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1Algorithm.po @@ -5,19 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-23 20:21+0000\n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" "PO-Revision-Date: 2023-01-31 11:54+0000\n" "Last-Translator: \n" -"Language-Team: chin\n" "Language: zh_CN\n" +"Language-Team: chin\n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" +"Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/classgwm_1_1Algorithm.rst:4 msgid "Class Algorithm" @@ -37,8 +36,8 @@ msgstr "派生类" #: ../../api/classgwm_1_1Algorithm.rst:15 msgid "" -"``public gwm::SpatialAlgorithm`` (:ref:" -"`exhale_class_classgwm_1_1SpatialAlgorithm`)" +"``public gwm::SpatialAlgorithm`` " +"(:ref:`exhale_class_classgwm_1_1SpatialAlgorithm`)" msgstr "" #: ../../api/classgwm_1_1Algorithm.rst:19 @@ -49,6 +48,19 @@ msgstr "类文档" msgid "Public Functions" msgstr "公有方法" +#: ../../api/classgwm_1_1Algorithm.rst +msgid "Parameters" +msgstr "" + #: ../../api/classgwm_1_1Algorithm.rst msgid "Returns" msgstr "返回" + +#: ../../api/classgwm_1_1Algorithm.rst +msgid "Protected Functions" +msgstr "" + +#: ../../api/classgwm_1_1Algorithm.rst +msgid "Protected Attributes" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1BandwidthWeight.po b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1BandwidthWeight.po index cee51dfa..0dbbc314 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1BandwidthWeight.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1BandwidthWeight.po @@ -5,19 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-23 20:21+0000\n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" "PO-Revision-Date: 2023-01-31 12:01+0000\n" "Last-Translator: \n" -"Language-Team: \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" +"Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/classgwm_1_1BandwidthWeight.rst:4 msgid "Class BandwidthWeight" @@ -51,14 +50,6 @@ msgstr "公有类型" msgid "Public Functions" msgstr "公有方法" -#: ../../api/classgwm_1_1BandwidthWeight.rst -msgid "Parameters" -msgstr "参数" - -#: ../../api/classgwm_1_1BandwidthWeight.rst -msgid "Returns" -msgstr "返回" - #: ../../api/classgwm_1_1BandwidthWeight.rst msgid "Public Static Functions" msgstr "公有静态方法" @@ -66,3 +57,10 @@ msgstr "公有静态方法" #: ../../api/classgwm_1_1BandwidthWeight.rst msgid "Public Static Attributes" msgstr "公有静态属性" + +#~ msgid "Parameters" +#~ msgstr "参数" + +#~ msgid "Returns" +#~ msgstr "返回" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1CRSDistance.po b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1CRSDistance.po index e2b9b90e..aad30a1e 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1CRSDistance.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1CRSDistance.po @@ -5,19 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-23 20:21+0000\n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" "PO-Revision-Date: 2023-01-31 12:03+0000\n" "Last-Translator: \n" -"Language-Team: \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" +"Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/classgwm_1_1CRSDistance.rst:4 msgid "Class CRSDistance" @@ -57,8 +56,8 @@ msgstr "派生类" #: ../../api/classgwm_1_1CRSDistance.rst:31 msgid "" -"``public gwm::MinkwoskiDistance`` (:ref:" -"`exhale_class_classgwm_1_1MinkwoskiDistance`)" +"``public gwm::MinkwoskiDistance`` " +"(:ref:`exhale_class_classgwm_1_1MinkwoskiDistance`)" msgstr "" #: ../../api/classgwm_1_1CRSDistance.rst:35 @@ -69,14 +68,6 @@ msgstr "类文档" msgid "Public Functions" msgstr "公有类型" -#: ../../api/classgwm_1_1CRSDistance.rst -msgid "Parameters" -msgstr "参数" - -#: ../../api/classgwm_1_1CRSDistance.rst -msgid "Returns" -msgstr "返回" - #: ../../api/classgwm_1_1CRSDistance.rst msgid "Public Static Functions" msgstr "公有静态方法" @@ -88,3 +79,10 @@ msgstr "保护属性" #: ../../api/classgwm_1_1CRSDistance.rst msgid "Public Members" msgstr "公有成员" + +#~ msgid "Parameters" +#~ msgstr "参数" + +#~ msgid "Returns" +#~ msgstr "返回" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1CRSSTDistance.po b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1CRSSTDistance.po new file mode 100644 index 00000000..0c29288d --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1CRSSTDistance.po @@ -0,0 +1,65 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: 2024-02-07 12:22+0000\n" +"Last-Translator: \n" +"Language-Team: zh_CN \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"Generated-By: Babel 2.11.0\n" +"X-Generator: Poedit 3.4.2\n" + +#: ../../api/classgwm_1_1CRSSTDistance.rst:4 +msgid "Class CRSSTDistance" +msgstr "类 CRSSTDistance" + +#: ../../api/classgwm_1_1CRSSTDistance.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_spatialweight_CRSSTDistance.h`" +msgstr "定义于 :ref:`file_include_gwmodelpp_spatialweight_CRSSTDistance.h`" + +#: ../../api/classgwm_1_1CRSSTDistance.rst:10 +msgid "Inheritance Relationships" +msgstr "继承关系" + +#: ../../api/classgwm_1_1CRSSTDistance.rst:13 +msgid "Base Type" +msgstr "基类" + +#: ../../api/classgwm_1_1CRSSTDistance.rst:15 +msgid "``public gwm::Distance`` (:ref:`exhale_class_classgwm_1_1Distance`)" +msgstr "" + +#: ../../api/classgwm_1_1CRSSTDistance.rst:19 +msgid "Class Documentation" +msgstr "类文档" + +#: ../../api/classgwm_1_1CRSSTDistance.rst +msgid "Public Types" +msgstr "公有类型" + +#: ../../api/classgwm_1_1CRSSTDistance.rst +msgid "Public Functions" +msgstr "公有方法" + +#: ../../api/classgwm_1_1CRSSTDistance.rst +msgid "Parameters" +msgstr "" + +#: ../../api/classgwm_1_1CRSSTDistance.rst +msgid "Public Static Functions" +msgstr "公有静态方法" + +#: ../../api/classgwm_1_1CRSSTDistance.rst +msgid "Protected Attributes" +msgstr "保护属性" diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1Distance.po b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1Distance.po index 0537e9fb..087cea08 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1Distance.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1Distance.po @@ -5,19 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-23 20:21+0000\n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" "PO-Revision-Date: 2023-01-31 12:08+0000\n" "Last-Translator: Yigong Hu \n" -"Language-Team: \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" +"Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/classgwm_1_1Distance.rst:4 msgid "Class Distance" @@ -53,15 +52,23 @@ msgstr "" #: ../../api/classgwm_1_1Distance.rst:26 msgid "" -"``public gwm::DMatDistance`` (:ref:`exhale_class_classgwm_1_1DMatDistance`)" +"``public gwm::CRSSTDistance`` " +"(:ref:`exhale_class_classgwm_1_1CRSSTDistance`)" msgstr "" #: ../../api/classgwm_1_1Distance.rst:27 msgid "" -"``public gwm::OneDimDistance`` (:ref:`exhale_class_classgwm_1_1OneDimDistance`)" +"``public gwm::DMatDistance`` " +"(:ref:`exhale_class_classgwm_1_1DMatDistance`)" +msgstr "" + +#: ../../api/classgwm_1_1Distance.rst:28 +msgid "" +"``public gwm::OneDimDistance`` " +"(:ref:`exhale_class_classgwm_1_1OneDimDistance`)" msgstr "" -#: ../../api/classgwm_1_1Distance.rst:31 +#: ../../api/classgwm_1_1Distance.rst:32 msgid "Class Documentation" msgstr "类文档" @@ -73,14 +80,6 @@ msgstr "公有类型" msgid "Public Functions" msgstr "公有方法" -#: ../../api/classgwm_1_1Distance.rst -msgid "Returns" -msgstr "返回" - -#: ../../api/classgwm_1_1Distance.rst -msgid "Parameters" -msgstr "参数" - #: ../../api/classgwm_1_1Distance.rst msgid "Public Static Attributes" msgstr "公有静态属性" @@ -88,3 +87,10 @@ msgstr "公有静态属性" #: ../../api/classgwm_1_1Distance.rst msgid "Public Members" msgstr "公有成员" + +#~ msgid "Returns" +#~ msgstr "返回" + +#~ msgid "Parameters" +#~ msgstr "参数" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GTWR.po b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GTWR.po new file mode 100644 index 00000000..ac324299 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GTWR.po @@ -0,0 +1,95 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: 2024-02-07 12:23+0000\n" +"Last-Translator: \n" +"Language-Team: zh_CN \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"Generated-By: Babel 2.11.0\n" +"X-Generator: Poedit 3.4.2\n" + +#: ../../api/classgwm_1_1GTWR.rst:4 +msgid "Class GTWR" +msgstr "类 GTWR" + +#: ../../api/classgwm_1_1GTWR.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_GTWR.h`" +msgstr "定义于 :ref:`file_include_gwmodelpp_GTWR.h`" + +#: ../../api/classgwm_1_1GTWR.rst:10 +msgid "Inheritance Relationships" +msgstr "继承关系" + +#: ../../api/classgwm_1_1GTWR.rst:13 +msgid "Base Types" +msgstr "基类" + +#: ../../api/classgwm_1_1GTWR.rst:15 +msgid "``public gwm::GWRBase`` (:ref:`exhale_class_classgwm_1_1GWRBase`)" +msgstr "" + +#: ../../api/classgwm_1_1GTWR.rst:16 +msgid "" +"``public gwm::IBandwidthSelectable`` (:ref:" +"`exhale_struct_structgwm_1_1IBandwidthSelectable`)" +msgstr "" + +#: ../../api/classgwm_1_1GTWR.rst:17 +msgid "" +"``public gwm::IParallelizable`` (:ref:" +"`exhale_struct_structgwm_1_1IParallelizable`)" +msgstr "" + +#: ../../api/classgwm_1_1GTWR.rst:18 +msgid "" +"``public gwm::IParallelOpenmpEnabled`` (:ref:" +"`exhale_struct_structgwm_1_1IParallelOpenmpEnabled`)" +msgstr "" + +#: ../../api/classgwm_1_1GTWR.rst:22 +msgid "Class Documentation" +msgstr "类文档" + +#: ../../api/classgwm_1_1GTWR.rst +msgid "Public Types" +msgstr "公有类型" + +#: ../../api/classgwm_1_1GTWR.rst +msgid "Public Functions" +msgstr "公有方法" + +#: ../../api/classgwm_1_1GTWR.rst +msgid "Parameters" +msgstr "参数" + +#: ../../api/classgwm_1_1GTWR.rst +msgid "Returns" +msgstr "返回" + +#: ../../api/classgwm_1_1GTWR.rst +msgid "Public Static Functions" +msgstr "公有静态方法" + +#: ../../api/classgwm_1_1GTWR.rst +msgid "Public Static Attributes" +msgstr "公有静态属性" + +#: ../../api/classgwm_1_1GTWR.rst +msgid "Protected Functions" +msgstr "保护方法" + +#: ../../api/classgwm_1_1GTWR.rst +msgid "Protected Attributes" +msgstr "保护属性" diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GWDA.po b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GWDA.po new file mode 100644 index 00000000..6031486d --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GWDA.po @@ -0,0 +1,85 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: 2024-02-07 12:24+0000\n" +"Last-Translator: \n" +"Language-Team: zh_CN \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"Generated-By: Babel 2.11.0\n" +"X-Generator: Poedit 3.4.2\n" + +#: ../../api/classgwm_1_1GWDA.rst:4 +msgid "Class GWDA" +msgstr "类 GWDA" + +#: ../../api/classgwm_1_1GWDA.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_GWDA.h`" +msgstr "定义于 :ref:`file_include_gwmodelpp_GWDA.h`" + +#: ../../api/classgwm_1_1GWDA.rst:10 +msgid "Inheritance Relationships" +msgstr "继承关系" + +#: ../../api/classgwm_1_1GWDA.rst:13 +msgid "Base Types" +msgstr "基类" + +#: ../../api/classgwm_1_1GWDA.rst:15 +msgid "" +"``public gwm::SpatialMonoscaleAlgorithm`` (:ref:" +"`exhale_class_classgwm_1_1SpatialMonoscaleAlgorithm`)" +msgstr "" + +#: ../../api/classgwm_1_1GWDA.rst:16 +msgid "" +"``public gwm::IMultivariableAnalysis`` (:ref:" +"`exhale_struct_structgwm_1_1IMultivariableAnalysis`)" +msgstr "" + +#: ../../api/classgwm_1_1GWDA.rst:17 +msgid "" +"``public gwm::IParallelizable`` (:ref:" +"`exhale_struct_structgwm_1_1IParallelizable`)" +msgstr "" + +#: ../../api/classgwm_1_1GWDA.rst:18 +msgid "" +"``public gwm::IParallelOpenmpEnabled`` (:ref:" +"`exhale_struct_structgwm_1_1IParallelOpenmpEnabled`)" +msgstr "" + +#: ../../api/classgwm_1_1GWDA.rst:22 +msgid "Class Documentation" +msgstr "类文档" + +#: ../../api/classgwm_1_1GWDA.rst +msgid "Public Types" +msgstr "公有类型" + +#: ../../api/classgwm_1_1GWDA.rst +msgid "Public Functions" +msgstr "公有方法" + +#: ../../api/classgwm_1_1GWDA.rst +msgid "Parameters" +msgstr "参数" + +#: ../../api/classgwm_1_1GWDA.rst +msgid "Returns" +msgstr "返回" + +#: ../../api/classgwm_1_1GWDA.rst +msgid "Public Static Functions" +msgstr "公有静态方法" diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GWRBase.po b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GWRBase.po index c03e69bd..3d9c0211 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GWRBase.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GWRBase.po @@ -5,19 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-23 20:21+0000\n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" "PO-Revision-Date: 2023-01-31 12:13+0000\n" "Last-Translator: Yigong Hu \n" -"Language-Team: \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" +"Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/classgwm_1_1GWRBase.rst:4 msgid "Class GWRBase" @@ -37,14 +36,14 @@ msgstr "基类" #: ../../api/classgwm_1_1GWRBase.rst:15 msgid "" -"``public gwm::SpatialMonoscaleAlgorithm`` (:ref:" -"`exhale_class_classgwm_1_1SpatialMonoscaleAlgorithm`)" +"``public gwm::SpatialMonoscaleAlgorithm`` " +"(:ref:`exhale_class_classgwm_1_1SpatialMonoscaleAlgorithm`)" msgstr "" #: ../../api/classgwm_1_1GWRBase.rst:16 msgid "" -"``public gwm::IRegressionAnalysis`` (:ref:" -"`exhale_struct_structgwm_1_1IRegressionAnalysis`)" +"``public gwm::IRegressionAnalysis`` " +"(:ref:`exhale_struct_structgwm_1_1IRegressionAnalysis`)" msgstr "" #: ../../api/classgwm_1_1GWRBase.rst:20 @@ -52,25 +51,30 @@ msgid "Derived Types" msgstr "派生类" #: ../../api/classgwm_1_1GWRBase.rst:22 -msgid "``public gwm::GWRBasic`` (:ref:`exhale_class_classgwm_1_1GWRBasic`)" +msgid "``public gwm::GTWR`` (:ref:`exhale_class_classgwm_1_1GTWR`)" msgstr "" #: ../../api/classgwm_1_1GWRBase.rst:23 -msgid "" -"``public gwm::GWRGeneralized`` (:ref:`exhale_class_classgwm_1_1GWRGeneralized`)" +msgid "``public gwm::GWRBasic`` (:ref:`exhale_class_classgwm_1_1GWRBasic`)" msgstr "" #: ../../api/classgwm_1_1GWRBase.rst:24 msgid "" -"``public gwm::GWRLocalCollinearity`` (:ref:" -"`exhale_class_classgwm_1_1GWRLocalCollinearity`)" +"``public gwm::GWRGeneralized`` " +"(:ref:`exhale_class_classgwm_1_1GWRGeneralized`)" msgstr "" #: ../../api/classgwm_1_1GWRBase.rst:25 +msgid "" +"``public gwm::GWRLocalCollinearity`` " +"(:ref:`exhale_class_classgwm_1_1GWRLocalCollinearity`)" +msgstr "" + +#: ../../api/classgwm_1_1GWRBase.rst:26 msgid "``public gwm::GWRScalable`` (:ref:`exhale_class_classgwm_1_1GWRScalable`)" msgstr "" -#: ../../api/classgwm_1_1GWRBase.rst:29 +#: ../../api/classgwm_1_1GWRBase.rst:30 msgid "Class Documentation" msgstr "类文档" @@ -93,3 +97,4 @@ msgstr "公有静态方法" #: ../../api/classgwm_1_1GWRBase.rst msgid "Protected Attributes" msgstr "保护属性" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GWRBasic.po b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GWRBasic.po index b9270d9b..48c10785 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GWRBasic.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GWRBasic.po @@ -5,19 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-23 20:46+0000\n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" "PO-Revision-Date: 2023-01-31 12:14+0000\n" "Last-Translator: Yigong Hu \n" -"Language-Team: \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" +"Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/classgwm_1_1GWRBasic.rst:4 msgid "Class GWRBasic" @@ -41,37 +40,43 @@ msgstr "" #: ../../api/classgwm_1_1GWRBasic.rst:16 msgid "" -"``public gwm::IBandwidthSelectable`` (:ref:" -"`exhale_struct_structgwm_1_1IBandwidthSelectable`)" +"``public gwm::IBandwidthSelectable`` " +"(:ref:`exhale_struct_structgwm_1_1IBandwidthSelectable`)" msgstr "" #: ../../api/classgwm_1_1GWRBasic.rst:17 msgid "" -"``public gwm::IVarialbeSelectable`` (:ref:" -"`exhale_struct_structgwm_1_1IVarialbeSelectable`)" +"``public gwm::IVarialbeSelectable`` " +"(:ref:`exhale_struct_structgwm_1_1IVarialbeSelectable`)" msgstr "" #: ../../api/classgwm_1_1GWRBasic.rst:18 msgid "" -"``public gwm::IParallelizable`` (:ref:" -"`exhale_struct_structgwm_1_1IParallelizable`)" +"``public gwm::IParallelizable`` " +"(:ref:`exhale_struct_structgwm_1_1IParallelizable`)" msgstr "" #: ../../api/classgwm_1_1GWRBasic.rst:19 msgid "" -"``public gwm::IParallelOpenmpEnabled`` (:ref:" -"`exhale_struct_structgwm_1_1IParallelOpenmpEnabled`)" +"``public gwm::IParallelOpenmpEnabled`` " +"(:ref:`exhale_struct_structgwm_1_1IParallelOpenmpEnabled`)" msgstr "" -#: ../../api/classgwm_1_1GWRBasic.rst:23 +#: ../../api/classgwm_1_1GWRBasic.rst:20 +msgid "" +"``public gwm::IParallelCudaEnabled`` " +"(:ref:`exhale_struct_structgwm_1_1IParallelCudaEnabled`)" +msgstr "" + +#: ../../api/classgwm_1_1GWRBasic.rst:24 msgid "Derived Type" msgstr "派生类" -#: ../../api/classgwm_1_1GWRBasic.rst:25 +#: ../../api/classgwm_1_1GWRBasic.rst:26 msgid "``public gwm::GWRRobust`` (:ref:`exhale_class_classgwm_1_1GWRRobust`)" msgstr "" -#: ../../api/classgwm_1_1GWRBasic.rst:29 +#: ../../api/classgwm_1_1GWRBasic.rst:30 msgid "Class Documentation" msgstr "类文档" @@ -102,3 +107,4 @@ msgstr "保护方法" #: ../../api/classgwm_1_1GWRBasic.rst msgid "Protected Attributes" msgstr "保护属性" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GWRMultiscale.po b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GWRMultiscale.po index 75efc1a9..b74c027b 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GWRMultiscale.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GWRMultiscale.po @@ -5,18 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-23 20:46+0000\n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" "PO-Revision-Date: 2023-01-31 12:16+0000\n" "Last-Translator: Yigong Hu \n" -"Language-Team: \n" "Language: zh\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/classgwm_1_1GWRMultiscale.rst:4 msgid "Class GWRMultiscale" @@ -36,35 +36,41 @@ msgstr "基类" #: ../../api/classgwm_1_1GWRMultiscale.rst:15 msgid "" -"``public gwm::SpatialMultiscaleAlgorithm`` (:ref:" -"`exhale_class_classgwm_1_1SpatialMultiscaleAlgorithm`)" +"``public gwm::SpatialMultiscaleAlgorithm`` " +"(:ref:`exhale_class_classgwm_1_1SpatialMultiscaleAlgorithm`)" msgstr "" #: ../../api/classgwm_1_1GWRMultiscale.rst:16 msgid "" -"``public gwm::IBandwidthSelectable`` (:ref:" -"`exhale_struct_structgwm_1_1IBandwidthSelectable`)" +"``public gwm::IBandwidthSelectable`` " +"(:ref:`exhale_struct_structgwm_1_1IBandwidthSelectable`)" msgstr "" #: ../../api/classgwm_1_1GWRMultiscale.rst:17 msgid "" -"``public gwm::IRegressionAnalysis`` (:ref:" -"`exhale_struct_structgwm_1_1IRegressionAnalysis`)" +"``public gwm::IRegressionAnalysis`` " +"(:ref:`exhale_struct_structgwm_1_1IRegressionAnalysis`)" msgstr "" #: ../../api/classgwm_1_1GWRMultiscale.rst:18 msgid "" -"``public gwm::IParallelizable`` (:ref:" -"`exhale_struct_structgwm_1_1IParallelizable`)" +"``public gwm::IParallelizable`` " +"(:ref:`exhale_struct_structgwm_1_1IParallelizable`)" msgstr "" #: ../../api/classgwm_1_1GWRMultiscale.rst:19 msgid "" -"``public gwm::IParallelOpenmpEnabled`` (:ref:" -"`exhale_struct_structgwm_1_1IParallelOpenmpEnabled`)" +"``public gwm::IParallelOpenmpEnabled`` " +"(:ref:`exhale_struct_structgwm_1_1IParallelOpenmpEnabled`)" +msgstr "" + +#: ../../api/classgwm_1_1GWRMultiscale.rst:20 +msgid "" +"``public gwm::IParallelCudaEnabled`` " +"(:ref:`exhale_struct_structgwm_1_1IParallelCudaEnabled`)" msgstr "" -#: ../../api/classgwm_1_1GWRMultiscale.rst:23 +#: ../../api/classgwm_1_1GWRMultiscale.rst:24 msgid "Class Documentation" msgstr "类文档" @@ -91,3 +97,4 @@ msgstr "公有静态属性" #: ../../api/classgwm_1_1GWRMultiscale.rst msgid "Protected Functions" msgstr "保护成员函数" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1Logger.po b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1Logger.po index 1d79de6b..dac9bab9 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1Logger.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1Logger.po @@ -5,19 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-30 11:13+0000\n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" "PO-Revision-Date: 2023-01-31 12:21+0000\n" "Last-Translator: Yigong Hu \n" -"Language-Team: \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" +"Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/classgwm_1_1Logger.rst:4 msgid "Class Logger" @@ -28,17 +27,37 @@ msgid "Defined in :ref:`file_include_gwmodelpp_Logger.h`" msgstr "定义于 :ref:`file_include_gwmodelpp_Logger.h`" #: ../../api/classgwm_1_1Logger.rst:10 +msgid "Inheritance Relationships" +msgstr "" + +#: ../../api/classgwm_1_1Logger.rst:13 +msgid "Base Type" +msgstr "" + +#: ../../api/classgwm_1_1Logger.rst:15 +msgid "``public gwm::ITelegram`` (:ref:`exhale_struct_structgwm_1_1ITelegram`)" +msgstr "" + +#: ../../api/classgwm_1_1Logger.rst:19 +msgid "Derived Type" +msgstr "" + +#: ../../api/classgwm_1_1Logger.rst:21 +msgid "``public StdTelegram`` (:ref:`exhale_class_classStdTelegram`)" +msgstr "" + +#: ../../api/classgwm_1_1Logger.rst:25 msgid "Class Documentation" msgstr "类文档" #: ../../api/classgwm_1_1Logger.rst -msgid "Public Types" -msgstr "公有类型" - -#: ../../api/classgwm_1_1Logger.rst -msgid "Public Static Functions" +#, fuzzy +msgid "Public Functions" msgstr "公有静态方法" -#: ../../api/classgwm_1_1Logger.rst -msgid "Public Static Attributes" -msgstr "公有静态属性" +#~ msgid "Public Types" +#~ msgstr "公有类型" + +#~ msgid "Public Static Attributes" +#~ msgstr "公有静态属性" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1MinkwoskiDistance.po b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1MinkwoskiDistance.po index 676fd2e1..a02d2269 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1MinkwoskiDistance.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1MinkwoskiDistance.po @@ -5,18 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-23 20:21+0000\n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" "PO-Revision-Date: 2023-01-31 12:25+0000\n" "Last-Translator: Yigong Hu \n" -"Language-Team: \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/classgwm_1_1MinkwoskiDistance.rst:4 msgid "Class MinkwoskiDistance" @@ -46,14 +46,13 @@ msgstr "类文档" msgid "Public Functions" msgstr "公有成员函数" -#: ../../api/classgwm_1_1MinkwoskiDistance.rst -msgid "Returns" -msgstr "返回" - -#: ../../api/classgwm_1_1MinkwoskiDistance.rst -msgid "Parameters" -msgstr "参数" - #: ../../api/classgwm_1_1MinkwoskiDistance.rst msgid "Public Static Functions" msgstr "公有静态方法" + +#~ msgid "Returns" +#~ msgstr "返回" + +#~ msgid "Parameters" +#~ msgstr "参数" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1SpatialAlgorithm.po b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1SpatialAlgorithm.po index eb602f09..46b90314 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1SpatialAlgorithm.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1SpatialAlgorithm.po @@ -5,18 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-23 20:21+0000\n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" "PO-Revision-Date: 2023-01-31 16:14+0000\n" "Last-Translator: Yigong Hu \n" -"Language-Team: \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/classgwm_1_1SpatialAlgorithm.rst:4 msgid "Class SpatialAlgorithm" @@ -43,19 +43,19 @@ msgid "Derived Types" msgstr "派生类" #: ../../api/classgwm_1_1SpatialAlgorithm.rst:21 -msgid "``public gwm::GWDR`` (:ref:`exhale_class_classgwm_1_1GWDR`)" +msgid "``public gwm::SDR`` (:ref:`exhale_class_classgwm_1_1SDR`)" msgstr "" #: ../../api/classgwm_1_1SpatialAlgorithm.rst:22 msgid "" -"``public gwm::SpatialMonoscaleAlgorithm`` (:ref:" -"`exhale_class_classgwm_1_1SpatialMonoscaleAlgorithm`)" +"``public gwm::SpatialMonoscaleAlgorithm`` " +"(:ref:`exhale_class_classgwm_1_1SpatialMonoscaleAlgorithm`)" msgstr "" #: ../../api/classgwm_1_1SpatialAlgorithm.rst:23 msgid "" -"``public gwm::SpatialMultiscaleAlgorithm`` (:ref:" -"`exhale_class_classgwm_1_1SpatialMultiscaleAlgorithm`)" +"``public gwm::SpatialMultiscaleAlgorithm`` " +"(:ref:`exhale_class_classgwm_1_1SpatialMultiscaleAlgorithm`)" msgstr "" #: ../../api/classgwm_1_1SpatialAlgorithm.rst:27 @@ -77,3 +77,7 @@ msgstr "返回" #: ../../api/classgwm_1_1SpatialAlgorithm.rst msgid "Protected Attributes" msgstr "保护属性" + +#~ msgid "``public gwm::GWDR`` (:ref:`exhale_class_classgwm_1_1GWDR`)" +#~ msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1SpatialMonoscaleAlgorithm.po b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1SpatialMonoscaleAlgorithm.po index 1826cbb7..1ec709dd 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1SpatialMonoscaleAlgorithm.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1SpatialMonoscaleAlgorithm.po @@ -5,18 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-23 20:21+0000\n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" "PO-Revision-Date: 2023-01-31 16:14+0000\n" "Last-Translator: Yigong Hu \n" -"Language-Team: \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/classgwm_1_1SpatialMonoscaleAlgorithm.rst:4 msgid "Class SpatialMonoscaleAlgorithm" @@ -36,8 +36,8 @@ msgstr "基类" #: ../../api/classgwm_1_1SpatialMonoscaleAlgorithm.rst:15 msgid "" -"``public gwm::SpatialAlgorithm`` (:ref:" -"`exhale_class_classgwm_1_1SpatialAlgorithm`)" +"``public gwm::SpatialAlgorithm`` " +"(:ref:`exhale_class_classgwm_1_1SpatialAlgorithm`)" msgstr "" #: ../../api/classgwm_1_1SpatialMonoscaleAlgorithm.rst:19 @@ -45,18 +45,22 @@ msgid "Derived Types" msgstr "派生类" #: ../../api/classgwm_1_1SpatialMonoscaleAlgorithm.rst:21 -msgid "``public gwm::GWPCA`` (:ref:`exhale_class_classgwm_1_1GWPCA`)" +msgid "``public gwm::GWDA`` (:ref:`exhale_class_classgwm_1_1GWDA`)" msgstr "" #: ../../api/classgwm_1_1SpatialMonoscaleAlgorithm.rst:22 -msgid "``public gwm::GWRBase`` (:ref:`exhale_class_classgwm_1_1GWRBase`)" +msgid "``public gwm::GWPCA`` (:ref:`exhale_class_classgwm_1_1GWPCA`)" msgstr "" #: ../../api/classgwm_1_1SpatialMonoscaleAlgorithm.rst:23 +msgid "``public gwm::GWRBase`` (:ref:`exhale_class_classgwm_1_1GWRBase`)" +msgstr "" + +#: ../../api/classgwm_1_1SpatialMonoscaleAlgorithm.rst:24 msgid "``public gwm::GWSS`` (:ref:`exhale_class_classgwm_1_1GWSS`)" msgstr "" -#: ../../api/classgwm_1_1SpatialMonoscaleAlgorithm.rst:27 +#: ../../api/classgwm_1_1SpatialMonoscaleAlgorithm.rst:28 msgid "Class Documentation" msgstr "类文档" @@ -75,3 +79,4 @@ msgstr "返回" #: ../../api/classgwm_1_1SpatialMonoscaleAlgorithm.rst msgid "Protected Attributes" msgstr "保护属性" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1Weight.po b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1Weight.po index 369285ae..d19939ac 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1Weight.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1Weight.po @@ -5,18 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-23 20:21+0000\n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" "PO-Revision-Date: 2023-01-31 16:15+0000\n" "Last-Translator: Yigong Hu \n" -"Language-Team: \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/classgwm_1_1Weight.rst:4 msgid "Class Weight" @@ -36,8 +36,8 @@ msgstr "派生类" #: ../../api/classgwm_1_1Weight.rst:15 msgid "" -"``public gwm::BandwidthWeight`` (:ref:" -"`exhale_class_classgwm_1_1BandwidthWeight`)" +"``public gwm::BandwidthWeight`` " +"(:ref:`exhale_class_classgwm_1_1BandwidthWeight`)" msgstr "" #: ../../api/classgwm_1_1Weight.rst:19 @@ -52,14 +52,13 @@ msgstr "公有类型" msgid "Public Functions" msgstr "公有成员函数" -#: ../../api/classgwm_1_1Weight.rst -msgid "Returns" -msgstr "返回" - -#: ../../api/classgwm_1_1Weight.rst -msgid "Parameters" -msgstr "参数" - #: ../../api/classgwm_1_1Weight.rst msgid "Public Static Attributes" msgstr "公有静态属性" + +#~ msgid "Returns" +#~ msgstr "返回" + +#~ msgid "Parameters" +#~ msgstr "参数" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a133188f010eccb753b0451a52fe03a9a.po b/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a133188f010eccb753b0451a52fe03a9a.po new file mode 100644 index 00000000..0dd0a7a3 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a133188f010eccb753b0451a52fe03a9a.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/define_Algorithm_8h_1a133188f010eccb753b0451a52fe03a9a.rst:4 +msgid "Define GWM_LOG_STOP_BREAK" +msgstr "" + +#: ../../api/define_Algorithm_8h_1a133188f010eccb753b0451a52fe03a9a.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_Algorithm.h`" +msgstr "" + +#: ../../api/define_Algorithm_8h_1a133188f010eccb753b0451a52fe03a9a.rst:10 +msgid "Define Documentation" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a3e7277692bce66fb31ec0fafdf2c2f44.po b/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a3e7277692bce66fb31ec0fafdf2c2f44.po new file mode 100644 index 00000000..b5792bbe --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a3e7277692bce66fb31ec0fafdf2c2f44.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/define_Algorithm_8h_1a3e7277692bce66fb31ec0fafdf2c2f44.rst:4 +msgid "Define GWM_LOG_DEBUG" +msgstr "" + +#: ../../api/define_Algorithm_8h_1a3e7277692bce66fb31ec0fafdf2c2f44.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_Algorithm.h`" +msgstr "" + +#: ../../api/define_Algorithm_8h_1a3e7277692bce66fb31ec0fafdf2c2f44.rst:10 +msgid "Define Documentation" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a517c29498b507893108fb2961e3140d7.po b/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a517c29498b507893108fb2961e3140d7.po new file mode 100644 index 00000000..1cfce95c --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a517c29498b507893108fb2961e3140d7.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/define_Algorithm_8h_1a517c29498b507893108fb2961e3140d7.rst:4 +msgid "Define GWM_LOG_TAG_STAGE" +msgstr "" + +#: ../../api/define_Algorithm_8h_1a517c29498b507893108fb2961e3140d7.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_Algorithm.h`" +msgstr "" + +#: ../../api/define_Algorithm_8h_1a517c29498b507893108fb2961e3140d7.rst:10 +msgid "Define Documentation" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a63405819e78dea96e294ff200c113a37.po b/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a63405819e78dea96e294ff200c113a37.po new file mode 100644 index 00000000..2ea54d73 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a63405819e78dea96e294ff200c113a37.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/define_Algorithm_8h_1a63405819e78dea96e294ff200c113a37.rst:4 +msgid "Define GWM_LOGGING" +msgstr "" + +#: ../../api/define_Algorithm_8h_1a63405819e78dea96e294ff200c113a37.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_Algorithm.h`" +msgstr "" + +#: ../../api/define_Algorithm_8h_1a63405819e78dea96e294ff200c113a37.rst:10 +msgid "Define Documentation" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a70ae4960df6ada8395844443dca7f5cc.po b/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a70ae4960df6ada8395844443dca7f5cc.po new file mode 100644 index 00000000..72de2a1c --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a70ae4960df6ada8395844443dca7f5cc.po @@ -0,0 +1,37 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/define_Algorithm_8h_1a70ae4960df6ada8395844443dca7f5cc.rst:4 +msgid "Define GWM_LOG_PROGRESS" +msgstr "" + +#: ../../api/define_Algorithm_8h_1a70ae4960df6ada8395844443dca7f5cc.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_Algorithm.h`" +msgstr "" + +#: ../../api/define_Algorithm_8h_1a70ae4960df6ada8395844443dca7f5cc.rst:10 +msgid "Define Documentation" +msgstr "" + +#: ../../api/define_Algorithm_8h_1a70ae4960df6ada8395844443dca7f5cc.rst +msgid "Parameters" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a78536ea976dfe7442b894b9c0ea3d69c.po b/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a78536ea976dfe7442b894b9c0ea3d69c.po new file mode 100644 index 00000000..9aa06b0f --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a78536ea976dfe7442b894b9c0ea3d69c.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/define_Algorithm_8h_1a78536ea976dfe7442b894b9c0ea3d69c.rst:4 +msgid "Define GWM_LOG_STOP_RETURN" +msgstr "" + +#: ../../api/define_Algorithm_8h_1a78536ea976dfe7442b894b9c0ea3d69c.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_Algorithm.h`" +msgstr "" + +#: ../../api/define_Algorithm_8h_1a78536ea976dfe7442b894b9c0ea3d69c.rst:10 +msgid "Define Documentation" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a81aeca29b10fe0fe76ad2a31d9816c2f.po b/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a81aeca29b10fe0fe76ad2a31d9816c2f.po new file mode 100644 index 00000000..15c0ac4a --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a81aeca29b10fe0fe76ad2a31d9816c2f.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/define_Algorithm_8h_1a81aeca29b10fe0fe76ad2a31d9816c2f.rst:4 +msgid "Define GWM_LOG_STOP_CONTINUE" +msgstr "" + +#: ../../api/define_Algorithm_8h_1a81aeca29b10fe0fe76ad2a31d9816c2f.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_Algorithm.h`" +msgstr "" + +#: ../../api/define_Algorithm_8h_1a81aeca29b10fe0fe76ad2a31d9816c2f.rst:10 +msgid "Define Documentation" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a86d76dda1788cd388f5033ec6e989d9c.po b/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a86d76dda1788cd388f5033ec6e989d9c.po new file mode 100644 index 00000000..a91e8abb --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a86d76dda1788cd388f5033ec6e989d9c.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/define_Algorithm_8h_1a86d76dda1788cd388f5033ec6e989d9c.rst:4 +msgid "Define GWM_LOG_INFO" +msgstr "" + +#: ../../api/define_Algorithm_8h_1a86d76dda1788cd388f5033ec6e989d9c.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_Algorithm.h`" +msgstr "" + +#: ../../api/define_Algorithm_8h_1a86d76dda1788cd388f5033ec6e989d9c.rst:10 +msgid "Define Documentation" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a9a6822a722a1654fe9358651500657b2.po b/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a9a6822a722a1654fe9358651500657b2.po new file mode 100644 index 00000000..7f6b72bd --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a9a6822a722a1654fe9358651500657b2.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/define_Algorithm_8h_1a9a6822a722a1654fe9358651500657b2.rst:4 +msgid "Define GWM_LOG_WARNNING" +msgstr "" + +#: ../../api/define_Algorithm_8h_1a9a6822a722a1654fe9358651500657b2.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_Algorithm.h`" +msgstr "" + +#: ../../api/define_Algorithm_8h_1a9a6822a722a1654fe9358651500657b2.rst:10 +msgid "Define Documentation" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1aa0c46696737698397f560901beb58425.po b/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1aa0c46696737698397f560901beb58425.po new file mode 100644 index 00000000..673809b2 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1aa0c46696737698397f560901beb58425.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/define_Algorithm_8h_1aa0c46696737698397f560901beb58425.rst:4 +msgid "Define GWM_LOG_ERROR" +msgstr "" + +#: ../../api/define_Algorithm_8h_1aa0c46696737698397f560901beb58425.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_Algorithm.h`" +msgstr "" + +#: ../../api/define_Algorithm_8h_1aa0c46696737698397f560901beb58425.rst:10 +msgid "Define Documentation" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1abd85b0789ff6ea0203e7b326c852a0bb.po b/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1abd85b0789ff6ea0203e7b326c852a0bb.po new file mode 100644 index 00000000..4a5351e2 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1abd85b0789ff6ea0203e7b326c852a0bb.po @@ -0,0 +1,37 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/define_Algorithm_8h_1abd85b0789ff6ea0203e7b326c852a0bb.rst:4 +msgid "Define GWM_LOG_STAGE" +msgstr "" + +#: ../../api/define_Algorithm_8h_1abd85b0789ff6ea0203e7b326c852a0bb.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_Algorithm.h`" +msgstr "" + +#: ../../api/define_Algorithm_8h_1abd85b0789ff6ea0203e7b326c852a0bb.rst:10 +msgid "Define Documentation" +msgstr "" + +#: ../../api/define_Algorithm_8h_1abd85b0789ff6ea0203e7b326c852a0bb.rst +msgid "Parameters" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1af8fe0908c1e018bf2839d0958be6a708.po b/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1af8fe0908c1e018bf2839d0958be6a708.po new file mode 100644 index 00000000..54976cf6 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1af8fe0908c1e018bf2839d0958be6a708.po @@ -0,0 +1,37 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/define_Algorithm_8h_1af8fe0908c1e018bf2839d0958be6a708.rst:4 +msgid "Define GWM_LOG_PROGRESS_PERCENT" +msgstr "" + +#: ../../api/define_Algorithm_8h_1af8fe0908c1e018bf2839d0958be6a708.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_Algorithm.h`" +msgstr "" + +#: ../../api/define_Algorithm_8h_1af8fe0908c1e018bf2839d0958be6a708.rst:10 +msgid "Define Documentation" +msgstr "" + +#: ../../api/define_Algorithm_8h_1af8fe0908c1e018bf2839d0958be6a708.rst +msgid "Parameters" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/define_CudaUtils_8h_1a98e5ae1fe30ec3f2c1d7f60ffaf70e8e.po b/docs/locale/zh_CN/LC_MESSAGES/api/define_CudaUtils_8h_1a98e5ae1fe30ec3f2c1d7f60ffaf70e8e.po new file mode 100644 index 00000000..7396a0b3 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/define_CudaUtils_8h_1a98e5ae1fe30ec3f2c1d7f60ffaf70e8e.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/define_CudaUtils_8h_1a98e5ae1fe30ec3f2c1d7f60ffaf70e8e.rst:4 +msgid "Define DEVICE_RESET" +msgstr "" + +#: ../../api/define_CudaUtils_8h_1a98e5ae1fe30ec3f2c1d7f60ffaf70e8e.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_utils_CudaUtils.h`" +msgstr "" + +#: ../../api/define_CudaUtils_8h_1a98e5ae1fe30ec3f2c1d7f60ffaf70e8e.rst:10 +msgid "Define Documentation" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/define_CudaUtils_8h_1af956e3938f5abff900fb99c4a25446a5.po b/docs/locale/zh_CN/LC_MESSAGES/api/define_CudaUtils_8h_1af956e3938f5abff900fb99c4a25446a5.po new file mode 100644 index 00000000..c0114036 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/define_CudaUtils_8h_1af956e3938f5abff900fb99c4a25446a5.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/define_CudaUtils_8h_1af956e3938f5abff900fb99c4a25446a5.rst:4 +msgid "Define checkCudaErrors" +msgstr "" + +#: ../../api/define_CudaUtils_8h_1af956e3938f5abff900fb99c4a25446a5.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_utils_CudaUtils.h`" +msgstr "" + +#: ../../api/define_CudaUtils_8h_1af956e3938f5abff900fb99c4a25446a5.rst:10 +msgid "Define Documentation" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/define_GTWR_8h_1a4ee22f0a6287445f494fa646d5f9cec5.po b/docs/locale/zh_CN/LC_MESSAGES/api/define_GTWR_8h_1a4ee22f0a6287445f494fa646d5f9cec5.po new file mode 100644 index 00000000..cbc61f20 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/define_GTWR_8h_1a4ee22f0a6287445f494fa646d5f9cec5.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/define_GTWR_8h_1a4ee22f0a6287445f494fa646d5f9cec5.rst:4 +msgid "Define GWM_LOG_TAG_LAMBDA_OPTIMIZATION" +msgstr "" + +#: ../../api/define_GTWR_8h_1a4ee22f0a6287445f494fa646d5f9cec5.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_GTWR.h`" +msgstr "" + +#: ../../api/define_GTWR_8h_1a4ee22f0a6287445f494fa646d5f9cec5.rst:10 +msgid "Define Documentation" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/define_GWRMultiscale_8h_1a4de4b07e497281666f6e679e8dfb3f34.po b/docs/locale/zh_CN/LC_MESSAGES/api/define_GWRMultiscale_8h_1a4de4b07e497281666f6e679e8dfb3f34.po new file mode 100644 index 00000000..dfbeaecd --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/define_GWRMultiscale_8h_1a4de4b07e497281666f6e679e8dfb3f34.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/define_GWRMultiscale_8h_1a4de4b07e497281666f6e679e8dfb3f34.rst:4 +msgid "Define GWM_LOG_TAG_MGWR_BACKFITTING" +msgstr "" + +#: ../../api/define_GWRMultiscale_8h_1a4de4b07e497281666f6e679e8dfb3f34.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_GWRMultiscale.h`" +msgstr "" + +#: ../../api/define_GWRMultiscale_8h_1a4de4b07e497281666f6e679e8dfb3f34.rst:10 +msgid "Define Documentation" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/define_GWRMultiscale_8h_1ac91c337e12bc54e52a6afa7dcd3541a0.po b/docs/locale/zh_CN/LC_MESSAGES/api/define_GWRMultiscale_8h_1ac91c337e12bc54e52a6afa7dcd3541a0.po new file mode 100644 index 00000000..8d191649 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/define_GWRMultiscale_8h_1ac91c337e12bc54e52a6afa7dcd3541a0.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/define_GWRMultiscale_8h_1ac91c337e12bc54e52a6afa7dcd3541a0.rst:4 +msgid "Define GWM_LOG_MGWR_BACKFITTING" +msgstr "" + +#: ../../api/define_GWRMultiscale_8h_1ac91c337e12bc54e52a6afa7dcd3541a0.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_GWRMultiscale.h`" +msgstr "" + +#: ../../api/define_GWRMultiscale_8h_1ac91c337e12bc54e52a6afa7dcd3541a0.rst:10 +msgid "Define Documentation" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/define_GWRMultiscale_8h_1aeea4650739600703f02c2211eebabad2.po b/docs/locale/zh_CN/LC_MESSAGES/api/define_GWRMultiscale_8h_1aeea4650739600703f02c2211eebabad2.po new file mode 100644 index 00000000..158209c8 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/define_GWRMultiscale_8h_1aeea4650739600703f02c2211eebabad2.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/define_GWRMultiscale_8h_1aeea4650739600703f02c2211eebabad2.rst:4 +msgid "Define GWM_LOG_TAG_MGWR_INITIAL_BW" +msgstr "" + +#: ../../api/define_GWRMultiscale_8h_1aeea4650739600703f02c2211eebabad2.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_GWRMultiscale.h`" +msgstr "" + +#: ../../api/define_GWRMultiscale_8h_1aeea4650739600703f02c2211eebabad2.rst:10 +msgid "Define Documentation" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/define_IBandwidthSelectable_8h_1ac255781338c0f15a823cefaca6911599.po b/docs/locale/zh_CN/LC_MESSAGES/api/define_IBandwidthSelectable_8h_1ac255781338c0f15a823cefaca6911599.po new file mode 100644 index 00000000..4dfe6adb --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/define_IBandwidthSelectable_8h_1ac255781338c0f15a823cefaca6911599.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/define_IBandwidthSelectable_8h_1ac255781338c0f15a823cefaca6911599.rst:4 +msgid "Define GWM_LOG_TAG_BANDWIDTH_CIRTERION" +msgstr "" + +#: ../../api/define_IBandwidthSelectable_8h_1ac255781338c0f15a823cefaca6911599.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_IBandwidthSelectable.h`" +msgstr "" + +#: ../../api/define_IBandwidthSelectable_8h_1ac255781338c0f15a823cefaca6911599.rst:10 +msgid "Define Documentation" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/define_IGWRBasicGpuTask_8h_1ab09548a5cce8126021f32a1468f4e75f.po b/docs/locale/zh_CN/LC_MESSAGES/api/define_IGWRBasicGpuTask_8h_1ab09548a5cce8126021f32a1468f4e75f.po new file mode 100644 index 00000000..5f3549a2 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/define_IGWRBasicGpuTask_8h_1ab09548a5cce8126021f32a1468f4e75f.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/define_IGWRBasicGpuTask_8h_1ab09548a5cce8126021f32a1468f4e75f.rst:4 +msgid "Define GWMODELCUDA_API" +msgstr "" + +#: ../../api/define_IGWRBasicGpuTask_8h_1ab09548a5cce8126021f32a1468f4e75f.rst:6 +msgid "Defined in :ref:`file_include_gwmodelcuda_IGWRBasicGpuTask.h`" +msgstr "" + +#: ../../api/define_IGWRBasicGpuTask_8h_1ab09548a5cce8126021f32a1468f4e75f.rst:10 +msgid "Define Documentation" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/define_IVarialbeSelectable_8h_1a3f837f4b03b05c949efd517a382ef535.po b/docs/locale/zh_CN/LC_MESSAGES/api/define_IVarialbeSelectable_8h_1a3f837f4b03b05c949efd517a382ef535.po new file mode 100644 index 00000000..63742b6b --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/define_IVarialbeSelectable_8h_1a3f837f4b03b05c949efd517a382ef535.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/define_IVarialbeSelectable_8h_1a3f837f4b03b05c949efd517a382ef535.rst:4 +msgid "Define GWM_LOG_TAG_VARIABLE_CRITERION" +msgstr "" + +#: ../../api/define_IVarialbeSelectable_8h_1a3f837f4b03b05c949efd517a382ef535.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_IVarialbeSelectable.h`" +msgstr "" + +#: ../../api/define_IVarialbeSelectable_8h_1a3f837f4b03b05c949efd517a382ef535.rst:10 +msgid "Define Documentation" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/dir_include.po b/docs/locale/zh_CN/LC_MESSAGES/api/dir_include.po index fd1fae86..3c9467cf 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/dir_include.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/dir_include.po @@ -5,18 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-23 20:21+0000\n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" "PO-Revision-Date: 2023-01-31 12:30+0000\n" "Last-Translator: Yigong Hu \n" -"Language-Team: \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/dir_include.rst:5 msgid "Directory include" @@ -31,13 +31,18 @@ msgid "Subdirectories" msgstr "子目录" #: ../../api/dir_include.rst:13 +msgid ":ref:`dir_include_gwmodelcuda`" +msgstr "" + +#: ../../api/dir_include.rst:14 msgid ":ref:`dir_include_gwmodelpp`" msgstr "" -#: ../../api/dir_include.rst:17 +#: ../../api/dir_include.rst:18 msgid "Files" msgstr "文件" -#: ../../api/dir_include.rst:19 +#: ../../api/dir_include.rst:20 msgid ":ref:`file_include_gwmodel.h`" msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/dir_include_gwmodelcuda.po b/docs/locale/zh_CN/LC_MESSAGES/api/dir_include_gwmodelcuda.po new file mode 100644 index 00000000..5b8b9487 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/dir_include_gwmodelcuda.po @@ -0,0 +1,49 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/dir_include_gwmodelcuda.rst:5 +msgid "Directory gwmodelcuda" +msgstr "" + +#: ../../api/dir_include_gwmodelcuda.rst:8 +msgid "|exhale_lsh| :ref:`Parent directory ` (``include``)" +msgstr "" + +#: ../../api/dir_include_gwmodelcuda.rst:13 +msgid "*Directory path:* ``include/gwmodelcuda``" +msgstr "" + +#: ../../api/dir_include_gwmodelcuda.rst:17 +msgid "Files" +msgstr "" + +#: ../../api/dir_include_gwmodelcuda.rst:19 +msgid ":ref:`file_include_gwmodelcuda_GWRBasicGpuTask.h`" +msgstr "" + +#: ../../api/dir_include_gwmodelcuda.rst:20 +msgid ":ref:`file_include_gwmodelcuda_IGWRBasicGpuTask.h`" +msgstr "" + +#: ../../api/dir_include_gwmodelcuda.rst:21 +msgid ":ref:`file_include_gwmodelcuda_StdTelegram.h`" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/dir_include_gwmodelpp.po b/docs/locale/zh_CN/LC_MESSAGES/api/dir_include_gwmodelpp.po index 1c173843..cebfd3dd 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/dir_include_gwmodelpp.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/dir_include_gwmodelpp.po @@ -5,18 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-23 20:21+0000\n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" "PO-Revision-Date: 2023-01-31 12:31+0000\n" "Last-Translator: Yigong Hu \n" -"Language-Team: \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/dir_include_gwmodelpp.rst:5 msgid "Directory gwmodelpp" @@ -38,114 +38,134 @@ msgstr "子目录" msgid ":ref:`dir_include_gwmodelpp_spatialweight`" msgstr "" -#: ../../api/dir_include_gwmodelpp.rst:22 +#: ../../api/dir_include_gwmodelpp.rst:19 +msgid ":ref:`dir_include_gwmodelpp_utils`" +msgstr "" + +#: ../../api/dir_include_gwmodelpp.rst:23 msgid "Files" msgstr "文件" -#: ../../api/dir_include_gwmodelpp.rst:24 +#: ../../api/dir_include_gwmodelpp.rst:25 msgid ":ref:`file_include_gwmodelpp_Algorithm.h`" msgstr "" -#: ../../api/dir_include_gwmodelpp.rst:25 +#: ../../api/dir_include_gwmodelpp.rst:26 msgid ":ref:`file_include_gwmodelpp_BandwidthSelector.h`" msgstr "" -#: ../../api/dir_include_gwmodelpp.rst:26 +#: ../../api/dir_include_gwmodelpp.rst:27 msgid ":ref:`file_include_gwmodelpp_BinomialModel.h`" msgstr "" -#: ../../api/dir_include_gwmodelpp.rst:27 +#: ../../api/dir_include_gwmodelpp.rst:28 msgid ":ref:`file_include_gwmodelpp_GeneralizedLinearModel.h`" msgstr "" -#: ../../api/dir_include_gwmodelpp.rst:28 -msgid ":ref:`file_include_gwmodelpp_GWDR.h`" +#: ../../api/dir_include_gwmodelpp.rst:29 +msgid ":ref:`file_include_gwmodelpp_GTWR.h`" msgstr "" -#: ../../api/dir_include_gwmodelpp.rst:29 +#: ../../api/dir_include_gwmodelpp.rst:30 +msgid ":ref:`file_include_gwmodelpp_GWDA.h`" +msgstr "" + +#: ../../api/dir_include_gwmodelpp.rst:31 msgid ":ref:`file_include_gwmodelpp_GWPCA.h`" msgstr "" -#: ../../api/dir_include_gwmodelpp.rst:30 +#: ../../api/dir_include_gwmodelpp.rst:32 msgid ":ref:`file_include_gwmodelpp_GWRBase.h`" msgstr "" -#: ../../api/dir_include_gwmodelpp.rst:31 +#: ../../api/dir_include_gwmodelpp.rst:33 msgid ":ref:`file_include_gwmodelpp_GWRBasic.h`" msgstr "" -#: ../../api/dir_include_gwmodelpp.rst:32 +#: ../../api/dir_include_gwmodelpp.rst:34 msgid ":ref:`file_include_gwmodelpp_GWRGeneralized.h`" msgstr "" -#: ../../api/dir_include_gwmodelpp.rst:33 +#: ../../api/dir_include_gwmodelpp.rst:35 msgid ":ref:`file_include_gwmodelpp_GWRLocalCollinearity.h`" msgstr "" -#: ../../api/dir_include_gwmodelpp.rst:34 +#: ../../api/dir_include_gwmodelpp.rst:36 msgid ":ref:`file_include_gwmodelpp_GWRMultiscale.h`" msgstr "" -#: ../../api/dir_include_gwmodelpp.rst:35 +#: ../../api/dir_include_gwmodelpp.rst:37 msgid ":ref:`file_include_gwmodelpp_GWRRobust.h`" msgstr "" -#: ../../api/dir_include_gwmodelpp.rst:36 +#: ../../api/dir_include_gwmodelpp.rst:38 msgid ":ref:`file_include_gwmodelpp_GWRScalable.h`" msgstr "" -#: ../../api/dir_include_gwmodelpp.rst:37 +#: ../../api/dir_include_gwmodelpp.rst:39 msgid ":ref:`file_include_gwmodelpp_GWSS.h`" msgstr "" -#: ../../api/dir_include_gwmodelpp.rst:38 +#: ../../api/dir_include_gwmodelpp.rst:40 msgid ":ref:`file_include_gwmodelpp_IBandwidthSelectable.h`" msgstr "" -#: ../../api/dir_include_gwmodelpp.rst:39 +#: ../../api/dir_include_gwmodelpp.rst:41 msgid ":ref:`file_include_gwmodelpp_IMultivariableAnalysis.h`" msgstr "" -#: ../../api/dir_include_gwmodelpp.rst:40 +#: ../../api/dir_include_gwmodelpp.rst:42 msgid ":ref:`file_include_gwmodelpp_IParallelizable.h`" msgstr "" -#: ../../api/dir_include_gwmodelpp.rst:41 +#: ../../api/dir_include_gwmodelpp.rst:43 msgid ":ref:`file_include_gwmodelpp_IRegressionAnalysis.h`" msgstr "" -#: ../../api/dir_include_gwmodelpp.rst:42 +#: ../../api/dir_include_gwmodelpp.rst:44 msgid ":ref:`file_include_gwmodelpp_IVarialbeSelectable.h`" msgstr "" -#: ../../api/dir_include_gwmodelpp.rst:43 +#: ../../api/dir_include_gwmodelpp.rst:45 msgid ":ref:`file_include_gwmodelpp_LinearModel.h`" msgstr "" -#: ../../api/dir_include_gwmodelpp.rst:44 +#: ../../api/dir_include_gwmodelpp.rst:46 msgid ":ref:`file_include_gwmodelpp_Logger.h`" msgstr "" -#: ../../api/dir_include_gwmodelpp.rst:45 +#: ../../api/dir_include_gwmodelpp.rst:47 msgid ":ref:`file_include_gwmodelpp_PoissonModel.h`" msgstr "" -#: ../../api/dir_include_gwmodelpp.rst:46 +#: ../../api/dir_include_gwmodelpp.rst:48 msgid ":ref:`file_include_gwmodelpp_RegressionDiagnostic.h`" msgstr "" -#: ../../api/dir_include_gwmodelpp.rst:47 +#: ../../api/dir_include_gwmodelpp.rst:49 +msgid ":ref:`file_include_gwmodelpp_SDR.h`" +msgstr "" + +#: ../../api/dir_include_gwmodelpp.rst:50 msgid ":ref:`file_include_gwmodelpp_SpatialAlgorithm.h`" msgstr "" -#: ../../api/dir_include_gwmodelpp.rst:48 +#: ../../api/dir_include_gwmodelpp.rst:51 msgid ":ref:`file_include_gwmodelpp_SpatialMonoscaleAlgorithm.h`" msgstr "" -#: ../../api/dir_include_gwmodelpp.rst:49 +#: ../../api/dir_include_gwmodelpp.rst:52 msgid ":ref:`file_include_gwmodelpp_SpatialMultiscaleAlgorithm.h`" msgstr "" -#: ../../api/dir_include_gwmodelpp.rst:50 +#: ../../api/dir_include_gwmodelpp.rst:53 +msgid ":ref:`file_include_gwmodelpp_Status.h`" +msgstr "" + +#: ../../api/dir_include_gwmodelpp.rst:54 msgid ":ref:`file_include_gwmodelpp_VariableForwardSelector.h`" msgstr "" + +#~ msgid ":ref:`file_include_gwmodelpp_GWDR.h`" +#~ msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/dir_include_gwmodelpp_spatialweight.po b/docs/locale/zh_CN/LC_MESSAGES/api/dir_include_gwmodelpp_spatialweight.po index 3d363642..748f5f01 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/dir_include_gwmodelpp_spatialweight.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/dir_include_gwmodelpp_spatialweight.po @@ -5,18 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-23 20:21+0000\n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" "PO-Revision-Date: 2023-01-31 12:31+0000\n" "Last-Translator: Yigong Hu \n" -"Language-Team: \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/dir_include_gwmodelpp_spatialweight.rst:5 msgid "Directory spatialweight" @@ -32,38 +32,53 @@ msgstr "" msgid "*Directory path:* ``include/gwmodelpp/spatialweight``" msgstr "*目录路径:* ``include/gwmodelpp/spatialweight``" -#: ../../api/dir_include_gwmodelpp_spatialweight.rst:17 +#: ../../api/dir_include_gwmodelpp_spatialweight.rst:16 +msgid "Subdirectories" +msgstr "" + +#: ../../api/dir_include_gwmodelpp_spatialweight.rst:18 +#, fuzzy +msgid ":ref:`dir_include_gwmodelpp_spatialweight_cuda`" +msgstr "*目录路径:* ``include/gwmodelpp/spatialweight``" + +#: ../../api/dir_include_gwmodelpp_spatialweight.rst:22 msgid "Files" msgstr "文件" -#: ../../api/dir_include_gwmodelpp_spatialweight.rst:19 +#: ../../api/dir_include_gwmodelpp_spatialweight.rst:24 msgid ":ref:`file_include_gwmodelpp_spatialweight_BandwidthWeight.h`" msgstr "" -#: ../../api/dir_include_gwmodelpp_spatialweight.rst:20 +#: ../../api/dir_include_gwmodelpp_spatialweight.rst:25 msgid ":ref:`file_include_gwmodelpp_spatialweight_CRSDistance.h`" msgstr "" -#: ../../api/dir_include_gwmodelpp_spatialweight.rst:21 +#: ../../api/dir_include_gwmodelpp_spatialweight.rst:26 +#, fuzzy +msgid ":ref:`file_include_gwmodelpp_spatialweight_CRSSTDistance.h`" +msgstr "*目录路径:* ``include/gwmodelpp/spatialweight``" + +#: ../../api/dir_include_gwmodelpp_spatialweight.rst:27 msgid ":ref:`file_include_gwmodelpp_spatialweight_Distance.h`" msgstr "" -#: ../../api/dir_include_gwmodelpp_spatialweight.rst:22 +#: ../../api/dir_include_gwmodelpp_spatialweight.rst:28 msgid ":ref:`file_include_gwmodelpp_spatialweight_DMatDistance.h`" msgstr "" -#: ../../api/dir_include_gwmodelpp_spatialweight.rst:23 +#: ../../api/dir_include_gwmodelpp_spatialweight.rst:29 msgid ":ref:`file_include_gwmodelpp_spatialweight_MinkwoskiDistance.h`" msgstr "" -#: ../../api/dir_include_gwmodelpp_spatialweight.rst:24 +#: ../../api/dir_include_gwmodelpp_spatialweight.rst:30 msgid ":ref:`file_include_gwmodelpp_spatialweight_OneDimDistance.h`" msgstr "" -#: ../../api/dir_include_gwmodelpp_spatialweight.rst:25 +#: ../../api/dir_include_gwmodelpp_spatialweight.rst:31 msgid ":ref:`file_include_gwmodelpp_spatialweight_SpatialWeight.h`" msgstr "" -#: ../../api/dir_include_gwmodelpp_spatialweight.rst:26 +#: ../../api/dir_include_gwmodelpp_spatialweight.rst:32 msgid ":ref:`file_include_gwmodelpp_spatialweight_Weight.h`" msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/dir_include_gwmodelpp_spatialweight_cuda.po b/docs/locale/zh_CN/LC_MESSAGES/api/dir_include_gwmodelpp_spatialweight_cuda.po new file mode 100644 index 00000000..215cd6b8 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/dir_include_gwmodelpp_spatialweight_cuda.po @@ -0,0 +1,52 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/dir_include_gwmodelpp_spatialweight_cuda.rst:5 +msgid "Directory cuda" +msgstr "" + +#: ../../api/dir_include_gwmodelpp_spatialweight_cuda.rst:8 +msgid "" +"|exhale_lsh| :ref:`Parent directory " +"` " +"(``include/gwmodelpp/spatialweight``)" +msgstr "" + +#: ../../api/dir_include_gwmodelpp_spatialweight_cuda.rst:13 +msgid "*Directory path:* ``include/gwmodelpp/spatialweight/cuda``" +msgstr "" + +#: ../../api/dir_include_gwmodelpp_spatialweight_cuda.rst:17 +msgid "Files" +msgstr "" + +#: ../../api/dir_include_gwmodelpp_spatialweight_cuda.rst:19 +msgid ":ref:`file_include_gwmodelpp_spatialweight_cuda_BandwidthWeightKernel.h`" +msgstr "" + +#: ../../api/dir_include_gwmodelpp_spatialweight_cuda.rst:20 +msgid ":ref:`file_include_gwmodelpp_spatialweight_cuda_CRSDistanceKernel.h`" +msgstr "" + +#: ../../api/dir_include_gwmodelpp_spatialweight_cuda.rst:21 +msgid ":ref:`file_include_gwmodelpp_spatialweight_cuda_ISpatialCudaEnabled.h`" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/dir_include_gwmodelpp_utils.po b/docs/locale/zh_CN/LC_MESSAGES/api/dir_include_gwmodelpp_utils.po new file mode 100644 index 00000000..a6c74abd --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/dir_include_gwmodelpp_utils.po @@ -0,0 +1,47 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/dir_include_gwmodelpp_utils.rst:5 +msgid "Directory utils" +msgstr "" + +#: ../../api/dir_include_gwmodelpp_utils.rst:8 +msgid "" +"|exhale_lsh| :ref:`Parent directory ` " +"(``include/gwmodelpp``)" +msgstr "" + +#: ../../api/dir_include_gwmodelpp_utils.rst:13 +msgid "*Directory path:* ``include/gwmodelpp/utils``" +msgstr "" + +#: ../../api/dir_include_gwmodelpp_utils.rst:17 +msgid "Files" +msgstr "" + +#: ../../api/dir_include_gwmodelpp_utils.rst:19 +msgid ":ref:`file_include_gwmodelpp_utils_CudaUtils.h`" +msgstr "" + +#: ../../api/dir_include_gwmodelpp_utils.rst:20 +msgid ":ref:`file_include_gwmodelpp_utils_cumat.hpp`" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/enum_Status_8h_1a9b4ae87cab1052ee0eebebe5a1ae19d9.po b/docs/locale/zh_CN/LC_MESSAGES/api/enum_Status_8h_1a9b4ae87cab1052ee0eebebe5a1ae19d9.po new file mode 100644 index 00000000..56c8a236 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/enum_Status_8h_1a9b4ae87cab1052ee0eebebe5a1ae19d9.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/enum_Status_8h_1a9b4ae87cab1052ee0eebebe5a1ae19d9.rst:4 +msgid "Enum Status" +msgstr "" + +#: ../../api/enum_Status_8h_1a9b4ae87cab1052ee0eebebe5a1ae19d9.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_Status.h`" +msgstr "" + +#: ../../api/enum_Status_8h_1a9b4ae87cab1052ee0eebebe5a1ae19d9.rst:10 +msgid "Enum Documentation" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodel.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodel.h.po index 4eb8124e..c0f532dd 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodel.h.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodel.h.po @@ -5,18 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-30 11:13+0000\n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" "PO-Revision-Date: 2023-01-31 12:33+0000\n" "Last-Translator: Yigong Hu \n" -"Language-Team: \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/file_include_gwmodel.h.rst:5 msgid "File gwmodel.h" @@ -28,12 +28,11 @@ msgstr "" #: ../../api/file_include_gwmodel.h.rst:13 msgid "" -"This file provide the headers of this library. If the library is built as a " -"static library, this header includes all the C++ headers. If the library is " -"built as a shared library, this header provides interface functions for the " -"calling of C++ classes." -msgstr "" -"该文件提供该库的头文件。如果以静态方式编译该库,则头文件包含所有C++头文件。" +"This file provide the headers of this library. If the library is built as" +" a static library, this header includes all the C++ headers. If the " +"library is built as a shared library, this header provides interface " +"functions for the calling of C++ classes." +msgstr "该文件提供该库的头文件。如果以静态方式编译该库,则头文件包含所有C++头文件。" #: ../../api/file_include_gwmodel.h.rst:19 msgid "Contents" @@ -73,116 +72,135 @@ msgstr "" #: ../../api/file_include_gwmodel.h.rst:54 msgid "" -"``gwmodelpp/BandwidthSelector.h`` (:ref:" -"`file_include_gwmodelpp_BandwidthSelector.h`)" +"``gwmodelpp/BandwidthSelector.h`` " +"(:ref:`file_include_gwmodelpp_BandwidthSelector.h`)" msgstr "" #: ../../api/file_include_gwmodel.h.rst:56 -msgid "``gwmodelpp/GWDR.h`` (:ref:`file_include_gwmodelpp_GWDR.h`)" +msgid "``gwmodelpp/GWPCA.h`` (:ref:`file_include_gwmodelpp_GWPCA.h`)" msgstr "" #: ../../api/file_include_gwmodel.h.rst:58 -msgid "``gwmodelpp/GWPCA.h`` (:ref:`file_include_gwmodelpp_GWPCA.h`)" +msgid "``gwmodelpp/GWRBase.h`` (:ref:`file_include_gwmodelpp_GWRBase.h`)" msgstr "" #: ../../api/file_include_gwmodel.h.rst:60 -msgid "``gwmodelpp/GWRBase.h`` (:ref:`file_include_gwmodelpp_GWRBase.h`)" +msgid "``gwmodelpp/GWRBasic.h`` (:ref:`file_include_gwmodelpp_GWRBasic.h`)" msgstr "" #: ../../api/file_include_gwmodel.h.rst:62 -msgid "``gwmodelpp/GWRBasic.h`` (:ref:`file_include_gwmodelpp_GWRBasic.h`)" +msgid "" +"``gwmodelpp/GWRGeneralized.h`` " +"(:ref:`file_include_gwmodelpp_GWRGeneralized.h`)" msgstr "" #: ../../api/file_include_gwmodel.h.rst:64 msgid "" -"``gwmodelpp/GWRGeneralized.h`` (:ref:`file_include_gwmodelpp_GWRGeneralized.h`)" +"``gwmodelpp/GWRLocalCollinearity.h`` " +"(:ref:`file_include_gwmodelpp_GWRLocalCollinearity.h`)" msgstr "" #: ../../api/file_include_gwmodel.h.rst:66 msgid "" -"``gwmodelpp/GWRLocalCollinearity.h`` (:ref:" -"`file_include_gwmodelpp_GWRLocalCollinearity.h`)" +"``gwmodelpp/GWRMultiscale.h`` " +"(:ref:`file_include_gwmodelpp_GWRMultiscale.h`)" msgstr "" #: ../../api/file_include_gwmodel.h.rst:68 -msgid "" -"``gwmodelpp/GWRMultiscale.h`` (:ref:`file_include_gwmodelpp_GWRMultiscale.h`)" +msgid "``gwmodelpp/GWRRobust.h`` (:ref:`file_include_gwmodelpp_GWRRobust.h`)" msgstr "" #: ../../api/file_include_gwmodel.h.rst:70 -msgid "``gwmodelpp/GWRRobust.h`` (:ref:`file_include_gwmodelpp_GWRRobust.h`)" +msgid "``gwmodelpp/GWRScalable.h`` (:ref:`file_include_gwmodelpp_GWRScalable.h`)" msgstr "" #: ../../api/file_include_gwmodel.h.rst:72 -msgid "``gwmodelpp/GWRScalable.h`` (:ref:`file_include_gwmodelpp_GWRScalable.h`)" +msgid "``gwmodelpp/GWSS.h`` (:ref:`file_include_gwmodelpp_GWSS.h`)" msgstr "" #: ../../api/file_include_gwmodel.h.rst:74 -msgid "``gwmodelpp/GWSS.h`` (:ref:`file_include_gwmodelpp_GWSS.h`)" +msgid "``gwmodelpp/SDR.h`` (:ref:`file_include_gwmodelpp_SDR.h`)" msgstr "" #: ../../api/file_include_gwmodel.h.rst:76 msgid "" -"``gwmodelpp/SpatialAlgorithm.h`` (:ref:" -"`file_include_gwmodelpp_SpatialAlgorithm.h`)" +"``gwmodelpp/SpatialAlgorithm.h`` " +"(:ref:`file_include_gwmodelpp_SpatialAlgorithm.h`)" msgstr "" #: ../../api/file_include_gwmodel.h.rst:78 msgid "" -"``gwmodelpp/SpatialMonoscaleAlgorithm.h`` (:ref:" -"`file_include_gwmodelpp_SpatialMonoscaleAlgorithm.h`)" +"``gwmodelpp/SpatialMonoscaleAlgorithm.h`` " +"(:ref:`file_include_gwmodelpp_SpatialMonoscaleAlgorithm.h`)" msgstr "" #: ../../api/file_include_gwmodel.h.rst:80 msgid "" -"``gwmodelpp/SpatialMultiscaleAlgorithm.h`` (:ref:" -"`file_include_gwmodelpp_SpatialMultiscaleAlgorithm.h`)" +"``gwmodelpp/SpatialMultiscaleAlgorithm.h`` " +"(:ref:`file_include_gwmodelpp_SpatialMultiscaleAlgorithm.h`)" msgstr "" #: ../../api/file_include_gwmodel.h.rst:82 msgid "" -"``gwmodelpp/VariableForwardSelector.h`` (:ref:" -"`file_include_gwmodelpp_VariableForwardSelector.h`)" +"``gwmodelpp/VariableForwardSelector.h`` " +"(:ref:`file_include_gwmodelpp_VariableForwardSelector.h`)" msgstr "" #: ../../api/file_include_gwmodel.h.rst:84 msgid "" -"``gwmodelpp/spatialweight/BandwidthWeight.h`` (:ref:" -"`file_include_gwmodelpp_spatialweight_BandwidthWeight.h`)" +"``gwmodelpp/spatialweight/BandwidthWeight.h`` " +"(:ref:`file_include_gwmodelpp_spatialweight_BandwidthWeight.h`)" msgstr "" #: ../../api/file_include_gwmodel.h.rst:86 msgid "" -"``gwmodelpp/spatialweight/CRSDistance.h`` (:ref:" -"`file_include_gwmodelpp_spatialweight_CRSDistance.h`)" +"``gwmodelpp/spatialweight/CRSDistance.h`` " +"(:ref:`file_include_gwmodelpp_spatialweight_CRSDistance.h`)" msgstr "" #: ../../api/file_include_gwmodel.h.rst:88 msgid "" -"``gwmodelpp/spatialweight/DMatDistance.h`` (:ref:" -"`file_include_gwmodelpp_spatialweight_DMatDistance.h`)" +"``gwmodelpp/spatialweight/DMatDistance.h`` " +"(:ref:`file_include_gwmodelpp_spatialweight_DMatDistance.h`)" msgstr "" #: ../../api/file_include_gwmodel.h.rst:90 msgid "" -"``gwmodelpp/spatialweight/Distance.h`` (:ref:" -"`file_include_gwmodelpp_spatialweight_Distance.h`)" +"``gwmodelpp/spatialweight/Distance.h`` " +"(:ref:`file_include_gwmodelpp_spatialweight_Distance.h`)" msgstr "" #: ../../api/file_include_gwmodel.h.rst:92 msgid "" -"``gwmodelpp/spatialweight/MinkwoskiDistance.h`` (:ref:" -"`file_include_gwmodelpp_spatialweight_MinkwoskiDistance.h`)" +"``gwmodelpp/spatialweight/MinkwoskiDistance.h`` " +"(:ref:`file_include_gwmodelpp_spatialweight_MinkwoskiDistance.h`)" msgstr "" #: ../../api/file_include_gwmodel.h.rst:94 msgid "" -"``gwmodelpp/spatialweight/SpatialWeight.h`` (:ref:" -"`file_include_gwmodelpp_spatialweight_SpatialWeight.h`)" +"``gwmodelpp/spatialweight/SpatialWeight.h`` " +"(:ref:`file_include_gwmodelpp_spatialweight_SpatialWeight.h`)" msgstr "" #: ../../api/file_include_gwmodel.h.rst:96 msgid "" -"``gwmodelpp/spatialweight/Weight.h`` (:ref:" -"`file_include_gwmodelpp_spatialweight_Weight.h`)" +"``gwmodelpp/spatialweight/Weight.h`` " +"(:ref:`file_include_gwmodelpp_spatialweight_Weight.h`)" +msgstr "" + +#: ../../api/file_include_gwmodel.h.rst:101 +#, fuzzy +msgid "Included By" +msgstr "包含" + +#: ../../api/file_include_gwmodel.h.rst:104 +msgid ":ref:`file_include_gwmodelcuda_GWRBasicGpuTask.h`" +msgstr "" + +#: ../../api/file_include_gwmodel.h.rst:106 +msgid ":ref:`file_include_gwmodelcuda_StdTelegram.h`" msgstr "" + +#~ msgid "``gwmodelpp/GWDR.h`` (:ref:`file_include_gwmodelpp_GWDR.h`)" +#~ msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelcuda_GWRBasicGpuTask.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelcuda_GWRBasicGpuTask.h.po new file mode 100644 index 00000000..5682bc79 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelcuda_GWRBasicGpuTask.h.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: 2024-02-07 12:24+0000\n" +"Last-Translator: \n" +"Language-Team: zh_CN \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"Generated-By: Babel 2.11.0\n" +"X-Generator: Poedit 3.4.2\n" + +#: ../../api/file_include_gwmodelcuda_GWRBasicGpuTask.h.rst:5 +msgid "File GWRBasicGpuTask.h" +msgstr "文件 GWRBasicGpuTask.h" + +#: ../../api/file_include_gwmodelcuda_GWRBasicGpuTask.h.rst:7 +msgid "" +"|exhale_lsh| :ref:`Parent directory ` " +"(``include/gwmodelcuda``)" +msgstr "" + +#: ../../api/file_include_gwmodelcuda_GWRBasicGpuTask.h.rst:14 +msgid "Contents" +msgstr "内容" + +#: ../../api/file_include_gwmodelcuda_GWRBasicGpuTask.h.rst:17 +msgid "Definition (``include/gwmodelcuda/GWRBasicGpuTask.h``)" +msgstr "" + +#: ../../api/file_include_gwmodelcuda_GWRBasicGpuTask.h.rst:30 +msgid "Includes" +msgstr "包含" + +#: ../../api/file_include_gwmodelcuda_GWRBasicGpuTask.h.rst:33 +msgid "``../gwmodel.h``" +msgstr "" + +#: ../../api/file_include_gwmodelcuda_GWRBasicGpuTask.h.rst:35 +msgid "" +"``IGWRBasicGpuTask.h`` (:ref:" +"`file_include_gwmodelcuda_IGWRBasicGpuTask.h`)" +msgstr "" + +#: ../../api/file_include_gwmodelcuda_GWRBasicGpuTask.h.rst:37 +msgid "``armadillo``" +msgstr "" + +#: ../../api/file_include_gwmodelcuda_GWRBasicGpuTask.h.rst:39 +msgid "``memory``" +msgstr "" + +#: ../../api/file_include_gwmodelcuda_GWRBasicGpuTask.h.rst:41 +msgid "``vector``" +msgstr "" + +#: ../../api/file_include_gwmodelcuda_GWRBasicGpuTask.h.rst:49 +msgid "Classes" +msgstr "类" + +#: ../../api/file_include_gwmodelcuda_GWRBasicGpuTask.h.rst:52 +msgid ":ref:`exhale_class_classGWRBasicGpuTask`" +msgstr "" diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelcuda_IGWRBasicGpuTask.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelcuda_IGWRBasicGpuTask.h.po new file mode 100644 index 00000000..6721326b --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelcuda_IGWRBasicGpuTask.h.po @@ -0,0 +1,79 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/file_include_gwmodelcuda_IGWRBasicGpuTask.h.rst:5 +msgid "File IGWRBasicGpuTask.h" +msgstr "" + +#: ../../api/file_include_gwmodelcuda_IGWRBasicGpuTask.h.rst:7 +msgid "" +"|exhale_lsh| :ref:`Parent directory ` " +"(``include/gwmodelcuda``)" +msgstr "" + +#: ../../api/file_include_gwmodelcuda_IGWRBasicGpuTask.h.rst:14 +msgid "Contents" +msgstr "" + +#: ../../api/file_include_gwmodelcuda_IGWRBasicGpuTask.h.rst:17 +msgid "Definition (``include/gwmodelcuda/IGWRBasicGpuTask.h``)" +msgstr "" + +#: ../../api/file_include_gwmodelcuda_IGWRBasicGpuTask.h.rst:32 +msgid "Included By" +msgstr "" + +#: ../../api/file_include_gwmodelcuda_IGWRBasicGpuTask.h.rst:35 +msgid ":ref:`file_include_gwmodelcuda_GWRBasicGpuTask.h`" +msgstr "" + +#: ../../api/file_include_gwmodelcuda_IGWRBasicGpuTask.h.rst:41 +msgid "Classes" +msgstr "" + +#: ../../api/file_include_gwmodelcuda_IGWRBasicGpuTask.h.rst:44 +msgid ":ref:`exhale_class_classIGWRBasicGpuTask`" +msgstr "" + +#: ../../api/file_include_gwmodelcuda_IGWRBasicGpuTask.h.rst:48 +msgid "Functions" +msgstr "" + +#: ../../api/file_include_gwmodelcuda_IGWRBasicGpuTask.h.rst:51 +msgid ":ref:`exhale_function_IGWRBasicGpuTask_8h_1a4487a31588c77e3eceebf257737787d8`" +msgstr "" + +#: ../../api/file_include_gwmodelcuda_IGWRBasicGpuTask.h.rst:53 +msgid ":ref:`exhale_function_IGWRBasicGpuTask_8h_1a9739dbf3a5bee2b7bed9fb1bf83cca7a`" +msgstr "" + +#: ../../api/file_include_gwmodelcuda_IGWRBasicGpuTask.h.rst:55 +msgid ":ref:`exhale_function_IGWRBasicGpuTask_8h_1acd31edf00fab8b297f6c01bd12adfc24`" +msgstr "" + +#: ../../api/file_include_gwmodelcuda_IGWRBasicGpuTask.h.rst:59 +msgid "Defines" +msgstr "" + +#: ../../api/file_include_gwmodelcuda_IGWRBasicGpuTask.h.rst:62 +msgid ":ref:`exhale_define_IGWRBasicGpuTask_8h_1ab09548a5cce8126021f32a1468f4e75f`" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelcuda_StdTelegram.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelcuda_StdTelegram.h.po new file mode 100644 index 00000000..48e9fa15 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelcuda_StdTelegram.h.po @@ -0,0 +1,79 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/file_include_gwmodelcuda_StdTelegram.h.rst:5 +msgid "File StdTelegram.h" +msgstr "" + +#: ../../api/file_include_gwmodelcuda_StdTelegram.h.rst:7 +msgid "" +"|exhale_lsh| :ref:`Parent directory ` " +"(``include/gwmodelcuda``)" +msgstr "" + +#: ../../api/file_include_gwmodelcuda_StdTelegram.h.rst:14 +msgid "Contents" +msgstr "" + +#: ../../api/file_include_gwmodelcuda_StdTelegram.h.rst:17 +msgid "Definition (``include/gwmodelcuda/StdTelegram.h``)" +msgstr "" + +#: ../../api/file_include_gwmodelcuda_StdTelegram.h.rst:30 +msgid "Includes" +msgstr "" + +#: ../../api/file_include_gwmodelcuda_StdTelegram.h.rst:33 +msgid "``condition_variable``" +msgstr "" + +#: ../../api/file_include_gwmodelcuda_StdTelegram.h.rst:35 +msgid "``fstream``" +msgstr "" + +#: ../../api/file_include_gwmodelcuda_StdTelegram.h.rst:37 +msgid "``gwmodel.h`` (:ref:`file_include_gwmodel.h`)" +msgstr "" + +#: ../../api/file_include_gwmodelcuda_StdTelegram.h.rst:39 +msgid "``mutex``" +msgstr "" + +#: ../../api/file_include_gwmodelcuda_StdTelegram.h.rst:41 +msgid "``queue``" +msgstr "" + +#: ../../api/file_include_gwmodelcuda_StdTelegram.h.rst:43 +msgid "``string``" +msgstr "" + +#: ../../api/file_include_gwmodelcuda_StdTelegram.h.rst:45 +msgid "``thread``" +msgstr "" + +#: ../../api/file_include_gwmodelcuda_StdTelegram.h.rst:53 +msgid "Classes" +msgstr "" + +#: ../../api/file_include_gwmodelcuda_StdTelegram.h.rst:56 +msgid ":ref:`exhale_class_classStdTelegram`" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_Algorithm.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_Algorithm.h.po index 4876c89e..36bfd954 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_Algorithm.h.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_Algorithm.h.po @@ -5,18 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-23 20:21+0000\n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" "PO-Revision-Date: 2023-01-31 12:34+0000\n" "Last-Translator: Yigong Hu \n" -"Language-Team: \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/file_include_gwmodelpp_Algorithm.h.rst:5 msgid "File Algorithm.h" @@ -36,30 +36,108 @@ msgstr "内容" msgid "Definition (``include/gwmodelpp/Algorithm.h``)" msgstr "定义 (``include/gwmodelpp/Algorithm.h``)" -#: ../../api/file_include_gwmodelpp_Algorithm.h.rst:32 -msgid "Included By" +#: ../../api/file_include_gwmodelpp_Algorithm.h.rst:30 +#, fuzzy +msgid "Includes" msgstr "被下列头文件包含" +#: ../../api/file_include_gwmodelpp_Algorithm.h.rst:33 +msgid "``Logger.h`` (:ref:`file_include_gwmodelpp_Logger.h`)" +msgstr "" + #: ../../api/file_include_gwmodelpp_Algorithm.h.rst:35 -msgid ":ref:`file_include_gwmodel.h`" +msgid "``Status.h`` (:ref:`file_include_gwmodelpp_Status.h`)" msgstr "" #: ../../api/file_include_gwmodelpp_Algorithm.h.rst:37 +msgid "``cfloat``" +msgstr "" + +#: ../../api/file_include_gwmodelpp_Algorithm.h.rst:39 +msgid "``memory``" +msgstr "" + +#: ../../api/file_include_gwmodelpp_Algorithm.h.rst:41 +msgid "``sstream``" +msgstr "" + +#: ../../api/file_include_gwmodelpp_Algorithm.h.rst:46 +msgid "Included By" +msgstr "被下列头文件包含" + +#: ../../api/file_include_gwmodelpp_Algorithm.h.rst:49 +msgid ":ref:`file_include_gwmodel.h`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_Algorithm.h.rst:51 msgid ":ref:`file_include_gwmodelpp_SpatialAlgorithm.h`" msgstr "" -#: ../../api/file_include_gwmodelpp_Algorithm.h.rst:43 +#: ../../api/file_include_gwmodelpp_Algorithm.h.rst:57 msgid "Namespaces" msgstr "命名空间" -#: ../../api/file_include_gwmodelpp_Algorithm.h.rst:46 +#: ../../api/file_include_gwmodelpp_Algorithm.h.rst:60 msgid ":ref:`namespace_gwm`" msgstr "" -#: ../../api/file_include_gwmodelpp_Algorithm.h.rst:50 +#: ../../api/file_include_gwmodelpp_Algorithm.h.rst:64 msgid "Classes" msgstr "类" -#: ../../api/file_include_gwmodelpp_Algorithm.h.rst:53 +#: ../../api/file_include_gwmodelpp_Algorithm.h.rst:67 msgid ":ref:`exhale_class_classgwm_1_1Algorithm`" msgstr "" + +#: ../../api/file_include_gwmodelpp_Algorithm.h.rst:71 +msgid "Defines" +msgstr "" + +#: ../../api/file_include_gwmodelpp_Algorithm.h.rst:74 +msgid ":ref:`exhale_define_Algorithm_8h_1a3e7277692bce66fb31ec0fafdf2c2f44`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_Algorithm.h.rst:76 +msgid ":ref:`exhale_define_Algorithm_8h_1aa0c46696737698397f560901beb58425`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_Algorithm.h.rst:78 +msgid ":ref:`exhale_define_Algorithm_8h_1a86d76dda1788cd388f5033ec6e989d9c`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_Algorithm.h.rst:80 +msgid ":ref:`exhale_define_Algorithm_8h_1a70ae4960df6ada8395844443dca7f5cc`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_Algorithm.h.rst:82 +msgid ":ref:`exhale_define_Algorithm_8h_1af8fe0908c1e018bf2839d0958be6a708`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_Algorithm.h.rst:84 +msgid ":ref:`exhale_define_Algorithm_8h_1abd85b0789ff6ea0203e7b326c852a0bb`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_Algorithm.h.rst:86 +msgid ":ref:`exhale_define_Algorithm_8h_1a133188f010eccb753b0451a52fe03a9a`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_Algorithm.h.rst:88 +msgid ":ref:`exhale_define_Algorithm_8h_1a81aeca29b10fe0fe76ad2a31d9816c2f`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_Algorithm.h.rst:90 +msgid ":ref:`exhale_define_Algorithm_8h_1a78536ea976dfe7442b894b9c0ea3d69c`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_Algorithm.h.rst:92 +msgid ":ref:`exhale_define_Algorithm_8h_1a517c29498b507893108fb2961e3140d7`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_Algorithm.h.rst:94 +msgid ":ref:`exhale_define_Algorithm_8h_1a9a6822a722a1654fe9358651500657b2`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_Algorithm.h.rst:96 +msgid ":ref:`exhale_define_Algorithm_8h_1a63405819e78dea96e294ff200c113a37`" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_GTWR.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_GTWR.h.po new file mode 100644 index 00000000..7e6267ac --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_GTWR.h.po @@ -0,0 +1,119 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/file_include_gwmodelpp_GTWR.h.rst:5 +msgid "File GTWR.h" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GTWR.h.rst:7 +msgid "" +"|exhale_lsh| :ref:`Parent directory ` " +"(``include/gwmodelpp``)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GTWR.h.rst:14 +msgid "Contents" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GTWR.h.rst:17 +msgid "Definition (``include/gwmodelpp/GTWR.h``)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GTWR.h.rst:30 +msgid "Includes" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GTWR.h.rst:33 +msgid "``GWRBase.h`` (:ref:`file_include_gwmodelpp_GWRBase.h`)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GTWR.h.rst:35 +msgid "" +"``IBandwidthSelectable.h`` " +"(:ref:`file_include_gwmodelpp_IBandwidthSelectable.h`)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GTWR.h.rst:37 +msgid "``IParallelizable.h`` (:ref:`file_include_gwmodelpp_IParallelizable.h`)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GTWR.h.rst:39 +msgid "" +"``IVarialbeSelectable.h`` " +"(:ref:`file_include_gwmodelpp_IVarialbeSelectable.h`)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GTWR.h.rst:41 +msgid "" +"``RegressionDiagnostic.h`` " +"(:ref:`file_include_gwmodelpp_RegressionDiagnostic.h`)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GTWR.h.rst:43 +msgid "``gsl/gsl_min.h``" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GTWR.h.rst:45 +msgid "``gsl/gsl_multimin.h``" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GTWR.h.rst:47 +msgid "``initializer_list``" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GTWR.h.rst:49 +msgid "" +"``spatialweight/CRSSTDistance.h`` " +"(:ref:`file_include_gwmodelpp_spatialweight_CRSSTDistance.h`)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GTWR.h.rst:51 +msgid "``string``" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GTWR.h.rst:53 +msgid "``utility``" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GTWR.h.rst:61 +msgid "Namespaces" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GTWR.h.rst:64 +msgid ":ref:`namespace_gwm`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GTWR.h.rst:68 +msgid "Classes" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GTWR.h.rst:71 +msgid ":ref:`exhale_class_classgwm_1_1GTWR`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GTWR.h.rst:75 +msgid "Defines" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GTWR.h.rst:78 +msgid ":ref:`exhale_define_GTWR_8h_1a4ee22f0a6287445f494fa646d5f9cec5`" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_GWDA.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_GWDA.h.po new file mode 100644 index 00000000..7d8d365c --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_GWDA.h.po @@ -0,0 +1,75 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/file_include_gwmodelpp_GWDA.h.rst:5 +msgid "File GWDA.h" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GWDA.h.rst:7 +msgid "" +"|exhale_lsh| :ref:`Parent directory ` " +"(``include/gwmodelpp``)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GWDA.h.rst:14 +msgid "Contents" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GWDA.h.rst:17 +msgid "Definition (``include/gwmodelpp/GWDA.h``)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GWDA.h.rst:30 +msgid "Includes" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GWDA.h.rst:33 +msgid "" +"``IMultivariableAnalysis.h`` " +"(:ref:`file_include_gwmodelpp_IMultivariableAnalysis.h`)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GWDA.h.rst:35 +msgid "``IParallelizable.h`` (:ref:`file_include_gwmodelpp_IParallelizable.h`)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GWDA.h.rst:37 +msgid "" +"``SpatialMonoscaleAlgorithm.h`` " +"(:ref:`file_include_gwmodelpp_SpatialMonoscaleAlgorithm.h`)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GWDA.h.rst:45 +msgid "Namespaces" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GWDA.h.rst:48 +msgid ":ref:`namespace_gwm`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GWDA.h.rst:52 +msgid "Classes" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GWDA.h.rst:55 +msgid ":ref:`exhale_class_classgwm_1_1GWDA`" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_GWRBase.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_GWRBase.h.po index d1e07dad..477073cb 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_GWRBase.h.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_GWRBase.h.po @@ -5,18 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-23 20:21+0000\n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" "PO-Revision-Date: 2023-01-31 13:09+0000\n" "Last-Translator: Yigong Hu \n" -"Language-Team: \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/file_include_gwmodelpp_GWRBase.h.rst:5 msgid "File GWRBase.h" @@ -42,14 +42,14 @@ msgstr "包含" #: ../../api/file_include_gwmodelpp_GWRBase.h.rst:33 msgid "" -"``IRegressionAnalysis.h`` (:ref:" -"`file_include_gwmodelpp_IRegressionAnalysis.h`)" +"``IRegressionAnalysis.h`` " +"(:ref:`file_include_gwmodelpp_IRegressionAnalysis.h`)" msgstr "" #: ../../api/file_include_gwmodelpp_GWRBase.h.rst:35 msgid "" -"``SpatialMonoscaleAlgorithm.h`` (:ref:" -"`file_include_gwmodelpp_SpatialMonoscaleAlgorithm.h`)" +"``SpatialMonoscaleAlgorithm.h`` " +"(:ref:`file_include_gwmodelpp_SpatialMonoscaleAlgorithm.h`)" msgstr "" #: ../../api/file_include_gwmodelpp_GWRBase.h.rst:40 @@ -61,37 +61,42 @@ msgid ":ref:`file_include_gwmodel.h`" msgstr "" #: ../../api/file_include_gwmodelpp_GWRBase.h.rst:45 -msgid ":ref:`file_include_gwmodelpp_GWRBasic.h`" +msgid ":ref:`file_include_gwmodelpp_GTWR.h`" msgstr "" #: ../../api/file_include_gwmodelpp_GWRBase.h.rst:47 -msgid ":ref:`file_include_gwmodelpp_GWRGeneralized.h`" +msgid ":ref:`file_include_gwmodelpp_GWRBasic.h`" msgstr "" #: ../../api/file_include_gwmodelpp_GWRBase.h.rst:49 -msgid ":ref:`file_include_gwmodelpp_GWRLocalCollinearity.h`" +msgid ":ref:`file_include_gwmodelpp_GWRGeneralized.h`" msgstr "" #: ../../api/file_include_gwmodelpp_GWRBase.h.rst:51 -msgid ":ref:`file_include_gwmodelpp_GWRRobust.h`" +msgid ":ref:`file_include_gwmodelpp_GWRLocalCollinearity.h`" msgstr "" #: ../../api/file_include_gwmodelpp_GWRBase.h.rst:53 +msgid ":ref:`file_include_gwmodelpp_GWRRobust.h`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GWRBase.h.rst:55 msgid ":ref:`file_include_gwmodelpp_GWRScalable.h`" msgstr "" -#: ../../api/file_include_gwmodelpp_GWRBase.h.rst:59 +#: ../../api/file_include_gwmodelpp_GWRBase.h.rst:61 msgid "Namespaces" msgstr "命名空间" -#: ../../api/file_include_gwmodelpp_GWRBase.h.rst:62 +#: ../../api/file_include_gwmodelpp_GWRBase.h.rst:64 msgid ":ref:`namespace_gwm`" msgstr "" -#: ../../api/file_include_gwmodelpp_GWRBase.h.rst:66 +#: ../../api/file_include_gwmodelpp_GWRBase.h.rst:68 msgid "Classes" msgstr "类" -#: ../../api/file_include_gwmodelpp_GWRBase.h.rst:69 +#: ../../api/file_include_gwmodelpp_GWRBase.h.rst:71 msgid ":ref:`exhale_class_classgwm_1_1GWRBase`" msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_GWRBasic.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_GWRBasic.h.po index 9a4bcdc8..00e29171 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_GWRBasic.h.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_GWRBasic.h.po @@ -5,18 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-23 20:21+0000\n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" "PO-Revision-Date: 2023-01-31 13:10+0000\n" "Last-Translator: Yigong Hu \n" -"Language-Team: \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/file_include_gwmodelpp_GWRBasic.h.rst:5 msgid "File GWRBasic.h" @@ -24,8 +24,8 @@ msgstr "文件 GWRBasic.h" #: ../../api/file_include_gwmodelpp_GWRBasic.h.rst:7 msgid "" -"|exhale_lsh| :ref:`Parent directory ` (``include/" -"gwmodelpp``)" +"|exhale_lsh| :ref:`Parent directory ` " +"(``include/gwmodelpp``)" msgstr "" #: ../../api/file_include_gwmodelpp_GWRBasic.h.rst:14 @@ -46,8 +46,8 @@ msgstr "" #: ../../api/file_include_gwmodelpp_GWRBasic.h.rst:35 msgid "" -"``IBandwidthSelectable.h`` (:ref:" -"`file_include_gwmodelpp_IBandwidthSelectable.h`)" +"``IBandwidthSelectable.h`` " +"(:ref:`file_include_gwmodelpp_IBandwidthSelectable.h`)" msgstr "" #: ../../api/file_include_gwmodelpp_GWRBasic.h.rst:37 @@ -56,14 +56,14 @@ msgstr "" #: ../../api/file_include_gwmodelpp_GWRBasic.h.rst:39 msgid "" -"``IVarialbeSelectable.h`` (:ref:`file_include_gwmodelpp_IVarialbeSelectable." -"h`)" +"``IVarialbeSelectable.h`` " +"(:ref:`file_include_gwmodelpp_IVarialbeSelectable.h`)" msgstr "" #: ../../api/file_include_gwmodelpp_GWRBasic.h.rst:41 msgid "" -"``RegressionDiagnostic.h`` (:ref:" -"`file_include_gwmodelpp_RegressionDiagnostic.h`)" +"``RegressionDiagnostic.h`` " +"(:ref:`file_include_gwmodelpp_RegressionDiagnostic.h`)" msgstr "" #: ../../api/file_include_gwmodelpp_GWRBasic.h.rst:43 @@ -71,41 +71,46 @@ msgid "``initializer_list``" msgstr "" #: ../../api/file_include_gwmodelpp_GWRBasic.h.rst:45 -msgid "``string``" +msgid "``optional``" msgstr "" #: ../../api/file_include_gwmodelpp_GWRBasic.h.rst:47 +msgid "``string``" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GWRBasic.h.rst:49 msgid "``utility``" msgstr "" -#: ../../api/file_include_gwmodelpp_GWRBasic.h.rst:52 +#: ../../api/file_include_gwmodelpp_GWRBasic.h.rst:54 msgid "Included By" msgstr "被下列头文件包含" -#: ../../api/file_include_gwmodelpp_GWRBasic.h.rst:55 +#: ../../api/file_include_gwmodelpp_GWRBasic.h.rst:57 msgid ":ref:`file_include_gwmodel.h`" msgstr "" -#: ../../api/file_include_gwmodelpp_GWRBasic.h.rst:57 +#: ../../api/file_include_gwmodelpp_GWRBasic.h.rst:59 msgid ":ref:`file_include_gwmodelpp_GWRGeneralized.h`" msgstr "" -#: ../../api/file_include_gwmodelpp_GWRBasic.h.rst:59 +#: ../../api/file_include_gwmodelpp_GWRBasic.h.rst:61 msgid ":ref:`file_include_gwmodelpp_GWRRobust.h`" msgstr "" -#: ../../api/file_include_gwmodelpp_GWRBasic.h.rst:65 +#: ../../api/file_include_gwmodelpp_GWRBasic.h.rst:67 msgid "Namespaces" msgstr "命名空间" -#: ../../api/file_include_gwmodelpp_GWRBasic.h.rst:68 +#: ../../api/file_include_gwmodelpp_GWRBasic.h.rst:70 msgid ":ref:`namespace_gwm`" msgstr "" -#: ../../api/file_include_gwmodelpp_GWRBasic.h.rst:72 +#: ../../api/file_include_gwmodelpp_GWRBasic.h.rst:74 msgid "Classes" msgstr "类" -#: ../../api/file_include_gwmodelpp_GWRBasic.h.rst:75 +#: ../../api/file_include_gwmodelpp_GWRBasic.h.rst:77 msgid ":ref:`exhale_class_classgwm_1_1GWRBasic`" msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_GWRMultiscale.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_GWRMultiscale.h.po index 8c96c1ec..fd86fb6d 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_GWRMultiscale.h.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_GWRMultiscale.h.po @@ -5,18 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-23 20:21+0000\n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" "PO-Revision-Date: 2023-01-31 13:10+0000\n" "Last-Translator: Yigong Hu \n" -"Language-Team: \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/file_include_gwmodelpp_GWRMultiscale.h.rst:5 msgid "File GWRMultiscale.h" @@ -24,8 +24,8 @@ msgstr "文件 GWRMultiscale.h" #: ../../api/file_include_gwmodelpp_GWRMultiscale.h.rst:7 msgid "" -"|exhale_lsh| :ref:`Parent directory ` (``include/" -"gwmodelpp``)" +"|exhale_lsh| :ref:`Parent directory ` " +"(``include/gwmodelpp``)" msgstr "" #: ../../api/file_include_gwmodelpp_GWRMultiscale.h.rst:14 @@ -42,13 +42,14 @@ msgstr "包含" #: ../../api/file_include_gwmodelpp_GWRMultiscale.h.rst:33 msgid "" -"``BandwidthSelector.h`` (:ref:`file_include_gwmodelpp_BandwidthSelector.h`)" +"``BandwidthSelector.h`` " +"(:ref:`file_include_gwmodelpp_BandwidthSelector.h`)" msgstr "" #: ../../api/file_include_gwmodelpp_GWRMultiscale.h.rst:35 msgid "" -"``IBandwidthSelectable.h`` (:ref:" -"`file_include_gwmodelpp_IBandwidthSelectable.h`)" +"``IBandwidthSelectable.h`` " +"(:ref:`file_include_gwmodelpp_IBandwidthSelectable.h`)" msgstr "" #: ../../api/file_include_gwmodelpp_GWRMultiscale.h.rst:37 @@ -57,14 +58,14 @@ msgstr "" #: ../../api/file_include_gwmodelpp_GWRMultiscale.h.rst:39 msgid "" -"``IRegressionAnalysis.h`` (:ref:`file_include_gwmodelpp_IRegressionAnalysis." -"h`)" +"``IRegressionAnalysis.h`` " +"(:ref:`file_include_gwmodelpp_IRegressionAnalysis.h`)" msgstr "" #: ../../api/file_include_gwmodelpp_GWRMultiscale.h.rst:41 msgid "" -"``SpatialMultiscaleAlgorithm.h`` (:ref:" -"`file_include_gwmodelpp_SpatialMultiscaleAlgorithm.h`)" +"``SpatialMultiscaleAlgorithm.h`` " +"(:ref:`file_include_gwmodelpp_SpatialMultiscaleAlgorithm.h`)" msgstr "" #: ../../api/file_include_gwmodelpp_GWRMultiscale.h.rst:43 @@ -72,39 +73,60 @@ msgid "``initializer_list``" msgstr "" #: ../../api/file_include_gwmodelpp_GWRMultiscale.h.rst:45 -msgid "" -"``spatialweight/SpatialWeight.h`` (:ref:" -"`file_include_gwmodelpp_spatialweight_SpatialWeight.h`)" +msgid "``optional``" msgstr "" #: ../../api/file_include_gwmodelpp_GWRMultiscale.h.rst:47 -msgid "``string``" +msgid "" +"``spatialweight/SpatialWeight.h`` " +"(:ref:`file_include_gwmodelpp_spatialweight_SpatialWeight.h`)" msgstr "" #: ../../api/file_include_gwmodelpp_GWRMultiscale.h.rst:49 +msgid "``string``" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GWRMultiscale.h.rst:51 msgid "``utility``" msgstr "" -#: ../../api/file_include_gwmodelpp_GWRMultiscale.h.rst:54 +#: ../../api/file_include_gwmodelpp_GWRMultiscale.h.rst:56 msgid "Included By" msgstr "被下列头文件包含" -#: ../../api/file_include_gwmodelpp_GWRMultiscale.h.rst:57 +#: ../../api/file_include_gwmodelpp_GWRMultiscale.h.rst:59 msgid ":ref:`file_include_gwmodel.h`" msgstr "" -#: ../../api/file_include_gwmodelpp_GWRMultiscale.h.rst:63 +#: ../../api/file_include_gwmodelpp_GWRMultiscale.h.rst:65 msgid "Namespaces" msgstr "命名空间" -#: ../../api/file_include_gwmodelpp_GWRMultiscale.h.rst:66 +#: ../../api/file_include_gwmodelpp_GWRMultiscale.h.rst:68 msgid ":ref:`namespace_gwm`" msgstr "" -#: ../../api/file_include_gwmodelpp_GWRMultiscale.h.rst:70 +#: ../../api/file_include_gwmodelpp_GWRMultiscale.h.rst:72 msgid "Classes" msgstr "类" -#: ../../api/file_include_gwmodelpp_GWRMultiscale.h.rst:73 +#: ../../api/file_include_gwmodelpp_GWRMultiscale.h.rst:75 msgid ":ref:`exhale_class_classgwm_1_1GWRMultiscale`" msgstr "" + +#: ../../api/file_include_gwmodelpp_GWRMultiscale.h.rst:79 +msgid "Defines" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GWRMultiscale.h.rst:82 +msgid ":ref:`exhale_define_GWRMultiscale_8h_1ac91c337e12bc54e52a6afa7dcd3541a0`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GWRMultiscale.h.rst:84 +msgid ":ref:`exhale_define_GWRMultiscale_8h_1a4de4b07e497281666f6e679e8dfb3f34`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GWRMultiscale.h.rst:86 +msgid ":ref:`exhale_define_GWRMultiscale_8h_1aeea4650739600703f02c2211eebabad2`" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_IBandwidthSelectable.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_IBandwidthSelectable.h.po index 6d453989..830a61f1 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_IBandwidthSelectable.h.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_IBandwidthSelectable.h.po @@ -5,18 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-23 20:46+0000\n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" "PO-Revision-Date: 2023-01-31 13:12+0000\n" "Last-Translator: Yigong Hu \n" -"Language-Team: \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:5 msgid "File IBandwidthSelectable.h" @@ -24,7 +24,8 @@ msgstr "文件 IBandwidthSelectable.h" #: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:7 msgid "" -"|exhale_lsh| :ref:`Parent directory ` (``include/gwmodelpp``)" +"|exhale_lsh| :ref:`Parent directory ` " +"(``include/gwmodelpp``)" msgstr "" #: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:14 @@ -40,63 +41,84 @@ msgid "Includes" msgstr "包含" #: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:33 +msgid "``Status.h`` (:ref:`file_include_gwmodelpp_Status.h`)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:35 msgid "" -"``spatialweight/BandwidthWeight.h`` (:ref:" -"`file_include_gwmodelpp_spatialweight_BandwidthWeight.h`)" +"``spatialweight/BandwidthWeight.h`` " +"(:ref:`file_include_gwmodelpp_spatialweight_BandwidthWeight.h`)" msgstr "" -#: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:38 +#: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:40 msgid "Included By" msgstr "被下列头文件包含" -#: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:41 +#: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:43 msgid ":ref:`file_include_gwmodelpp_BandwidthSelector.h`" msgstr "" -#: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:43 +#: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:45 +msgid ":ref:`file_include_gwmodelpp_GTWR.h`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:47 msgid ":ref:`file_include_gwmodelpp_GWRBasic.h`" msgstr "" -#: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:45 +#: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:49 msgid ":ref:`file_include_gwmodelpp_GWRGeneralized.h`" msgstr "" -#: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:47 +#: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:51 msgid ":ref:`file_include_gwmodelpp_GWRLocalCollinearity.h`" msgstr "" -#: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:49 +#: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:53 msgid ":ref:`file_include_gwmodelpp_GWRMultiscale.h`" msgstr "" -#: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:51 +#: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:55 msgid ":ref:`file_include_gwmodelpp_GWRRobust.h`" msgstr "" -#: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:53 +#: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:57 msgid ":ref:`file_include_gwmodelpp_GWRScalable.h`" msgstr "" #: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:59 +msgid ":ref:`file_include_gwmodelpp_SDR.h`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:65 msgid "Namespaces" msgstr "命名空间" -#: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:62 +#: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:68 msgid ":ref:`namespace_gwm`" msgstr "" -#: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:66 +#: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:72 msgid "Classes" msgstr "类" -#: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:69 +#: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:75 msgid ":ref:`exhale_struct_structgwm_1_1IBandwidthSelectable`" msgstr "" -#: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:73 +#: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:79 +msgid "Defines" +msgstr "" + +#: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:82 +msgid ":ref:`exhale_define_IBandwidthSelectable_8h_1ac255781338c0f15a823cefaca6911599`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:86 msgid "Typedefs" msgstr "" -#: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:76 +#: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:89 msgid ":ref:`exhale_typedef_IBandwidthSelectable_8h_1ae90108073e4144ac3fbed1a68bb44031`" msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_IMultivariableAnalysis.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_IMultivariableAnalysis.h.po index 291396c2..9e9a7ecb 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_IMultivariableAnalysis.h.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_IMultivariableAnalysis.h.po @@ -5,18 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-23 20:46+0000\n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" "PO-Revision-Date: 2023-01-31 13:12+0000\n" "Last-Translator: Yigong Hu \n" -"Language-Team: \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/file_include_gwmodelpp_IMultivariableAnalysis.h.rst:5 msgid "File IMultivariableAnalysis.h" @@ -49,25 +49,30 @@ msgid "Included By" msgstr "被下列头文件包含" #: ../../api/file_include_gwmodelpp_IMultivariableAnalysis.h.rst:41 -msgid ":ref:`file_include_gwmodelpp_GWPCA.h`" +msgid ":ref:`file_include_gwmodelpp_GWDA.h`" msgstr "" #: ../../api/file_include_gwmodelpp_IMultivariableAnalysis.h.rst:43 +msgid ":ref:`file_include_gwmodelpp_GWPCA.h`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_IMultivariableAnalysis.h.rst:45 msgid ":ref:`file_include_gwmodelpp_GWSS.h`" msgstr "" -#: ../../api/file_include_gwmodelpp_IMultivariableAnalysis.h.rst:49 +#: ../../api/file_include_gwmodelpp_IMultivariableAnalysis.h.rst:51 msgid "Namespaces" msgstr "命名空间" -#: ../../api/file_include_gwmodelpp_IMultivariableAnalysis.h.rst:52 +#: ../../api/file_include_gwmodelpp_IMultivariableAnalysis.h.rst:54 msgid ":ref:`namespace_gwm`" msgstr "" -#: ../../api/file_include_gwmodelpp_IMultivariableAnalysis.h.rst:56 +#: ../../api/file_include_gwmodelpp_IMultivariableAnalysis.h.rst:58 msgid "Classes" msgstr "类" -#: ../../api/file_include_gwmodelpp_IMultivariableAnalysis.h.rst:59 +#: ../../api/file_include_gwmodelpp_IMultivariableAnalysis.h.rst:61 msgid ":ref:`exhale_struct_structgwm_1_1IMultivariableAnalysis`" msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_IParallelizable.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_IParallelizable.h.po index 5e01213a..692fc774 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_IParallelizable.h.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_IParallelizable.h.po @@ -5,18 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-23 20:46+0000\n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" "PO-Revision-Date: 2023-01-31 13:12+0000\n" "Last-Translator: Yigong Hu \n" -"Language-Team: \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:5 msgid "File IParallelizable.h" @@ -24,8 +24,8 @@ msgstr "文件 IParallelizable.h" #: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:7 msgid "" -"|exhale_lsh| :ref:`Parent directory ` (``include/" -"gwmodelpp``)" +"|exhale_lsh| :ref:`Parent directory ` " +"(``include/gwmodelpp``)" msgstr "" #: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:14 @@ -41,69 +41,81 @@ msgid "Included By" msgstr "被下列头文件包含" #: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:35 -msgid ":ref:`file_include_gwmodelpp_GWDR.h`" +msgid ":ref:`file_include_gwmodelpp_GTWR.h`" msgstr "" #: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:37 -msgid ":ref:`file_include_gwmodelpp_GWPCA.h`" +msgid ":ref:`file_include_gwmodelpp_GWDA.h`" msgstr "" #: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:39 -msgid ":ref:`file_include_gwmodelpp_GWRBasic.h`" +msgid ":ref:`file_include_gwmodelpp_GWPCA.h`" msgstr "" #: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:41 -msgid ":ref:`file_include_gwmodelpp_GWRGeneralized.h`" +msgid ":ref:`file_include_gwmodelpp_GWRBasic.h`" msgstr "" #: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:43 -msgid ":ref:`file_include_gwmodelpp_GWRLocalCollinearity.h`" +msgid ":ref:`file_include_gwmodelpp_GWRGeneralized.h`" msgstr "" #: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:45 -msgid ":ref:`file_include_gwmodelpp_GWRMultiscale.h`" +msgid ":ref:`file_include_gwmodelpp_GWRLocalCollinearity.h`" msgstr "" #: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:47 -msgid ":ref:`file_include_gwmodelpp_GWRRobust.h`" +msgid ":ref:`file_include_gwmodelpp_GWRMultiscale.h`" msgstr "" #: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:49 -msgid ":ref:`file_include_gwmodelpp_GWRScalable.h`" +msgid ":ref:`file_include_gwmodelpp_GWRRobust.h`" msgstr "" #: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:51 +msgid ":ref:`file_include_gwmodelpp_GWRScalable.h`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:53 msgid ":ref:`file_include_gwmodelpp_GWSS.h`" msgstr "" -#: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:57 +#: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:55 +msgid ":ref:`file_include_gwmodelpp_SDR.h`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:61 msgid "Namespaces" msgstr "命名空间" -#: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:60 +#: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:64 msgid ":ref:`namespace_gwm`" msgstr "" -#: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:64 +#: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:68 msgid "Classes" msgstr "类" -#: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:67 +#: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:71 msgid ":ref:`exhale_struct_structgwm_1_1IParallelCudaEnabled`" msgstr "" -#: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:69 +#: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:73 msgid ":ref:`exhale_struct_structgwm_1_1IParallelizable`" msgstr "" -#: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:71 +#: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:75 msgid ":ref:`exhale_struct_structgwm_1_1IParallelOpenmpEnabled`" msgstr "" -#: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:75 +#: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:79 msgid "Enums" msgstr "枚举" -#: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:78 +#: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:82 msgid ":ref:`exhale_enum_IParallelizable_8h_1a166813c41923ca9f51b81af038e7cb7a`" msgstr "" + +#~ msgid ":ref:`file_include_gwmodelpp_GWDR.h`" +#~ msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_IRegressionAnalysis.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_IRegressionAnalysis.h.po index a596aaaf..55ee3850 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_IRegressionAnalysis.h.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_IRegressionAnalysis.h.po @@ -5,18 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-23 20:21+0000\n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" "PO-Revision-Date: 2023-01-31 13:12+0000\n" "Last-Translator: Yigong Hu \n" -"Language-Team: \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/file_include_gwmodelpp_IRegressionAnalysis.h.rst:5 msgid "File IRegressionAnalysis.h" @@ -42,8 +42,8 @@ msgstr "包含" #: ../../api/file_include_gwmodelpp_IRegressionAnalysis.h.rst:33 msgid "" -"``RegressionDiagnostic.h`` (:ref:" -"`file_include_gwmodelpp_RegressionDiagnostic.h`)" +"``RegressionDiagnostic.h`` " +"(:ref:`file_include_gwmodelpp_RegressionDiagnostic.h`)" msgstr "" #: ../../api/file_include_gwmodelpp_IRegressionAnalysis.h.rst:35 @@ -59,15 +59,15 @@ msgid "Included By" msgstr "被下列头文件包含" #: ../../api/file_include_gwmodelpp_IRegressionAnalysis.h.rst:45 -msgid ":ref:`file_include_gwmodelpp_GWDR.h`" +msgid ":ref:`file_include_gwmodelpp_GWRBase.h`" msgstr "" #: ../../api/file_include_gwmodelpp_IRegressionAnalysis.h.rst:47 -msgid ":ref:`file_include_gwmodelpp_GWRBase.h`" +msgid ":ref:`file_include_gwmodelpp_GWRMultiscale.h`" msgstr "" #: ../../api/file_include_gwmodelpp_IRegressionAnalysis.h.rst:49 -msgid ":ref:`file_include_gwmodelpp_GWRMultiscale.h`" +msgid ":ref:`file_include_gwmodelpp_SDR.h`" msgstr "" #: ../../api/file_include_gwmodelpp_IRegressionAnalysis.h.rst:55 @@ -85,3 +85,7 @@ msgstr "类" #: ../../api/file_include_gwmodelpp_IRegressionAnalysis.h.rst:65 msgid ":ref:`exhale_struct_structgwm_1_1IRegressionAnalysis`" msgstr "" + +#~ msgid ":ref:`file_include_gwmodelpp_GWDR.h`" +#~ msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_IVarialbeSelectable.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_IVarialbeSelectable.h.po index 24d3c438..87d85b30 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_IVarialbeSelectable.h.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_IVarialbeSelectable.h.po @@ -5,18 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-23 20:21+0000\n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" "PO-Revision-Date: 2023-01-31 13:13+0000\n" "Last-Translator: Yigong Hu \n" -"Language-Team: \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/file_include_gwmodelpp_IVarialbeSelectable.h.rst:5 msgid "File IVarialbeSelectable.h" @@ -24,7 +24,8 @@ msgstr "文件 IVarialbeSelectable.h" #: ../../api/file_include_gwmodelpp_IVarialbeSelectable.h.rst:7 msgid "" -"|exhale_lsh| :ref:`Parent directory ` (``include/gwmodelpp``)" +"|exhale_lsh| :ref:`Parent directory ` " +"(``include/gwmodelpp``)" msgstr "" #: ../../api/file_include_gwmodelpp_IVarialbeSelectable.h.rst:14 @@ -40,57 +41,82 @@ msgid "Includes" msgstr "包含" #: ../../api/file_include_gwmodelpp_IVarialbeSelectable.h.rst:33 +msgid "``Logger.h`` (:ref:`file_include_gwmodelpp_Logger.h`)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_IVarialbeSelectable.h.rst:35 +msgid "``Status.h`` (:ref:`file_include_gwmodelpp_Status.h`)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_IVarialbeSelectable.h.rst:37 +msgid "``sstream``" +msgstr "" + +#: ../../api/file_include_gwmodelpp_IVarialbeSelectable.h.rst:39 msgid "``vector``" msgstr "" -#: ../../api/file_include_gwmodelpp_IVarialbeSelectable.h.rst:38 +#: ../../api/file_include_gwmodelpp_IVarialbeSelectable.h.rst:44 msgid "Included By" msgstr "被下列头文件包含" -#: ../../api/file_include_gwmodelpp_IVarialbeSelectable.h.rst:41 +#: ../../api/file_include_gwmodelpp_IVarialbeSelectable.h.rst:47 +msgid ":ref:`file_include_gwmodelpp_GTWR.h`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_IVarialbeSelectable.h.rst:49 msgid ":ref:`file_include_gwmodelpp_GWRBasic.h`" msgstr "" -#: ../../api/file_include_gwmodelpp_IVarialbeSelectable.h.rst:43 +#: ../../api/file_include_gwmodelpp_IVarialbeSelectable.h.rst:51 msgid ":ref:`file_include_gwmodelpp_GWRGeneralized.h`" msgstr "" -#: ../../api/file_include_gwmodelpp_IVarialbeSelectable.h.rst:45 +#: ../../api/file_include_gwmodelpp_IVarialbeSelectable.h.rst:53 msgid ":ref:`file_include_gwmodelpp_GWRLocalCollinearity.h`" msgstr "" -#: ../../api/file_include_gwmodelpp_IVarialbeSelectable.h.rst:47 +#: ../../api/file_include_gwmodelpp_IVarialbeSelectable.h.rst:55 msgid ":ref:`file_include_gwmodelpp_GWRRobust.h`" msgstr "" -#: ../../api/file_include_gwmodelpp_IVarialbeSelectable.h.rst:49 +#: ../../api/file_include_gwmodelpp_IVarialbeSelectable.h.rst:57 msgid ":ref:`file_include_gwmodelpp_GWRScalable.h`" msgstr "" -#: ../../api/file_include_gwmodelpp_IVarialbeSelectable.h.rst:51 +#: ../../api/file_include_gwmodelpp_IVarialbeSelectable.h.rst:59 msgid ":ref:`file_include_gwmodelpp_VariableForwardSelector.h`" msgstr "" -#: ../../api/file_include_gwmodelpp_IVarialbeSelectable.h.rst:57 +#: ../../api/file_include_gwmodelpp_IVarialbeSelectable.h.rst:65 msgid "Namespaces" msgstr "命名空间" -#: ../../api/file_include_gwmodelpp_IVarialbeSelectable.h.rst:60 +#: ../../api/file_include_gwmodelpp_IVarialbeSelectable.h.rst:68 msgid ":ref:`namespace_gwm`" msgstr "" -#: ../../api/file_include_gwmodelpp_IVarialbeSelectable.h.rst:64 +#: ../../api/file_include_gwmodelpp_IVarialbeSelectable.h.rst:72 msgid "Classes" msgstr "类" -#: ../../api/file_include_gwmodelpp_IVarialbeSelectable.h.rst:67 +#: ../../api/file_include_gwmodelpp_IVarialbeSelectable.h.rst:75 msgid ":ref:`exhale_struct_structgwm_1_1IVarialbeSelectable`" msgstr "" -#: ../../api/file_include_gwmodelpp_IVarialbeSelectable.h.rst:71 +#: ../../api/file_include_gwmodelpp_IVarialbeSelectable.h.rst:79 +msgid "Defines" +msgstr "" + +#: ../../api/file_include_gwmodelpp_IVarialbeSelectable.h.rst:82 +msgid ":ref:`exhale_define_IVarialbeSelectable_8h_1a3f837f4b03b05c949efd517a382ef535`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_IVarialbeSelectable.h.rst:86 msgid "Typedefs" msgstr "" -#: ../../api/file_include_gwmodelpp_IVarialbeSelectable.h.rst:74 +#: ../../api/file_include_gwmodelpp_IVarialbeSelectable.h.rst:89 msgid ":ref:`exhale_typedef_IVarialbeSelectable_8h_1a11df23b545f168e1d3deefab7ee99ba9`" msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_Logger.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_Logger.h.po index 850b32a6..937e8b16 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_Logger.h.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_Logger.h.po @@ -5,18 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-23 20:21+0000\n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" "PO-Revision-Date: 2023-01-31 13:13+0000\n" "Last-Translator: Yigong Hu \n" -"Language-Team: \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/file_include_gwmodelpp_Logger.h.rst:5 msgid "File Logger.h" @@ -41,49 +41,76 @@ msgid "Includes" msgstr "包含" #: ../../api/file_include_gwmodelpp_Logger.h.rst:33 -msgid "``functional``" +msgid "``numeric``" msgstr "" #: ../../api/file_include_gwmodelpp_Logger.h.rst:35 msgid "``string``" msgstr "" -#: ../../api/file_include_gwmodelpp_Logger.h.rst:43 +#: ../../api/file_include_gwmodelpp_Logger.h.rst:37 +msgid "``vector``" +msgstr "" + +#: ../../api/file_include_gwmodelpp_Logger.h.rst:42 +#, fuzzy +msgid "Included By" +msgstr "包含" + +#: ../../api/file_include_gwmodelpp_Logger.h.rst:45 +msgid ":ref:`file_include_gwmodelpp_Algorithm.h`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_Logger.h.rst:47 +msgid ":ref:`file_include_gwmodelpp_IVarialbeSelectable.h`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_Logger.h.rst:53 msgid "Namespaces" msgstr "命名空间" -#: ../../api/file_include_gwmodelpp_Logger.h.rst:46 +#: ../../api/file_include_gwmodelpp_Logger.h.rst:56 msgid ":ref:`namespace_gwm`" msgstr "" -#: ../../api/file_include_gwmodelpp_Logger.h.rst:50 +#: ../../api/file_include_gwmodelpp_Logger.h.rst:60 msgid "Classes" msgstr "类" -#: ../../api/file_include_gwmodelpp_Logger.h.rst:53 -msgid ":ref:`exhale_class_classgwm_1_1Logger`" +#: ../../api/file_include_gwmodelpp_Logger.h.rst:63 +msgid ":ref:`exhale_struct_structgwm_1_1ITelegram`" msgstr "" -#: ../../api/file_include_gwmodelpp_Logger.h.rst:57 -msgid "Defines" -msgstr "宏定义" - -#: ../../api/file_include_gwmodelpp_Logger.h.rst:60 -msgid ":ref:`exhale_define_Logger_8h_1a3e7277692bce66fb31ec0fafdf2c2f44`" +#: ../../api/file_include_gwmodelpp_Logger.h.rst:65 +msgid ":ref:`exhale_class_classgwm_1_1Logger`" msgstr "" -#: ../../api/file_include_gwmodelpp_Logger.h.rst:62 -msgid ":ref:`exhale_define_Logger_8h_1aa0c46696737698397f560901beb58425`" +#: ../../api/file_include_gwmodelpp_Logger.h.rst:69 +msgid "Functions" msgstr "" -#: ../../api/file_include_gwmodelpp_Logger.h.rst:64 -msgid ":ref:`exhale_define_Logger_8h_1a86d76dda1788cd388f5033ec6e989d9c`" +#: ../../api/file_include_gwmodelpp_Logger.h.rst:72 +msgid ":ref:`exhale_function_Logger_8h_1a4c6d814c9e79f32979fa8c78c2024ff9`" msgstr "" -#: ../../api/file_include_gwmodelpp_Logger.h.rst:66 -msgid ":ref:`exhale_define_Logger_8h_1a9a6822a722a1654fe9358651500657b2`" -msgstr "" +#~ msgid "``functional``" +#~ msgstr "" + +#~ msgid "Defines" +#~ msgstr "宏定义" + +#~ msgid ":ref:`exhale_define_Logger_8h_1a3e7277692bce66fb31ec0fafdf2c2f44`" +#~ msgstr "" + +#~ msgid ":ref:`exhale_define_Logger_8h_1aa0c46696737698397f560901beb58425`" +#~ msgstr "" + +#~ msgid ":ref:`exhale_define_Logger_8h_1a86d76dda1788cd388f5033ec6e989d9c`" +#~ msgstr "" + +#~ msgid ":ref:`exhale_define_Logger_8h_1a9a6822a722a1654fe9358651500657b2`" +#~ msgstr "" + +#~ msgid ":ref:`exhale_define_Logger_8h_1a63405819e78dea96e294ff200c113a37`" +#~ msgstr "" -#: ../../api/file_include_gwmodelpp_Logger.h.rst:68 -msgid ":ref:`exhale_define_Logger_8h_1a63405819e78dea96e294ff200c113a37`" -msgstr "" diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_RegressionDiagnostic.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_RegressionDiagnostic.h.po index 4056a001..b69d402d 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_RegressionDiagnostic.h.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_RegressionDiagnostic.h.po @@ -5,18 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-23 20:21+0000\n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" "PO-Revision-Date: 2023-01-31 13:13+0000\n" "Last-Translator: Yigong Hu \n" -"Language-Team: \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/file_include_gwmodelpp_RegressionDiagnostic.h.rst:5 msgid "File RegressionDiagnostic.h" @@ -41,41 +41,46 @@ msgid "Included By" msgstr "被下列头文件包含" #: ../../api/file_include_gwmodelpp_RegressionDiagnostic.h.rst:35 -msgid ":ref:`file_include_gwmodelpp_GWRBasic.h`" +msgid ":ref:`file_include_gwmodelpp_GTWR.h`" msgstr "" #: ../../api/file_include_gwmodelpp_RegressionDiagnostic.h.rst:37 -msgid ":ref:`file_include_gwmodelpp_GWRGeneralized.h`" +msgid ":ref:`file_include_gwmodelpp_GWRBasic.h`" msgstr "" #: ../../api/file_include_gwmodelpp_RegressionDiagnostic.h.rst:39 -msgid ":ref:`file_include_gwmodelpp_GWRLocalCollinearity.h`" +msgid ":ref:`file_include_gwmodelpp_GWRGeneralized.h`" msgstr "" #: ../../api/file_include_gwmodelpp_RegressionDiagnostic.h.rst:41 -msgid ":ref:`file_include_gwmodelpp_GWRRobust.h`" +msgid ":ref:`file_include_gwmodelpp_GWRLocalCollinearity.h`" msgstr "" #: ../../api/file_include_gwmodelpp_RegressionDiagnostic.h.rst:43 -msgid ":ref:`file_include_gwmodelpp_GWRScalable.h`" +msgid ":ref:`file_include_gwmodelpp_GWRRobust.h`" msgstr "" #: ../../api/file_include_gwmodelpp_RegressionDiagnostic.h.rst:45 +msgid ":ref:`file_include_gwmodelpp_GWRScalable.h`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_RegressionDiagnostic.h.rst:47 msgid ":ref:`file_include_gwmodelpp_IRegressionAnalysis.h`" msgstr "" -#: ../../api/file_include_gwmodelpp_RegressionDiagnostic.h.rst:51 +#: ../../api/file_include_gwmodelpp_RegressionDiagnostic.h.rst:53 msgid "Namespaces" msgstr "命名空间" -#: ../../api/file_include_gwmodelpp_RegressionDiagnostic.h.rst:54 +#: ../../api/file_include_gwmodelpp_RegressionDiagnostic.h.rst:56 msgid ":ref:`namespace_gwm`" msgstr "" -#: ../../api/file_include_gwmodelpp_RegressionDiagnostic.h.rst:58 +#: ../../api/file_include_gwmodelpp_RegressionDiagnostic.h.rst:60 msgid "Classes" msgstr "类" -#: ../../api/file_include_gwmodelpp_RegressionDiagnostic.h.rst:61 +#: ../../api/file_include_gwmodelpp_RegressionDiagnostic.h.rst:63 msgid ":ref:`exhale_struct_structgwm_1_1RegressionDiagnostic`" msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_SDR.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_SDR.h.po new file mode 100644 index 00000000..ea93fea4 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_SDR.h.po @@ -0,0 +1,119 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/file_include_gwmodelpp_SDR.h.rst:5 +msgid "File SDR.h" +msgstr "" + +#: ../../api/file_include_gwmodelpp_SDR.h.rst:7 +msgid "" +"|exhale_lsh| :ref:`Parent directory ` " +"(``include/gwmodelpp``)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_SDR.h.rst:14 +msgid "Contents" +msgstr "" + +#: ../../api/file_include_gwmodelpp_SDR.h.rst:17 +msgid "Definition (``include/gwmodelpp/SDR.h``)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_SDR.h.rst:30 +msgid "Includes" +msgstr "" + +#: ../../api/file_include_gwmodelpp_SDR.h.rst:33 +msgid "" +"``IBandwidthSelectable.h`` " +"(:ref:`file_include_gwmodelpp_IBandwidthSelectable.h`)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_SDR.h.rst:35 +msgid "``IParallelizable.h`` (:ref:`file_include_gwmodelpp_IParallelizable.h`)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_SDR.h.rst:37 +msgid "" +"``IRegressionAnalysis.h`` " +"(:ref:`file_include_gwmodelpp_IRegressionAnalysis.h`)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_SDR.h.rst:39 +msgid "``SpatialAlgorithm.h`` (:ref:`file_include_gwmodelpp_SpatialAlgorithm.h`)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_SDR.h.rst:41 +msgid "" +"``VariableForwardSelector.h`` " +"(:ref:`file_include_gwmodelpp_VariableForwardSelector.h`)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_SDR.h.rst:43 +msgid "``armadillo``" +msgstr "" + +#: ../../api/file_include_gwmodelpp_SDR.h.rst:45 +msgid "``gsl/gsl_vector.h``" +msgstr "" + +#: ../../api/file_include_gwmodelpp_SDR.h.rst:47 +msgid "" +"``spatialweight/SpatialWeight.h`` " +"(:ref:`file_include_gwmodelpp_spatialweight_SpatialWeight.h`)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_SDR.h.rst:49 +msgid "``vector``" +msgstr "" + +#: ../../api/file_include_gwmodelpp_SDR.h.rst:54 +msgid "Included By" +msgstr "" + +#: ../../api/file_include_gwmodelpp_SDR.h.rst:57 +msgid ":ref:`file_include_gwmodel.h`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_SDR.h.rst:63 +msgid "Namespaces" +msgstr "" + +#: ../../api/file_include_gwmodelpp_SDR.h.rst:66 +msgid ":ref:`namespace_gwm`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_SDR.h.rst:70 +msgid "Classes" +msgstr "" + +#: ../../api/file_include_gwmodelpp_SDR.h.rst:73 +msgid ":ref:`exhale_struct_structgwm_1_1SDRBandwidthOptimizer_1_1Parameter`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_SDR.h.rst:75 +msgid ":ref:`exhale_class_classgwm_1_1SDR`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_SDR.h.rst:77 +msgid ":ref:`exhale_class_classgwm_1_1SDRBandwidthOptimizer`" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_SpatialAlgorithm.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_SpatialAlgorithm.h.po index 5696b1eb..7e984cff 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_SpatialAlgorithm.h.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_SpatialAlgorithm.h.po @@ -5,18 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-23 20:21+0000\n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" "PO-Revision-Date: 2023-01-31 13:14+0000\n" "Last-Translator: Yigong Hu \n" -"Language-Team: \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/file_include_gwmodelpp_SpatialAlgorithm.h.rst:5 msgid "File SpatialAlgorithm.h" @@ -57,7 +57,7 @@ msgid ":ref:`file_include_gwmodel.h`" msgstr "" #: ../../api/file_include_gwmodelpp_SpatialAlgorithm.h.rst:45 -msgid ":ref:`file_include_gwmodelpp_GWDR.h`" +msgid ":ref:`file_include_gwmodelpp_SDR.h`" msgstr "" #: ../../api/file_include_gwmodelpp_SpatialAlgorithm.h.rst:47 @@ -83,3 +83,7 @@ msgstr "类" #: ../../api/file_include_gwmodelpp_SpatialAlgorithm.h.rst:65 msgid ":ref:`exhale_class_classgwm_1_1SpatialAlgorithm`" msgstr "" + +#~ msgid ":ref:`file_include_gwmodelpp_GWDR.h`" +#~ msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_SpatialMonoscaleAlgorithm.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_SpatialMonoscaleAlgorithm.h.po index a25b85dc..156f3a67 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_SpatialMonoscaleAlgorithm.h.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_SpatialMonoscaleAlgorithm.h.po @@ -5,18 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-23 20:21+0000\n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" "PO-Revision-Date: 2023-01-31 13:14+0000\n" "Last-Translator: Yigong Hu \n" -"Language-Team: \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/file_include_gwmodelpp_SpatialMonoscaleAlgorithm.h.rst:5 msgid "File SpatialMonoscaleAlgorithm.h" @@ -24,8 +24,8 @@ msgstr "文件 SpatialMonoscaleAlgorithm.h" #: ../../api/file_include_gwmodelpp_SpatialMonoscaleAlgorithm.h.rst:7 msgid "" -"|exhale_lsh| :ref:`Parent directory ` (``include/" -"gwmodelpp``)" +"|exhale_lsh| :ref:`Parent directory ` " +"(``include/gwmodelpp``)" msgstr "" #: ../../api/file_include_gwmodelpp_SpatialMonoscaleAlgorithm.h.rst:14 @@ -46,8 +46,8 @@ msgstr "" #: ../../api/file_include_gwmodelpp_SpatialMonoscaleAlgorithm.h.rst:35 msgid "" -"``spatialweight/SpatialWeight.h`` (:ref:" -"`file_include_gwmodelpp_spatialweight_SpatialWeight.h`)" +"``spatialweight/SpatialWeight.h`` " +"(:ref:`file_include_gwmodelpp_spatialweight_SpatialWeight.h`)" msgstr "" #: ../../api/file_include_gwmodelpp_SpatialMonoscaleAlgorithm.h.rst:40 @@ -59,29 +59,34 @@ msgid ":ref:`file_include_gwmodel.h`" msgstr "" #: ../../api/file_include_gwmodelpp_SpatialMonoscaleAlgorithm.h.rst:45 -msgid ":ref:`file_include_gwmodelpp_GWPCA.h`" +msgid ":ref:`file_include_gwmodelpp_GWDA.h`" msgstr "" #: ../../api/file_include_gwmodelpp_SpatialMonoscaleAlgorithm.h.rst:47 -msgid ":ref:`file_include_gwmodelpp_GWRBase.h`" +msgid ":ref:`file_include_gwmodelpp_GWPCA.h`" msgstr "" #: ../../api/file_include_gwmodelpp_SpatialMonoscaleAlgorithm.h.rst:49 +msgid ":ref:`file_include_gwmodelpp_GWRBase.h`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_SpatialMonoscaleAlgorithm.h.rst:51 msgid ":ref:`file_include_gwmodelpp_GWSS.h`" msgstr "" -#: ../../api/file_include_gwmodelpp_SpatialMonoscaleAlgorithm.h.rst:55 +#: ../../api/file_include_gwmodelpp_SpatialMonoscaleAlgorithm.h.rst:57 msgid "Namespaces" msgstr "命名空间" -#: ../../api/file_include_gwmodelpp_SpatialMonoscaleAlgorithm.h.rst:58 +#: ../../api/file_include_gwmodelpp_SpatialMonoscaleAlgorithm.h.rst:60 msgid ":ref:`namespace_gwm`" msgstr "" -#: ../../api/file_include_gwmodelpp_SpatialMonoscaleAlgorithm.h.rst:62 +#: ../../api/file_include_gwmodelpp_SpatialMonoscaleAlgorithm.h.rst:64 msgid "Classes" msgstr "类" -#: ../../api/file_include_gwmodelpp_SpatialMonoscaleAlgorithm.h.rst:65 +#: ../../api/file_include_gwmodelpp_SpatialMonoscaleAlgorithm.h.rst:67 msgid ":ref:`exhale_class_classgwm_1_1SpatialMonoscaleAlgorithm`" msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_Status.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_Status.h.po new file mode 100644 index 00000000..09963295 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_Status.h.po @@ -0,0 +1,71 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/file_include_gwmodelpp_Status.h.rst:5 +msgid "File Status.h" +msgstr "" + +#: ../../api/file_include_gwmodelpp_Status.h.rst:7 +msgid "" +"|exhale_lsh| :ref:`Parent directory ` " +"(``include/gwmodelpp``)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_Status.h.rst:14 +msgid "Contents" +msgstr "" + +#: ../../api/file_include_gwmodelpp_Status.h.rst:17 +msgid "Definition (``include/gwmodelpp/Status.h``)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_Status.h.rst:32 +msgid "Included By" +msgstr "" + +#: ../../api/file_include_gwmodelpp_Status.h.rst:35 +msgid ":ref:`file_include_gwmodelpp_Algorithm.h`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_Status.h.rst:37 +msgid ":ref:`file_include_gwmodelpp_IBandwidthSelectable.h`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_Status.h.rst:39 +msgid ":ref:`file_include_gwmodelpp_IVarialbeSelectable.h`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_Status.h.rst:45 +msgid "Namespaces" +msgstr "" + +#: ../../api/file_include_gwmodelpp_Status.h.rst:48 +msgid ":ref:`namespace_gwm`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_Status.h.rst:52 +msgid "Enums" +msgstr "" + +#: ../../api/file_include_gwmodelpp_Status.h.rst:55 +msgid ":ref:`exhale_enum_Status_8h_1a9b4ae87cab1052ee0eebebe5a1ae19d9`" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_VariableForwardSelector.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_VariableForwardSelector.h.po index 500cab57..02f6f283 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_VariableForwardSelector.h.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_VariableForwardSelector.h.po @@ -5,18 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-23 20:21+0000\n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" "PO-Revision-Date: 2023-01-31 14:01+0000\n" "Last-Translator: Yigong Hu \n" -"Language-Team: \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/file_include_gwmodelpp_VariableForwardSelector.h.rst:5 msgid "File VariableForwardSelector.h" @@ -42,8 +42,8 @@ msgstr "包含" #: ../../api/file_include_gwmodelpp_VariableForwardSelector.h.rst:33 msgid "" -"``IVarialbeSelectable.h`` (:ref:" -"`file_include_gwmodelpp_IVarialbeSelectable.h`)" +"``IVarialbeSelectable.h`` " +"(:ref:`file_include_gwmodelpp_IVarialbeSelectable.h`)" msgstr "" #: ../../api/file_include_gwmodelpp_VariableForwardSelector.h.rst:35 @@ -63,7 +63,7 @@ msgid ":ref:`file_include_gwmodel.h`" msgstr "" #: ../../api/file_include_gwmodelpp_VariableForwardSelector.h.rst:47 -msgid ":ref:`file_include_gwmodelpp_GWDR.h`" +msgid ":ref:`file_include_gwmodelpp_SDR.h`" msgstr "" #: ../../api/file_include_gwmodelpp_VariableForwardSelector.h.rst:53 @@ -81,3 +81,7 @@ msgstr "类" #: ../../api/file_include_gwmodelpp_VariableForwardSelector.h.rst:63 msgid ":ref:`exhale_class_classgwm_1_1VariableForwardSelector`" msgstr "" + +#~ msgid ":ref:`file_include_gwmodelpp_GWDR.h`" +#~ msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_spatialweight_CRSDistance.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_spatialweight_CRSDistance.h.po index 626257fd..715a67de 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_spatialweight_CRSDistance.h.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_spatialweight_CRSDistance.h.po @@ -5,18 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-23 20:21+0000\n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" "PO-Revision-Date: 2023-01-31 15:54+0000\n" "Last-Translator: Yigong Hu \n" -"Language-Team: \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/file_include_gwmodelpp_spatialweight_CRSDistance.h.rst:5 msgid "File CRSDistance.h" @@ -24,7 +24,8 @@ msgstr "文件 CRSDistance.h" #: ../../api/file_include_gwmodelpp_spatialweight_CRSDistance.h.rst:7 msgid "" -"|exhale_lsh| :ref:`Parent directory ` " +"|exhale_lsh| :ref:`Parent directory " +"` " "(``include/gwmodelpp/spatialweight``)" msgstr "" @@ -53,29 +54,34 @@ msgid ":ref:`file_include_gwmodel.h`" msgstr "" #: ../../api/file_include_gwmodelpp_spatialweight_CRSDistance.h.rst:43 -msgid ":ref:`file_include_gwmodelpp_spatialweight_MinkwoskiDistance.h`" +msgid ":ref:`file_include_gwmodelpp_spatialweight_CRSSTDistance.h`" msgstr "" #: ../../api/file_include_gwmodelpp_spatialweight_CRSDistance.h.rst:45 +msgid ":ref:`file_include_gwmodelpp_spatialweight_MinkwoskiDistance.h`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_spatialweight_CRSDistance.h.rst:47 msgid ":ref:`file_include_gwmodelpp_spatialweight_SpatialWeight.h`" msgstr "" -#: ../../api/file_include_gwmodelpp_spatialweight_CRSDistance.h.rst:51 +#: ../../api/file_include_gwmodelpp_spatialweight_CRSDistance.h.rst:53 msgid "Namespaces" msgstr "命名空间" -#: ../../api/file_include_gwmodelpp_spatialweight_CRSDistance.h.rst:54 +#: ../../api/file_include_gwmodelpp_spatialweight_CRSDistance.h.rst:56 msgid ":ref:`namespace_gwm`" msgstr "" -#: ../../api/file_include_gwmodelpp_spatialweight_CRSDistance.h.rst:58 +#: ../../api/file_include_gwmodelpp_spatialweight_CRSDistance.h.rst:60 msgid "Classes" msgstr "类" -#: ../../api/file_include_gwmodelpp_spatialweight_CRSDistance.h.rst:61 +#: ../../api/file_include_gwmodelpp_spatialweight_CRSDistance.h.rst:63 msgid ":ref:`exhale_struct_structgwm_1_1CRSDistance_1_1Parameter`" msgstr "" -#: ../../api/file_include_gwmodelpp_spatialweight_CRSDistance.h.rst:63 +#: ../../api/file_include_gwmodelpp_spatialweight_CRSDistance.h.rst:65 msgid ":ref:`exhale_class_classgwm_1_1CRSDistance`" msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_spatialweight_CRSSTDistance.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_spatialweight_CRSSTDistance.h.po new file mode 100644 index 00000000..7e9006f3 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_spatialweight_CRSSTDistance.h.po @@ -0,0 +1,88 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/file_include_gwmodelpp_spatialweight_CRSSTDistance.h.rst:5 +msgid "File CRSSTDistance.h" +msgstr "" + +#: ../../api/file_include_gwmodelpp_spatialweight_CRSSTDistance.h.rst:7 +msgid "" +"|exhale_lsh| :ref:`Parent directory " +"` " +"(``include/gwmodelpp/spatialweight``)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_spatialweight_CRSSTDistance.h.rst:14 +msgid "Contents" +msgstr "" + +#: ../../api/file_include_gwmodelpp_spatialweight_CRSSTDistance.h.rst:17 +msgid "Definition (``include/gwmodelpp/spatialweight/CRSSTDistance.h``)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_spatialweight_CRSSTDistance.h.rst:30 +msgid "Includes" +msgstr "" + +#: ../../api/file_include_gwmodelpp_spatialweight_CRSSTDistance.h.rst:33 +msgid "" +"``CRSDistance.h`` " +"(:ref:`file_include_gwmodelpp_spatialweight_CRSDistance.h`)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_spatialweight_CRSSTDistance.h.rst:35 +msgid "" +"``OneDimDistance.h`` " +"(:ref:`file_include_gwmodelpp_spatialweight_OneDimDistance.h`)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_spatialweight_CRSSTDistance.h.rst:37 +msgid "``math.h``" +msgstr "" + +#: ../../api/file_include_gwmodelpp_spatialweight_CRSSTDistance.h.rst:42 +msgid "Included By" +msgstr "" + +#: ../../api/file_include_gwmodelpp_spatialweight_CRSSTDistance.h.rst:45 +msgid ":ref:`file_include_gwmodelpp_GTWR.h`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_spatialweight_CRSSTDistance.h.rst:47 +msgid ":ref:`file_include_gwmodelpp_spatialweight_SpatialWeight.h`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_spatialweight_CRSSTDistance.h.rst:53 +msgid "Namespaces" +msgstr "" + +#: ../../api/file_include_gwmodelpp_spatialweight_CRSSTDistance.h.rst:56 +msgid ":ref:`namespace_gwm`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_spatialweight_CRSSTDistance.h.rst:60 +msgid "Classes" +msgstr "" + +#: ../../api/file_include_gwmodelpp_spatialweight_CRSSTDistance.h.rst:63 +msgid ":ref:`exhale_class_classgwm_1_1CRSSTDistance`" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_spatialweight_OneDimDistance.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_spatialweight_OneDimDistance.h.po index 9da294ce..aaa45801 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_spatialweight_OneDimDistance.h.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_spatialweight_OneDimDistance.h.po @@ -5,18 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-23 20:21+0000\n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" "PO-Revision-Date: 2023-01-31 15:56+0000\n" "Last-Translator: Yigong Hu \n" -"Language-Team: \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/file_include_gwmodelpp_spatialweight_OneDimDistance.h.rst:5 msgid "File OneDimDistance.h" @@ -24,7 +24,8 @@ msgstr "文件 OneDimDistance.h" #: ../../api/file_include_gwmodelpp_spatialweight_OneDimDistance.h.rst:7 msgid "" -"|exhale_lsh| :ref:`Parent directory ` " +"|exhale_lsh| :ref:`Parent directory " +"` " "(``include/gwmodelpp/spatialweight``)" msgstr "" @@ -49,25 +50,30 @@ msgid "Included By" msgstr "被下列头文件包含" #: ../../api/file_include_gwmodelpp_spatialweight_OneDimDistance.h.rst:41 +msgid ":ref:`file_include_gwmodelpp_spatialweight_CRSSTDistance.h`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_spatialweight_OneDimDistance.h.rst:43 msgid ":ref:`file_include_gwmodelpp_spatialweight_SpatialWeight.h`" msgstr "" -#: ../../api/file_include_gwmodelpp_spatialweight_OneDimDistance.h.rst:47 +#: ../../api/file_include_gwmodelpp_spatialweight_OneDimDistance.h.rst:49 msgid "Namespaces" msgstr "命名空间" -#: ../../api/file_include_gwmodelpp_spatialweight_OneDimDistance.h.rst:50 +#: ../../api/file_include_gwmodelpp_spatialweight_OneDimDistance.h.rst:52 msgid ":ref:`namespace_gwm`" msgstr "" -#: ../../api/file_include_gwmodelpp_spatialweight_OneDimDistance.h.rst:54 +#: ../../api/file_include_gwmodelpp_spatialweight_OneDimDistance.h.rst:56 msgid "Classes" msgstr "类" -#: ../../api/file_include_gwmodelpp_spatialweight_OneDimDistance.h.rst:57 +#: ../../api/file_include_gwmodelpp_spatialweight_OneDimDistance.h.rst:59 msgid ":ref:`exhale_struct_structgwm_1_1OneDimDistance_1_1Parameter`" msgstr "" -#: ../../api/file_include_gwmodelpp_spatialweight_OneDimDistance.h.rst:59 +#: ../../api/file_include_gwmodelpp_spatialweight_OneDimDistance.h.rst:61 msgid ":ref:`exhale_class_classgwm_1_1OneDimDistance`" msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_spatialweight_SpatialWeight.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_spatialweight_SpatialWeight.h.po index 9cc74dd7..d2ca2244 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_spatialweight_SpatialWeight.h.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_spatialweight_SpatialWeight.h.po @@ -5,18 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-23 20:21+0000\n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" "PO-Revision-Date: 2023-01-31 15:56+0000\n" "Last-Translator: Yigong Hu \n" -"Language-Team: \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/file_include_gwmodelpp_spatialweight_SpatialWeight.h.rst:5 msgid "File SpatialWeight.h" @@ -24,7 +24,8 @@ msgstr "文件 SpatialWeight.h" #: ../../api/file_include_gwmodelpp_spatialweight_SpatialWeight.h.rst:7 msgid "" -"|exhale_lsh| :ref:`Parent directory ` " +"|exhale_lsh| :ref:`Parent directory " +"` " "(``include/gwmodelpp/spatialweight``)" msgstr "" @@ -42,51 +43,56 @@ msgstr "包含" #: ../../api/file_include_gwmodelpp_spatialweight_SpatialWeight.h.rst:33 msgid "" -"``BandwidthWeight.h`` (:ref:" -"`file_include_gwmodelpp_spatialweight_BandwidthWeight.h`)" +"``BandwidthWeight.h`` " +"(:ref:`file_include_gwmodelpp_spatialweight_BandwidthWeight.h`)" msgstr "" #: ../../api/file_include_gwmodelpp_spatialweight_SpatialWeight.h.rst:35 msgid "" -"``CRSDistance.h`` (:ref:`file_include_gwmodelpp_spatialweight_CRSDistance.h`)" +"``CRSDistance.h`` " +"(:ref:`file_include_gwmodelpp_spatialweight_CRSDistance.h`)" msgstr "" #: ../../api/file_include_gwmodelpp_spatialweight_SpatialWeight.h.rst:37 msgid "" -"``DMatDistance.h`` (:ref:`file_include_gwmodelpp_spatialweight_DMatDistance.h`)" +"``CRSSTDistance.h`` " +"(:ref:`file_include_gwmodelpp_spatialweight_CRSSTDistance.h`)" msgstr "" #: ../../api/file_include_gwmodelpp_spatialweight_SpatialWeight.h.rst:39 -msgid "``Distance.h`` (:ref:`file_include_gwmodelpp_spatialweight_CRSDistance.h`)" +msgid "" +"``DMatDistance.h`` " +"(:ref:`file_include_gwmodelpp_spatialweight_DMatDistance.h`)" msgstr "" #: ../../api/file_include_gwmodelpp_spatialweight_SpatialWeight.h.rst:41 -msgid "" -"``MinkwoskiDistance.h`` (:ref:" -"`file_include_gwmodelpp_spatialweight_MinkwoskiDistance.h`)" +msgid "``Distance.h`` (:ref:`file_include_gwmodelpp_spatialweight_CRSDistance.h`)" msgstr "" #: ../../api/file_include_gwmodelpp_spatialweight_SpatialWeight.h.rst:43 msgid "" -"``OneDimDistance.h`` (:ref:`file_include_gwmodelpp_spatialweight_OneDimDistance." -"h`)" +"``MinkwoskiDistance.h`` " +"(:ref:`file_include_gwmodelpp_spatialweight_MinkwoskiDistance.h`)" msgstr "" #: ../../api/file_include_gwmodelpp_spatialweight_SpatialWeight.h.rst:45 msgid "" -"``Weight.h`` (:ref:`file_include_gwmodelpp_spatialweight_BandwidthWeight.h`)" +"``OneDimDistance.h`` " +"(:ref:`file_include_gwmodelpp_spatialweight_OneDimDistance.h`)" msgstr "" -#: ../../api/file_include_gwmodelpp_spatialweight_SpatialWeight.h.rst:50 +#: ../../api/file_include_gwmodelpp_spatialweight_SpatialWeight.h.rst:47 +msgid "" +"``Weight.h`` " +"(:ref:`file_include_gwmodelpp_spatialweight_BandwidthWeight.h`)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_spatialweight_SpatialWeight.h.rst:52 msgid "Included By" msgstr "被下列头文件包含" -#: ../../api/file_include_gwmodelpp_spatialweight_SpatialWeight.h.rst:53 -msgid ":ref:`file_include_gwmodel.h`" -msgstr "" - #: ../../api/file_include_gwmodelpp_spatialweight_SpatialWeight.h.rst:55 -msgid ":ref:`file_include_gwmodelpp_GWDR.h`" +msgid ":ref:`file_include_gwmodel.h`" msgstr "" #: ../../api/file_include_gwmodelpp_spatialweight_SpatialWeight.h.rst:57 @@ -94,25 +100,33 @@ msgid ":ref:`file_include_gwmodelpp_GWRMultiscale.h`" msgstr "" #: ../../api/file_include_gwmodelpp_spatialweight_SpatialWeight.h.rst:59 -msgid ":ref:`file_include_gwmodelpp_SpatialMonoscaleAlgorithm.h`" +msgid ":ref:`file_include_gwmodelpp_SDR.h`" msgstr "" #: ../../api/file_include_gwmodelpp_spatialweight_SpatialWeight.h.rst:61 +msgid ":ref:`file_include_gwmodelpp_SpatialMonoscaleAlgorithm.h`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_spatialweight_SpatialWeight.h.rst:63 msgid ":ref:`file_include_gwmodelpp_SpatialMultiscaleAlgorithm.h`" msgstr "" -#: ../../api/file_include_gwmodelpp_spatialweight_SpatialWeight.h.rst:67 +#: ../../api/file_include_gwmodelpp_spatialweight_SpatialWeight.h.rst:69 msgid "Namespaces" msgstr "命名空间" -#: ../../api/file_include_gwmodelpp_spatialweight_SpatialWeight.h.rst:70 +#: ../../api/file_include_gwmodelpp_spatialweight_SpatialWeight.h.rst:72 msgid ":ref:`namespace_gwm`" msgstr "" -#: ../../api/file_include_gwmodelpp_spatialweight_SpatialWeight.h.rst:74 +#: ../../api/file_include_gwmodelpp_spatialweight_SpatialWeight.h.rst:76 msgid "Classes" msgstr "类" -#: ../../api/file_include_gwmodelpp_spatialweight_SpatialWeight.h.rst:77 +#: ../../api/file_include_gwmodelpp_spatialweight_SpatialWeight.h.rst:79 msgid ":ref:`exhale_class_classgwm_1_1SpatialWeight`" msgstr "" + +#~ msgid ":ref:`file_include_gwmodelpp_GWDR.h`" +#~ msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_spatialweight_cuda_BandwidthWeightKernel.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_spatialweight_cuda_BandwidthWeightKernel.h.po new file mode 100644 index 00000000..02323c39 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_spatialweight_cuda_BandwidthWeightKernel.h.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/file_include_gwmodelpp_spatialweight_cuda_BandwidthWeightKernel.h.rst:5 +msgid "File BandwidthWeightKernel.h" +msgstr "" + +#: ../../api/file_include_gwmodelpp_spatialweight_cuda_BandwidthWeightKernel.h.rst:7 +msgid "" +"|exhale_lsh| :ref:`Parent directory " +"` " +"(``include/gwmodelpp/spatialweight/cuda``)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_spatialweight_cuda_BandwidthWeightKernel.h.rst:14 +msgid "Contents" +msgstr "" + +#: ../../api/file_include_gwmodelpp_spatialweight_cuda_BandwidthWeightKernel.h.rst:17 +msgid "" +"Definition " +"(``include/gwmodelpp/spatialweight/cuda/BandwidthWeightKernel.h``)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_spatialweight_cuda_BandwidthWeightKernel.h.rst:30 +msgid "Includes" +msgstr "" + +#: ../../api/file_include_gwmodelpp_spatialweight_cuda_BandwidthWeightKernel.h.rst:33 +msgid "``cuda_runtime.h``" +msgstr "" + +#: ../../api/file_include_gwmodelpp_spatialweight_cuda_BandwidthWeightKernel.h.rst:41 +msgid "Functions" +msgstr "" + +#: ../../api/file_include_gwmodelpp_spatialweight_cuda_BandwidthWeightKernel.h.rst:44 +msgid ":ref:`exhale_function_BandwidthWeightKernel_8h_1a80af99b3d9c47285057b5757e39cde91`" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_spatialweight_cuda_CRSDistanceKernel.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_spatialweight_cuda_CRSDistanceKernel.h.po new file mode 100644 index 00000000..4bf0404d --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_spatialweight_cuda_CRSDistanceKernel.h.po @@ -0,0 +1,60 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/file_include_gwmodelpp_spatialweight_cuda_CRSDistanceKernel.h.rst:5 +msgid "File CRSDistanceKernel.h" +msgstr "" + +#: ../../api/file_include_gwmodelpp_spatialweight_cuda_CRSDistanceKernel.h.rst:7 +msgid "" +"|exhale_lsh| :ref:`Parent directory " +"` " +"(``include/gwmodelpp/spatialweight/cuda``)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_spatialweight_cuda_CRSDistanceKernel.h.rst:14 +msgid "Contents" +msgstr "" + +#: ../../api/file_include_gwmodelpp_spatialweight_cuda_CRSDistanceKernel.h.rst:17 +msgid "Definition (``include/gwmodelpp/spatialweight/cuda/CRSDistanceKernel.h``)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_spatialweight_cuda_CRSDistanceKernel.h.rst:30 +msgid "Includes" +msgstr "" + +#: ../../api/file_include_gwmodelpp_spatialweight_cuda_CRSDistanceKernel.h.rst:33 +msgid "``cuda_runtime.h``" +msgstr "" + +#: ../../api/file_include_gwmodelpp_spatialweight_cuda_CRSDistanceKernel.h.rst:41 +msgid "Functions" +msgstr "" + +#: ../../api/file_include_gwmodelpp_spatialweight_cuda_CRSDistanceKernel.h.rst:44 +msgid ":ref:`exhale_function_CRSDistanceKernel_8h_1acf021181612760b19cb9c5a3428765d1`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_spatialweight_cuda_CRSDistanceKernel.h.rst:46 +msgid ":ref:`exhale_function_CRSDistanceKernel_8h_1af589c252f084801a3e3fa00ee16e6e82`" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_spatialweight_cuda_ISpatialCudaEnabled.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_spatialweight_cuda_ISpatialCudaEnabled.h.po new file mode 100644 index 00000000..750ed0c2 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_spatialweight_cuda_ISpatialCudaEnabled.h.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/file_include_gwmodelpp_spatialweight_cuda_ISpatialCudaEnabled.h.rst:5 +msgid "File ISpatialCudaEnabled.h" +msgstr "" + +#: ../../api/file_include_gwmodelpp_spatialweight_cuda_ISpatialCudaEnabled.h.rst:7 +msgid "" +"|exhale_lsh| :ref:`Parent directory " +"` " +"(``include/gwmodelpp/spatialweight/cuda``)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_spatialweight_cuda_ISpatialCudaEnabled.h.rst:14 +msgid "Contents" +msgstr "" + +#: ../../api/file_include_gwmodelpp_spatialweight_cuda_ISpatialCudaEnabled.h.rst:17 +msgid "" +"Definition " +"(``include/gwmodelpp/spatialweight/cuda/ISpatialCudaEnabled.h``)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_spatialweight_cuda_ISpatialCudaEnabled.h.rst:30 +msgid "Includes" +msgstr "" + +#: ../../api/file_include_gwmodelpp_spatialweight_cuda_ISpatialCudaEnabled.h.rst:33 +msgid "``cuda_runtime.h``" +msgstr "" + +#: ../../api/file_include_gwmodelpp_spatialweight_cuda_ISpatialCudaEnabled.h.rst:41 +msgid "Classes" +msgstr "" + +#: ../../api/file_include_gwmodelpp_spatialweight_cuda_ISpatialCudaEnabled.h.rst:44 +msgid ":ref:`exhale_struct_structISpatialCudaEnabled`" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_utils_CudaUtils.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_utils_CudaUtils.h.po new file mode 100644 index 00000000..9324c3cc --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_utils_CudaUtils.h.po @@ -0,0 +1,91 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/file_include_gwmodelpp_utils_CudaUtils.h.rst:5 +msgid "File CudaUtils.h" +msgstr "" + +#: ../../api/file_include_gwmodelpp_utils_CudaUtils.h.rst:7 +msgid "" +"|exhale_lsh| :ref:`Parent directory ` " +"(``include/gwmodelpp/utils``)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_utils_CudaUtils.h.rst:14 +msgid "Contents" +msgstr "" + +#: ../../api/file_include_gwmodelpp_utils_CudaUtils.h.rst:17 +msgid "Definition (``include/gwmodelpp/utils/CudaUtils.h``)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_utils_CudaUtils.h.rst:30 +msgid "Includes" +msgstr "" + +#: ../../api/file_include_gwmodelpp_utils_CudaUtils.h.rst:33 +msgid "``cstdio``" +msgstr "" + +#: ../../api/file_include_gwmodelpp_utils_CudaUtils.h.rst:35 +msgid "``cublas_v2.h``" +msgstr "" + +#: ../../api/file_include_gwmodelpp_utils_CudaUtils.h.rst:37 +msgid "``cuda_runtime.h``" +msgstr "" + +#: ../../api/file_include_gwmodelpp_utils_CudaUtils.h.rst:45 +msgid "Functions" +msgstr "" + +#: ../../api/file_include_gwmodelpp_utils_CudaUtils.h.rst:48 +msgid ":ref:`exhale_function_CudaUtils_8h_1aca8809fc28cec1e825e8889d7ee6d58a`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_utils_CudaUtils.h.rst:50 +msgid ":ref:`exhale_function_CudaUtils_8h_1ab482795defda1d6e788779ff084ea367`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_utils_CudaUtils.h.rst:52 +msgid ":ref:`exhale_function_CudaUtils_8h_1afbdb4d184d3ecef8e1d0fbc640e962f4`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_utils_CudaUtils.h.rst:54 +msgid ":ref:`exhale_function_CudaUtils_8h_1a138a22974a45a8f0f5138bee9fbfe945`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_utils_CudaUtils.h.rst:56 +msgid ":ref:`exhale_function_CudaUtils_8h_1a983eb15543aa503ed6debbbacd80a9ba`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_utils_CudaUtils.h.rst:60 +msgid "Defines" +msgstr "" + +#: ../../api/file_include_gwmodelpp_utils_CudaUtils.h.rst:63 +msgid ":ref:`exhale_define_CudaUtils_8h_1af956e3938f5abff900fb99c4a25446a5`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_utils_CudaUtils.h.rst:65 +msgid ":ref:`exhale_define_CudaUtils_8h_1a98e5ae1fe30ec3f2c1d7f60ffaf70e8e`" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_utils_cumat.hpp.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_utils_cumat.hpp.po new file mode 100644 index 00000000..23925fce --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_utils_cumat.hpp.po @@ -0,0 +1,119 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/file_include_gwmodelpp_utils_cumat.hpp.rst:5 +msgid "File cumat.hpp" +msgstr "" + +#: ../../api/file_include_gwmodelpp_utils_cumat.hpp.rst:7 +msgid "" +"|exhale_lsh| :ref:`Parent directory ` " +"(``include/gwmodelpp/utils``)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_utils_cumat.hpp.rst:14 +msgid "Contents" +msgstr "" + +#: ../../api/file_include_gwmodelpp_utils_cumat.hpp.rst:17 +msgid "Definition (``include/gwmodelpp/utils/cumat.hpp``)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_utils_cumat.hpp.rst:30 +msgid "Includes" +msgstr "" + +#: ../../api/file_include_gwmodelpp_utils_cumat.hpp.rst:33 +msgid "``armadillo``" +msgstr "" + +#: ../../api/file_include_gwmodelpp_utils_cumat.hpp.rst:35 +msgid "``cublas_v2.h``" +msgstr "" + +#: ../../api/file_include_gwmodelpp_utils_cumat.hpp.rst:37 +msgid "``cuda_runtime.h``" +msgstr "" + +#: ../../api/file_include_gwmodelpp_utils_cumat.hpp.rst:39 +msgid "``exception``" +msgstr "" + +#: ../../api/file_include_gwmodelpp_utils_cumat.hpp.rst:47 +msgid "Classes" +msgstr "" + +#: ../../api/file_include_gwmodelpp_utils_cumat.hpp.rst:50 +msgid ":ref:`exhale_struct_structcurange`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_utils_cumat.hpp.rst:52 +msgid ":ref:`exhale_struct_structcutraits`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_utils_cumat.hpp.rst:54 +msgid ":ref:`exhale_class_classcubase`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_utils_cumat.hpp.rst:56 +msgid ":ref:`exhale_class_classcubatched`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_utils_cumat.hpp.rst:58 +msgid ":ref:`exhale_class_classcumat`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_utils_cumat.hpp.rst:60 +msgid ":ref:`exhale_class_classcuop`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_utils_cumat.hpp.rst:62 +msgid ":ref:`exhale_class_classcuop__diagmul`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_utils_cumat.hpp.rst:64 +msgid ":ref:`exhale_class_classcuop__inv`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_utils_cumat.hpp.rst:66 +msgid ":ref:`exhale_class_classcuop__matmul`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_utils_cumat.hpp.rst:68 +msgid ":ref:`exhale_class_classcuop__matmul_3_01A_00_01B_00_01cubase_1_1Type_1_1Mat_00_01cubase_1_1Type_1_1Mat_01_4`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_utils_cumat.hpp.rst:70 +msgid ":ref:`exhale_class_classcuop__trans`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_utils_cumat.hpp.rst:72 +msgid ":ref:`exhale_class_classcustride`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_utils_cumat.hpp.rst:74 +msgid ":ref:`exhale_class_classcuview`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_utils_cumat.hpp.rst:76 +msgid ":ref:`exhale_class_classcuview_3_01custride_01_4`" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/function_BandwidthWeightKernel_8h_1a80af99b3d9c47285057b5757e39cde91.po b/docs/locale/zh_CN/LC_MESSAGES/api/function_BandwidthWeightKernel_8h_1a80af99b3d9c47285057b5757e39cde91.po new file mode 100644 index 00000000..b9398237 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/function_BandwidthWeightKernel_8h_1a80af99b3d9c47285057b5757e39cde91.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/function_BandwidthWeightKernel_8h_1a80af99b3d9c47285057b5757e39cde91.rst:4 +msgid "Function gw_weight_cuda" +msgstr "" + +#: ../../api/function_BandwidthWeightKernel_8h_1a80af99b3d9c47285057b5757e39cde91.rst:6 +msgid "" +"Defined in " +":ref:`file_include_gwmodelpp_spatialweight_cuda_BandwidthWeightKernel.h`" +msgstr "" + +#: ../../api/function_BandwidthWeightKernel_8h_1a80af99b3d9c47285057b5757e39cde91.rst:10 +msgid "Function Documentation" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/function_CRSDistanceKernel_8h_1acf021181612760b19cb9c5a3428765d1.po b/docs/locale/zh_CN/LC_MESSAGES/api/function_CRSDistanceKernel_8h_1acf021181612760b19cb9c5a3428765d1.po new file mode 100644 index 00000000..53933afe --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/function_CRSDistanceKernel_8h_1acf021181612760b19cb9c5a3428765d1.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/function_CRSDistanceKernel_8h_1acf021181612760b19cb9c5a3428765d1.rst:4 +msgid "Function eu_dist_cuda" +msgstr "" + +#: ../../api/function_CRSDistanceKernel_8h_1acf021181612760b19cb9c5a3428765d1.rst:6 +msgid "" +"Defined in " +":ref:`file_include_gwmodelpp_spatialweight_cuda_CRSDistanceKernel.h`" +msgstr "" + +#: ../../api/function_CRSDistanceKernel_8h_1acf021181612760b19cb9c5a3428765d1.rst:10 +msgid "Function Documentation" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/function_CRSDistanceKernel_8h_1af589c252f084801a3e3fa00ee16e6e82.po b/docs/locale/zh_CN/LC_MESSAGES/api/function_CRSDistanceKernel_8h_1af589c252f084801a3e3fa00ee16e6e82.po new file mode 100644 index 00000000..24d7143c --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/function_CRSDistanceKernel_8h_1af589c252f084801a3e3fa00ee16e6e82.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/function_CRSDistanceKernel_8h_1af589c252f084801a3e3fa00ee16e6e82.rst:4 +msgid "Function sp_dist_cuda" +msgstr "" + +#: ../../api/function_CRSDistanceKernel_8h_1af589c252f084801a3e3fa00ee16e6e82.rst:6 +msgid "" +"Defined in " +":ref:`file_include_gwmodelpp_spatialweight_cuda_CRSDistanceKernel.h`" +msgstr "" + +#: ../../api/function_CRSDistanceKernel_8h_1af589c252f084801a3e3fa00ee16e6e82.rst:10 +msgid "Function Documentation" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/function_CudaUtils_8h_1a138a22974a45a8f0f5138bee9fbfe945.po b/docs/locale/zh_CN/LC_MESSAGES/api/function_CudaUtils_8h_1a138a22974a45a8f0f5138bee9fbfe945.po new file mode 100644 index 00000000..00b959eb --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/function_CudaUtils_8h_1a138a22974a45a8f0f5138bee9fbfe945.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/function_CudaUtils_8h_1a138a22974a45a8f0f5138bee9fbfe945.rst:4 +msgid "Function pdc" +msgstr "" + +#: ../../api/function_CudaUtils_8h_1a138a22974a45a8f0f5138bee9fbfe945.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_utils_CudaUtils.h`" +msgstr "" + +#: ../../api/function_CudaUtils_8h_1a138a22974a45a8f0f5138bee9fbfe945.rst:10 +msgid "Function Documentation" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/function_CudaUtils_8h_1a983eb15543aa503ed6debbbacd80a9ba.po b/docs/locale/zh_CN/LC_MESSAGES/api/function_CudaUtils_8h_1a983eb15543aa503ed6debbbacd80a9ba.po new file mode 100644 index 00000000..01237b9e --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/function_CudaUtils_8h_1a983eb15543aa503ed6debbbacd80a9ba.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/function_CudaUtils_8h_1a983eb15543aa503ed6debbbacd80a9ba.rst:4 +msgid "Function pdm" +msgstr "" + +#: ../../api/function_CudaUtils_8h_1a983eb15543aa503ed6debbbacd80a9ba.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_utils_CudaUtils.h`" +msgstr "" + +#: ../../api/function_CudaUtils_8h_1a983eb15543aa503ed6debbbacd80a9ba.rst:10 +msgid "Function Documentation" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/function_CudaUtils_8h_1ab482795defda1d6e788779ff084ea367.po b/docs/locale/zh_CN/LC_MESSAGES/api/function_CudaUtils_8h_1ab482795defda1d6e788779ff084ea367.po new file mode 100644 index 00000000..88ee5c40 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/function_CudaUtils_8h_1ab482795defda1d6e788779ff084ea367.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/function_CudaUtils_8h_1ab482795defda1d6e788779ff084ea367.rst:4 +msgid "Function _cudaGetErrorEnum(cublasStatus_t)" +msgstr "" + +#: ../../api/function_CudaUtils_8h_1ab482795defda1d6e788779ff084ea367.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_utils_CudaUtils.h`" +msgstr "" + +#: ../../api/function_CudaUtils_8h_1ab482795defda1d6e788779ff084ea367.rst:10 +msgid "Function Documentation" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/function_CudaUtils_8h_1aca8809fc28cec1e825e8889d7ee6d58a.po b/docs/locale/zh_CN/LC_MESSAGES/api/function_CudaUtils_8h_1aca8809fc28cec1e825e8889d7ee6d58a.po new file mode 100644 index 00000000..dc216b04 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/function_CudaUtils_8h_1aca8809fc28cec1e825e8889d7ee6d58a.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/function_CudaUtils_8h_1aca8809fc28cec1e825e8889d7ee6d58a.rst:4 +msgid "Function _cudaGetErrorEnum(cudaError_t)" +msgstr "" + +#: ../../api/function_CudaUtils_8h_1aca8809fc28cec1e825e8889d7ee6d58a.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_utils_CudaUtils.h`" +msgstr "" + +#: ../../api/function_CudaUtils_8h_1aca8809fc28cec1e825e8889d7ee6d58a.rst:10 +msgid "Function Documentation" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/function_CudaUtils_8h_1afbdb4d184d3ecef8e1d0fbc640e962f4.po b/docs/locale/zh_CN/LC_MESSAGES/api/function_CudaUtils_8h_1afbdb4d184d3ecef8e1d0fbc640e962f4.po new file mode 100644 index 00000000..0d5c91ef --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/function_CudaUtils_8h_1afbdb4d184d3ecef8e1d0fbc640e962f4.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/function_CudaUtils_8h_1afbdb4d184d3ecef8e1d0fbc640e962f4.rst:4 +msgid "Template Function check" +msgstr "" + +#: ../../api/function_CudaUtils_8h_1afbdb4d184d3ecef8e1d0fbc640e962f4.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_utils_CudaUtils.h`" +msgstr "" + +#: ../../api/function_CudaUtils_8h_1afbdb4d184d3ecef8e1d0fbc640e962f4.rst:10 +msgid "Function Documentation" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/function_IGWRBasicGpuTask_8h_1a4487a31588c77e3eceebf257737787d8.po b/docs/locale/zh_CN/LC_MESSAGES/api/function_IGWRBasicGpuTask_8h_1a4487a31588c77e3eceebf257737787d8.po new file mode 100644 index 00000000..ae97619c --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/function_IGWRBasicGpuTask_8h_1a4487a31588c77e3eceebf257737787d8.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/function_IGWRBasicGpuTask_8h_1a4487a31588c77e3eceebf257737787d8.rst:4 +msgid "Function GWRBasicGpuTask_Del" +msgstr "" + +#: ../../api/function_IGWRBasicGpuTask_8h_1a4487a31588c77e3eceebf257737787d8.rst:6 +msgid "Defined in :ref:`file_include_gwmodelcuda_IGWRBasicGpuTask.h`" +msgstr "" + +#: ../../api/function_IGWRBasicGpuTask_8h_1a4487a31588c77e3eceebf257737787d8.rst:10 +msgid "Function Documentation" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/function_IGWRBasicGpuTask_8h_1a9739dbf3a5bee2b7bed9fb1bf83cca7a.po b/docs/locale/zh_CN/LC_MESSAGES/api/function_IGWRBasicGpuTask_8h_1a9739dbf3a5bee2b7bed9fb1bf83cca7a.po new file mode 100644 index 00000000..10f7af3d --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/function_IGWRBasicGpuTask_8h_1a9739dbf3a5bee2b7bed9fb1bf83cca7a.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/function_IGWRBasicGpuTask_8h_1a9739dbf3a5bee2b7bed9fb1bf83cca7a.rst:4 +msgid "Function GWRBasicGpuTaskFit_Create" +msgstr "" + +#: ../../api/function_IGWRBasicGpuTask_8h_1a9739dbf3a5bee2b7bed9fb1bf83cca7a.rst:6 +msgid "Defined in :ref:`file_include_gwmodelcuda_IGWRBasicGpuTask.h`" +msgstr "" + +#: ../../api/function_IGWRBasicGpuTask_8h_1a9739dbf3a5bee2b7bed9fb1bf83cca7a.rst:10 +msgid "Function Documentation" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/function_IGWRBasicGpuTask_8h_1acd31edf00fab8b297f6c01bd12adfc24.po b/docs/locale/zh_CN/LC_MESSAGES/api/function_IGWRBasicGpuTask_8h_1acd31edf00fab8b297f6c01bd12adfc24.po new file mode 100644 index 00000000..3f160c7e --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/function_IGWRBasicGpuTask_8h_1acd31edf00fab8b297f6c01bd12adfc24.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/function_IGWRBasicGpuTask_8h_1acd31edf00fab8b297f6c01bd12adfc24.rst:4 +msgid "Function GWRBasicGpuTaskPredict_Create" +msgstr "" + +#: ../../api/function_IGWRBasicGpuTask_8h_1acd31edf00fab8b297f6c01bd12adfc24.rst:6 +msgid "Defined in :ref:`file_include_gwmodelcuda_IGWRBasicGpuTask.h`" +msgstr "" + +#: ../../api/function_IGWRBasicGpuTask_8h_1acd31edf00fab8b297f6c01bd12adfc24.rst:10 +msgid "Function Documentation" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/function_Logger_8h_1a4c6d814c9e79f32979fa8c78c2024ff9.po b/docs/locale/zh_CN/LC_MESSAGES/api/function_Logger_8h_1a4c6d814c9e79f32979fa8c78c2024ff9.po new file mode 100644 index 00000000..ba208b29 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/function_Logger_8h_1a4c6d814c9e79f32979fa8c78c2024ff9.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/function_Logger_8h_1a4c6d814c9e79f32979fa8c78c2024ff9.rst:4 +msgid "Function gwm::strjoin" +msgstr "" + +#: ../../api/function_Logger_8h_1a4c6d814c9e79f32979fa8c78c2024ff9.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_Logger.h`" +msgstr "" + +#: ../../api/function_Logger_8h_1a4c6d814c9e79f32979fa8c78c2024ff9.rst:10 +msgid "Function Documentation" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/namespace_gwm.po b/docs/locale/zh_CN/LC_MESSAGES/api/namespace_gwm.po index 9d6b5c43..571986df 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/namespace_gwm.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/namespace_gwm.po @@ -5,18 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-23 20:46+0000\n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" "PO-Revision-Date: 2023-01-31 15:56+0000\n" "Last-Translator: Yigong Hu \n" -"Language-Team: \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/namespace_gwm.rst:5 msgid "Namespace gwm" @@ -47,39 +47,39 @@ msgid ":ref:`exhale_struct_structgwm_1_1GLMDiagnostic`" msgstr "" #: ../../api/namespace_gwm.rst:28 -msgid ":ref:`exhale_struct_structgwm_1_1GWDRBandwidthOptimizer_1_1Parameter`" +msgid ":ref:`exhale_struct_structgwm_1_1GWRGeneralizedDiagnostic`" msgstr "" #: ../../api/namespace_gwm.rst:30 -msgid ":ref:`exhale_struct_structgwm_1_1GWRGeneralizedDiagnostic`" +msgid ":ref:`exhale_struct_structgwm_1_1GWRScalable_1_1LoocvParams`" msgstr "" #: ../../api/namespace_gwm.rst:32 -msgid ":ref:`exhale_struct_structgwm_1_1GWRScalable_1_1LoocvParams`" +msgid ":ref:`exhale_struct_structgwm_1_1IBandwidthSelectable`" msgstr "" #: ../../api/namespace_gwm.rst:34 -msgid ":ref:`exhale_struct_structgwm_1_1IBandwidthSelectable`" +msgid ":ref:`exhale_struct_structgwm_1_1IMultivariableAnalysis`" msgstr "" #: ../../api/namespace_gwm.rst:36 -msgid ":ref:`exhale_struct_structgwm_1_1IMultivariableAnalysis`" +msgid ":ref:`exhale_struct_structgwm_1_1IParallelCudaEnabled`" msgstr "" #: ../../api/namespace_gwm.rst:38 -msgid ":ref:`exhale_struct_structgwm_1_1IParallelCudaEnabled`" +msgid ":ref:`exhale_struct_structgwm_1_1IParallelizable`" msgstr "" #: ../../api/namespace_gwm.rst:40 -msgid ":ref:`exhale_struct_structgwm_1_1IParallelizable`" +msgid ":ref:`exhale_struct_structgwm_1_1IParallelOpenmpEnabled`" msgstr "" #: ../../api/namespace_gwm.rst:42 -msgid ":ref:`exhale_struct_structgwm_1_1IParallelOpenmpEnabled`" +msgid ":ref:`exhale_struct_structgwm_1_1IRegressionAnalysis`" msgstr "" #: ../../api/namespace_gwm.rst:44 -msgid ":ref:`exhale_struct_structgwm_1_1IRegressionAnalysis`" +msgid ":ref:`exhale_struct_structgwm_1_1ITelegram`" msgstr "" #: ../../api/namespace_gwm.rst:46 @@ -95,145 +95,183 @@ msgid ":ref:`exhale_struct_structgwm_1_1RegressionDiagnostic`" msgstr "" #: ../../api/namespace_gwm.rst:52 -msgid ":ref:`exhale_class_classgwm_1_1Algorithm`" +msgid ":ref:`exhale_struct_structgwm_1_1SDRBandwidthOptimizer_1_1Parameter`" msgstr "" #: ../../api/namespace_gwm.rst:54 -msgid ":ref:`exhale_class_classgwm_1_1BandwidthSelector`" +msgid ":ref:`exhale_class_classgwm_1_1Algorithm`" msgstr "" #: ../../api/namespace_gwm.rst:56 -msgid ":ref:`exhale_class_classgwm_1_1BandwidthWeight`" +msgid ":ref:`exhale_class_classgwm_1_1BandwidthSelector`" msgstr "" #: ../../api/namespace_gwm.rst:58 -msgid ":ref:`exhale_class_classgwm_1_1BinomialModel`" +msgid ":ref:`exhale_class_classgwm_1_1BandwidthWeight`" msgstr "" #: ../../api/namespace_gwm.rst:60 -msgid ":ref:`exhale_class_classgwm_1_1CRSDistance`" +msgid ":ref:`exhale_class_classgwm_1_1BinomialModel`" msgstr "" #: ../../api/namespace_gwm.rst:62 -msgid ":ref:`exhale_class_classgwm_1_1Distance`" +msgid ":ref:`exhale_class_classgwm_1_1CRSDistance`" msgstr "" #: ../../api/namespace_gwm.rst:64 -msgid ":ref:`exhale_class_classgwm_1_1DMatDistance`" +msgid ":ref:`exhale_class_classgwm_1_1CRSSTDistance`" msgstr "" #: ../../api/namespace_gwm.rst:66 -msgid ":ref:`exhale_class_classgwm_1_1GeneralizedLinearModel`" +msgid ":ref:`exhale_class_classgwm_1_1Distance`" msgstr "" #: ../../api/namespace_gwm.rst:68 -msgid ":ref:`exhale_class_classgwm_1_1GWDR`" +msgid ":ref:`exhale_class_classgwm_1_1DMatDistance`" msgstr "" #: ../../api/namespace_gwm.rst:70 -msgid ":ref:`exhale_class_classgwm_1_1GWDRBandwidthOptimizer`" +msgid ":ref:`exhale_class_classgwm_1_1GeneralizedLinearModel`" msgstr "" #: ../../api/namespace_gwm.rst:72 -msgid ":ref:`exhale_class_classgwm_1_1GWPCA`" +msgid ":ref:`exhale_class_classgwm_1_1GTWR`" msgstr "" #: ../../api/namespace_gwm.rst:74 -msgid ":ref:`exhale_class_classgwm_1_1GWRBase`" +msgid ":ref:`exhale_class_classgwm_1_1GWDA`" msgstr "" #: ../../api/namespace_gwm.rst:76 -msgid ":ref:`exhale_class_classgwm_1_1GWRBasic`" +msgid ":ref:`exhale_class_classgwm_1_1GWPCA`" msgstr "" #: ../../api/namespace_gwm.rst:78 -msgid ":ref:`exhale_class_classgwm_1_1GWRGeneralized`" +msgid ":ref:`exhale_class_classgwm_1_1GWRBase`" msgstr "" #: ../../api/namespace_gwm.rst:80 -msgid ":ref:`exhale_class_classgwm_1_1GWRLocalCollinearity`" +msgid ":ref:`exhale_class_classgwm_1_1GWRBasic`" msgstr "" #: ../../api/namespace_gwm.rst:82 -msgid ":ref:`exhale_class_classgwm_1_1GWRMultiscale`" +msgid ":ref:`exhale_class_classgwm_1_1GWRGeneralized`" msgstr "" #: ../../api/namespace_gwm.rst:84 -msgid ":ref:`exhale_class_classgwm_1_1GWRRobust`" +msgid ":ref:`exhale_class_classgwm_1_1GWRLocalCollinearity`" msgstr "" #: ../../api/namespace_gwm.rst:86 -msgid ":ref:`exhale_class_classgwm_1_1GWRScalable`" +msgid ":ref:`exhale_class_classgwm_1_1GWRMultiscale`" msgstr "" #: ../../api/namespace_gwm.rst:88 -msgid ":ref:`exhale_class_classgwm_1_1GWSS`" +msgid ":ref:`exhale_class_classgwm_1_1GWRRobust`" msgstr "" #: ../../api/namespace_gwm.rst:90 -msgid ":ref:`exhale_class_classgwm_1_1LinearModel`" +msgid ":ref:`exhale_class_classgwm_1_1GWRScalable`" msgstr "" #: ../../api/namespace_gwm.rst:92 -msgid ":ref:`exhale_class_classgwm_1_1Logger`" +msgid ":ref:`exhale_class_classgwm_1_1GWSS`" msgstr "" #: ../../api/namespace_gwm.rst:94 -msgid ":ref:`exhale_class_classgwm_1_1MinkwoskiDistance`" +msgid ":ref:`exhale_class_classgwm_1_1LinearModel`" msgstr "" #: ../../api/namespace_gwm.rst:96 -msgid ":ref:`exhale_class_classgwm_1_1OneDimDistance`" +msgid ":ref:`exhale_class_classgwm_1_1Logger`" msgstr "" #: ../../api/namespace_gwm.rst:98 -msgid ":ref:`exhale_class_classgwm_1_1PoissonModel`" +msgid ":ref:`exhale_class_classgwm_1_1MinkwoskiDistance`" msgstr "" #: ../../api/namespace_gwm.rst:100 -msgid ":ref:`exhale_class_classgwm_1_1SpatialAlgorithm`" +msgid ":ref:`exhale_class_classgwm_1_1OneDimDistance`" msgstr "" #: ../../api/namespace_gwm.rst:102 -msgid ":ref:`exhale_class_classgwm_1_1SpatialMonoscaleAlgorithm`" +msgid ":ref:`exhale_class_classgwm_1_1PoissonModel`" msgstr "" #: ../../api/namespace_gwm.rst:104 -msgid ":ref:`exhale_class_classgwm_1_1SpatialMultiscaleAlgorithm`" +msgid ":ref:`exhale_class_classgwm_1_1SDR`" msgstr "" #: ../../api/namespace_gwm.rst:106 -msgid ":ref:`exhale_class_classgwm_1_1SpatialWeight`" +msgid ":ref:`exhale_class_classgwm_1_1SDRBandwidthOptimizer`" msgstr "" #: ../../api/namespace_gwm.rst:108 -msgid ":ref:`exhale_class_classgwm_1_1VariableForwardSelector`" +msgid ":ref:`exhale_class_classgwm_1_1SpatialAlgorithm`" msgstr "" #: ../../api/namespace_gwm.rst:110 -msgid ":ref:`exhale_class_classgwm_1_1Weight`" +msgid ":ref:`exhale_class_classgwm_1_1SpatialMonoscaleAlgorithm`" +msgstr "" + +#: ../../api/namespace_gwm.rst:112 +msgid ":ref:`exhale_class_classgwm_1_1SpatialMultiscaleAlgorithm`" msgstr "" #: ../../api/namespace_gwm.rst:114 +msgid ":ref:`exhale_class_classgwm_1_1SpatialWeight`" +msgstr "" + +#: ../../api/namespace_gwm.rst:116 +msgid ":ref:`exhale_class_classgwm_1_1VariableForwardSelector`" +msgstr "" + +#: ../../api/namespace_gwm.rst:118 +msgid ":ref:`exhale_class_classgwm_1_1Weight`" +msgstr "" + +#: ../../api/namespace_gwm.rst:122 msgid "Enums" msgstr "枚举" -#: ../../api/namespace_gwm.rst:117 +#: ../../api/namespace_gwm.rst:125 msgid ":ref:`exhale_enum_IParallelizable_8h_1a166813c41923ca9f51b81af038e7cb7a`" msgstr "" -#: ../../api/namespace_gwm.rst:121 +#: ../../api/namespace_gwm.rst:127 +msgid ":ref:`exhale_enum_Status_8h_1a9b4ae87cab1052ee0eebebe5a1ae19d9`" +msgstr "" + +#: ../../api/namespace_gwm.rst:131 +msgid "Functions" +msgstr "" + +#: ../../api/namespace_gwm.rst:134 +msgid ":ref:`exhale_function_Logger_8h_1a4c6d814c9e79f32979fa8c78c2024ff9`" +msgstr "" + +#: ../../api/namespace_gwm.rst:138 msgid "Typedefs" msgstr "类型别名" -#: ../../api/namespace_gwm.rst:124 +#: ../../api/namespace_gwm.rst:141 msgid ":ref:`exhale_typedef_IBandwidthSelectable_8h_1ae90108073e4144ac3fbed1a68bb44031`" msgstr "" -#: ../../api/namespace_gwm.rst:126 +#: ../../api/namespace_gwm.rst:143 msgid ":ref:`exhale_typedef_Distance_8h_1adde2a58509603bef6a9754d22a56959e`" msgstr "" -#: ../../api/namespace_gwm.rst:128 +#: ../../api/namespace_gwm.rst:145 msgid ":ref:`exhale_typedef_IVarialbeSelectable_8h_1a11df23b545f168e1d3deefab7ee99ba9`" msgstr "" + +#~ msgid ":ref:`exhale_struct_structgwm_1_1GWDRBandwidthOptimizer_1_1Parameter`" +#~ msgstr "" + +#~ msgid ":ref:`exhale_class_classgwm_1_1GWDR`" +#~ msgstr "" + +#~ msgid ":ref:`exhale_class_classgwm_1_1GWDRBandwidthOptimizer`" +#~ msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/page_deprecated.po b/docs/locale/zh_CN/LC_MESSAGES/api/page_deprecated.po index 979d2439..09ac29e8 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/page_deprecated.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/page_deprecated.po @@ -5,24 +5,31 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-23 20:44+0000\n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" "PO-Revision-Date: 2023-01-31 15:57+0000\n" "Last-Translator: Yigong Hu \n" -"Language-Team: \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/page_deprecated.rst:4 msgid "Deprecated List" msgstr "弃用列表" msgid "" -"Member gwm::GWRBasic::mHasPredict Whether has variables to predict " -"dependent variable." +"Member gwm::GTWR::mHasPredict Whether has variables to predict " +"dependent variable. Member gwm::GWRBasic::mHasPredict Whether has " +"variables to predict dependent variable." msgstr "" + +#~ msgid "" +#~ "Member gwm::GWRBasic::mHasPredict Whether has " +#~ "variables to predict dependent variable." +#~ msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/page_todo.po b/docs/locale/zh_CN/LC_MESSAGES/api/page_todo.po index c0ea944a..f0ab72a0 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/page_todo.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/page_todo.po @@ -5,22 +5,28 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-23 20:44+0000\n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" "PO-Revision-Date: 2023-01-31 15:57+0000\n" "Last-Translator: Yigong Hu \n" -"Language-Team: \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/page_todo.rst:4 msgid "Todo List" msgstr "待办列表" -msgid "Member gwm::GWRBasic::mHasFTest Whether has F-test" +msgid "" +"Member gwm::GTWR::mHasFTest Whether has F-test Member " +"gwm::GWRBasic::mHasFTest Whether has F-test" msgstr "" + +#~ msgid "Member gwm::GWRBasic::mHasFTest Whether has F-test" +#~ msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelcuda_GWRBasicGpuTask.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelcuda_GWRBasicGpuTask.h.po new file mode 100644 index 00000000..5dfc5088 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelcuda_GWRBasicGpuTask.h.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/program_listing_file_include_gwmodelcuda_GWRBasicGpuTask.h.rst:5 +msgid "Program Listing for File GWRBasicGpuTask.h" +msgstr "" + +#: ../../api/program_listing_file_include_gwmodelcuda_GWRBasicGpuTask.h.rst:7 +msgid "" +"|exhale_lsh| :ref:`Return to documentation for file " +"` " +"(``include/gwmodelcuda/GWRBasicGpuTask.h``)" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelcuda_IGWRBasicGpuTask.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelcuda_IGWRBasicGpuTask.h.po new file mode 100644 index 00000000..abe319f4 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelcuda_IGWRBasicGpuTask.h.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/program_listing_file_include_gwmodelcuda_IGWRBasicGpuTask.h.rst:5 +msgid "Program Listing for File IGWRBasicGpuTask.h" +msgstr "" + +#: ../../api/program_listing_file_include_gwmodelcuda_IGWRBasicGpuTask.h.rst:7 +msgid "" +"|exhale_lsh| :ref:`Return to documentation for file " +"` " +"(``include/gwmodelcuda/IGWRBasicGpuTask.h``)" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelcuda_StdTelegram.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelcuda_StdTelegram.h.po new file mode 100644 index 00000000..f44d8af4 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelcuda_StdTelegram.h.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/program_listing_file_include_gwmodelcuda_StdTelegram.h.rst:5 +msgid "Program Listing for File StdTelegram.h" +msgstr "" + +#: ../../api/program_listing_file_include_gwmodelcuda_StdTelegram.h.rst:7 +msgid "" +"|exhale_lsh| :ref:`Return to documentation for file " +"` " +"(``include/gwmodelcuda/StdTelegram.h``)" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_GTWR.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_GTWR.h.po new file mode 100644 index 00000000..a33a5053 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_GTWR.h.po @@ -0,0 +1,31 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/program_listing_file_include_gwmodelpp_GTWR.h.rst:5 +msgid "Program Listing for File GTWR.h" +msgstr "" + +#: ../../api/program_listing_file_include_gwmodelpp_GTWR.h.rst:7 +msgid "" +"|exhale_lsh| :ref:`Return to documentation for file " +"` (``include/gwmodelpp/GTWR.h``)" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_GWDA.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_GWDA.h.po new file mode 100644 index 00000000..6252e147 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_GWDA.h.po @@ -0,0 +1,31 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/program_listing_file_include_gwmodelpp_GWDA.h.rst:5 +msgid "Program Listing for File GWDA.h" +msgstr "" + +#: ../../api/program_listing_file_include_gwmodelpp_GWDA.h.rst:7 +msgid "" +"|exhale_lsh| :ref:`Return to documentation for file " +"` (``include/gwmodelpp/GWDA.h``)" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_SDR.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_SDR.h.po new file mode 100644 index 00000000..3564ee9a --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_SDR.h.po @@ -0,0 +1,31 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/program_listing_file_include_gwmodelpp_SDR.h.rst:5 +msgid "Program Listing for File SDR.h" +msgstr "" + +#: ../../api/program_listing_file_include_gwmodelpp_SDR.h.rst:7 +msgid "" +"|exhale_lsh| :ref:`Return to documentation for file " +"` (``include/gwmodelpp/SDR.h``)" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_Status.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_Status.h.po new file mode 100644 index 00000000..404b9f12 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_Status.h.po @@ -0,0 +1,31 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/program_listing_file_include_gwmodelpp_Status.h.rst:5 +msgid "Program Listing for File Status.h" +msgstr "" + +#: ../../api/program_listing_file_include_gwmodelpp_Status.h.rst:7 +msgid "" +"|exhale_lsh| :ref:`Return to documentation for file " +"` (``include/gwmodelpp/Status.h``)" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_spatialweight_CRSSTDistance.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_spatialweight_CRSSTDistance.h.po new file mode 100644 index 00000000..ada7dfca --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_spatialweight_CRSSTDistance.h.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/program_listing_file_include_gwmodelpp_spatialweight_CRSSTDistance.h.rst:5 +msgid "Program Listing for File CRSSTDistance.h" +msgstr "" + +#: ../../api/program_listing_file_include_gwmodelpp_spatialweight_CRSSTDistance.h.rst:7 +msgid "" +"|exhale_lsh| :ref:`Return to documentation for file " +"` " +"(``include/gwmodelpp/spatialweight/CRSSTDistance.h``)" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_spatialweight_cuda_BandwidthWeightKernel.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_spatialweight_cuda_BandwidthWeightKernel.h.po new file mode 100644 index 00000000..d606f793 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_spatialweight_cuda_BandwidthWeightKernel.h.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/program_listing_file_include_gwmodelpp_spatialweight_cuda_BandwidthWeightKernel.h.rst:5 +msgid "Program Listing for File BandwidthWeightKernel.h" +msgstr "" + +#: ../../api/program_listing_file_include_gwmodelpp_spatialweight_cuda_BandwidthWeightKernel.h.rst:7 +msgid "" +"|exhale_lsh| :ref:`Return to documentation for file " +"` " +"(``include/gwmodelpp/spatialweight/cuda/BandwidthWeightKernel.h``)" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_spatialweight_cuda_CRSDistanceKernel.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_spatialweight_cuda_CRSDistanceKernel.h.po new file mode 100644 index 00000000..d127b852 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_spatialweight_cuda_CRSDistanceKernel.h.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/program_listing_file_include_gwmodelpp_spatialweight_cuda_CRSDistanceKernel.h.rst:5 +msgid "Program Listing for File CRSDistanceKernel.h" +msgstr "" + +#: ../../api/program_listing_file_include_gwmodelpp_spatialweight_cuda_CRSDistanceKernel.h.rst:7 +msgid "" +"|exhale_lsh| :ref:`Return to documentation for file " +"` " +"(``include/gwmodelpp/spatialweight/cuda/CRSDistanceKernel.h``)" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_spatialweight_cuda_ISpatialCudaEnabled.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_spatialweight_cuda_ISpatialCudaEnabled.h.po new file mode 100644 index 00000000..402d0bbf --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_spatialweight_cuda_ISpatialCudaEnabled.h.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/program_listing_file_include_gwmodelpp_spatialweight_cuda_ISpatialCudaEnabled.h.rst:5 +msgid "Program Listing for File ISpatialCudaEnabled.h" +msgstr "" + +#: ../../api/program_listing_file_include_gwmodelpp_spatialweight_cuda_ISpatialCudaEnabled.h.rst:7 +msgid "" +"|exhale_lsh| :ref:`Return to documentation for file " +"` " +"(``include/gwmodelpp/spatialweight/cuda/ISpatialCudaEnabled.h``)" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_utils_CudaUtils.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_utils_CudaUtils.h.po new file mode 100644 index 00000000..4f921907 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_utils_CudaUtils.h.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/program_listing_file_include_gwmodelpp_utils_CudaUtils.h.rst:5 +msgid "Program Listing for File CudaUtils.h" +msgstr "" + +#: ../../api/program_listing_file_include_gwmodelpp_utils_CudaUtils.h.rst:7 +msgid "" +"|exhale_lsh| :ref:`Return to documentation for file " +"` " +"(``include/gwmodelpp/utils/CudaUtils.h``)" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_utils_cumat.hpp.po b/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_utils_cumat.hpp.po new file mode 100644 index 00000000..78a73c53 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_utils_cumat.hpp.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/program_listing_file_include_gwmodelpp_utils_cumat.hpp.rst:5 +msgid "Program Listing for File cumat.hpp" +msgstr "" + +#: ../../api/program_listing_file_include_gwmodelpp_utils_cumat.hpp.rst:7 +msgid "" +"|exhale_lsh| :ref:`Return to documentation for file " +"` " +"(``include/gwmodelpp/utils/cumat.hpp``)" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/reference.po b/docs/locale/zh_CN/LC_MESSAGES/api/reference.po index 08ea6a7c..1606823d 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/reference.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/reference.po @@ -8,15 +8,16 @@ msgid "" msgstr "" "Project-Id-Version: libgwmodel \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-23 20:21+0000\n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" "Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/reference.rst:3 msgid "Library Reference" @@ -46,15 +47,19 @@ msgstr "命名空间" msgid "Classes and Structs" msgstr "类和结构" -#: ../../api/unabridged_api.rst.include:224 +#: ../../api/unabridged_api.rst.include:359 msgid "Enums" msgstr "枚举" -#: ../../api/unabridged_api.rst.include:233 +#: ../../api/unabridged_api.rst.include:373 +msgid "Functions" +msgstr "" + +#: ../../api/unabridged_api.rst.include:437 msgid "Defines" msgstr "宏定义" -#: ../../api/unabridged_api.rst.include:262 +#: ../../api/unabridged_api.rst.include:546 msgid "Typedefs" msgstr "类型别名" diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/structISpatialCudaEnabled.po b/docs/locale/zh_CN/LC_MESSAGES/api/structISpatialCudaEnabled.po new file mode 100644 index 00000000..b99eaa87 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/structISpatialCudaEnabled.po @@ -0,0 +1,39 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/structISpatialCudaEnabled.rst:4 +msgid "Struct ISpatialCudaEnabled" +msgstr "" + +#: ../../api/structISpatialCudaEnabled.rst:6 +msgid "" +"Defined in " +":ref:`file_include_gwmodelpp_spatialweight_cuda_ISpatialCudaEnabled.h`" +msgstr "" + +#: ../../api/structISpatialCudaEnabled.rst:10 +msgid "Struct Documentation" +msgstr "" + +#: ../../api/structISpatialCudaEnabled.rst +msgid "Public Functions" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/structcurange.po b/docs/locale/zh_CN/LC_MESSAGES/api/structcurange.po new file mode 100644 index 00000000..8f4e4d68 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/structcurange.po @@ -0,0 +1,37 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/structcurange.rst:4 +msgid "Struct curange" +msgstr "" + +#: ../../api/structcurange.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_utils_cumat.hpp`" +msgstr "" + +#: ../../api/structcurange.rst:10 +msgid "Struct Documentation" +msgstr "" + +#: ../../api/structcurange.rst +msgid "Public Members" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/structcutraits.po b/docs/locale/zh_CN/LC_MESSAGES/api/structcutraits.po new file mode 100644 index 00000000..2f56151b --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/structcutraits.po @@ -0,0 +1,37 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/structcutraits.rst:4 +msgid "Template Struct cutraits" +msgstr "" + +#: ../../api/structcutraits.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_utils_cumat.hpp`" +msgstr "" + +#: ../../api/structcutraits.rst:10 +msgid "Struct Documentation" +msgstr "" + +#: ../../api/structcutraits.rst +msgid "Public Static Attributes" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1CRSDistance_1_1Parameter.po b/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1CRSDistance_1_1Parameter.po index a57c47ea..ff984dac 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1CRSDistance_1_1Parameter.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1CRSDistance_1_1Parameter.po @@ -5,18 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-23 20:21+0000\n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" "PO-Revision-Date: 2023-01-31 16:04+0000\n" "Last-Translator: Yigong Hu \n" -"Language-Team: \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/structgwm_1_1CRSDistance_1_1Parameter.rst:4 msgid "Struct CRSDistance::Parameter" @@ -32,10 +32,9 @@ msgstr "嵌套关系" #: ../../api/structgwm_1_1CRSDistance_1_1Parameter.rst:12 msgid "" -"This struct is a nested type of :ref:" -"`exhale_class_classgwm_1_1CRSDistance`." -msgstr "" -"该结构体是 :ref:`exhale_class_classgwm_1_1CRSDistance` 中的嵌套类型。" +"This struct is a nested type of " +":ref:`exhale_class_classgwm_1_1CRSDistance`." +msgstr "该结构体是 :ref:`exhale_class_classgwm_1_1CRSDistance` 中的嵌套类型。" #: ../../api/structgwm_1_1CRSDistance_1_1Parameter.rst:16 msgid "Inheritance Relationships" @@ -47,8 +46,8 @@ msgstr "基类" #: ../../api/structgwm_1_1CRSDistance_1_1Parameter.rst:21 msgid "" -"``public gwm::Distance::Parameter`` (:ref:" -"`exhale_struct_structgwm_1_1Distance_1_1Parameter`)" +"``public gwm::Distance::Parameter`` " +"(:ref:`exhale_struct_structgwm_1_1Distance_1_1Parameter`)" msgstr "" #: ../../api/structgwm_1_1CRSDistance_1_1Parameter.rst:25 @@ -59,10 +58,10 @@ msgstr "结构体文档" msgid "Public Functions" msgstr "公有成员函数" -#: ../../api/structgwm_1_1CRSDistance_1_1Parameter.rst -msgid "Parameters" -msgstr "参数" - #: ../../api/structgwm_1_1CRSDistance_1_1Parameter.rst msgid "Public Members" msgstr "公有成员" + +#~ msgid "Parameters" +#~ msgstr "参数" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IBandwidthSelectable.po b/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IBandwidthSelectable.po index 7a8e57e4..ee29f0e8 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IBandwidthSelectable.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IBandwidthSelectable.po @@ -5,18 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-23 20:46+0000\n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" "PO-Revision-Date: 2023-01-31 16:08+0000\n" "Last-Translator: Yigong Hu \n" -"Language-Team: \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/structgwm_1_1IBandwidthSelectable.rst:4 msgid "Struct IBandwidthSelectable" @@ -35,28 +35,32 @@ msgid "Derived Types" msgstr "派生类" #: ../../api/structgwm_1_1IBandwidthSelectable.rst:15 -msgid "``public gwm::GWRBasic`` (:ref:`exhale_class_classgwm_1_1GWRBasic`)" +msgid "``public gwm::GTWR`` (:ref:`exhale_class_classgwm_1_1GTWR`)" msgstr "" #: ../../api/structgwm_1_1IBandwidthSelectable.rst:16 -msgid "" -"``public gwm::GWRGeneralized`` (:ref:" -"`exhale_class_classgwm_1_1GWRGeneralized`)" +msgid "``public gwm::GWRBasic`` (:ref:`exhale_class_classgwm_1_1GWRBasic`)" msgstr "" #: ../../api/structgwm_1_1IBandwidthSelectable.rst:17 msgid "" -"``public gwm::GWRLocalCollinearity`` (:ref:" -"`exhale_class_classgwm_1_1GWRLocalCollinearity`)" +"``public gwm::GWRGeneralized`` " +"(:ref:`exhale_class_classgwm_1_1GWRGeneralized`)" msgstr "" #: ../../api/structgwm_1_1IBandwidthSelectable.rst:18 msgid "" -"``public gwm::GWRMultiscale`` (:ref:" -"`exhale_class_classgwm_1_1GWRMultiscale`)" +"``public gwm::GWRLocalCollinearity`` " +"(:ref:`exhale_class_classgwm_1_1GWRLocalCollinearity`)" +msgstr "" + +#: ../../api/structgwm_1_1IBandwidthSelectable.rst:19 +msgid "" +"``public gwm::GWRMultiscale`` " +"(:ref:`exhale_class_classgwm_1_1GWRMultiscale`)" msgstr "" -#: ../../api/structgwm_1_1IBandwidthSelectable.rst:22 +#: ../../api/structgwm_1_1IBandwidthSelectable.rst:23 msgid "Struct Documentation" msgstr "结构体文档" @@ -71,3 +75,9 @@ msgstr "参数" #: ../../api/structgwm_1_1IBandwidthSelectable.rst msgid "Returns" msgstr "返回" + +#: ../../api/structgwm_1_1IBandwidthSelectable.rst +#, fuzzy +msgid "Public Static Functions" +msgstr "公有成员函数" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IMultivariableAnalysis.po b/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IMultivariableAnalysis.po index 0196e62d..77b8e3be 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IMultivariableAnalysis.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IMultivariableAnalysis.po @@ -5,18 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-23 20:46+0000\n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" "PO-Revision-Date: 2023-01-31 16:08+0000\n" "Last-Translator: Yigong Hu \n" -"Language-Team: \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/structgwm_1_1IMultivariableAnalysis.rst:4 msgid "Struct IMultivariableAnalysis" @@ -35,14 +35,18 @@ msgid "Derived Types" msgstr "派生类" #: ../../api/structgwm_1_1IMultivariableAnalysis.rst:15 -msgid "``public gwm::GWPCA`` (:ref:`exhale_class_classgwm_1_1GWPCA`)" +msgid "``public gwm::GWDA`` (:ref:`exhale_class_classgwm_1_1GWDA`)" msgstr "" #: ../../api/structgwm_1_1IMultivariableAnalysis.rst:16 +msgid "``public gwm::GWPCA`` (:ref:`exhale_class_classgwm_1_1GWPCA`)" +msgstr "" + +#: ../../api/structgwm_1_1IMultivariableAnalysis.rst:17 msgid "``public gwm::GWSS`` (:ref:`exhale_class_classgwm_1_1GWSS`)" msgstr "" -#: ../../api/structgwm_1_1IMultivariableAnalysis.rst:20 +#: ../../api/structgwm_1_1IMultivariableAnalysis.rst:21 msgid "Struct Documentation" msgstr "结构体文档" @@ -57,3 +61,4 @@ msgstr "返回" #: ../../api/structgwm_1_1IMultivariableAnalysis.rst msgid "Parameters" msgstr "参数" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IParallelCudaEnabled.po b/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IParallelCudaEnabled.po index b888a094..8c784c4f 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IParallelCudaEnabled.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IParallelCudaEnabled.po @@ -5,18 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-23 20:46+0000\n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" "PO-Revision-Date: 2023-01-31 16:08+0000\n" "Last-Translator: Yigong Hu \n" -"Language-Team: \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/structgwm_1_1IParallelCudaEnabled.rst:4 msgid "Struct IParallelCudaEnabled" @@ -27,6 +27,24 @@ msgid "Defined in :ref:`file_include_gwmodelpp_IParallelizable.h`" msgstr "定义于 :ref:`file_include_gwmodelpp_IParallelizable.h`" #: ../../api/structgwm_1_1IParallelCudaEnabled.rst:10 +msgid "Inheritance Relationships" +msgstr "" + +#: ../../api/structgwm_1_1IParallelCudaEnabled.rst:13 +msgid "Derived Types" +msgstr "" + +#: ../../api/structgwm_1_1IParallelCudaEnabled.rst:15 +msgid "``public gwm::GWRBasic`` (:ref:`exhale_class_classgwm_1_1GWRBasic`)" +msgstr "" + +#: ../../api/structgwm_1_1IParallelCudaEnabled.rst:16 +msgid "" +"``public gwm::GWRMultiscale`` " +"(:ref:`exhale_class_classgwm_1_1GWRMultiscale`)" +msgstr "" + +#: ../../api/structgwm_1_1IParallelCudaEnabled.rst:20 msgid "Struct Documentation" msgstr "结构体文档" @@ -37,3 +55,4 @@ msgstr "公有成员函数" #: ../../api/structgwm_1_1IParallelCudaEnabled.rst msgid "Parameters" msgstr "参数" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IParallelOpenmpEnabled.po b/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IParallelOpenmpEnabled.po index 033924d7..ed6bd833 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IParallelOpenmpEnabled.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IParallelOpenmpEnabled.po @@ -5,18 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-23 20:46+0000\n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" "PO-Revision-Date: 2023-01-31 16:08+0000\n" "Last-Translator: Yigong Hu \n" -"Language-Team: \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/structgwm_1_1IParallelOpenmpEnabled.rst:4 msgid "Struct IParallelOpenmpEnabled" @@ -35,36 +35,44 @@ msgid "Derived Types" msgstr "派生类" #: ../../api/structgwm_1_1IParallelOpenmpEnabled.rst:15 -msgid "``public gwm::GWDR`` (:ref:`exhale_class_classgwm_1_1GWDR`)" +msgid "``public gwm::GTWR`` (:ref:`exhale_class_classgwm_1_1GTWR`)" msgstr "" #: ../../api/structgwm_1_1IParallelOpenmpEnabled.rst:16 -msgid "``public gwm::GWRBasic`` (:ref:`exhale_class_classgwm_1_1GWRBasic`)" +msgid "``public gwm::GWDA`` (:ref:`exhale_class_classgwm_1_1GWDA`)" msgstr "" #: ../../api/structgwm_1_1IParallelOpenmpEnabled.rst:17 -msgid "" -"``public gwm::GWRGeneralized`` (:ref:" -"`exhale_class_classgwm_1_1GWRGeneralized`)" +msgid "``public gwm::GWRBasic`` (:ref:`exhale_class_classgwm_1_1GWRBasic`)" msgstr "" #: ../../api/structgwm_1_1IParallelOpenmpEnabled.rst:18 msgid "" -"``public gwm::GWRLocalCollinearity`` (:ref:" -"`exhale_class_classgwm_1_1GWRLocalCollinearity`)" +"``public gwm::GWRGeneralized`` " +"(:ref:`exhale_class_classgwm_1_1GWRGeneralized`)" msgstr "" #: ../../api/structgwm_1_1IParallelOpenmpEnabled.rst:19 msgid "" -"``public gwm::GWRMultiscale`` (:ref:" -"`exhale_class_classgwm_1_1GWRMultiscale`)" +"``public gwm::GWRLocalCollinearity`` " +"(:ref:`exhale_class_classgwm_1_1GWRLocalCollinearity`)" msgstr "" #: ../../api/structgwm_1_1IParallelOpenmpEnabled.rst:20 +msgid "" +"``public gwm::GWRMultiscale`` " +"(:ref:`exhale_class_classgwm_1_1GWRMultiscale`)" +msgstr "" + +#: ../../api/structgwm_1_1IParallelOpenmpEnabled.rst:21 msgid "``public gwm::GWSS`` (:ref:`exhale_class_classgwm_1_1GWSS`)" msgstr "" -#: ../../api/structgwm_1_1IParallelOpenmpEnabled.rst:24 +#: ../../api/structgwm_1_1IParallelOpenmpEnabled.rst:22 +msgid "``public gwm::SDR`` (:ref:`exhale_class_classgwm_1_1SDR`)" +msgstr "" + +#: ../../api/structgwm_1_1IParallelOpenmpEnabled.rst:26 msgid "Struct Documentation" msgstr "结构体文档" @@ -75,3 +83,7 @@ msgstr "公有成员函数" #: ../../api/structgwm_1_1IParallelOpenmpEnabled.rst msgid "Parameters" msgstr "参数" + +#~ msgid "``public gwm::GWDR`` (:ref:`exhale_class_classgwm_1_1GWDR`)" +#~ msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IParallelizable.po b/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IParallelizable.po index 961e3ba9..47abceb0 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IParallelizable.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IParallelizable.po @@ -5,18 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-23 20:46+0000\n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" "PO-Revision-Date: 2023-01-31 16:08+0000\n" "Last-Translator: Yigong Hu \n" -"Language-Team: \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/structgwm_1_1IParallelizable.rst:4 msgid "Struct IParallelizable" @@ -35,36 +35,44 @@ msgid "Derived Types" msgstr "派生类" #: ../../api/structgwm_1_1IParallelizable.rst:15 -msgid "``public gwm::GWDR`` (:ref:`exhale_class_classgwm_1_1GWDR`)" +msgid "``public gwm::GTWR`` (:ref:`exhale_class_classgwm_1_1GTWR`)" msgstr "" #: ../../api/structgwm_1_1IParallelizable.rst:16 -msgid "``public gwm::GWRBasic`` (:ref:`exhale_class_classgwm_1_1GWRBasic`)" +msgid "``public gwm::GWDA`` (:ref:`exhale_class_classgwm_1_1GWDA`)" msgstr "" #: ../../api/structgwm_1_1IParallelizable.rst:17 -msgid "" -"``public gwm::GWRGeneralized`` (:ref:" -"`exhale_class_classgwm_1_1GWRGeneralized`)" +msgid "``public gwm::GWRBasic`` (:ref:`exhale_class_classgwm_1_1GWRBasic`)" msgstr "" #: ../../api/structgwm_1_1IParallelizable.rst:18 msgid "" -"``public gwm::GWRLocalCollinearity`` (:ref:" -"`exhale_class_classgwm_1_1GWRLocalCollinearity`)" +"``public gwm::GWRGeneralized`` " +"(:ref:`exhale_class_classgwm_1_1GWRGeneralized`)" msgstr "" #: ../../api/structgwm_1_1IParallelizable.rst:19 msgid "" -"``public gwm::GWRMultiscale`` (:ref:" -"`exhale_class_classgwm_1_1GWRMultiscale`)" +"``public gwm::GWRLocalCollinearity`` " +"(:ref:`exhale_class_classgwm_1_1GWRLocalCollinearity`)" msgstr "" #: ../../api/structgwm_1_1IParallelizable.rst:20 +msgid "" +"``public gwm::GWRMultiscale`` " +"(:ref:`exhale_class_classgwm_1_1GWRMultiscale`)" +msgstr "" + +#: ../../api/structgwm_1_1IParallelizable.rst:21 msgid "``public gwm::GWSS`` (:ref:`exhale_class_classgwm_1_1GWSS`)" msgstr "" -#: ../../api/structgwm_1_1IParallelizable.rst:24 +#: ../../api/structgwm_1_1IParallelizable.rst:22 +msgid "``public gwm::SDR`` (:ref:`exhale_class_classgwm_1_1SDR`)" +msgstr "" + +#: ../../api/structgwm_1_1IParallelizable.rst:26 msgid "Struct Documentation" msgstr "结构体文档" @@ -79,3 +87,7 @@ msgstr "返回" #: ../../api/structgwm_1_1IParallelizable.rst msgid "Parameters" msgstr "参数" + +#~ msgid "``public gwm::GWDR`` (:ref:`exhale_class_classgwm_1_1GWDR`)" +#~ msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IRegressionAnalysis.po b/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IRegressionAnalysis.po index 2893b648..df37a094 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IRegressionAnalysis.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IRegressionAnalysis.po @@ -5,18 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-23 20:21+0000\n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" "PO-Revision-Date: 2023-01-31 16:08+0000\n" "Last-Translator: Yigong Hu \n" -"Language-Team: \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/structgwm_1_1IRegressionAnalysis.rst:4 msgid "Struct IRegressionAnalysis" @@ -35,17 +35,17 @@ msgid "Derived Types" msgstr "派生类" #: ../../api/structgwm_1_1IRegressionAnalysis.rst:15 -msgid "``public gwm::GWDR`` (:ref:`exhale_class_classgwm_1_1GWDR`)" +msgid "``public gwm::GWRBase`` (:ref:`exhale_class_classgwm_1_1GWRBase`)" msgstr "" #: ../../api/structgwm_1_1IRegressionAnalysis.rst:16 -msgid "``public gwm::GWRBase`` (:ref:`exhale_class_classgwm_1_1GWRBase`)" +msgid "" +"``public gwm::GWRMultiscale`` " +"(:ref:`exhale_class_classgwm_1_1GWRMultiscale`)" msgstr "" #: ../../api/structgwm_1_1IRegressionAnalysis.rst:17 -msgid "" -"``public gwm::GWRMultiscale`` (:ref:" -"`exhale_class_classgwm_1_1GWRMultiscale`)" +msgid "``public gwm::SDR`` (:ref:`exhale_class_classgwm_1_1SDR`)" msgstr "" #: ../../api/structgwm_1_1IRegressionAnalysis.rst:21 @@ -63,3 +63,7 @@ msgstr "返回" #: ../../api/structgwm_1_1IRegressionAnalysis.rst msgid "Parameters" msgstr "参数" + +#~ msgid "``public gwm::GWDR`` (:ref:`exhale_class_classgwm_1_1GWDR`)" +#~ msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1ITelegram.po b/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1ITelegram.po new file mode 100644 index 00000000..a65083b9 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1ITelegram.po @@ -0,0 +1,53 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/structgwm_1_1ITelegram.rst:4 +msgid "Struct ITelegram" +msgstr "" + +#: ../../api/structgwm_1_1ITelegram.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_Logger.h`" +msgstr "" + +#: ../../api/structgwm_1_1ITelegram.rst:10 +msgid "Inheritance Relationships" +msgstr "" + +#: ../../api/structgwm_1_1ITelegram.rst:13 +msgid "Derived Type" +msgstr "" + +#: ../../api/structgwm_1_1ITelegram.rst:15 +msgid "``public gwm::Logger`` (:ref:`exhale_class_classgwm_1_1Logger`)" +msgstr "" + +#: ../../api/structgwm_1_1ITelegram.rst:19 +msgid "Struct Documentation" +msgstr "" + +#: ../../api/structgwm_1_1ITelegram.rst +msgid "Public Types" +msgstr "" + +#: ../../api/structgwm_1_1ITelegram.rst +msgid "Public Functions" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IVarialbeSelectable.po b/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IVarialbeSelectable.po index 6f6480d1..db888cc9 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IVarialbeSelectable.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IVarialbeSelectable.po @@ -5,18 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-23 20:21+0000\n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" "PO-Revision-Date: 2023-01-31 16:09+0000\n" "Last-Translator: Yigong Hu \n" -"Language-Team: \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/structgwm_1_1IVarialbeSelectable.rst:4 msgid "Struct IVarialbeSelectable" @@ -35,11 +35,11 @@ msgid "Derived Types" msgstr "派生类" #: ../../api/structgwm_1_1IVarialbeSelectable.rst:15 -msgid "``public gwm::GWDR`` (:ref:`exhale_class_classgwm_1_1GWDR`)" +msgid "``public gwm::GWRBasic`` (:ref:`exhale_class_classgwm_1_1GWRBasic`)" msgstr "" #: ../../api/structgwm_1_1IVarialbeSelectable.rst:16 -msgid "``public gwm::GWRBasic`` (:ref:`exhale_class_classgwm_1_1GWRBasic`)" +msgid "``public gwm::SDR`` (:ref:`exhale_class_classgwm_1_1SDR`)" msgstr "" #: ../../api/structgwm_1_1IVarialbeSelectable.rst:20 @@ -57,3 +57,12 @@ msgstr "参数" #: ../../api/structgwm_1_1IVarialbeSelectable.rst msgid "Returns" msgstr "返回" + +#: ../../api/structgwm_1_1IVarialbeSelectable.rst +#, fuzzy +msgid "Public Static Functions" +msgstr "公有成员函数" + +#~ msgid "``public gwm::GWDR`` (:ref:`exhale_class_classgwm_1_1GWDR`)" +#~ msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1SDRBandwidthOptimizer_1_1Parameter.po b/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1SDRBandwidthOptimizer_1_1Parameter.po new file mode 100644 index 00000000..c143f041 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1SDRBandwidthOptimizer_1_1Parameter.po @@ -0,0 +1,47 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/structgwm_1_1SDRBandwidthOptimizer_1_1Parameter.rst:4 +msgid "Struct SDRBandwidthOptimizer::Parameter" +msgstr "" + +#: ../../api/structgwm_1_1SDRBandwidthOptimizer_1_1Parameter.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_SDR.h`" +msgstr "" + +#: ../../api/structgwm_1_1SDRBandwidthOptimizer_1_1Parameter.rst:10 +msgid "Nested Relationships" +msgstr "" + +#: ../../api/structgwm_1_1SDRBandwidthOptimizer_1_1Parameter.rst:12 +msgid "" +"This struct is a nested type of " +":ref:`exhale_class_classgwm_1_1SDRBandwidthOptimizer`." +msgstr "" + +#: ../../api/structgwm_1_1SDRBandwidthOptimizer_1_1Parameter.rst:16 +msgid "Struct Documentation" +msgstr "" + +#: ../../api/structgwm_1_1SDRBandwidthOptimizer_1_1Parameter.rst +msgid "Public Members" +msgstr "" + From 18bc2ded4d4d7016c3d17bcea61b27fa340b0876 Mon Sep 17 00:00:00 2001 From: HPDell Date: Wed, 7 Feb 2024 12:42:29 +0000 Subject: [PATCH 4/6] edit: update some translations --- ...m_8h_1a133188f010eccb753b0451a52fe03a9a.po | 18 +++++++-------- ...m_8h_1a3e7277692bce66fb31ec0fafdf2c2f44.po | 18 +++++++-------- ...m_8h_1a517c29498b507893108fb2961e3140d7.po | 18 +++++++-------- ...m_8h_1a63405819e78dea96e294ff200c113a37.po | 18 +++++++-------- ...m_8h_1a70ae4960df6ada8395844443dca7f5cc.po | 20 ++++++++-------- ...m_8h_1a78536ea976dfe7442b894b9c0ea3d69c.po | 18 +++++++-------- ...m_8h_1a81aeca29b10fe0fe76ad2a31d9816c2f.po | 18 +++++++-------- ...m_8h_1a86d76dda1788cd388f5033ec6e989d9c.po | 18 +++++++-------- ...m_8h_1a9a6822a722a1654fe9358651500657b2.po | 18 +++++++-------- ...m_8h_1aa0c46696737698397f560901beb58425.po | 18 +++++++-------- ...m_8h_1abd85b0789ff6ea0203e7b326c852a0bb.po | 20 ++++++++-------- ...m_8h_1af8fe0908c1e018bf2839d0958be6a708.po | 20 ++++++++-------- ...s_8h_1a98e5ae1fe30ec3f2c1d7f60ffaf70e8e.po | 16 ++++++------- ...s_8h_1af956e3938f5abff900fb99c4a25446a5.po | 18 +++++++-------- ...R_8h_1a4ee22f0a6287445f494fa646d5f9cec5.po | 18 +++++++-------- ...e_8h_1a4de4b07e497281666f6e679e8dfb3f34.po | 18 +++++++-------- ...e_8h_1ac91c337e12bc54e52a6afa7dcd3541a0.po | 18 +++++++-------- ...e_8h_1aeea4650739600703f02c2211eebabad2.po | 18 +++++++-------- ...e_8h_1ac255781338c0f15a823cefaca6911599.po | 18 +++++++-------- ...k_8h_1ab09548a5cce8126021f32a1468f4e75f.po | 18 +++++++-------- ...e_8h_1a3f837f4b03b05c949efd517a382ef535.po | 18 +++++++-------- .../api/structgwm_1_1IBandwidthSelectable.po | 23 +++++++++---------- 22 files changed, 202 insertions(+), 203 deletions(-) diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a133188f010eccb753b0451a52fe03a9a.po b/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a133188f010eccb753b0451a52fe03a9a.po index 0dd0a7a3..bb135777 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a133188f010eccb753b0451a52fe03a9a.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a133188f010eccb753b0451a52fe03a9a.po @@ -6,28 +6,28 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: libgwmodel \n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-02-07 12:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language: zh_CN\n" +"PO-Revision-Date: 2024-02-07 12:31+0000\n" +"Last-Translator: \n" "Language-Team: zh_CN \n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" "Generated-By: Babel 2.11.0\n" +"X-Generator: Poedit 3.4.2\n" #: ../../api/define_Algorithm_8h_1a133188f010eccb753b0451a52fe03a9a.rst:4 msgid "Define GWM_LOG_STOP_BREAK" -msgstr "" +msgstr "宏定义 GWM_LOG_STOP_BREAK" #: ../../api/define_Algorithm_8h_1a133188f010eccb753b0451a52fe03a9a.rst:6 msgid "Defined in :ref:`file_include_gwmodelpp_Algorithm.h`" -msgstr "" +msgstr "定义于 :ref:`file_include_gwmodelpp_Algorithm.h`" #: ../../api/define_Algorithm_8h_1a133188f010eccb753b0451a52fe03a9a.rst:10 msgid "Define Documentation" -msgstr "" - +msgstr "宏文档" diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a3e7277692bce66fb31ec0fafdf2c2f44.po b/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a3e7277692bce66fb31ec0fafdf2c2f44.po index b5792bbe..9b4d08ec 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a3e7277692bce66fb31ec0fafdf2c2f44.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a3e7277692bce66fb31ec0fafdf2c2f44.po @@ -6,28 +6,28 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: libgwmodel \n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-02-07 12:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language: zh_CN\n" +"PO-Revision-Date: 2024-02-07 12:31+0000\n" +"Last-Translator: \n" "Language-Team: zh_CN \n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" "Generated-By: Babel 2.11.0\n" +"X-Generator: Poedit 3.4.2\n" #: ../../api/define_Algorithm_8h_1a3e7277692bce66fb31ec0fafdf2c2f44.rst:4 msgid "Define GWM_LOG_DEBUG" -msgstr "" +msgstr "宏定义 GWM_LOG_DEBUG" #: ../../api/define_Algorithm_8h_1a3e7277692bce66fb31ec0fafdf2c2f44.rst:6 msgid "Defined in :ref:`file_include_gwmodelpp_Algorithm.h`" -msgstr "" +msgstr "定义于 :ref:`file_include_gwmodelpp_Algorithm.h`" #: ../../api/define_Algorithm_8h_1a3e7277692bce66fb31ec0fafdf2c2f44.rst:10 msgid "Define Documentation" -msgstr "" - +msgstr "宏文档" diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a517c29498b507893108fb2961e3140d7.po b/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a517c29498b507893108fb2961e3140d7.po index 1cfce95c..fed546d1 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a517c29498b507893108fb2961e3140d7.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a517c29498b507893108fb2961e3140d7.po @@ -6,28 +6,28 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: libgwmodel \n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-02-07 12:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language: zh_CN\n" +"PO-Revision-Date: 2024-02-07 12:31+0000\n" +"Last-Translator: \n" "Language-Team: zh_CN \n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" "Generated-By: Babel 2.11.0\n" +"X-Generator: Poedit 3.4.2\n" #: ../../api/define_Algorithm_8h_1a517c29498b507893108fb2961e3140d7.rst:4 msgid "Define GWM_LOG_TAG_STAGE" -msgstr "" +msgstr "宏定义 GWM_LOG_TAG_STAGE" #: ../../api/define_Algorithm_8h_1a517c29498b507893108fb2961e3140d7.rst:6 msgid "Defined in :ref:`file_include_gwmodelpp_Algorithm.h`" -msgstr "" +msgstr "定义于 :ref:`file_include_gwmodelpp_Algorithm.h`" #: ../../api/define_Algorithm_8h_1a517c29498b507893108fb2961e3140d7.rst:10 msgid "Define Documentation" -msgstr "" - +msgstr "宏文档" diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a63405819e78dea96e294ff200c113a37.po b/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a63405819e78dea96e294ff200c113a37.po index 2ea54d73..7df1507a 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a63405819e78dea96e294ff200c113a37.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a63405819e78dea96e294ff200c113a37.po @@ -6,28 +6,28 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: libgwmodel \n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-02-07 12:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language: zh_CN\n" +"PO-Revision-Date: 2024-02-07 12:32+0000\n" +"Last-Translator: \n" "Language-Team: zh_CN \n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" "Generated-By: Babel 2.11.0\n" +"X-Generator: Poedit 3.4.2\n" #: ../../api/define_Algorithm_8h_1a63405819e78dea96e294ff200c113a37.rst:4 msgid "Define GWM_LOGGING" -msgstr "" +msgstr "宏定义 GWM_LOGGING" #: ../../api/define_Algorithm_8h_1a63405819e78dea96e294ff200c113a37.rst:6 msgid "Defined in :ref:`file_include_gwmodelpp_Algorithm.h`" -msgstr "" +msgstr "定义于 :ref:`file_include_gwmodelpp_Algorithm.h`" #: ../../api/define_Algorithm_8h_1a63405819e78dea96e294ff200c113a37.rst:10 msgid "Define Documentation" -msgstr "" - +msgstr "宏文档" diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a70ae4960df6ada8395844443dca7f5cc.po b/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a70ae4960df6ada8395844443dca7f5cc.po index 72de2a1c..c6b9ee80 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a70ae4960df6ada8395844443dca7f5cc.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a70ae4960df6ada8395844443dca7f5cc.po @@ -6,32 +6,32 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: libgwmodel \n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-02-07 12:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language: zh_CN\n" +"PO-Revision-Date: 2024-02-07 12:32+0000\n" +"Last-Translator: \n" "Language-Team: zh_CN \n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" "Generated-By: Babel 2.11.0\n" +"X-Generator: Poedit 3.4.2\n" #: ../../api/define_Algorithm_8h_1a70ae4960df6ada8395844443dca7f5cc.rst:4 msgid "Define GWM_LOG_PROGRESS" -msgstr "" +msgstr "宏定义 GWM_LOG_PROGRESS" #: ../../api/define_Algorithm_8h_1a70ae4960df6ada8395844443dca7f5cc.rst:6 msgid "Defined in :ref:`file_include_gwmodelpp_Algorithm.h`" -msgstr "" +msgstr "定义于 :ref:`file_include_gwmodelpp_Algorithm.h`" #: ../../api/define_Algorithm_8h_1a70ae4960df6ada8395844443dca7f5cc.rst:10 msgid "Define Documentation" -msgstr "" +msgstr "宏文档" #: ../../api/define_Algorithm_8h_1a70ae4960df6ada8395844443dca7f5cc.rst msgid "Parameters" -msgstr "" - +msgstr "参数" diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a78536ea976dfe7442b894b9c0ea3d69c.po b/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a78536ea976dfe7442b894b9c0ea3d69c.po index 9aa06b0f..de60d512 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a78536ea976dfe7442b894b9c0ea3d69c.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a78536ea976dfe7442b894b9c0ea3d69c.po @@ -6,28 +6,28 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: libgwmodel \n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-02-07 12:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language: zh_CN\n" +"PO-Revision-Date: 2024-02-07 12:33+0000\n" +"Last-Translator: \n" "Language-Team: zh_CN \n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" "Generated-By: Babel 2.11.0\n" +"X-Generator: Poedit 3.4.2\n" #: ../../api/define_Algorithm_8h_1a78536ea976dfe7442b894b9c0ea3d69c.rst:4 msgid "Define GWM_LOG_STOP_RETURN" -msgstr "" +msgstr "宏定义 GWM_LOG_STOP_RETURN" #: ../../api/define_Algorithm_8h_1a78536ea976dfe7442b894b9c0ea3d69c.rst:6 msgid "Defined in :ref:`file_include_gwmodelpp_Algorithm.h`" -msgstr "" +msgstr "定义于 :ref:`file_include_gwmodelpp_Algorithm.h`" #: ../../api/define_Algorithm_8h_1a78536ea976dfe7442b894b9c0ea3d69c.rst:10 msgid "Define Documentation" -msgstr "" - +msgstr "宏文档" diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a81aeca29b10fe0fe76ad2a31d9816c2f.po b/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a81aeca29b10fe0fe76ad2a31d9816c2f.po index 15c0ac4a..1395ffbb 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a81aeca29b10fe0fe76ad2a31d9816c2f.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a81aeca29b10fe0fe76ad2a31d9816c2f.po @@ -6,28 +6,28 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: libgwmodel \n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-02-07 12:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language: zh_CN\n" +"PO-Revision-Date: 2024-02-07 12:33+0000\n" +"Last-Translator: \n" "Language-Team: zh_CN \n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" "Generated-By: Babel 2.11.0\n" +"X-Generator: Poedit 3.4.2\n" #: ../../api/define_Algorithm_8h_1a81aeca29b10fe0fe76ad2a31d9816c2f.rst:4 msgid "Define GWM_LOG_STOP_CONTINUE" -msgstr "" +msgstr "宏定义 GWM_LOG_STOP_CONTINUE" #: ../../api/define_Algorithm_8h_1a81aeca29b10fe0fe76ad2a31d9816c2f.rst:6 msgid "Defined in :ref:`file_include_gwmodelpp_Algorithm.h`" -msgstr "" +msgstr "定义于 :ref:`file_include_gwmodelpp_Algorithm.h`" #: ../../api/define_Algorithm_8h_1a81aeca29b10fe0fe76ad2a31d9816c2f.rst:10 msgid "Define Documentation" -msgstr "" - +msgstr "宏文档" diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a86d76dda1788cd388f5033ec6e989d9c.po b/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a86d76dda1788cd388f5033ec6e989d9c.po index a91e8abb..c5b0a937 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a86d76dda1788cd388f5033ec6e989d9c.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a86d76dda1788cd388f5033ec6e989d9c.po @@ -6,28 +6,28 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: libgwmodel \n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-02-07 12:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language: zh_CN\n" +"PO-Revision-Date: 2024-02-07 12:33+0000\n" +"Last-Translator: \n" "Language-Team: zh_CN \n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" "Generated-By: Babel 2.11.0\n" +"X-Generator: Poedit 3.4.2\n" #: ../../api/define_Algorithm_8h_1a86d76dda1788cd388f5033ec6e989d9c.rst:4 msgid "Define GWM_LOG_INFO" -msgstr "" +msgstr "宏定义 GWM_LOG_STOP_CONTINUE" #: ../../api/define_Algorithm_8h_1a86d76dda1788cd388f5033ec6e989d9c.rst:6 msgid "Defined in :ref:`file_include_gwmodelpp_Algorithm.h`" -msgstr "" +msgstr "定义于 :ref:`file_include_gwmodelpp_Algorithm.h`" #: ../../api/define_Algorithm_8h_1a86d76dda1788cd388f5033ec6e989d9c.rst:10 msgid "Define Documentation" -msgstr "" - +msgstr "宏文档" diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a9a6822a722a1654fe9358651500657b2.po b/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a9a6822a722a1654fe9358651500657b2.po index 7f6b72bd..9af45f37 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a9a6822a722a1654fe9358651500657b2.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1a9a6822a722a1654fe9358651500657b2.po @@ -6,28 +6,28 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: libgwmodel \n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-02-07 12:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language: zh_CN\n" +"PO-Revision-Date: 2024-02-07 12:34+0000\n" +"Last-Translator: \n" "Language-Team: zh_CN \n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" "Generated-By: Babel 2.11.0\n" +"X-Generator: Poedit 3.4.2\n" #: ../../api/define_Algorithm_8h_1a9a6822a722a1654fe9358651500657b2.rst:4 msgid "Define GWM_LOG_WARNNING" -msgstr "" +msgstr "宏定义 GWM_LOG_STOP_CONTINUE" #: ../../api/define_Algorithm_8h_1a9a6822a722a1654fe9358651500657b2.rst:6 msgid "Defined in :ref:`file_include_gwmodelpp_Algorithm.h`" -msgstr "" +msgstr "定义于 :ref:`file_include_gwmodelpp_Algorithm.h`" #: ../../api/define_Algorithm_8h_1a9a6822a722a1654fe9358651500657b2.rst:10 msgid "Define Documentation" -msgstr "" - +msgstr "宏文档" diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1aa0c46696737698397f560901beb58425.po b/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1aa0c46696737698397f560901beb58425.po index 673809b2..7af64d7d 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1aa0c46696737698397f560901beb58425.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1aa0c46696737698397f560901beb58425.po @@ -6,28 +6,28 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: libgwmodel \n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-02-07 12:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language: zh_CN\n" +"PO-Revision-Date: 2024-02-07 12:38+0000\n" +"Last-Translator: \n" "Language-Team: zh_CN \n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" "Generated-By: Babel 2.11.0\n" +"X-Generator: Poedit 3.4.2\n" #: ../../api/define_Algorithm_8h_1aa0c46696737698397f560901beb58425.rst:4 msgid "Define GWM_LOG_ERROR" -msgstr "" +msgstr "宏定义 GWM_LOG_ERROR" #: ../../api/define_Algorithm_8h_1aa0c46696737698397f560901beb58425.rst:6 msgid "Defined in :ref:`file_include_gwmodelpp_Algorithm.h`" -msgstr "" +msgstr "定义于 :ref:`file_include_gwmodelpp_Algorithm.h`" #: ../../api/define_Algorithm_8h_1aa0c46696737698397f560901beb58425.rst:10 msgid "Define Documentation" -msgstr "" - +msgstr "宏文档" diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1abd85b0789ff6ea0203e7b326c852a0bb.po b/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1abd85b0789ff6ea0203e7b326c852a0bb.po index 4a5351e2..b25cbc6a 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1abd85b0789ff6ea0203e7b326c852a0bb.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1abd85b0789ff6ea0203e7b326c852a0bb.po @@ -6,32 +6,32 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: libgwmodel \n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-02-07 12:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language: zh_CN\n" +"PO-Revision-Date: 2024-02-07 12:38+0000\n" +"Last-Translator: \n" "Language-Team: zh_CN \n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" "Generated-By: Babel 2.11.0\n" +"X-Generator: Poedit 3.4.2\n" #: ../../api/define_Algorithm_8h_1abd85b0789ff6ea0203e7b326c852a0bb.rst:4 msgid "Define GWM_LOG_STAGE" -msgstr "" +msgstr "宏定义 GWM_LOG_STAGE" #: ../../api/define_Algorithm_8h_1abd85b0789ff6ea0203e7b326c852a0bb.rst:6 msgid "Defined in :ref:`file_include_gwmodelpp_Algorithm.h`" -msgstr "" +msgstr "定义于 :ref:`file_include_gwmodelpp_Algorithm.h`" #: ../../api/define_Algorithm_8h_1abd85b0789ff6ea0203e7b326c852a0bb.rst:10 msgid "Define Documentation" -msgstr "" +msgstr "宏文档" #: ../../api/define_Algorithm_8h_1abd85b0789ff6ea0203e7b326c852a0bb.rst msgid "Parameters" -msgstr "" - +msgstr "参数" diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1af8fe0908c1e018bf2839d0958be6a708.po b/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1af8fe0908c1e018bf2839d0958be6a708.po index 54976cf6..f4ac71ad 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1af8fe0908c1e018bf2839d0958be6a708.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/define_Algorithm_8h_1af8fe0908c1e018bf2839d0958be6a708.po @@ -6,32 +6,32 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: libgwmodel \n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-02-07 12:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language: zh_CN\n" +"PO-Revision-Date: 2024-02-07 12:40+0000\n" +"Last-Translator: \n" "Language-Team: zh_CN \n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" "Generated-By: Babel 2.11.0\n" +"X-Generator: Poedit 3.4.2\n" #: ../../api/define_Algorithm_8h_1af8fe0908c1e018bf2839d0958be6a708.rst:4 msgid "Define GWM_LOG_PROGRESS_PERCENT" -msgstr "" +msgstr "宏定义 GWM_LOG_PROGRESS_PERCENT" #: ../../api/define_Algorithm_8h_1af8fe0908c1e018bf2839d0958be6a708.rst:6 msgid "Defined in :ref:`file_include_gwmodelpp_Algorithm.h`" -msgstr "" +msgstr "定义于 :ref:`file_include_gwmodelpp_Algorithm.h`" #: ../../api/define_Algorithm_8h_1af8fe0908c1e018bf2839d0958be6a708.rst:10 msgid "Define Documentation" -msgstr "" +msgstr "宏文档" #: ../../api/define_Algorithm_8h_1af8fe0908c1e018bf2839d0958be6a708.rst msgid "Parameters" -msgstr "" - +msgstr "参数" diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/define_CudaUtils_8h_1a98e5ae1fe30ec3f2c1d7f60ffaf70e8e.po b/docs/locale/zh_CN/LC_MESSAGES/api/define_CudaUtils_8h_1a98e5ae1fe30ec3f2c1d7f60ffaf70e8e.po index 7396a0b3..1fff711c 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/define_CudaUtils_8h_1a98e5ae1fe30ec3f2c1d7f60ffaf70e8e.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/define_CudaUtils_8h_1a98e5ae1fe30ec3f2c1d7f60ffaf70e8e.po @@ -6,22 +6,23 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: libgwmodel \n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-02-07 12:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language: zh_CN\n" +"PO-Revision-Date: 2024-02-07 12:40+0000\n" +"Last-Translator: \n" "Language-Team: zh_CN \n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" "Generated-By: Babel 2.11.0\n" +"X-Generator: Poedit 3.4.2\n" #: ../../api/define_CudaUtils_8h_1a98e5ae1fe30ec3f2c1d7f60ffaf70e8e.rst:4 msgid "Define DEVICE_RESET" -msgstr "" +msgstr "宏定义 DEVICE_RESET" #: ../../api/define_CudaUtils_8h_1a98e5ae1fe30ec3f2c1d7f60ffaf70e8e.rst:6 msgid "Defined in :ref:`file_include_gwmodelpp_utils_CudaUtils.h`" @@ -29,5 +30,4 @@ msgstr "" #: ../../api/define_CudaUtils_8h_1a98e5ae1fe30ec3f2c1d7f60ffaf70e8e.rst:10 msgid "Define Documentation" -msgstr "" - +msgstr "宏文档" diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/define_CudaUtils_8h_1af956e3938f5abff900fb99c4a25446a5.po b/docs/locale/zh_CN/LC_MESSAGES/api/define_CudaUtils_8h_1af956e3938f5abff900fb99c4a25446a5.po index c0114036..c2b9097f 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/define_CudaUtils_8h_1af956e3938f5abff900fb99c4a25446a5.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/define_CudaUtils_8h_1af956e3938f5abff900fb99c4a25446a5.po @@ -6,28 +6,28 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: libgwmodel \n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-02-07 12:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language: zh_CN\n" +"PO-Revision-Date: 2024-02-07 12:40+0000\n" +"Last-Translator: \n" "Language-Team: zh_CN \n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" "Generated-By: Babel 2.11.0\n" +"X-Generator: Poedit 3.4.2\n" #: ../../api/define_CudaUtils_8h_1af956e3938f5abff900fb99c4a25446a5.rst:4 msgid "Define checkCudaErrors" -msgstr "" +msgstr "宏定义 checkCudaErrors" #: ../../api/define_CudaUtils_8h_1af956e3938f5abff900fb99c4a25446a5.rst:6 msgid "Defined in :ref:`file_include_gwmodelpp_utils_CudaUtils.h`" -msgstr "" +msgstr "定义于 :ref:`file_include_gwmodelpp_utils_CudaUtils.h`" #: ../../api/define_CudaUtils_8h_1af956e3938f5abff900fb99c4a25446a5.rst:10 msgid "Define Documentation" -msgstr "" - +msgstr "宏文档" diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/define_GTWR_8h_1a4ee22f0a6287445f494fa646d5f9cec5.po b/docs/locale/zh_CN/LC_MESSAGES/api/define_GTWR_8h_1a4ee22f0a6287445f494fa646d5f9cec5.po index cbc61f20..bc52709c 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/define_GTWR_8h_1a4ee22f0a6287445f494fa646d5f9cec5.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/define_GTWR_8h_1a4ee22f0a6287445f494fa646d5f9cec5.po @@ -6,28 +6,28 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: libgwmodel \n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-02-07 12:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language: zh_CN\n" +"PO-Revision-Date: 2024-02-07 12:40+0000\n" +"Last-Translator: \n" "Language-Team: zh_CN \n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" "Generated-By: Babel 2.11.0\n" +"X-Generator: Poedit 3.4.2\n" #: ../../api/define_GTWR_8h_1a4ee22f0a6287445f494fa646d5f9cec5.rst:4 msgid "Define GWM_LOG_TAG_LAMBDA_OPTIMIZATION" -msgstr "" +msgstr "宏定义 GWM_LOG_TAG_LAMBDA_OPTIMIZATION" #: ../../api/define_GTWR_8h_1a4ee22f0a6287445f494fa646d5f9cec5.rst:6 msgid "Defined in :ref:`file_include_gwmodelpp_GTWR.h`" -msgstr "" +msgstr "定义于 :ref:`file_include_gwmodelpp_GTWR.h`" #: ../../api/define_GTWR_8h_1a4ee22f0a6287445f494fa646d5f9cec5.rst:10 msgid "Define Documentation" -msgstr "" - +msgstr "宏文档" diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/define_GWRMultiscale_8h_1a4de4b07e497281666f6e679e8dfb3f34.po b/docs/locale/zh_CN/LC_MESSAGES/api/define_GWRMultiscale_8h_1a4de4b07e497281666f6e679e8dfb3f34.po index dfbeaecd..771707d4 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/define_GWRMultiscale_8h_1a4de4b07e497281666f6e679e8dfb3f34.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/define_GWRMultiscale_8h_1a4de4b07e497281666f6e679e8dfb3f34.po @@ -6,28 +6,28 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: libgwmodel \n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-02-07 12:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language: zh_CN\n" +"PO-Revision-Date: 2024-02-07 12:40+0000\n" +"Last-Translator: \n" "Language-Team: zh_CN \n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" "Generated-By: Babel 2.11.0\n" +"X-Generator: Poedit 3.4.2\n" #: ../../api/define_GWRMultiscale_8h_1a4de4b07e497281666f6e679e8dfb3f34.rst:4 msgid "Define GWM_LOG_TAG_MGWR_BACKFITTING" -msgstr "" +msgstr "宏定义 GWM_LOG_TAG_MGWR_BACKFITTING" #: ../../api/define_GWRMultiscale_8h_1a4de4b07e497281666f6e679e8dfb3f34.rst:6 msgid "Defined in :ref:`file_include_gwmodelpp_GWRMultiscale.h`" -msgstr "" +msgstr "定义于 :ref:`file_include_gwmodelpp_GWRMultiscale.h`" #: ../../api/define_GWRMultiscale_8h_1a4de4b07e497281666f6e679e8dfb3f34.rst:10 msgid "Define Documentation" -msgstr "" - +msgstr "宏文档" diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/define_GWRMultiscale_8h_1ac91c337e12bc54e52a6afa7dcd3541a0.po b/docs/locale/zh_CN/LC_MESSAGES/api/define_GWRMultiscale_8h_1ac91c337e12bc54e52a6afa7dcd3541a0.po index 8d191649..2600f842 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/define_GWRMultiscale_8h_1ac91c337e12bc54e52a6afa7dcd3541a0.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/define_GWRMultiscale_8h_1ac91c337e12bc54e52a6afa7dcd3541a0.po @@ -6,28 +6,28 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: libgwmodel \n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-02-07 12:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language: zh_CN\n" +"PO-Revision-Date: 2024-02-07 12:40+0000\n" +"Last-Translator: \n" "Language-Team: zh_CN \n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" "Generated-By: Babel 2.11.0\n" +"X-Generator: Poedit 3.4.2\n" #: ../../api/define_GWRMultiscale_8h_1ac91c337e12bc54e52a6afa7dcd3541a0.rst:4 msgid "Define GWM_LOG_MGWR_BACKFITTING" -msgstr "" +msgstr "宏定义 GWM_LOG_MGWR_BACKFITTING" #: ../../api/define_GWRMultiscale_8h_1ac91c337e12bc54e52a6afa7dcd3541a0.rst:6 msgid "Defined in :ref:`file_include_gwmodelpp_GWRMultiscale.h`" -msgstr "" +msgstr "定义于 :ref:`file_include_gwmodelpp_GWRMultiscale.h`" #: ../../api/define_GWRMultiscale_8h_1ac91c337e12bc54e52a6afa7dcd3541a0.rst:10 msgid "Define Documentation" -msgstr "" - +msgstr "宏文档" diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/define_GWRMultiscale_8h_1aeea4650739600703f02c2211eebabad2.po b/docs/locale/zh_CN/LC_MESSAGES/api/define_GWRMultiscale_8h_1aeea4650739600703f02c2211eebabad2.po index 158209c8..ab6b7416 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/define_GWRMultiscale_8h_1aeea4650739600703f02c2211eebabad2.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/define_GWRMultiscale_8h_1aeea4650739600703f02c2211eebabad2.po @@ -6,28 +6,28 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: libgwmodel \n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-02-07 12:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language: zh_CN\n" +"PO-Revision-Date: 2024-02-07 12:41+0000\n" +"Last-Translator: \n" "Language-Team: zh_CN \n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" "Generated-By: Babel 2.11.0\n" +"X-Generator: Poedit 3.4.2\n" #: ../../api/define_GWRMultiscale_8h_1aeea4650739600703f02c2211eebabad2.rst:4 msgid "Define GWM_LOG_TAG_MGWR_INITIAL_BW" -msgstr "" +msgstr "宏定义 GWM_LOG_TAG_MGWR_INITIAL_BW" #: ../../api/define_GWRMultiscale_8h_1aeea4650739600703f02c2211eebabad2.rst:6 msgid "Defined in :ref:`file_include_gwmodelpp_GWRMultiscale.h`" -msgstr "" +msgstr "定义于 :ref:`file_include_gwmodelpp_GWRMultiscale.h`" #: ../../api/define_GWRMultiscale_8h_1aeea4650739600703f02c2211eebabad2.rst:10 msgid "Define Documentation" -msgstr "" - +msgstr "宏文档" diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/define_IBandwidthSelectable_8h_1ac255781338c0f15a823cefaca6911599.po b/docs/locale/zh_CN/LC_MESSAGES/api/define_IBandwidthSelectable_8h_1ac255781338c0f15a823cefaca6911599.po index 4dfe6adb..e33c7c83 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/define_IBandwidthSelectable_8h_1ac255781338c0f15a823cefaca6911599.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/define_IBandwidthSelectable_8h_1ac255781338c0f15a823cefaca6911599.po @@ -6,28 +6,28 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: libgwmodel \n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-02-07 12:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language: zh_CN\n" +"PO-Revision-Date: 2024-02-07 12:41+0000\n" +"Last-Translator: \n" "Language-Team: zh_CN \n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" "Generated-By: Babel 2.11.0\n" +"X-Generator: Poedit 3.4.2\n" #: ../../api/define_IBandwidthSelectable_8h_1ac255781338c0f15a823cefaca6911599.rst:4 msgid "Define GWM_LOG_TAG_BANDWIDTH_CIRTERION" -msgstr "" +msgstr "宏定义 GWM_LOG_TAG_BANDWIDTH_CIRTERION" #: ../../api/define_IBandwidthSelectable_8h_1ac255781338c0f15a823cefaca6911599.rst:6 msgid "Defined in :ref:`file_include_gwmodelpp_IBandwidthSelectable.h`" -msgstr "" +msgstr "定义于 :ref:`file_include_gwmodelpp_IBandwidthSelectable.h`" #: ../../api/define_IBandwidthSelectable_8h_1ac255781338c0f15a823cefaca6911599.rst:10 msgid "Define Documentation" -msgstr "" - +msgstr "宏文档" diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/define_IGWRBasicGpuTask_8h_1ab09548a5cce8126021f32a1468f4e75f.po b/docs/locale/zh_CN/LC_MESSAGES/api/define_IGWRBasicGpuTask_8h_1ab09548a5cce8126021f32a1468f4e75f.po index 5f3549a2..21b16cd3 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/define_IGWRBasicGpuTask_8h_1ab09548a5cce8126021f32a1468f4e75f.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/define_IGWRBasicGpuTask_8h_1ab09548a5cce8126021f32a1468f4e75f.po @@ -6,28 +6,28 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: libgwmodel \n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-02-07 12:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language: zh_CN\n" +"PO-Revision-Date: 2024-02-07 12:41+0000\n" +"Last-Translator: \n" "Language-Team: zh_CN \n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" "Generated-By: Babel 2.11.0\n" +"X-Generator: Poedit 3.4.2\n" #: ../../api/define_IGWRBasicGpuTask_8h_1ab09548a5cce8126021f32a1468f4e75f.rst:4 msgid "Define GWMODELCUDA_API" -msgstr "" +msgstr "宏定义 GWMODELCUDA_API" #: ../../api/define_IGWRBasicGpuTask_8h_1ab09548a5cce8126021f32a1468f4e75f.rst:6 msgid "Defined in :ref:`file_include_gwmodelcuda_IGWRBasicGpuTask.h`" -msgstr "" +msgstr "定义于 :ref:`file_include_gwmodelcuda_IGWRBasicGpuTask.h`" #: ../../api/define_IGWRBasicGpuTask_8h_1ab09548a5cce8126021f32a1468f4e75f.rst:10 msgid "Define Documentation" -msgstr "" - +msgstr "宏文档" diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/define_IVarialbeSelectable_8h_1a3f837f4b03b05c949efd517a382ef535.po b/docs/locale/zh_CN/LC_MESSAGES/api/define_IVarialbeSelectable_8h_1a3f837f4b03b05c949efd517a382ef535.po index 63742b6b..861d4164 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/define_IVarialbeSelectable_8h_1a3f837f4b03b05c949efd517a382ef535.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/define_IVarialbeSelectable_8h_1a3f837f4b03b05c949efd517a382ef535.po @@ -6,28 +6,28 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: libgwmodel \n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-02-07 12:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language: zh_CN\n" +"PO-Revision-Date: 2024-02-07 12:41+0000\n" +"Last-Translator: \n" "Language-Team: zh_CN \n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" "Generated-By: Babel 2.11.0\n" +"X-Generator: Poedit 3.4.2\n" #: ../../api/define_IVarialbeSelectable_8h_1a3f837f4b03b05c949efd517a382ef535.rst:4 msgid "Define GWM_LOG_TAG_VARIABLE_CRITERION" -msgstr "" +msgstr "宏定义 GWM_LOG_TAG_VARIABLE_CRITERION" #: ../../api/define_IVarialbeSelectable_8h_1a3f837f4b03b05c949efd517a382ef535.rst:6 msgid "Defined in :ref:`file_include_gwmodelpp_IVarialbeSelectable.h`" -msgstr "" +msgstr "定义于 :ref:`file_include_gwmodelpp_IVarialbeSelectable.h`" #: ../../api/define_IVarialbeSelectable_8h_1a3f837f4b03b05c949efd517a382ef535.rst:10 msgid "Define Documentation" -msgstr "" - +msgstr "宏文档" diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IBandwidthSelectable.po b/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IBandwidthSelectable.po index ee29f0e8..848a7a59 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IBandwidthSelectable.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IBandwidthSelectable.po @@ -5,18 +5,19 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-02-07 12:00+0000\n" -"PO-Revision-Date: 2023-01-31 16:08+0000\n" +"PO-Revision-Date: 2024-02-07 12:42+0000\n" "Last-Translator: Yigong Hu \n" -"Language: zh_CN\n" "Language-Team: \n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" "Generated-By: Babel 2.11.0\n" +"X-Generator: Poedit 3.4.2\n" #: ../../api/structgwm_1_1IBandwidthSelectable.rst:4 msgid "Struct IBandwidthSelectable" @@ -44,20 +45,20 @@ msgstr "" #: ../../api/structgwm_1_1IBandwidthSelectable.rst:17 msgid "" -"``public gwm::GWRGeneralized`` " -"(:ref:`exhale_class_classgwm_1_1GWRGeneralized`)" +"``public gwm::GWRGeneralized`` (:ref:" +"`exhale_class_classgwm_1_1GWRGeneralized`)" msgstr "" #: ../../api/structgwm_1_1IBandwidthSelectable.rst:18 msgid "" -"``public gwm::GWRLocalCollinearity`` " -"(:ref:`exhale_class_classgwm_1_1GWRLocalCollinearity`)" +"``public gwm::GWRLocalCollinearity`` (:ref:" +"`exhale_class_classgwm_1_1GWRLocalCollinearity`)" msgstr "" #: ../../api/structgwm_1_1IBandwidthSelectable.rst:19 msgid "" -"``public gwm::GWRMultiscale`` " -"(:ref:`exhale_class_classgwm_1_1GWRMultiscale`)" +"``public gwm::GWRMultiscale`` (:ref:" +"`exhale_class_classgwm_1_1GWRMultiscale`)" msgstr "" #: ../../api/structgwm_1_1IBandwidthSelectable.rst:23 @@ -77,7 +78,5 @@ msgid "Returns" msgstr "返回" #: ../../api/structgwm_1_1IBandwidthSelectable.rst -#, fuzzy msgid "Public Static Functions" msgstr "公有成员函数" - From 2ae5c7d659179111e9561bd413fe6094e6adb4dd Mon Sep 17 00:00:00 2001 From: HPDell Date: Sun, 23 Feb 2025 13:48:04 +0000 Subject: [PATCH 5/6] edit: rename GWDR to GTWR --- include/gwmodel.h | 2 +- include/gwmodelpp/{SDR.h => GTDR.h} | 50 +++++++-------- src/CMakeLists.txt | 4 +- src/gwmodelpp/{SDR.cpp => GTDR.cpp} | 96 ++++++++++++++--------------- test/CMakeLists.txt | 8 +-- test/{testSDR.cpp => testGTDR.cpp} | 78 +++++++++++------------ 6 files changed, 119 insertions(+), 119 deletions(-) rename include/gwmodelpp/{SDR.h => GTDR.h} (90%) rename src/gwmodelpp/{SDR.cpp => GTDR.cpp} (87%) rename test/{testSDR.cpp => testGTDR.cpp} (89%) diff --git a/include/gwmodel.h b/include/gwmodel.h index 55347d5a..20966182 100644 --- a/include/gwmodel.h +++ b/include/gwmodel.h @@ -36,7 +36,7 @@ #include "gwmodelpp/GWRMultiscale.h" #include "gwmodelpp/GWRRobust.h" #include "gwmodelpp/GWRScalable.h" -#include "gwmodelpp/SDR.h" +#include "gwmodelpp/GTDR.h" #include "gwmodelpp/GWAverage.h" #include "gwmodelpp/GWCorrelation.h" #include "gwmodelpp/GWPCA.h" diff --git a/include/gwmodelpp/SDR.h b/include/gwmodelpp/GTDR.h similarity index 90% rename from include/gwmodelpp/SDR.h rename to include/gwmodelpp/GTDR.h index 8ae8b413..2cf0fad8 100644 --- a/include/gwmodelpp/SDR.h +++ b/include/gwmodelpp/GTDR.h @@ -1,5 +1,5 @@ -#ifndef SDR_H -#define SDR_H +#ifndef GTDR_H +#define GTDR_H #include #include "armadillo_config.h" @@ -18,12 +18,12 @@ namespace gwm * @brief \~english Geographically Weighted Density Regression \~chinese 地理加权密度回归模型 * */ -class SDR : public SpatialAlgorithm, public IRegressionAnalysis, public IVarialbeSelectable, public IParallelizable, public IParallelOpenmpEnabled +class GTDR : public SpatialAlgorithm, public IRegressionAnalysis, public IVarialbeSelectable, public IParallelizable, public IParallelOpenmpEnabled { public: - typedef arma::mat (SDR::*PredictCalculator)(const arma::mat&, const arma::mat&, const arma::vec&); //!< \~english Calculator to predict \~chinese 用于预测的函数 + typedef arma::mat (GTDR::*PredictCalculator)(const arma::mat&, const arma::mat&, const arma::vec&); //!< \~english Calculator to predict \~chinese 用于预测的函数 - typedef arma::mat (SDR::*FitCalculator)(const arma::mat&, const arma::vec&, arma::mat&, arma::vec&, arma::vec&, arma::mat&); //!< \~english Calculator to fit \~chinese 用于拟合的函数 + typedef arma::mat (GTDR::*FitCalculator)(const arma::mat&, const arma::vec&, arma::mat&, arma::vec&, arma::vec&, arma::mat&); //!< \~english Calculator to fit \~chinese 用于拟合的函数 /** * @brief \~english Type of bandwidth criterion. \~chinese 带宽优选指标值类型。 @@ -35,9 +35,9 @@ class SDR : public SpatialAlgorithm, public IRegressionAnalysis, public IVarialb AIC //!< AIC }; - typedef double (SDR::*BandwidthCriterionCalculator)(const std::vector&); //!< \~english Calculator to get criterion for bandwidth optimization \~chinese 带宽优选指标值计算函数 + typedef double (GTDR::*BandwidthCriterionCalculator)(const std::vector&); //!< \~english Calculator to get criterion for bandwidth optimization \~chinese 带宽优选指标值计算函数 - typedef double (SDR::*IndepVarCriterionCalculator)(const std::vector&); //!< \~english Calculator to get criterion for variable optimization \~chinese 变量优选指标值计算函数 + typedef double (GTDR::*IndepVarCriterionCalculator)(const std::vector&); //!< \~english Calculator to get criterion for variable optimization \~chinese 变量优选指标值计算函数 public: /** @@ -95,13 +95,13 @@ class SDR : public SpatialAlgorithm, public IRegressionAnalysis, public IVarialb public: /** - * @brief \~english Construct a new SDR object. \~chinese 构造一个新的 SDR 对象。 + * @brief \~english Construct a new GTDR object. \~chinese 构造一个新的 GTDR 对象。 * */ - SDR() {} + GTDR() {} /** - * @brief \~english Construct a new SDR object. \~chinese 构造一个新的 SDR 对象。 + * @brief \~english Construct a new GTDR object. \~chinese 构造一个新的 GTDR 对象。 * * @param x \~english Independent variables \~chinese 自变量 * @param y \~english Dependent variables \~chinese 因变量 @@ -110,7 +110,7 @@ class SDR : public SpatialAlgorithm, public IRegressionAnalysis, public IVarialb * @param hasHatMatrix \~english Whether has hat matrix \~chinese 是否计算帽子矩阵 * @param hasIntercept \~english Whether has intercept \~chinese 是否包含截距 */ - SDR(const arma::mat& x, const arma::vec& y, const arma::mat& coords, const std::vector& spatialWeights, bool hasHatMatrix = true, bool hasIntercept = true) : SpatialAlgorithm(coords), + GTDR(const arma::mat& x, const arma::vec& y, const arma::mat& coords, const std::vector& spatialWeights, bool hasHatMatrix = true, bool hasIntercept = true) : SpatialAlgorithm(coords), mX(x), mY(y), mSpatialWeights(spatialWeights), @@ -120,10 +120,10 @@ class SDR : public SpatialAlgorithm, public IRegressionAnalysis, public IVarialb } /** - * @brief \~english Destroy the SDR object. \~chinese 销毁 SDR 对象。 + * @brief \~english Destroy the GTDR object. \~chinese 销毁 GTDR 对象。 * */ - virtual ~SDR() {} + virtual ~GTDR() {} public: @@ -493,12 +493,12 @@ class SDR : public SpatialAlgorithm, public IRegressionAnalysis, public IVarialb bool mHasIntercept = true; //!< \~english Whether has intercept \~chinese 是否包含截距 RegressionDiagnostic mDiagnostic = RegressionDiagnostic(); //!< \~english Diagnostic information \~chinese 诊断信息 - PredictCalculator mPredictFunction = &SDR::predictSerial; //!< \~english Calculator to predict \~chinese 用于预测的函数 - FitCalculator mFitFunction = &SDR::fitSerial; //!< \~english Calculator to fit \~chinese 用于拟合的函数 + PredictCalculator mPredictFunction = >DR::predictSerial; //!< \~english Calculator to predict \~chinese 用于预测的函数 + FitCalculator mFitFunction = >DR::fitSerial; //!< \~english Calculator to fit \~chinese 用于拟合的函数 bool mEnableBandwidthOptimize = false; //!< \~english Whether bandwidth optimization is enabled \~chinese 是否进行带宽优选 BandwidthCriterionType mBandwidthCriterionType = BandwidthCriterionType::CV; //!< \~english Type of criterion for bandwidth optimization \~chinese 带宽优选指标类型 - BandwidthCriterionCalculator mBandwidthCriterionFunction = &SDR::bandwidthCriterionCVSerial; //!< \~english Calculator to get criterion for given bandwidth value \~chinese 用于根据给定带宽值计算指标值的函数 + BandwidthCriterionCalculator mBandwidthCriterionFunction = >DR::bandwidthCriterionCVSerial; //!< \~english Calculator to get criterion for given bandwidth value \~chinese 用于根据给定带宽值计算指标值的函数 double mBandwidthOptimizeEps = 1e-6; //!< \~english Threshold for bandwidth optimization \~chinese 带宽优选阈值 std::size_t mBandwidthOptimizeMaxIter = 100000; //!< \~english Maximum iteration for bandwidth optimization \~chinese 带宽优选最大迭代次数 double mBandwidthOptimizeStep = 0.01; //!< \~english Step size for bandwidth optimization \~chinese 带宽优选步长 @@ -507,7 +507,7 @@ class SDR : public SpatialAlgorithm, public IRegressionAnalysis, public IVarialb bool mEnableIndepVarSelect = false; //!< \~english Whether independent variable selection is enabled \~chinese 是否优选变量 double mIndepVarSelectThreshold = 3.0; //!< \~english Threshold for independent variable selection \~chinese 变量优选阈值 VariablesCriterionList mIndepVarCriterionList; //!< \~english List of criterion values for each variable combination in independent variable selection \~chinese 变量优选过程中每种变量组合对应的指标值列表 - IndepVarCriterionCalculator mIndepVarCriterionFunction = &SDR::indepVarCriterionSerial; //!< \~english Calculator to get criterion for given independent variable combination \~chinese 用于根据给定变量组合计算指标值的函数 + IndepVarCriterionCalculator mIndepVarCriterionFunction = >DR::indepVarCriterionSerial; //!< \~english Calculator to get criterion for given independent variable combination \~chinese 用于根据给定变量组合计算指标值的函数 std::vector mSelectedIndepVars; //!< \~english Selected independent variable \~chinese 选中的变量组合 std::size_t mIndepVarSelectionProgressTotal = 0; //!< \~english Total number of independent variable combination. \~chinese 自变量所有组合总数。 std::size_t mIndepVarSelectionProgressCurrent = 0; //!< \~english Current progress of independent variable selection. \~chinese 当前自变量优选的进度。 @@ -522,7 +522,7 @@ class SDR : public SpatialAlgorithm, public IRegressionAnalysis, public IVarialb }; -class SDRBandwidthOptimizer +class GTDRBandwidthOptimizer { public: @@ -532,7 +532,7 @@ class SDRBandwidthOptimizer */ struct Parameter { - SDR* instance; //!< \~english A SDR instance \~chinese 一个 SDR 实例 + GTDR* instance; //!< \~english A GTDR instance \~chinese 一个 GTDR 实例 std::vector* bandwidths; //!< \~english Bandwidths \~chinese 带宽 arma::uword featureCount; //!< \~english Total number of features \~chinese 要素总数 }; @@ -585,23 +585,23 @@ class SDRBandwidthOptimizer public: /** - * @brief \~english Construct a new SDRBandwidthOptimizer object. \~chinese 构造一个新的 SDRBandwidthOptimizer 对象。 + * @brief \~english Construct a new GTDRBandwidthOptimizer object. \~chinese 构造一个新的 GTDRBandwidthOptimizer 对象。 * * @param weights \~english Initial values of bandwidths \~chinese 带宽初始值 */ - explicit SDRBandwidthOptimizer(const std::vector& weights) : mBandwidths(weights) {} + explicit GTDRBandwidthOptimizer(const std::vector& weights) : mBandwidths(weights) {} /** - * @brief \~english Optimize bandwidth for a SDR model. \~chinese 为 SDR 模型优选带宽。 + * @brief \~english Optimize bandwidth for a GTDR model. \~chinese 为 GTDR 模型优选带宽。 * - * @param instance \~english A SDR instance \~chinese 一个 SDR 实例 + * @param instance \~english A GTDR instance \~chinese 一个 GTDR 实例 * @param featureCount \~english Total number of features \~chinese 要素总数 * @param maxIter \~english Maximum of iteration \~chinese 最大迭代次数 * @param eps \~english Threshold of convergence \~chinese 收敛阈值 * @param step \~english Step size \~chinese 步长 * @return const int \~english Optimizer status \~chinese 优化器退出状态 */ - const int optimize(SDR* instance, arma::uword featureCount, std::size_t maxIter, double eps, double step); + const int optimize(GTDR* instance, arma::uword featureCount, std::size_t maxIter, double eps, double step); private: std::vector mBandwidths; //!< \~english Bandwidths \~chinese 带宽 @@ -609,4 +609,4 @@ class SDRBandwidthOptimizer } -#endif // SDR_H \ No newline at end of file +#endif // GTDR_H \ No newline at end of file diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 25f44d30..77dd5cac 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -74,7 +74,7 @@ set(SOURCES_CXX gwmodelpp/GWAverage.cpp gwmodelpp/GWCorrelation.cpp gwmodelpp/GWPCA.cpp - gwmodelpp/SDR.cpp + gwmodelpp/GTDR.cpp gwmodelpp/GWRMultiscale.cpp gwmodelpp/GWRRobust.cpp gwmodelpp/GWRGeneralized.cpp @@ -113,7 +113,7 @@ set(HEADERS_CXX ../include/gwmodelpp/GWAverage.h ../include/gwmodelpp/GWCorrelation.h ../include/gwmodelpp/GWPCA.h - ../include/gwmodelpp/SDR.h + ../include/gwmodelpp/GTDR.h ../include/gwmodelpp/GWRMultiscale.h ../include/gwmodelpp/Logger.h ../include/gwmodelpp/GWRRobust.h diff --git a/src/gwmodelpp/SDR.cpp b/src/gwmodelpp/GTDR.cpp similarity index 87% rename from src/gwmodelpp/SDR.cpp rename to src/gwmodelpp/GTDR.cpp index feb3617b..b82ac21a 100644 --- a/src/gwmodelpp/SDR.cpp +++ b/src/gwmodelpp/GTDR.cpp @@ -1,4 +1,4 @@ -#include "SDR.h" +#include "GTDR.h" #include #include #include @@ -14,7 +14,7 @@ using namespace std; using namespace arma; using namespace gwm; -RegressionDiagnostic SDR::CalcDiagnostic(const mat& x, const vec& y, const mat& betas, const vec& shat) +RegressionDiagnostic GTDR::CalcDiagnostic(const mat& x, const vec& y, const mat& betas, const vec& shat) { vec r = y - sum(betas % x, 1); double rss = sum(r % r); @@ -29,7 +29,7 @@ RegressionDiagnostic SDR::CalcDiagnostic(const mat& x, const vec& y, const mat& return { rss, AIC, AICc, enp, edf, r2, r2_adj }; } -mat SDR::fit() +mat GTDR::fit() { GWM_LOG_STAGE("Initialization"); uword nDims = mCoords.n_cols, nDp = mCoords.n_rows, nVars = mX.n_cols; @@ -84,14 +84,14 @@ mat SDR::fit() bws.push_back(iter.weight()); } - GWM_LOG_INFO(SDRBandwidthOptimizer::infoBandwidthCriterion(bws)); - SDRBandwidthOptimizer optimizer(bws); + GWM_LOG_INFO(GTDRBandwidthOptimizer::infoBandwidthCriterion(bws)); + GTDRBandwidthOptimizer optimizer(bws); int resultCode = optimizer.optimize(this, mCoords.n_rows, mBandwidthOptimizeMaxIter, mBandwidthOptimizeEps, mBandwidthOptimizeStep); GWM_LOG_STOP_RETURN(mStatus, mat(nDp, nVars, arma::fill::zeros)); if (resultCode) { - throw runtime_error("[SDR::fit] Bandwidth optimization invoke failed."); + throw runtime_error("[GTDR::fit] Bandwidth optimization invoke failed."); } GWM_LOG_STOP_RETURN(mStatus, mat(nDp, nVars, arma::fill::zeros)); } @@ -127,7 +127,7 @@ mat SDR::fit() return mBetas; } -mat SDR::predictSerial(const mat& locations, const mat& x, const vec& y) +mat GTDR::predictSerial(const mat& locations, const mat& x, const vec& y) { uword nDp = locations.n_rows, nVar = mX.n_cols; mat betas(nVar, nDp, arma::fill::zeros); @@ -160,7 +160,7 @@ mat SDR::predictSerial(const mat& locations, const mat& x, const vec& y) } #ifdef ENABLE_OPENMP -mat SDR::predictOmp(const mat& locations, const mat& x, const vec& y) +mat GTDR::predictOmp(const mat& locations, const mat& x, const vec& y) { uword nDp = locations.n_rows, nVar = mX.n_cols; mat betas(nVar, nDp, arma::fill::zeros); @@ -204,7 +204,7 @@ mat SDR::predictOmp(const mat& locations, const mat& x, const vec& y) } #endif -mat SDR::fitSerial(const mat& x, const vec& y, mat& betasSE, vec& shat, vec& qdiag, mat& S) +mat GTDR::fitSerial(const mat& x, const vec& y, mat& betasSE, vec& shat, vec& qdiag, mat& S) { uword nDp = mCoords.n_rows, nVar = x.n_cols; mat betas(nVar, nDp, arma::fill::zeros); @@ -255,7 +255,7 @@ mat SDR::fitSerial(const mat& x, const vec& y, mat& betasSE, vec& shat, vec& qdi } #ifdef ENABLE_OPENMP -mat SDR::fitOmp(const mat& x, const vec& y, mat& betasSE, vec& shat, vec& qdiag, mat& S) +mat GTDR::fitOmp(const mat& x, const vec& y, mat& betasSE, vec& shat, vec& qdiag, mat& S) { uword nDp = mCoords.n_rows, nVar = x.n_cols; mat betas(nVar, nDp, arma::fill::zeros); @@ -319,7 +319,7 @@ mat SDR::fitOmp(const mat& x, const vec& y, mat& betasSE, vec& shat, vec& qdiag, } #endif -double SDR::bandwidthCriterionCVSerial(const vector& bandwidths) +double GTDR::bandwidthCriterionCVSerial(const vector& bandwidths) { uword nDp = mCoords.n_rows, nDim = mCoords.n_cols; double cv = 0.0; @@ -357,7 +357,7 @@ double SDR::bandwidthCriterionCVSerial(const vector& bandwidth } if (mStatus == Status::Success && success && isfinite(cv)) { - GWM_LOG_INFO(SDRBandwidthOptimizer::infoBandwidthCriterion(bandwidths, cv)); + GWM_LOG_INFO(GTDRBandwidthOptimizer::infoBandwidthCriterion(bandwidths, cv)); GWM_LOG_PROGRESS_PERCENT(exp(- abs(mBandwidthLastCriterion - cv - mBandwidthOptimizeEps))); mBandwidthLastCriterion = cv; return cv; @@ -366,7 +366,7 @@ double SDR::bandwidthCriterionCVSerial(const vector& bandwidth } #ifdef ENABLE_OPENMP -double SDR::bandwidthCriterionCVOmp(const vector& bandwidths) +double GTDR::bandwidthCriterionCVOmp(const vector& bandwidths) { uword nDp = mCoords.n_rows, nDim = mCoords.n_cols; vec cv_all(mOmpThreadNum, arma::fill::zeros); @@ -408,7 +408,7 @@ double SDR::bandwidthCriterionCVOmp(const vector& bandwidths) double cv = sum(cv_all); if (mStatus == Status::Success && success && isfinite(cv)) { - GWM_LOG_INFO(SDRBandwidthOptimizer::infoBandwidthCriterion(bandwidths, cv)); + GWM_LOG_INFO(GTDRBandwidthOptimizer::infoBandwidthCriterion(bandwidths, cv)); GWM_LOG_PROGRESS_PERCENT(exp(- abs(mBandwidthLastCriterion - cv - mBandwidthOptimizeEps))); mBandwidthLastCriterion = cv; return cv; @@ -417,7 +417,7 @@ double SDR::bandwidthCriterionCVOmp(const vector& bandwidths) } #endif -double SDR::bandwidthCriterionAICSerial(const vector& bandwidths) +double GTDR::bandwidthCriterionAICSerial(const vector& bandwidths) { uword nDp = mCoords.n_rows, nDim = mCoords.n_cols, nVar = mX.n_cols; mat betas(nVar, nDp, fill::zeros); @@ -454,10 +454,10 @@ double SDR::bandwidthCriterionAICSerial(const vector& bandwidt } } if (!flag) return DBL_MAX; - double value = SDR::AICc(mX, mY, betas.t(), { trS, 0.0 }); + double value = GTDR::AICc(mX, mY, betas.t(), { trS, 0.0 }); if (mStatus == Status::Success && isfinite(value)) { - GWM_LOG_INFO(SDRBandwidthOptimizer::infoBandwidthCriterion(bandwidths, value)); + GWM_LOG_INFO(GTDRBandwidthOptimizer::infoBandwidthCriterion(bandwidths, value)); GWM_LOG_PROGRESS_PERCENT(exp(- abs(mBandwidthLastCriterion - value - mBandwidthOptimizeEps))); mBandwidthLastCriterion = value; return value; @@ -466,7 +466,7 @@ double SDR::bandwidthCriterionAICSerial(const vector& bandwidt } #ifdef ENABLE_OPENMP -double SDR::bandwidthCriterionAICOmp(const vector& bandwidths) +double GTDR::bandwidthCriterionAICOmp(const vector& bandwidths) { uword nDp = mCoords.n_rows, nDim = mCoords.n_cols, nVar = mX.n_cols; mat betas(nVar, nDp, arma::fill::zeros); @@ -508,10 +508,10 @@ double SDR::bandwidthCriterionAICOmp(const vector& bandwidths) } if (!success) return DBL_MAX; double trS = sum(trS_all); - double value = SDR::AICc(mX, mY, betas.t(), { trS, 0.0 }); + double value = GTDR::AICc(mX, mY, betas.t(), { trS, 0.0 }); if (mStatus == Status::Success && isfinite(value)) { - GWM_LOG_INFO(SDRBandwidthOptimizer::infoBandwidthCriterion(bandwidths, value)); + GWM_LOG_INFO(GTDRBandwidthOptimizer::infoBandwidthCriterion(bandwidths, value)); GWM_LOG_PROGRESS_PERCENT(exp(- abs(mBandwidthLastCriterion - value - mBandwidthOptimizeEps))); mBandwidthLastCriterion = value; return value; @@ -520,7 +520,7 @@ double SDR::bandwidthCriterionAICOmp(const vector& bandwidths) } #endif -double SDR::indepVarCriterionSerial(const vector& indepVars) +double GTDR::indepVarCriterionSerial(const vector& indepVars) { mat x = mX.cols(VariableForwardSelector::index2uvec(indepVars, mHasIntercept)); vec y = mY; @@ -593,7 +593,7 @@ double SDR::indepVarCriterionSerial(const vector& indepVars) GWM_LOG_PROGRESS(++mIndepVarSelectionProgressCurrent, mIndepVarSelectionProgressTotal); if (mStatus == Status::Success && success) { - double value = success ? SDR::AICc(x, y, betas.t(), { trS, 0.0 }) : DBL_MAX; + double value = success ? GTDR::AICc(x, y, betas.t(), { trS, 0.0 }) : DBL_MAX; GWM_LOG_INFO(IVarialbeSelectable::infoVariableCriterion(indepVars, value)); return isfinite(value) ? value : DBL_MAX; } @@ -601,7 +601,7 @@ double SDR::indepVarCriterionSerial(const vector& indepVars) } #ifdef ENABLE_OPENMP -double SDR::indepVarCriterionOmp(const vector& indepVars) +double GTDR::indepVarCriterionOmp(const vector& indepVars) { mat x = mX.cols(VariableForwardSelector::index2uvec(indepVars, mHasIntercept)); vec y = mY; @@ -679,7 +679,7 @@ double SDR::indepVarCriterionOmp(const vector& indepVars) GWM_LOG_PROGRESS(++mIndepVarSelectionProgressCurrent, mIndepVarSelectionProgressTotal); if (mStatus == Status::Success && success) { - double value = success ? SDR::AICc(x, y, betas.t(), { trS, 0.0 }) : DBL_MAX; + double value = success ? GTDR::AICc(x, y, betas.t(), { trS, 0.0 }) : DBL_MAX; GWM_LOG_INFO(IVarialbeSelectable::infoVariableCriterion(indepVars, value)); return isfinite(value) ? value : DBL_MAX; } @@ -687,7 +687,7 @@ double SDR::indepVarCriterionOmp(const vector& indepVars) } #endif -void SDR::setBandwidthCriterionType(const BandwidthCriterionType& type) +void GTDR::setBandwidthCriterionType(const BandwidthCriterionType& type) { mBandwidthCriterionType = type; unordered_map mapper; @@ -695,60 +695,60 @@ void SDR::setBandwidthCriterionType(const BandwidthCriterionType& type) { case ParallelType::SerialOnly: mapper = { - make_pair(BandwidthCriterionType::AIC, &SDR::bandwidthCriterionAICSerial), - make_pair(BandwidthCriterionType::CV, &SDR::bandwidthCriterionCVSerial) + make_pair(BandwidthCriterionType::AIC, >DR::bandwidthCriterionAICSerial), + make_pair(BandwidthCriterionType::CV, >DR::bandwidthCriterionCVSerial) }; - mBandwidthCriterionFunction = &SDR::bandwidthCriterionAICSerial; + mBandwidthCriterionFunction = >DR::bandwidthCriterionAICSerial; break; #ifdef ENABLE_OPENMP case ParallelType::OpenMP: mapper = { - make_pair(BandwidthCriterionType::AIC, &SDR::bandwidthCriterionAICOmp), - make_pair(BandwidthCriterionType::CV, &SDR::bandwidthCriterionCVOmp) + make_pair(BandwidthCriterionType::AIC, >DR::bandwidthCriterionAICOmp), + make_pair(BandwidthCriterionType::CV, >DR::bandwidthCriterionCVOmp) }; - mBandwidthCriterionFunction = &SDR::bandwidthCriterionAICOmp; + mBandwidthCriterionFunction = >DR::bandwidthCriterionAICOmp; break; #endif default: mapper = { - make_pair(BandwidthCriterionType::AIC, &SDR::bandwidthCriterionAICSerial), - make_pair(BandwidthCriterionType::CV, &SDR::bandwidthCriterionCVSerial) + make_pair(BandwidthCriterionType::AIC, >DR::bandwidthCriterionAICSerial), + make_pair(BandwidthCriterionType::CV, >DR::bandwidthCriterionCVSerial) }; - mBandwidthCriterionFunction = &SDR::bandwidthCriterionAICSerial; + mBandwidthCriterionFunction = >DR::bandwidthCriterionAICSerial; break; } mBandwidthCriterionFunction = mapper[mBandwidthCriterionType]; } -void SDR::setParallelType(const ParallelType& type) +void GTDR::setParallelType(const ParallelType& type) { if (type & parallelAbility()) { mParallelType = type; switch (type) { case ParallelType::SerialOnly: - mPredictFunction = &SDR::predictSerial; - mFitFunction = &SDR::fitSerial; - mIndepVarCriterionFunction = &SDR::indepVarCriterionSerial; + mPredictFunction = >DR::predictSerial; + mFitFunction = >DR::fitSerial; + mIndepVarCriterionFunction = >DR::indepVarCriterionSerial; break; #ifdef ENABLE_OPENMP case ParallelType::OpenMP: - mPredictFunction = &SDR::predictOmp; - mFitFunction = &SDR::fitOmp; - mIndepVarCriterionFunction= &SDR::indepVarCriterionOmp; + mPredictFunction = >DR::predictOmp; + mFitFunction = >DR::fitOmp; + mIndepVarCriterionFunction= >DR::indepVarCriterionOmp; break; #endif default: - mPredictFunction = &SDR::predictSerial; - mFitFunction = &SDR::fitSerial; - mIndepVarCriterionFunction = &SDR::indepVarCriterionSerial; + mPredictFunction = >DR::predictSerial; + mFitFunction = >DR::fitSerial; + mIndepVarCriterionFunction = >DR::indepVarCriterionSerial; break; } } setBandwidthCriterionType(mBandwidthCriterionType); } -bool SDR::isValid() +bool GTDR::isValid() { if (SpatialAlgorithm::isValid()) { @@ -762,10 +762,10 @@ bool SDR::isValid() else return false; } -double SDRBandwidthOptimizer::criterion_function(const gsl_vector* bws, void* params) +double GTDRBandwidthOptimizer::criterion_function(const gsl_vector* bws, void* params) { Parameter* p = static_cast(params); - SDR* instance = p->instance; + GTDR* instance = p->instance; const vector& bandwidths = *(p->bandwidths); double nFeature = double(p->featureCount); for (size_t m = 0; m < bandwidths.size(); m++) @@ -776,7 +776,7 @@ double SDRBandwidthOptimizer::criterion_function(const gsl_vector* bws, void* pa return instance->bandwidthCriterion(bandwidths); } -const int SDRBandwidthOptimizer::optimize(SDR* instance, uword featureCount, size_t maxIter, double eps, double step) +const int GTDRBandwidthOptimizer::optimize(GTDR* instance, uword featureCount, size_t maxIter, double eps, double step) { size_t nDim = mBandwidths.size(); gsl_multimin_fminimizer* minimizer = gsl_multimin_fminimizer_alloc(gsl_multimin_fminimizer_nmsimplex2rand, nDim); diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 3ab4ad2e..f7d6af29 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -69,11 +69,11 @@ add_test( COMMAND $ --success ) -add_executable(testSDR testSDR.cpp) -target_link_libraries(testSDR PRIVATE gwmodel londonhp100 telegram ${ARMADILLO_LIBRARIES} Catch2::Catch2WithMain) +add_executable(testGTDR testGTDR.cpp) +target_link_libraries(testGTDR PRIVATE gwmodel londonhp100 telegram ${ARMADILLO_LIBRARIES} Catch2::Catch2WithMain) add_test( - NAME testSDR - COMMAND $ --success + NAME testGTDR + COMMAND $ --success ) add_executable(testGWRMultiscale testGWRMultiscale.cpp) diff --git a/test/testSDR.cpp b/test/testGTDR.cpp similarity index 89% rename from test/testSDR.cpp rename to test/testGTDR.cpp index e143d839..a2810619 100644 --- a/test/testSDR.cpp +++ b/test/testGTDR.cpp @@ -4,7 +4,7 @@ #include #include #include -#include "gwmodelpp/SDR.h" +#include "gwmodelpp/GTDR.h" #include "gwmodelpp/spatialweight/OneDimDistance.h" #include "gwmodelpp/spatialweight/BandwidthWeight.h" #include "gwmodelpp/spatialweight/SpatialWeight.h" @@ -15,11 +15,11 @@ using namespace std; using namespace arma; using namespace gwm; -class SDRTerminateCheckTelegram : public TerminateCheckTelegram +class GTDRTerminateCheckTelegram : public TerminateCheckTelegram { public: - SDRTerminateCheckTelegram(std::string breakStage, std::size_t breakProgress) : TerminateCheckTelegram(breakStage, breakProgress) {} + GTDRTerminateCheckTelegram(std::string breakStage, std::size_t breakProgress) : TerminateCheckTelegram(breakStage, breakProgress) {} void print(std::string message, LogLevel level, std::string fun_name, std::string file_name) override { @@ -33,7 +33,7 @@ class SDRTerminateCheckTelegram : public TerminateCheckTelegram std::string last; }; -TEST_CASE("SDR: basic flow") +TEST_CASE("GTDR: basic flow") { mat londonhp100_coord, londonhp100_data; vector londonhp100_fields; @@ -54,7 +54,7 @@ TEST_CASE("SDR: basic flow") vec y = londonhp100_data.col(0); mat x = join_rows(ones(londonhp100_data.n_rows), londonhp100_data.cols(1, 3)); - SDR algorithm; + GTDR algorithm; algorithm.setCoords(londonhp100_coord); algorithm.setDependentVariable(y); algorithm.setIndependentVariables(x); @@ -70,7 +70,7 @@ TEST_CASE("SDR: basic flow") REQUIRE(algorithm.hasIntercept() == true); } -// TEST_CASE("SDR: basic flow with bandwidth optimization (CV)") +// TEST_CASE("GTDR: basic flow with bandwidth optimization (CV)") // { // mat londonhp100_coord, londonhp100_data; // vector londonhp100_fields; @@ -91,14 +91,14 @@ TEST_CASE("SDR: basic flow") // vec y = londonhp100_data.col(0); // mat x = join_rows(ones(londonhp100_data.n_rows), londonhp100_data.cols(1, 3)); -// SDR algorithm; +// GTDR algorithm; // algorithm.setCoords(londonhp100_coord); // algorithm.setDependentVariable(y); // algorithm.setIndependentVariables(x); // algorithm.setSpatialWeights(spatials); // algorithm.setEnableBandwidthOptimize(true); // algorithm.setBandwidthOptimizeStep(0.01); -// algorithm.setBandwidthCriterionType(SDR::CV); +// algorithm.setBandwidthCriterionType(GTDR::CV); // algorithm.setHasHatMatrix(true); // REQUIRE_NOTHROW(algorithm.fit()); @@ -107,7 +107,7 @@ TEST_CASE("SDR: basic flow") // // REQUIRE_THAT(spatialWeights[1].weight()->bandwidth(), Catch::Matchers::WithinAbs(2550816, 1e-12)); // } -TEST_CASE("SDR: basic flow with bandwidth optimization (AIC)") +TEST_CASE("GTDR: basic flow with bandwidth optimization (AIC)") { mat londonhp100_coord, londonhp100_data; vector londonhp100_fields; @@ -128,13 +128,13 @@ TEST_CASE("SDR: basic flow with bandwidth optimization (AIC)") vec y = londonhp100_data.col(0); mat x = join_rows(ones(londonhp100_data.n_rows), londonhp100_data.cols(1, 3)); - SDR algorithm; + GTDR algorithm; algorithm.setCoords(londonhp100_coord); algorithm.setDependentVariable(y); algorithm.setIndependentVariables(x); algorithm.setSpatialWeights(spatials); algorithm.setEnableBandwidthOptimize(true); - algorithm.setBandwidthCriterionType(SDR::AIC); + algorithm.setBandwidthCriterionType(GTDR::AIC); algorithm.setHasHatMatrix(true); REQUIRE_NOTHROW(algorithm.fit()); @@ -143,7 +143,7 @@ TEST_CASE("SDR: basic flow with bandwidth optimization (AIC)") REQUIRE_THAT(spatialWeights[1].weight()->bandwidth(), Catch::Matchers::WithinAbs(189, 1e-12)); } -TEST_CASE("SDR: basic flow with independent variable selection") +TEST_CASE("GTDR: basic flow with independent variable selection") { mat londonhp100_coord, londonhp100_data; vector londonhp100_fields; @@ -164,13 +164,13 @@ TEST_CASE("SDR: basic flow with independent variable selection") vec y = londonhp100_data.col(0); mat x = join_rows(ones(londonhp100_data.n_rows), londonhp100_data.cols(1, 3)); - SDR algorithm; + GTDR algorithm; algorithm.setCoords(londonhp100_coord); algorithm.setDependentVariable(y); algorithm.setIndependentVariables(x); algorithm.setSpatialWeights(spatials); algorithm.setEnableIndepVarSelect(true); - algorithm.setBandwidthCriterionType(SDR::AIC); + algorithm.setBandwidthCriterionType(GTDR::AIC); algorithm.setHasHatMatrix(true); REQUIRE_NOTHROW(algorithm.fit()); @@ -193,7 +193,7 @@ TEST_CASE("SDR: basic flow with independent variable selection") } #ifdef ENABLE_OPENMP -TEST_CASE("SDR: basic flow (multithread)") +TEST_CASE("GTDR: basic flow (multithread)") { mat londonhp100_coord, londonhp100_data; vector londonhp100_fields; @@ -214,14 +214,14 @@ TEST_CASE("SDR: basic flow (multithread)") vec y = londonhp100_data.col(0); mat x = join_rows(ones(londonhp100_data.n_rows), londonhp100_data.cols(1, 3)); - SDR algorithm; + GTDR algorithm; algorithm.setCoords(londonhp100_coord); algorithm.setDependentVariable(y); algorithm.setIndependentVariables(x); algorithm.setSpatialWeights(spatials); algorithm.setEnableBandwidthOptimize(true); algorithm.setEnableIndepVarSelect(true); - algorithm.setBandwidthCriterionType(SDR::AIC); + algorithm.setBandwidthCriterionType(GTDR::AIC); algorithm.setHasHatMatrix(true); algorithm.setParallelType(ParallelType::OpenMP); REQUIRE_NOTHROW(algorithm.fit()); @@ -255,7 +255,7 @@ TEST_CASE("SDR: basic flow (multithread)") #endif // #ifdef ENABLE_OPENMP -// TEST_CASE("SDR: basic flow with bandwidth optimization (CV, multithread)") +// TEST_CASE("GTDR: basic flow with bandwidth optimization (CV, multithread)") // { // mat londonhp100_coord, londonhp100_data; // vector londonhp100_fields; @@ -276,14 +276,14 @@ TEST_CASE("SDR: basic flow (multithread)") // vec y = londonhp100_data.col(0); // mat x = join_rows(ones(londonhp100_data.n_rows), londonhp100_data.cols(1, 3)); -// SDR algorithm; +// GTDR algorithm; // algorithm.setCoords(londonhp100_coord); // algorithm.setDependentVariable(y); // algorithm.setIndependentVariables(x); // algorithm.setSpatialWeights(spatials); // algorithm.setEnableBandwidthOptimize(true); // algorithm.setBandwidthOptimizeStep(0.01); -// algorithm.setBandwidthCriterionType(SDR::CV); +// algorithm.setBandwidthCriterionType(GTDR::CV); // algorithm.setHasHatMatrix(true); // algorithm.setParallelType(ParallelType::OpenMP); // REQUIRE_NOTHROW(algorithm.fit()); @@ -295,7 +295,7 @@ TEST_CASE("SDR: basic flow (multithread)") // #endif -TEST_CASE("SDR: cancel") +TEST_CASE("GTDR: cancel") { mat londonhp100_coord, londonhp100_data; vector londonhp100_fields; @@ -334,8 +334,8 @@ TEST_CASE("SDR: cancel") for (auto &&stage : fit_stages) { cout << "Stage: " << stage.first << " (" << stage.second << ")\n"; - auto telegram = make_unique(stage.first, stage.second); - SDR algorithm; + auto telegram = make_unique(stage.first, stage.second); + GTDR algorithm; algorithm.setTelegram(std::move(telegram)); algorithm.setCoords(londonhp100_coord); algorithm.setDependentVariable(y); @@ -343,7 +343,7 @@ TEST_CASE("SDR: cancel") algorithm.setSpatialWeights(spatials); algorithm.setEnableBandwidthOptimize(true); algorithm.setEnableIndepVarSelect(true); - algorithm.setBandwidthCriterionType(SDR::CV); + algorithm.setBandwidthCriterionType(GTDR::CV); algorithm.setHasHatMatrix(true); REQUIRE_NOTHROW(algorithm.fit()); REQUIRE(algorithm.status() == Status::Terminated); @@ -355,8 +355,8 @@ TEST_CASE("SDR: cancel") for (auto &&stage : fit_stages) { cout << "Stage: " << stage.first << " (" << stage.second << ")\n"; - auto telegram = make_unique(stage.first, stage.second); - SDR algorithm; + auto telegram = make_unique(stage.first, stage.second); + GTDR algorithm; algorithm.setTelegram(std::move(telegram)); algorithm.setCoords(londonhp100_coord); algorithm.setDependentVariable(y); @@ -364,7 +364,7 @@ TEST_CASE("SDR: cancel") algorithm.setSpatialWeights(spatials); algorithm.setEnableBandwidthOptimize(true); algorithm.setEnableIndepVarSelect(true); - algorithm.setBandwidthCriterionType(SDR::AIC); + algorithm.setBandwidthCriterionType(GTDR::AIC); algorithm.setHasHatMatrix(true); REQUIRE_NOTHROW(algorithm.fit()); REQUIRE(algorithm.status() == Status::Terminated); @@ -375,8 +375,8 @@ TEST_CASE("SDR: cancel") { for (auto &&stage : fit_stages) { - auto telegram = make_unique(stage.first, stage.second); - SDR algorithm; + auto telegram = make_unique(stage.first, stage.second); + GTDR algorithm; algorithm.setTelegram(std::move(telegram)); algorithm.setCoords(londonhp100_coord); algorithm.setDependentVariable(y); @@ -384,7 +384,7 @@ TEST_CASE("SDR: cancel") algorithm.setSpatialWeights(spatials); algorithm.setEnableBandwidthOptimize(true); algorithm.setEnableIndepVarSelect(true); - algorithm.setBandwidthCriterionType(SDR::AIC); + algorithm.setBandwidthCriterionType(GTDR::AIC); algorithm.setHasHatMatrix(true); REQUIRE_NOTHROW(algorithm.fit()); REQUIRE_NOTHROW(algorithm.predict(londonhp100_coord)); @@ -398,8 +398,8 @@ TEST_CASE("SDR: cancel") for (auto &&stage : fit_stages) { cout << "Stage: " << stage.first << " (" << stage.second << ")\n"; - auto telegram = make_unique(stage.first, stage.second); - SDR algorithm; + auto telegram = make_unique(stage.first, stage.second); + GTDR algorithm; algorithm.setTelegram(std::move(telegram)); algorithm.setCoords(londonhp100_coord); algorithm.setDependentVariable(y); @@ -407,7 +407,7 @@ TEST_CASE("SDR: cancel") algorithm.setSpatialWeights(spatials); algorithm.setEnableBandwidthOptimize(true); algorithm.setEnableIndepVarSelect(true); - algorithm.setBandwidthCriterionType(SDR::CV); + algorithm.setBandwidthCriterionType(GTDR::CV); algorithm.setHasHatMatrix(true); algorithm.setParallelType(ParallelType::OpenMP); REQUIRE_NOTHROW(algorithm.fit()); @@ -420,8 +420,8 @@ TEST_CASE("SDR: cancel") for (auto &&stage : fit_stages) { cout << "Stage: " << stage.first << " (" << stage.second << ")\n"; - auto telegram = make_unique(stage.first, stage.second); - SDR algorithm; + auto telegram = make_unique(stage.first, stage.second); + GTDR algorithm; algorithm.setTelegram(std::move(telegram)); algorithm.setCoords(londonhp100_coord); algorithm.setDependentVariable(y); @@ -429,7 +429,7 @@ TEST_CASE("SDR: cancel") algorithm.setSpatialWeights(spatials); algorithm.setEnableBandwidthOptimize(true); algorithm.setEnableIndepVarSelect(true); - algorithm.setBandwidthCriterionType(SDR::AIC); + algorithm.setBandwidthCriterionType(GTDR::AIC); algorithm.setHasHatMatrix(true); algorithm.setParallelType(ParallelType::OpenMP); REQUIRE_NOTHROW(algorithm.fit()); @@ -441,8 +441,8 @@ TEST_CASE("SDR: cancel") { for (auto &&stage : fit_stages) { - auto telegram = make_unique(stage.first, stage.second); - SDR algorithm; + auto telegram = make_unique(stage.first, stage.second); + GTDR algorithm; algorithm.setTelegram(std::move(telegram)); algorithm.setCoords(londonhp100_coord); algorithm.setDependentVariable(y); @@ -450,7 +450,7 @@ TEST_CASE("SDR: cancel") algorithm.setSpatialWeights(spatials); algorithm.setEnableBandwidthOptimize(true); algorithm.setEnableIndepVarSelect(true); - algorithm.setBandwidthCriterionType(SDR::CV); + algorithm.setBandwidthCriterionType(GTDR::CV); algorithm.setHasHatMatrix(true); algorithm.setParallelType(ParallelType::OpenMP); REQUIRE_NOTHROW(algorithm.fit()); From 887701fcffbf6a58f2b494a880cfb1117686dd1d Mon Sep 17 00:00:00 2001 From: HPDell Date: Sun, 23 Feb 2025 13:48:13 +0000 Subject: [PATCH 6/6] edit: translations --- .../zh_CN/LC_MESSAGES/api/classcubase.po | 15 +- .../zh_CN/LC_MESSAGES/api/classgwm_1_1GTDR.po | 95 ++++++++++++ .../api/classgwm_1_1GTDRBandwidthOptimizer.po | 57 ++++++++ .../zh_CN/LC_MESSAGES/api/classgwm_1_1GTWR.po | 58 +++++--- .../LC_MESSAGES/api/classgwm_1_1GWAverage.po | 89 +++++++++++ .../api/classgwm_1_1GWCorrelation.po | 99 +++++++++++++ .../LC_MESSAGES/api/classgwm_1_1GWRBasic.po | 14 +- .../api/classgwm_1_1GWRMultiscale.po | 10 +- .../zh_CN/LC_MESSAGES/api/classgwm_1_1GWSS.po | 63 ++++---- .../zh_CN/LC_MESSAGES/api/classgwm_1_1SDR.po | 32 ++-- .../api/classgwm_1_1SDRBandwidthOptimizer.po | 17 +-- .../api/classgwm_1_1SpatialAlgorithm.po | 7 +- .../classgwm_1_1SpatialMonoscaleAlgorithm.po | 13 +- .../classgwm_1_1SpatialMultiscaleAlgorithm.po | 30 ++-- ...n_8h_1ae5f13e5f38059de109492100f4f151dd.po | 33 +++++ ...e_8h_1a22c8a8da56959b70e447e19b322e8526.po | 33 +++++ ...e_8h_1a2dc66763a64b412f1d3f74de695af93f.po | 33 +++++ ...e_8h_1a4ae40a7bea1b8855bc82482e184e06a3.po | 33 +++++ ...e_8h_1a7e959142ceaa2d5619d9e29636be50e7.po | 33 +++++ ...e_8h_1abe708396a2d872200dedf5fe8e775439.po | 33 +++++ ...i_8h_1ae3dfb1534cea3a4d5d40009d12f4181d.po | 33 +++++ .../zh_CN/LC_MESSAGES/api/dir_include.po | 6 +- .../LC_MESSAGES/api/dir_include_gwmodelpp.po | 62 ++++---- .../api/dir_include_gwmodelpp_utils.po | 8 +- .../api/file_include_armadillo_config.h.po | 101 +++++++++++++ .../LC_MESSAGES/api/file_include_gwmodel.h.po | 72 +++++---- ...e_include_gwmodelcuda_GWRBasicGpuTask.h.po | 19 ++- .../api/file_include_gwmodelpp_GTDR.h.po | 119 +++++++++++++++ .../api/file_include_gwmodelpp_GTWR.h.po | 10 +- .../api/file_include_gwmodelpp_GWAverage.h.po | 83 +++++++++++ .../file_include_gwmodelpp_GWCorrelation.h.po | 97 ++++++++++++ .../api/file_include_gwmodelpp_GWPCA.h.po | 28 ++-- ...lude_gwmodelpp_GeneralizedLinearModel.h.po | 20 ++- ...nclude_gwmodelpp_IBandwidthSelectable.h.po | 41 +++--- ...lude_gwmodelpp_IMultivariableAnalysis.h.po | 32 ++-- ...ile_include_gwmodelpp_IParallelizable.h.po | 78 +++++++--- ...include_gwmodelpp_IRegressionAnalysis.h.po | 16 +- .../file_include_gwmodelpp_LinearModel.h.po | 16 +- ...le_include_gwmodelpp_SpatialAlgorithm.h.po | 12 +- ...e_gwmodelpp_SpatialMonoscaleAlgorithm.h.po | 13 +- ..._gwmodelpp_SpatialMultiscaleAlgorithm.h.po | 31 ++-- ...ude_gwmodelpp_VariableForwardSelector.h.po | 12 +- ...lude_gwmodelpp_spatialweight_Distance.h.po | 20 ++- ...gwmodelpp_spatialweight_SpatialWeight.h.po | 9 +- ...nclude_gwmodelpp_spatialweight_Weight.h.po | 20 ++- .../file_include_gwmodelpp_utils_armampi.h.po | 67 +++++++++ .../file_include_gwmodelpp_utils_cumat.hpp.po | 15 +- ...i_8h_1a785049faff79a182aac5022e644a001f.po | 33 +++++ ...8hpp_1a4019ce70f7c9b3b67411dbc5506ea302.po | 33 +++++ .../zh_CN/LC_MESSAGES/api/namespace_gwm.po | 138 +++++++++++------- ...listing_file_include_armadillo_config.h.po | 31 ++++ ...m_listing_file_include_gwmodelpp_GTDR.h.po | 31 ++++ ...ting_file_include_gwmodelpp_GWAverage.h.po | 31 ++++ ..._file_include_gwmodelpp_GWCorrelation.h.po | 32 ++++ ..._file_include_gwmodelpp_utils_armampi.h.po | 32 ++++ ..._1_1GTDRBandwidthOptimizer_1_1Parameter.po | 47 ++++++ .../api/structgwm_1_1GTWR_1_1Parameter.po | 45 ++++++ .../api/structgwm_1_1IBandwidthSelectable.po | 34 +++-- .../structgwm_1_1IMultivariableAnalysis.po | 11 +- .../api/structgwm_1_1IMultivariateAnalysis.po | 59 ++++++++ .../api/structgwm_1_1IParallelMpiEnabled.po | 55 +++++++ .../structgwm_1_1IParallelOpenmpEnabled.po | 42 ++++-- .../api/structgwm_1_1IParallelizable.po | 42 ++++-- .../api/structgwm_1_1IRegressionAnalysis.po | 15 +- .../api/structgwm_1_1IVarialbeSelectable.po | 9 +- ...m_1_1SDRBandwidthOptimizer_1_1Parameter.po | 7 +- 66 files changed, 2146 insertions(+), 418 deletions(-) create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GTDR.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GTDRBandwidthOptimizer.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GWAverage.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GWCorrelation.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/define_GWCorrelation_8h_1ae5f13e5f38059de109492100f4f151dd.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/define_IParallelizable_8h_1a22c8a8da56959b70e447e19b322e8526.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/define_IParallelizable_8h_1a2dc66763a64b412f1d3f74de695af93f.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/define_IParallelizable_8h_1a4ae40a7bea1b8855bc82482e184e06a3.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/define_IParallelizable_8h_1a7e959142ceaa2d5619d9e29636be50e7.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/define_IParallelizable_8h_1abe708396a2d872200dedf5fe8e775439.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/define_armampi_8h_1ae3dfb1534cea3a4d5d40009d12f4181d.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/file_include_armadillo_config.h.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_GTDR.h.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_GWAverage.h.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_GWCorrelation.h.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_utils_armampi.h.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/function_armampi_8h_1a785049faff79a182aac5022e644a001f.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/function_cumat_8hpp_1a4019ce70f7c9b3b67411dbc5506ea302.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_armadillo_config.h.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_GTDR.h.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_GWAverage.h.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_GWCorrelation.h.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_utils_armampi.h.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1GTDRBandwidthOptimizer_1_1Parameter.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1GTWR_1_1Parameter.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IMultivariateAnalysis.po create mode 100644 docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IParallelMpiEnabled.po diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/classcubase.po b/docs/locale/zh_CN/LC_MESSAGES/api/classcubase.po index 620aecc4..f2a3ff5e 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/classcubase.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/classcubase.po @@ -6,19 +6,18 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" "PO-Revision-Date: 2024-02-07 12:11+0000\n" "Last-Translator: \n" -"Language-Team: zh_CN \n" "Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" "Generated-By: Babel 2.11.0\n" -"X-Generator: Poedit 3.4.2\n" #: ../../api/classcubase.rst:4 msgid "Class cubase" @@ -56,6 +55,11 @@ msgstr "公共类型" msgid "Public Functions" msgstr "公共职能" +#: ../../api/classcubase.rst +#, fuzzy +msgid "Public Static Functions" +msgstr "公共职能" + #: ../../api/classcubase.rst msgid "Public Static Attributes" msgstr "公共静态属性" @@ -63,3 +67,4 @@ msgstr "公共静态属性" #: ../../api/classcubase.rst msgid "Protected Attributes" msgstr "受保护属性" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GTDR.po b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GTDR.po new file mode 100644 index 00000000..1e5f7900 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GTDR.po @@ -0,0 +1,95 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2025. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/classgwm_1_1GTDR.rst:4 +msgid "Class GTDR" +msgstr "" + +#: ../../api/classgwm_1_1GTDR.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_GTDR.h`" +msgstr "" + +#: ../../api/classgwm_1_1GTDR.rst:10 +msgid "Inheritance Relationships" +msgstr "" + +#: ../../api/classgwm_1_1GTDR.rst:13 +msgid "Base Types" +msgstr "" + +#: ../../api/classgwm_1_1GTDR.rst:15 +msgid "" +"``public gwm::SpatialAlgorithm`` " +"(:ref:`exhale_class_classgwm_1_1SpatialAlgorithm`)" +msgstr "" + +#: ../../api/classgwm_1_1GTDR.rst:16 +msgid "" +"``public gwm::IRegressionAnalysis`` " +"(:ref:`exhale_struct_structgwm_1_1IRegressionAnalysis`)" +msgstr "" + +#: ../../api/classgwm_1_1GTDR.rst:17 +msgid "" +"``public gwm::IVarialbeSelectable`` " +"(:ref:`exhale_struct_structgwm_1_1IVarialbeSelectable`)" +msgstr "" + +#: ../../api/classgwm_1_1GTDR.rst:18 +msgid "" +"``public gwm::IParallelizable`` " +"(:ref:`exhale_struct_structgwm_1_1IParallelizable`)" +msgstr "" + +#: ../../api/classgwm_1_1GTDR.rst:19 +msgid "" +"``public gwm::IParallelOpenmpEnabled`` " +"(:ref:`exhale_struct_structgwm_1_1IParallelOpenmpEnabled`)" +msgstr "" + +#: ../../api/classgwm_1_1GTDR.rst:23 +msgid "Class Documentation" +msgstr "" + +#: ../../api/classgwm_1_1GTDR.rst +msgid "Public Types" +msgstr "" + +#: ../../api/classgwm_1_1GTDR.rst +msgid "Public Functions" +msgstr "" + +#: ../../api/classgwm_1_1GTDR.rst +msgid "Returns" +msgstr "" + +#: ../../api/classgwm_1_1GTDR.rst +msgid "Parameters" +msgstr "" + +#: ../../api/classgwm_1_1GTDR.rst +msgid "Public Static Functions" +msgstr "" + +#: ../../api/classgwm_1_1GTDR.rst +msgid "Protected Functions" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GTDRBandwidthOptimizer.po b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GTDRBandwidthOptimizer.po new file mode 100644 index 00000000..39f59ad8 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GTDRBandwidthOptimizer.po @@ -0,0 +1,57 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2025. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/classgwm_1_1GTDRBandwidthOptimizer.rst:4 +msgid "Class GTDRBandwidthOptimizer" +msgstr "" + +#: ../../api/classgwm_1_1GTDRBandwidthOptimizer.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_GTDR.h`" +msgstr "" + +#: ../../api/classgwm_1_1GTDRBandwidthOptimizer.rst:10 +msgid "Nested Relationships" +msgstr "" + +#: ../../api/classgwm_1_1GTDRBandwidthOptimizer.rst:14 +msgid "Nested Types" +msgstr "" + +#: ../../api/classgwm_1_1GTDRBandwidthOptimizer.rst:16 +msgid ":ref:`exhale_struct_structgwm_1_1GTDRBandwidthOptimizer_1_1Parameter`" +msgstr "" + +#: ../../api/classgwm_1_1GTDRBandwidthOptimizer.rst:20 +msgid "Class Documentation" +msgstr "" + +#: ../../api/classgwm_1_1GTDRBandwidthOptimizer.rst +msgid "Public Functions" +msgstr "" + +#: ../../api/classgwm_1_1GTDRBandwidthOptimizer.rst +msgid "Public Static Functions" +msgstr "" + +#: ../../api/classgwm_1_1GTDRBandwidthOptimizer.rst +msgid "Public Members" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GTWR.po b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GTWR.po index ac324299..ee18d0ee 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GTWR.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GTWR.po @@ -6,19 +6,18 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" "PO-Revision-Date: 2024-02-07 12:23+0000\n" "Last-Translator: \n" -"Language-Team: zh_CN \n" "Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" "Generated-By: Babel 2.11.0\n" -"X-Generator: Poedit 3.4.2\n" #: ../../api/classgwm_1_1GTWR.rst:4 msgid "Class GTWR" @@ -29,36 +28,50 @@ msgid "Defined in :ref:`file_include_gwmodelpp_GTWR.h`" msgstr "定义于 :ref:`file_include_gwmodelpp_GTWR.h`" #: ../../api/classgwm_1_1GTWR.rst:10 +#, fuzzy +msgid "Nested Relationships" +msgstr "继承关系" + +#: ../../api/classgwm_1_1GTWR.rst:14 +#, fuzzy +msgid "Nested Types" +msgstr "基类" + +#: ../../api/classgwm_1_1GTWR.rst:16 +msgid ":ref:`exhale_struct_structgwm_1_1GTWR_1_1Parameter`" +msgstr "" + +#: ../../api/classgwm_1_1GTWR.rst:20 msgid "Inheritance Relationships" msgstr "继承关系" -#: ../../api/classgwm_1_1GTWR.rst:13 +#: ../../api/classgwm_1_1GTWR.rst:23 msgid "Base Types" msgstr "基类" -#: ../../api/classgwm_1_1GTWR.rst:15 +#: ../../api/classgwm_1_1GTWR.rst:25 msgid "``public gwm::GWRBase`` (:ref:`exhale_class_classgwm_1_1GWRBase`)" msgstr "" -#: ../../api/classgwm_1_1GTWR.rst:16 +#: ../../api/classgwm_1_1GTWR.rst:26 msgid "" -"``public gwm::IBandwidthSelectable`` (:ref:" -"`exhale_struct_structgwm_1_1IBandwidthSelectable`)" +"``public gwm::IBandwidthSelectable`` " +"(:ref:`exhale_struct_structgwm_1_1IBandwidthSelectable`)" msgstr "" -#: ../../api/classgwm_1_1GTWR.rst:17 +#: ../../api/classgwm_1_1GTWR.rst:27 msgid "" -"``public gwm::IParallelizable`` (:ref:" -"`exhale_struct_structgwm_1_1IParallelizable`)" +"``public gwm::IParallelizable`` " +"(:ref:`exhale_struct_structgwm_1_1IParallelizable`)" msgstr "" -#: ../../api/classgwm_1_1GTWR.rst:18 +#: ../../api/classgwm_1_1GTWR.rst:28 msgid "" -"``public gwm::IParallelOpenmpEnabled`` (:ref:" -"`exhale_struct_structgwm_1_1IParallelOpenmpEnabled`)" +"``public gwm::IParallelOpenmpEnabled`` " +"(:ref:`exhale_struct_structgwm_1_1IParallelOpenmpEnabled`)" msgstr "" -#: ../../api/classgwm_1_1GTWR.rst:22 +#: ../../api/classgwm_1_1GTWR.rst:32 msgid "Class Documentation" msgstr "类文档" @@ -93,3 +106,14 @@ msgstr "保护方法" #: ../../api/classgwm_1_1GTWR.rst msgid "Protected Attributes" msgstr "保护属性" + +#: ../../api/classgwm_1_1GTWR.rst +#, fuzzy +msgid "Protected Static Functions" +msgstr "保护方法" + +#: ../../api/classgwm_1_1GTWR.rst +#, fuzzy +msgid "Public Members" +msgstr "公有类型" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GWAverage.po b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GWAverage.po new file mode 100644 index 00000000..154d61f7 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GWAverage.po @@ -0,0 +1,89 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2025. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/classgwm_1_1GWAverage.rst:4 +msgid "Class GWAverage" +msgstr "" + +#: ../../api/classgwm_1_1GWAverage.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_GWAverage.h`" +msgstr "" + +#: ../../api/classgwm_1_1GWAverage.rst:10 +msgid "Inheritance Relationships" +msgstr "" + +#: ../../api/classgwm_1_1GWAverage.rst:13 +msgid "Base Types" +msgstr "" + +#: ../../api/classgwm_1_1GWAverage.rst:15 +msgid "" +"``public gwm::SpatialMonoscaleAlgorithm`` " +"(:ref:`exhale_class_classgwm_1_1SpatialMonoscaleAlgorithm`)" +msgstr "" + +#: ../../api/classgwm_1_1GWAverage.rst:16 +msgid "" +"``public gwm::IMultivariableAnalysis`` " +"(:ref:`exhale_struct_structgwm_1_1IMultivariableAnalysis`)" +msgstr "" + +#: ../../api/classgwm_1_1GWAverage.rst:17 +msgid "" +"``public gwm::IParallelizable`` " +"(:ref:`exhale_struct_structgwm_1_1IParallelizable`)" +msgstr "" + +#: ../../api/classgwm_1_1GWAverage.rst:18 +msgid "" +"``public gwm::IParallelOpenmpEnabled`` " +"(:ref:`exhale_struct_structgwm_1_1IParallelOpenmpEnabled`)" +msgstr "" + +#: ../../api/classgwm_1_1GWAverage.rst:22 +msgid "Class Documentation" +msgstr "" + +#: ../../api/classgwm_1_1GWAverage.rst +msgid "Public Types" +msgstr "" + +#: ../../api/classgwm_1_1GWAverage.rst +msgid "Public Functions" +msgstr "" + +#: ../../api/classgwm_1_1GWAverage.rst +msgid "Returns" +msgstr "" + +#: ../../api/classgwm_1_1GWAverage.rst +msgid "Parameters" +msgstr "" + +#: ../../api/classgwm_1_1GWAverage.rst +msgid "Public Static Functions" +msgstr "" + +#: ../../api/classgwm_1_1GWAverage.rst +msgid "Protected Static Functions" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GWCorrelation.po b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GWCorrelation.po new file mode 100644 index 00000000..e9f8f435 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GWCorrelation.po @@ -0,0 +1,99 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2025. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/classgwm_1_1GWCorrelation.rst:4 +msgid "Class GWCorrelation" +msgstr "" + +#: ../../api/classgwm_1_1GWCorrelation.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_GWCorrelation.h`" +msgstr "" + +#: ../../api/classgwm_1_1GWCorrelation.rst:10 +msgid "Inheritance Relationships" +msgstr "" + +#: ../../api/classgwm_1_1GWCorrelation.rst:13 +msgid "Base Types" +msgstr "" + +#: ../../api/classgwm_1_1GWCorrelation.rst:15 +msgid "" +"``public gwm::SpatialMultiscaleAlgorithm`` " +"(:ref:`exhale_class_classgwm_1_1SpatialMultiscaleAlgorithm`)" +msgstr "" + +#: ../../api/classgwm_1_1GWCorrelation.rst:16 +msgid "" +"``public gwm::IMultivariateAnalysis`` " +"(:ref:`exhale_struct_structgwm_1_1IMultivariateAnalysis`)" +msgstr "" + +#: ../../api/classgwm_1_1GWCorrelation.rst:17 +msgid "" +"``public gwm::IParallelizable`` " +"(:ref:`exhale_struct_structgwm_1_1IParallelizable`)" +msgstr "" + +#: ../../api/classgwm_1_1GWCorrelation.rst:18 +msgid "" +"``public gwm::IParallelOpenmpEnabled`` " +"(:ref:`exhale_struct_structgwm_1_1IParallelOpenmpEnabled`)" +msgstr "" + +#: ../../api/classgwm_1_1GWCorrelation.rst:19 +msgid "" +"``public gwm::IBandwidthSelectable`` " +"(:ref:`exhale_struct_structgwm_1_1IBandwidthSelectable`)" +msgstr "" + +#: ../../api/classgwm_1_1GWCorrelation.rst:23 +msgid "Class Documentation" +msgstr "" + +#: ../../api/classgwm_1_1GWCorrelation.rst +msgid "Public Types" +msgstr "" + +#: ../../api/classgwm_1_1GWCorrelation.rst +msgid "Public Functions" +msgstr "" + +#: ../../api/classgwm_1_1GWCorrelation.rst +msgid "Returns" +msgstr "" + +#: ../../api/classgwm_1_1GWCorrelation.rst +msgid "Parameters" +msgstr "" + +#: ../../api/classgwm_1_1GWCorrelation.rst +msgid "Public Static Functions" +msgstr "" + +#: ../../api/classgwm_1_1GWCorrelation.rst +msgid "Public Static Attributes" +msgstr "" + +#: ../../api/classgwm_1_1GWCorrelation.rst +msgid "Protected Functions" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GWRBasic.po b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GWRBasic.po index 48c10785..26df3f57 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GWRBasic.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GWRBasic.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" "PO-Revision-Date: 2023-01-31 12:14+0000\n" "Last-Translator: Yigong Hu \n" "Language: zh_CN\n" @@ -68,15 +68,21 @@ msgid "" "(:ref:`exhale_struct_structgwm_1_1IParallelCudaEnabled`)" msgstr "" -#: ../../api/classgwm_1_1GWRBasic.rst:24 +#: ../../api/classgwm_1_1GWRBasic.rst:21 +msgid "" +"``public gwm::IParallelMpiEnabled`` " +"(:ref:`exhale_struct_structgwm_1_1IParallelMpiEnabled`)" +msgstr "" + +#: ../../api/classgwm_1_1GWRBasic.rst:25 msgid "Derived Type" msgstr "派生类" -#: ../../api/classgwm_1_1GWRBasic.rst:26 +#: ../../api/classgwm_1_1GWRBasic.rst:27 msgid "``public gwm::GWRRobust`` (:ref:`exhale_class_classgwm_1_1GWRRobust`)" msgstr "" -#: ../../api/classgwm_1_1GWRBasic.rst:30 +#: ../../api/classgwm_1_1GWRBasic.rst:31 msgid "Class Documentation" msgstr "类文档" diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GWRMultiscale.po b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GWRMultiscale.po index b74c027b..904396cb 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GWRMultiscale.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GWRMultiscale.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" "PO-Revision-Date: 2023-01-31 12:16+0000\n" "Last-Translator: Yigong Hu \n" "Language: zh\n" @@ -70,7 +70,13 @@ msgid "" "(:ref:`exhale_struct_structgwm_1_1IParallelCudaEnabled`)" msgstr "" -#: ../../api/classgwm_1_1GWRMultiscale.rst:24 +#: ../../api/classgwm_1_1GWRMultiscale.rst:21 +msgid "" +"``public gwm::IParallelMpiEnabled`` " +"(:ref:`exhale_struct_structgwm_1_1IParallelMpiEnabled`)" +msgstr "" + +#: ../../api/classgwm_1_1GWRMultiscale.rst:25 msgid "Class Documentation" msgstr "类文档" diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GWSS.po b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GWSS.po index 1d208217..576e3fdc 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GWSS.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1GWSS.po @@ -5,20 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-23 20:46+0000\n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" "PO-Revision-Date: 2023-01-31 12:19+0000\n" -"Last-Translator: Yigong Hu \n" -"Language-Team: \n" +"Last-Translator: Yigong Hu \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" +"Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/classgwm_1_1GWSS.rst:4 msgid "Class GWSS" @@ -38,52 +36,47 @@ msgstr "基类" #: ../../api/classgwm_1_1GWSS.rst:15 msgid "" -"``public gwm::SpatialMonoscaleAlgorithm`` (:ref:" -"`exhale_class_classgwm_1_1SpatialMonoscaleAlgorithm`)" +"``public gwm::SpatialMonoscaleAlgorithm`` " +"(:ref:`exhale_class_classgwm_1_1SpatialMonoscaleAlgorithm`)" msgstr "" #: ../../api/classgwm_1_1GWSS.rst:16 msgid "" -"``public gwm::IMultivariableAnalysis`` (:ref:" -"`exhale_struct_structgwm_1_1IMultivariableAnalysis`)" +"``public gwm::IMultivariableAnalysis`` " +"(:ref:`exhale_struct_structgwm_1_1IMultivariableAnalysis`)" msgstr "" #: ../../api/classgwm_1_1GWSS.rst:17 msgid "" -"``public gwm::IParallelizable`` (:ref:" -"`exhale_struct_structgwm_1_1IParallelizable`)" +"``public gwm::IParallelizable`` " +"(:ref:`exhale_struct_structgwm_1_1IParallelizable`)" msgstr "" #: ../../api/classgwm_1_1GWSS.rst:18 msgid "" -"``public gwm::IParallelOpenmpEnabled`` (:ref:" -"`exhale_struct_structgwm_1_1IParallelOpenmpEnabled`)" +"``public gwm::IParallelOpenmpEnabled`` " +"(:ref:`exhale_struct_structgwm_1_1IParallelOpenmpEnabled`)" msgstr "" #: ../../api/classgwm_1_1GWSS.rst:22 msgid "Class Documentation" msgstr "类文档" -#: ../../api/classgwm_1_1GWSS.rst -msgid "Public Types" -msgstr "公有类型" +#~ msgid "Public Types" +#~ msgstr "公有类型" + +#~ msgid "Public Functions" +#~ msgstr "公有成员函数" -#: ../../api/classgwm_1_1GWSS.rst -msgid "Public Functions" -msgstr "公有成员函数" +#~ msgid "Returns" +#~ msgstr "返回" -#: ../../api/classgwm_1_1GWSS.rst -msgid "Returns" -msgstr "返回" +#~ msgid "Parameters" +#~ msgstr "参数" -#: ../../api/classgwm_1_1GWSS.rst -msgid "Parameters" -msgstr "参数" +#~ msgid "Public Static Functions" +#~ msgstr "公有静态方法" -#: ../../api/classgwm_1_1GWSS.rst -msgid "Public Static Functions" -msgstr "公有静态方法" +#~ msgid "Protected Static Functions" +#~ msgstr "保护静态方法" -#: ../../api/classgwm_1_1GWSS.rst -msgid "Protected Static Functions" -msgstr "保护静态方法" diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1SDR.po b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1SDR.po index 79e9cf9c..88da9bd2 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1SDR.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1SDR.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: libgwmodel \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language: zh_CN\n" @@ -69,27 +69,21 @@ msgstr "" msgid "Class Documentation" msgstr "类文档" -#: ../../api/classgwm_1_1SDR.rst -msgid "Public Types" -msgstr "公有类型" +#~ msgid "Public Types" +#~ msgstr "公有类型" -#: ../../api/classgwm_1_1SDR.rst -msgid "Public Functions" -msgstr "公有方法" +#~ msgid "Public Functions" +#~ msgstr "公有方法" -#: ../../api/classgwm_1_1SDR.rst -msgid "Returns" -msgstr "返回" +#~ msgid "Returns" +#~ msgstr "返回" -#: ../../api/classgwm_1_1SDR.rst -msgid "Parameters" -msgstr "参数" +#~ msgid "Parameters" +#~ msgstr "参数" -#: ../../api/classgwm_1_1SDR.rst -msgid "Public Static Functions" -msgstr "公有静态方法" +#~ msgid "Public Static Functions" +#~ msgstr "公有静态方法" -#: ../../api/classgwm_1_1SDR.rst -msgid "Protected Functions" -msgstr "保护方法" +#~ msgid "Protected Functions" +#~ msgstr "保护方法" diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1SDRBandwidthOptimizer.po b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1SDRBandwidthOptimizer.po index 7220322e..a77dacfc 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1SDRBandwidthOptimizer.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1SDRBandwidthOptimizer.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: libgwmodel \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language: zh_CN\n" @@ -43,15 +43,12 @@ msgstr "" msgid "Class Documentation" msgstr "类文档" -#: ../../api/classgwm_1_1SDRBandwidthOptimizer.rst -msgid "Public Functions" -msgstr "公有方法" +#~ msgid "Public Functions" +#~ msgstr "公有方法" -#: ../../api/classgwm_1_1SDRBandwidthOptimizer.rst -msgid "Public Static Functions" -msgstr "公有静态方法" +#~ msgid "Public Static Functions" +#~ msgstr "公有静态方法" -#: ../../api/classgwm_1_1SDRBandwidthOptimizer.rst -msgid "Public Members" -msgstr "公有成员" +#~ msgid "Public Members" +#~ msgstr "公有成员" diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1SpatialAlgorithm.po b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1SpatialAlgorithm.po index 46b90314..9e5be747 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1SpatialAlgorithm.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1SpatialAlgorithm.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" "PO-Revision-Date: 2023-01-31 16:14+0000\n" "Last-Translator: Yigong Hu \n" "Language: zh_CN\n" @@ -43,7 +43,7 @@ msgid "Derived Types" msgstr "派生类" #: ../../api/classgwm_1_1SpatialAlgorithm.rst:21 -msgid "``public gwm::SDR`` (:ref:`exhale_class_classgwm_1_1SDR`)" +msgid "``public gwm::GTDR`` (:ref:`exhale_class_classgwm_1_1GTDR`)" msgstr "" #: ../../api/classgwm_1_1SpatialAlgorithm.rst:22 @@ -81,3 +81,6 @@ msgstr "保护属性" #~ msgid "``public gwm::GWDR`` (:ref:`exhale_class_classgwm_1_1GWDR`)" #~ msgstr "" +#~ msgid "``public gwm::SDR`` (:ref:`exhale_class_classgwm_1_1SDR`)" +#~ msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1SpatialMonoscaleAlgorithm.po b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1SpatialMonoscaleAlgorithm.po index 1ec709dd..b5df7546 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1SpatialMonoscaleAlgorithm.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1SpatialMonoscaleAlgorithm.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" "PO-Revision-Date: 2023-01-31 16:14+0000\n" "Last-Translator: Yigong Hu \n" "Language: zh_CN\n" @@ -45,19 +45,19 @@ msgid "Derived Types" msgstr "派生类" #: ../../api/classgwm_1_1SpatialMonoscaleAlgorithm.rst:21 -msgid "``public gwm::GWDA`` (:ref:`exhale_class_classgwm_1_1GWDA`)" +msgid "``public gwm::GWAverage`` (:ref:`exhale_class_classgwm_1_1GWAverage`)" msgstr "" #: ../../api/classgwm_1_1SpatialMonoscaleAlgorithm.rst:22 -msgid "``public gwm::GWPCA`` (:ref:`exhale_class_classgwm_1_1GWPCA`)" +msgid "``public gwm::GWDA`` (:ref:`exhale_class_classgwm_1_1GWDA`)" msgstr "" #: ../../api/classgwm_1_1SpatialMonoscaleAlgorithm.rst:23 -msgid "``public gwm::GWRBase`` (:ref:`exhale_class_classgwm_1_1GWRBase`)" +msgid "``public gwm::GWPCA`` (:ref:`exhale_class_classgwm_1_1GWPCA`)" msgstr "" #: ../../api/classgwm_1_1SpatialMonoscaleAlgorithm.rst:24 -msgid "``public gwm::GWSS`` (:ref:`exhale_class_classgwm_1_1GWSS`)" +msgid "``public gwm::GWRBase`` (:ref:`exhale_class_classgwm_1_1GWRBase`)" msgstr "" #: ../../api/classgwm_1_1SpatialMonoscaleAlgorithm.rst:28 @@ -80,3 +80,6 @@ msgstr "返回" msgid "Protected Attributes" msgstr "保护属性" +#~ msgid "``public gwm::GWSS`` (:ref:`exhale_class_classgwm_1_1GWSS`)" +#~ msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1SpatialMultiscaleAlgorithm.po b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1SpatialMultiscaleAlgorithm.po index f895a2e9..298c3181 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1SpatialMultiscaleAlgorithm.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/classgwm_1_1SpatialMultiscaleAlgorithm.po @@ -5,18 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-23 20:21+0000\n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" "PO-Revision-Date: 2023-01-31 16:14+0000\n" "Last-Translator: Yigong Hu \n" -"Language-Team: \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/classgwm_1_1SpatialMultiscaleAlgorithm.rst:4 msgid "Class SpatialMultiscaleAlgorithm" @@ -36,21 +36,28 @@ msgstr "基类" #: ../../api/classgwm_1_1SpatialMultiscaleAlgorithm.rst:15 msgid "" -"``public gwm::SpatialAlgorithm`` (:ref:" -"`exhale_class_classgwm_1_1SpatialAlgorithm`)" +"``public gwm::SpatialAlgorithm`` " +"(:ref:`exhale_class_classgwm_1_1SpatialAlgorithm`)" msgstr "" #: ../../api/classgwm_1_1SpatialMultiscaleAlgorithm.rst:19 -msgid "Derived Type" +#, fuzzy +msgid "Derived Types" msgstr "派生类" #: ../../api/classgwm_1_1SpatialMultiscaleAlgorithm.rst:21 msgid "" -"``public gwm::GWRMultiscale`` (:ref:" -"`exhale_class_classgwm_1_1GWRMultiscale`)" +"``public gwm::GWCorrelation`` " +"(:ref:`exhale_class_classgwm_1_1GWCorrelation`)" +msgstr "" + +#: ../../api/classgwm_1_1SpatialMultiscaleAlgorithm.rst:22 +msgid "" +"``public gwm::GWRMultiscale`` " +"(:ref:`exhale_class_classgwm_1_1GWRMultiscale`)" msgstr "" -#: ../../api/classgwm_1_1SpatialMultiscaleAlgorithm.rst:25 +#: ../../api/classgwm_1_1SpatialMultiscaleAlgorithm.rst:26 msgid "Class Documentation" msgstr "类文档" @@ -69,3 +76,4 @@ msgstr "返回" #: ../../api/classgwm_1_1SpatialMultiscaleAlgorithm.rst msgid "Protected Attributes" msgstr "保护属性" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/define_GWCorrelation_8h_1ae5f13e5f38059de109492100f4f151dd.po b/docs/locale/zh_CN/LC_MESSAGES/api/define_GWCorrelation_8h_1ae5f13e5f38059de109492100f4f151dd.po new file mode 100644 index 00000000..748c3a35 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/define_GWCorrelation_8h_1ae5f13e5f38059de109492100f4f151dd.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2025. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/define_GWCorrelation_8h_1ae5f13e5f38059de109492100f4f151dd.rst:4 +msgid "Define GWM_LOG_TAG_GWCORR_INITIAL_BW" +msgstr "" + +#: ../../api/define_GWCorrelation_8h_1ae5f13e5f38059de109492100f4f151dd.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_GWCorrelation.h`" +msgstr "" + +#: ../../api/define_GWCorrelation_8h_1ae5f13e5f38059de109492100f4f151dd.rst:10 +msgid "Define Documentation" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/define_IParallelizable_8h_1a22c8a8da56959b70e447e19b322e8526.po b/docs/locale/zh_CN/LC_MESSAGES/api/define_IParallelizable_8h_1a22c8a8da56959b70e447e19b322e8526.po new file mode 100644 index 00000000..4984df66 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/define_IParallelizable_8h_1a22c8a8da56959b70e447e19b322e8526.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2025. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/define_IParallelizable_8h_1a22c8a8da56959b70e447e19b322e8526.rst:4 +msgid "Define GWM_MPI_WORKER_END" +msgstr "" + +#: ../../api/define_IParallelizable_8h_1a22c8a8da56959b70e447e19b322e8526.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_IParallelizable.h`" +msgstr "" + +#: ../../api/define_IParallelizable_8h_1a22c8a8da56959b70e447e19b322e8526.rst:10 +msgid "Define Documentation" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/define_IParallelizable_8h_1a2dc66763a64b412f1d3f74de695af93f.po b/docs/locale/zh_CN/LC_MESSAGES/api/define_IParallelizable_8h_1a2dc66763a64b412f1d3f74de695af93f.po new file mode 100644 index 00000000..e0b1793c --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/define_IParallelizable_8h_1a2dc66763a64b412f1d3f74de695af93f.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2025. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/define_IParallelizable_8h_1a2dc66763a64b412f1d3f74de695af93f.rst:4 +msgid "Define GWM_MPI_WORKER_BEGIN" +msgstr "" + +#: ../../api/define_IParallelizable_8h_1a2dc66763a64b412f1d3f74de695af93f.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_IParallelizable.h`" +msgstr "" + +#: ../../api/define_IParallelizable_8h_1a2dc66763a64b412f1d3f74de695af93f.rst:10 +msgid "Define Documentation" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/define_IParallelizable_8h_1a4ae40a7bea1b8855bc82482e184e06a3.po b/docs/locale/zh_CN/LC_MESSAGES/api/define_IParallelizable_8h_1a4ae40a7bea1b8855bc82482e184e06a3.po new file mode 100644 index 00000000..f82fd238 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/define_IParallelizable_8h_1a4ae40a7bea1b8855bc82482e184e06a3.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2025. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/define_IParallelizable_8h_1a4ae40a7bea1b8855bc82482e184e06a3.rst:4 +msgid "Define GWM_MPI_MASTER_BEGIN" +msgstr "" + +#: ../../api/define_IParallelizable_8h_1a4ae40a7bea1b8855bc82482e184e06a3.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_IParallelizable.h`" +msgstr "" + +#: ../../api/define_IParallelizable_8h_1a4ae40a7bea1b8855bc82482e184e06a3.rst:10 +msgid "Define Documentation" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/define_IParallelizable_8h_1a7e959142ceaa2d5619d9e29636be50e7.po b/docs/locale/zh_CN/LC_MESSAGES/api/define_IParallelizable_8h_1a7e959142ceaa2d5619d9e29636be50e7.po new file mode 100644 index 00000000..f5fc7414 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/define_IParallelizable_8h_1a7e959142ceaa2d5619d9e29636be50e7.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2025. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/define_IParallelizable_8h_1a7e959142ceaa2d5619d9e29636be50e7.rst:4 +msgid "Define GWM_MPI_MASTER_END" +msgstr "" + +#: ../../api/define_IParallelizable_8h_1a7e959142ceaa2d5619d9e29636be50e7.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_IParallelizable.h`" +msgstr "" + +#: ../../api/define_IParallelizable_8h_1a7e959142ceaa2d5619d9e29636be50e7.rst:10 +msgid "Define Documentation" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/define_IParallelizable_8h_1abe708396a2d872200dedf5fe8e775439.po b/docs/locale/zh_CN/LC_MESSAGES/api/define_IParallelizable_8h_1abe708396a2d872200dedf5fe8e775439.po new file mode 100644 index 00000000..0f9953a6 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/define_IParallelizable_8h_1abe708396a2d872200dedf5fe8e775439.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2025. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/define_IParallelizable_8h_1abe708396a2d872200dedf5fe8e775439.rst:4 +msgid "Define GWM_MPI_MASTER_WORKER_SWITCH" +msgstr "" + +#: ../../api/define_IParallelizable_8h_1abe708396a2d872200dedf5fe8e775439.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_IParallelizable.h`" +msgstr "" + +#: ../../api/define_IParallelizable_8h_1abe708396a2d872200dedf5fe8e775439.rst:10 +msgid "Define Documentation" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/define_armampi_8h_1ae3dfb1534cea3a4d5d40009d12f4181d.po b/docs/locale/zh_CN/LC_MESSAGES/api/define_armampi_8h_1ae3dfb1534cea3a4d5d40009d12f4181d.po new file mode 100644 index 00000000..0614c744 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/define_armampi_8h_1ae3dfb1534cea3a4d5d40009d12f4181d.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2025. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/define_armampi_8h_1ae3dfb1534cea3a4d5d40009d12f4181d.rst:4 +msgid "Define GWM_MPI_UWORD" +msgstr "" + +#: ../../api/define_armampi_8h_1ae3dfb1534cea3a4d5d40009d12f4181d.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_utils_armampi.h`" +msgstr "" + +#: ../../api/define_armampi_8h_1ae3dfb1534cea3a4d5d40009d12f4181d.rst:10 +msgid "Define Documentation" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/dir_include.po b/docs/locale/zh_CN/LC_MESSAGES/api/dir_include.po index 3c9467cf..a44015b0 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/dir_include.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/dir_include.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" "PO-Revision-Date: 2023-01-31 12:30+0000\n" "Last-Translator: Yigong Hu \n" "Language: zh_CN\n" @@ -43,6 +43,10 @@ msgid "Files" msgstr "文件" #: ../../api/dir_include.rst:20 +msgid ":ref:`file_include_armadillo_config.h`" +msgstr "" + +#: ../../api/dir_include.rst:21 msgid ":ref:`file_include_gwmodel.h`" msgstr "" diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/dir_include_gwmodelpp.po b/docs/locale/zh_CN/LC_MESSAGES/api/dir_include_gwmodelpp.po index cebfd3dd..1a3e9448 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/dir_include_gwmodelpp.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/dir_include_gwmodelpp.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" "PO-Revision-Date: 2023-01-31 12:31+0000\n" "Last-Translator: Yigong Hu \n" "Language: zh_CN\n" @@ -63,109 +63,119 @@ msgid ":ref:`file_include_gwmodelpp_GeneralizedLinearModel.h`" msgstr "" #: ../../api/dir_include_gwmodelpp.rst:29 -msgid ":ref:`file_include_gwmodelpp_GTWR.h`" +msgid ":ref:`file_include_gwmodelpp_GTDR.h`" msgstr "" #: ../../api/dir_include_gwmodelpp.rst:30 -msgid ":ref:`file_include_gwmodelpp_GWDA.h`" +msgid ":ref:`file_include_gwmodelpp_GTWR.h`" msgstr "" #: ../../api/dir_include_gwmodelpp.rst:31 -msgid ":ref:`file_include_gwmodelpp_GWPCA.h`" +msgid ":ref:`file_include_gwmodelpp_GWAverage.h`" msgstr "" #: ../../api/dir_include_gwmodelpp.rst:32 -msgid ":ref:`file_include_gwmodelpp_GWRBase.h`" +msgid ":ref:`file_include_gwmodelpp_GWCorrelation.h`" msgstr "" #: ../../api/dir_include_gwmodelpp.rst:33 -msgid ":ref:`file_include_gwmodelpp_GWRBasic.h`" +msgid ":ref:`file_include_gwmodelpp_GWDA.h`" msgstr "" #: ../../api/dir_include_gwmodelpp.rst:34 -msgid ":ref:`file_include_gwmodelpp_GWRGeneralized.h`" +msgid ":ref:`file_include_gwmodelpp_GWPCA.h`" msgstr "" #: ../../api/dir_include_gwmodelpp.rst:35 -msgid ":ref:`file_include_gwmodelpp_GWRLocalCollinearity.h`" +msgid ":ref:`file_include_gwmodelpp_GWRBase.h`" msgstr "" #: ../../api/dir_include_gwmodelpp.rst:36 -msgid ":ref:`file_include_gwmodelpp_GWRMultiscale.h`" +msgid ":ref:`file_include_gwmodelpp_GWRBasic.h`" msgstr "" #: ../../api/dir_include_gwmodelpp.rst:37 -msgid ":ref:`file_include_gwmodelpp_GWRRobust.h`" +msgid ":ref:`file_include_gwmodelpp_GWRGeneralized.h`" msgstr "" #: ../../api/dir_include_gwmodelpp.rst:38 -msgid ":ref:`file_include_gwmodelpp_GWRScalable.h`" +msgid ":ref:`file_include_gwmodelpp_GWRLocalCollinearity.h`" msgstr "" #: ../../api/dir_include_gwmodelpp.rst:39 -msgid ":ref:`file_include_gwmodelpp_GWSS.h`" +msgid ":ref:`file_include_gwmodelpp_GWRMultiscale.h`" msgstr "" #: ../../api/dir_include_gwmodelpp.rst:40 -msgid ":ref:`file_include_gwmodelpp_IBandwidthSelectable.h`" +msgid ":ref:`file_include_gwmodelpp_GWRRobust.h`" msgstr "" #: ../../api/dir_include_gwmodelpp.rst:41 -msgid ":ref:`file_include_gwmodelpp_IMultivariableAnalysis.h`" +msgid ":ref:`file_include_gwmodelpp_GWRScalable.h`" msgstr "" #: ../../api/dir_include_gwmodelpp.rst:42 -msgid ":ref:`file_include_gwmodelpp_IParallelizable.h`" +msgid ":ref:`file_include_gwmodelpp_IBandwidthSelectable.h`" msgstr "" #: ../../api/dir_include_gwmodelpp.rst:43 -msgid ":ref:`file_include_gwmodelpp_IRegressionAnalysis.h`" +msgid ":ref:`file_include_gwmodelpp_IMultivariableAnalysis.h`" msgstr "" #: ../../api/dir_include_gwmodelpp.rst:44 -msgid ":ref:`file_include_gwmodelpp_IVarialbeSelectable.h`" +msgid ":ref:`file_include_gwmodelpp_IParallelizable.h`" msgstr "" #: ../../api/dir_include_gwmodelpp.rst:45 -msgid ":ref:`file_include_gwmodelpp_LinearModel.h`" +msgid ":ref:`file_include_gwmodelpp_IRegressionAnalysis.h`" msgstr "" #: ../../api/dir_include_gwmodelpp.rst:46 -msgid ":ref:`file_include_gwmodelpp_Logger.h`" +msgid ":ref:`file_include_gwmodelpp_IVarialbeSelectable.h`" msgstr "" #: ../../api/dir_include_gwmodelpp.rst:47 -msgid ":ref:`file_include_gwmodelpp_PoissonModel.h`" +msgid ":ref:`file_include_gwmodelpp_LinearModel.h`" msgstr "" #: ../../api/dir_include_gwmodelpp.rst:48 -msgid ":ref:`file_include_gwmodelpp_RegressionDiagnostic.h`" +msgid ":ref:`file_include_gwmodelpp_Logger.h`" msgstr "" #: ../../api/dir_include_gwmodelpp.rst:49 -msgid ":ref:`file_include_gwmodelpp_SDR.h`" +msgid ":ref:`file_include_gwmodelpp_PoissonModel.h`" msgstr "" #: ../../api/dir_include_gwmodelpp.rst:50 -msgid ":ref:`file_include_gwmodelpp_SpatialAlgorithm.h`" +msgid ":ref:`file_include_gwmodelpp_RegressionDiagnostic.h`" msgstr "" #: ../../api/dir_include_gwmodelpp.rst:51 -msgid ":ref:`file_include_gwmodelpp_SpatialMonoscaleAlgorithm.h`" +msgid ":ref:`file_include_gwmodelpp_SpatialAlgorithm.h`" msgstr "" #: ../../api/dir_include_gwmodelpp.rst:52 -msgid ":ref:`file_include_gwmodelpp_SpatialMultiscaleAlgorithm.h`" +msgid ":ref:`file_include_gwmodelpp_SpatialMonoscaleAlgorithm.h`" msgstr "" #: ../../api/dir_include_gwmodelpp.rst:53 -msgid ":ref:`file_include_gwmodelpp_Status.h`" +msgid ":ref:`file_include_gwmodelpp_SpatialMultiscaleAlgorithm.h`" msgstr "" #: ../../api/dir_include_gwmodelpp.rst:54 +msgid ":ref:`file_include_gwmodelpp_Status.h`" +msgstr "" + +#: ../../api/dir_include_gwmodelpp.rst:55 msgid ":ref:`file_include_gwmodelpp_VariableForwardSelector.h`" msgstr "" #~ msgid ":ref:`file_include_gwmodelpp_GWDR.h`" #~ msgstr "" +#~ msgid ":ref:`file_include_gwmodelpp_GWSS.h`" +#~ msgstr "" + +#~ msgid ":ref:`file_include_gwmodelpp_SDR.h`" +#~ msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/dir_include_gwmodelpp_utils.po b/docs/locale/zh_CN/LC_MESSAGES/api/dir_include_gwmodelpp_utils.po index a6c74abd..76dc96a9 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/dir_include_gwmodelpp_utils.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/dir_include_gwmodelpp_utils.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: libgwmodel \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language: zh_CN\n" @@ -38,10 +38,14 @@ msgid "Files" msgstr "" #: ../../api/dir_include_gwmodelpp_utils.rst:19 -msgid ":ref:`file_include_gwmodelpp_utils_CudaUtils.h`" +msgid ":ref:`file_include_gwmodelpp_utils_armampi.h`" msgstr "" #: ../../api/dir_include_gwmodelpp_utils.rst:20 +msgid ":ref:`file_include_gwmodelpp_utils_CudaUtils.h`" +msgstr "" + +#: ../../api/dir_include_gwmodelpp_utils.rst:21 msgid ":ref:`file_include_gwmodelpp_utils_cumat.hpp`" msgstr "" diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_armadillo_config.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_armadillo_config.h.po new file mode 100644 index 00000000..08294d62 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_armadillo_config.h.po @@ -0,0 +1,101 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2025. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/file_include_armadillo_config.h.rst:5 +msgid "File armadillo_config.h" +msgstr "" + +#: ../../api/file_include_armadillo_config.h.rst:7 +msgid "|exhale_lsh| :ref:`Parent directory ` (``include``)" +msgstr "" + +#: ../../api/file_include_armadillo_config.h.rst:14 +msgid "Contents" +msgstr "" + +#: ../../api/file_include_armadillo_config.h.rst:17 +msgid "Definition (``include/armadillo_config.h``)" +msgstr "" + +#: ../../api/file_include_armadillo_config.h.rst:30 +msgid "Includes" +msgstr "" + +#: ../../api/file_include_armadillo_config.h.rst:33 +msgid "``armadillo`` (:ref:`file_include_armadillo_config.h`)" +msgstr "" + +#: ../../api/file_include_armadillo_config.h.rst:38 +msgid "Included By" +msgstr "" + +#: ../../api/file_include_armadillo_config.h.rst:41 +msgid ":ref:`file_include_gwmodelcuda_GWRBasicGpuTask.h`" +msgstr "" + +#: ../../api/file_include_armadillo_config.h.rst:43 +msgid ":ref:`file_include_gwmodelpp_GTDR.h`" +msgstr "" + +#: ../../api/file_include_armadillo_config.h.rst:45 +msgid ":ref:`file_include_gwmodelpp_GWPCA.h`" +msgstr "" + +#: ../../api/file_include_armadillo_config.h.rst:47 +msgid ":ref:`file_include_gwmodelpp_GeneralizedLinearModel.h`" +msgstr "" + +#: ../../api/file_include_armadillo_config.h.rst:49 +msgid ":ref:`file_include_gwmodelpp_IMultivariableAnalysis.h`" +msgstr "" + +#: ../../api/file_include_armadillo_config.h.rst:51 +msgid ":ref:`file_include_gwmodelpp_IRegressionAnalysis.h`" +msgstr "" + +#: ../../api/file_include_armadillo_config.h.rst:53 +msgid ":ref:`file_include_gwmodelpp_LinearModel.h`" +msgstr "" + +#: ../../api/file_include_armadillo_config.h.rst:55 +msgid ":ref:`file_include_gwmodelpp_SpatialAlgorithm.h`" +msgstr "" + +#: ../../api/file_include_armadillo_config.h.rst:57 +msgid ":ref:`file_include_gwmodelpp_VariableForwardSelector.h`" +msgstr "" + +#: ../../api/file_include_armadillo_config.h.rst:59 +msgid ":ref:`file_include_gwmodelpp_spatialweight_Distance.h`" +msgstr "" + +#: ../../api/file_include_armadillo_config.h.rst:61 +msgid ":ref:`file_include_gwmodelpp_spatialweight_Weight.h`" +msgstr "" + +#: ../../api/file_include_armadillo_config.h.rst:63 +msgid ":ref:`file_include_gwmodelpp_utils_armampi.h`" +msgstr "" + +#: ../../api/file_include_armadillo_config.h.rst:65 +msgid ":ref:`file_include_gwmodelpp_utils_cumat.hpp`" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodel.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodel.h.po index c0f532dd..3a0be789 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodel.h.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodel.h.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" "PO-Revision-Date: 2023-01-31 12:33+0000\n" "Last-Translator: Yigong Hu \n" "Language: zh_CN\n" @@ -77,130 +77,142 @@ msgid "" msgstr "" #: ../../api/file_include_gwmodel.h.rst:56 -msgid "``gwmodelpp/GWPCA.h`` (:ref:`file_include_gwmodelpp_GWPCA.h`)" +msgid "``gwmodelpp/GTDR.h`` (:ref:`file_include_gwmodelpp_GTDR.h`)" msgstr "" #: ../../api/file_include_gwmodel.h.rst:58 -msgid "``gwmodelpp/GWRBase.h`` (:ref:`file_include_gwmodelpp_GWRBase.h`)" +msgid "``gwmodelpp/GWAverage.h`` (:ref:`file_include_gwmodelpp_GWAverage.h`)" msgstr "" #: ../../api/file_include_gwmodel.h.rst:60 -msgid "``gwmodelpp/GWRBasic.h`` (:ref:`file_include_gwmodelpp_GWRBasic.h`)" +msgid "" +"``gwmodelpp/GWCorrelation.h`` " +"(:ref:`file_include_gwmodelpp_GWCorrelation.h`)" msgstr "" #: ../../api/file_include_gwmodel.h.rst:62 -msgid "" -"``gwmodelpp/GWRGeneralized.h`` " -"(:ref:`file_include_gwmodelpp_GWRGeneralized.h`)" +msgid "``gwmodelpp/GWPCA.h`` (:ref:`file_include_gwmodelpp_GWPCA.h`)" msgstr "" #: ../../api/file_include_gwmodel.h.rst:64 -msgid "" -"``gwmodelpp/GWRLocalCollinearity.h`` " -"(:ref:`file_include_gwmodelpp_GWRLocalCollinearity.h`)" +msgid "``gwmodelpp/GWRBase.h`` (:ref:`file_include_gwmodelpp_GWRBase.h`)" msgstr "" #: ../../api/file_include_gwmodel.h.rst:66 -msgid "" -"``gwmodelpp/GWRMultiscale.h`` " -"(:ref:`file_include_gwmodelpp_GWRMultiscale.h`)" +msgid "``gwmodelpp/GWRBasic.h`` (:ref:`file_include_gwmodelpp_GWRBasic.h`)" msgstr "" #: ../../api/file_include_gwmodel.h.rst:68 -msgid "``gwmodelpp/GWRRobust.h`` (:ref:`file_include_gwmodelpp_GWRRobust.h`)" +msgid "" +"``gwmodelpp/GWRGeneralized.h`` " +"(:ref:`file_include_gwmodelpp_GWRGeneralized.h`)" msgstr "" #: ../../api/file_include_gwmodel.h.rst:70 -msgid "``gwmodelpp/GWRScalable.h`` (:ref:`file_include_gwmodelpp_GWRScalable.h`)" +msgid "" +"``gwmodelpp/GWRLocalCollinearity.h`` " +"(:ref:`file_include_gwmodelpp_GWRLocalCollinearity.h`)" msgstr "" #: ../../api/file_include_gwmodel.h.rst:72 -msgid "``gwmodelpp/GWSS.h`` (:ref:`file_include_gwmodelpp_GWSS.h`)" +msgid "" +"``gwmodelpp/GWRMultiscale.h`` " +"(:ref:`file_include_gwmodelpp_GWRMultiscale.h`)" msgstr "" #: ../../api/file_include_gwmodel.h.rst:74 -msgid "``gwmodelpp/SDR.h`` (:ref:`file_include_gwmodelpp_SDR.h`)" +msgid "``gwmodelpp/GWRRobust.h`` (:ref:`file_include_gwmodelpp_GWRRobust.h`)" msgstr "" #: ../../api/file_include_gwmodel.h.rst:76 +msgid "``gwmodelpp/GWRScalable.h`` (:ref:`file_include_gwmodelpp_GWRScalable.h`)" +msgstr "" + +#: ../../api/file_include_gwmodel.h.rst:78 msgid "" "``gwmodelpp/SpatialAlgorithm.h`` " "(:ref:`file_include_gwmodelpp_SpatialAlgorithm.h`)" msgstr "" -#: ../../api/file_include_gwmodel.h.rst:78 +#: ../../api/file_include_gwmodel.h.rst:80 msgid "" "``gwmodelpp/SpatialMonoscaleAlgorithm.h`` " "(:ref:`file_include_gwmodelpp_SpatialMonoscaleAlgorithm.h`)" msgstr "" -#: ../../api/file_include_gwmodel.h.rst:80 +#: ../../api/file_include_gwmodel.h.rst:82 msgid "" "``gwmodelpp/SpatialMultiscaleAlgorithm.h`` " "(:ref:`file_include_gwmodelpp_SpatialMultiscaleAlgorithm.h`)" msgstr "" -#: ../../api/file_include_gwmodel.h.rst:82 +#: ../../api/file_include_gwmodel.h.rst:84 msgid "" "``gwmodelpp/VariableForwardSelector.h`` " "(:ref:`file_include_gwmodelpp_VariableForwardSelector.h`)" msgstr "" -#: ../../api/file_include_gwmodel.h.rst:84 +#: ../../api/file_include_gwmodel.h.rst:86 msgid "" "``gwmodelpp/spatialweight/BandwidthWeight.h`` " "(:ref:`file_include_gwmodelpp_spatialweight_BandwidthWeight.h`)" msgstr "" -#: ../../api/file_include_gwmodel.h.rst:86 +#: ../../api/file_include_gwmodel.h.rst:88 msgid "" "``gwmodelpp/spatialweight/CRSDistance.h`` " "(:ref:`file_include_gwmodelpp_spatialweight_CRSDistance.h`)" msgstr "" -#: ../../api/file_include_gwmodel.h.rst:88 +#: ../../api/file_include_gwmodel.h.rst:90 msgid "" "``gwmodelpp/spatialweight/DMatDistance.h`` " "(:ref:`file_include_gwmodelpp_spatialweight_DMatDistance.h`)" msgstr "" -#: ../../api/file_include_gwmodel.h.rst:90 +#: ../../api/file_include_gwmodel.h.rst:92 msgid "" "``gwmodelpp/spatialweight/Distance.h`` " "(:ref:`file_include_gwmodelpp_spatialweight_Distance.h`)" msgstr "" -#: ../../api/file_include_gwmodel.h.rst:92 +#: ../../api/file_include_gwmodel.h.rst:94 msgid "" "``gwmodelpp/spatialweight/MinkwoskiDistance.h`` " "(:ref:`file_include_gwmodelpp_spatialweight_MinkwoskiDistance.h`)" msgstr "" -#: ../../api/file_include_gwmodel.h.rst:94 +#: ../../api/file_include_gwmodel.h.rst:96 msgid "" "``gwmodelpp/spatialweight/SpatialWeight.h`` " "(:ref:`file_include_gwmodelpp_spatialweight_SpatialWeight.h`)" msgstr "" -#: ../../api/file_include_gwmodel.h.rst:96 +#: ../../api/file_include_gwmodel.h.rst:98 msgid "" "``gwmodelpp/spatialweight/Weight.h`` " "(:ref:`file_include_gwmodelpp_spatialweight_Weight.h`)" msgstr "" -#: ../../api/file_include_gwmodel.h.rst:101 +#: ../../api/file_include_gwmodel.h.rst:103 #, fuzzy msgid "Included By" msgstr "包含" -#: ../../api/file_include_gwmodel.h.rst:104 +#: ../../api/file_include_gwmodel.h.rst:106 msgid ":ref:`file_include_gwmodelcuda_GWRBasicGpuTask.h`" msgstr "" -#: ../../api/file_include_gwmodel.h.rst:106 +#: ../../api/file_include_gwmodel.h.rst:108 msgid ":ref:`file_include_gwmodelcuda_StdTelegram.h`" msgstr "" #~ msgid "``gwmodelpp/GWDR.h`` (:ref:`file_include_gwmodelpp_GWDR.h`)" #~ msgstr "" +#~ msgid "``gwmodelpp/GWSS.h`` (:ref:`file_include_gwmodelpp_GWSS.h`)" +#~ msgstr "" + +#~ msgid "``gwmodelpp/SDR.h`` (:ref:`file_include_gwmodelpp_SDR.h`)" +#~ msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelcuda_GWRBasicGpuTask.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelcuda_GWRBasicGpuTask.h.po index 5682bc79..b5320340 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelcuda_GWRBasicGpuTask.h.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelcuda_GWRBasicGpuTask.h.po @@ -6,19 +6,18 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" "PO-Revision-Date: 2024-02-07 12:24+0000\n" "Last-Translator: \n" -"Language-Team: zh_CN \n" "Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" "Generated-By: Babel 2.11.0\n" -"X-Generator: Poedit 3.4.2\n" #: ../../api/file_include_gwmodelcuda_GWRBasicGpuTask.h.rst:5 msgid "File GWRBasicGpuTask.h" @@ -48,12 +47,12 @@ msgstr "" #: ../../api/file_include_gwmodelcuda_GWRBasicGpuTask.h.rst:35 msgid "" -"``IGWRBasicGpuTask.h`` (:ref:" -"`file_include_gwmodelcuda_IGWRBasicGpuTask.h`)" +"``IGWRBasicGpuTask.h`` " +"(:ref:`file_include_gwmodelcuda_IGWRBasicGpuTask.h`)" msgstr "" #: ../../api/file_include_gwmodelcuda_GWRBasicGpuTask.h.rst:37 -msgid "``armadillo``" +msgid "``armadillo_config.h`` (:ref:`file_include_armadillo_config.h`)" msgstr "" #: ../../api/file_include_gwmodelcuda_GWRBasicGpuTask.h.rst:39 @@ -71,3 +70,7 @@ msgstr "类" #: ../../api/file_include_gwmodelcuda_GWRBasicGpuTask.h.rst:52 msgid ":ref:`exhale_class_classGWRBasicGpuTask`" msgstr "" + +#~ msgid "``armadillo``" +#~ msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_GTDR.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_GTDR.h.po new file mode 100644 index 00000000..99a26a83 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_GTDR.h.po @@ -0,0 +1,119 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2025. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/file_include_gwmodelpp_GTDR.h.rst:5 +msgid "File GTDR.h" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GTDR.h.rst:7 +msgid "" +"|exhale_lsh| :ref:`Parent directory ` " +"(``include/gwmodelpp``)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GTDR.h.rst:14 +msgid "Contents" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GTDR.h.rst:17 +msgid "Definition (``include/gwmodelpp/GTDR.h``)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GTDR.h.rst:30 +msgid "Includes" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GTDR.h.rst:33 +msgid "" +"``IBandwidthSelectable.h`` " +"(:ref:`file_include_gwmodelpp_IBandwidthSelectable.h`)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GTDR.h.rst:35 +msgid "``IParallelizable.h`` (:ref:`file_include_gwmodelpp_IParallelizable.h`)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GTDR.h.rst:37 +msgid "" +"``IRegressionAnalysis.h`` " +"(:ref:`file_include_gwmodelpp_IRegressionAnalysis.h`)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GTDR.h.rst:39 +msgid "``SpatialAlgorithm.h`` (:ref:`file_include_gwmodelpp_SpatialAlgorithm.h`)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GTDR.h.rst:41 +msgid "" +"``VariableForwardSelector.h`` " +"(:ref:`file_include_gwmodelpp_VariableForwardSelector.h`)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GTDR.h.rst:43 +msgid "``armadillo_config.h`` (:ref:`file_include_armadillo_config.h`)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GTDR.h.rst:45 +msgid "``gsl/gsl_vector.h``" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GTDR.h.rst:47 +msgid "" +"``spatialweight/SpatialWeight.h`` " +"(:ref:`file_include_gwmodelpp_spatialweight_SpatialWeight.h`)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GTDR.h.rst:49 +msgid "``vector``" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GTDR.h.rst:54 +msgid "Included By" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GTDR.h.rst:57 +msgid ":ref:`file_include_gwmodel.h`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GTDR.h.rst:63 +msgid "Namespaces" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GTDR.h.rst:66 +msgid ":ref:`namespace_gwm`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GTDR.h.rst:70 +msgid "Classes" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GTDR.h.rst:73 +msgid ":ref:`exhale_struct_structgwm_1_1GTDRBandwidthOptimizer_1_1Parameter`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GTDR.h.rst:75 +msgid ":ref:`exhale_class_classgwm_1_1GTDR`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GTDR.h.rst:77 +msgid ":ref:`exhale_class_classgwm_1_1GTDRBandwidthOptimizer`" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_GTWR.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_GTWR.h.po index 7e6267ac..315224dd 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_GTWR.h.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_GTWR.h.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: libgwmodel \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language: zh_CN\n" @@ -106,14 +106,18 @@ msgid "Classes" msgstr "" #: ../../api/file_include_gwmodelpp_GTWR.h.rst:71 +msgid ":ref:`exhale_struct_structgwm_1_1GTWR_1_1Parameter`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GTWR.h.rst:73 msgid ":ref:`exhale_class_classgwm_1_1GTWR`" msgstr "" -#: ../../api/file_include_gwmodelpp_GTWR.h.rst:75 +#: ../../api/file_include_gwmodelpp_GTWR.h.rst:77 msgid "Defines" msgstr "" -#: ../../api/file_include_gwmodelpp_GTWR.h.rst:78 +#: ../../api/file_include_gwmodelpp_GTWR.h.rst:80 msgid ":ref:`exhale_define_GTWR_8h_1a4ee22f0a6287445f494fa646d5f9cec5`" msgstr "" diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_GWAverage.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_GWAverage.h.po new file mode 100644 index 00000000..2bc9087b --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_GWAverage.h.po @@ -0,0 +1,83 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2025. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/file_include_gwmodelpp_GWAverage.h.rst:5 +msgid "File GWAverage.h" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GWAverage.h.rst:7 +msgid "" +"|exhale_lsh| :ref:`Parent directory ` " +"(``include/gwmodelpp``)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GWAverage.h.rst:14 +msgid "Contents" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GWAverage.h.rst:17 +msgid "Definition (``include/gwmodelpp/GWAverage.h``)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GWAverage.h.rst:30 +msgid "Includes" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GWAverage.h.rst:33 +msgid "" +"``IMultivariableAnalysis.h`` " +"(:ref:`file_include_gwmodelpp_IMultivariableAnalysis.h`)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GWAverage.h.rst:35 +msgid "``IParallelizable.h`` (:ref:`file_include_gwmodelpp_IParallelizable.h`)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GWAverage.h.rst:37 +msgid "" +"``SpatialMonoscaleAlgorithm.h`` " +"(:ref:`file_include_gwmodelpp_SpatialMonoscaleAlgorithm.h`)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GWAverage.h.rst:42 +msgid "Included By" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GWAverage.h.rst:45 +msgid ":ref:`file_include_gwmodel.h`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GWAverage.h.rst:51 +msgid "Namespaces" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GWAverage.h.rst:54 +msgid ":ref:`namespace_gwm`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GWAverage.h.rst:58 +msgid "Classes" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GWAverage.h.rst:61 +msgid ":ref:`exhale_class_classgwm_1_1GWAverage`" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_GWCorrelation.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_GWCorrelation.h.po new file mode 100644 index 00000000..9dfd473e --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_GWCorrelation.h.po @@ -0,0 +1,97 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2025. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/file_include_gwmodelpp_GWCorrelation.h.rst:5 +msgid "File GWCorrelation.h" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GWCorrelation.h.rst:7 +msgid "" +"|exhale_lsh| :ref:`Parent directory ` " +"(``include/gwmodelpp``)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GWCorrelation.h.rst:14 +msgid "Contents" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GWCorrelation.h.rst:17 +msgid "Definition (``include/gwmodelpp/GWCorrelation.h``)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GWCorrelation.h.rst:30 +msgid "Includes" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GWCorrelation.h.rst:33 +msgid "" +"``IBandwidthSelectable.h`` " +"(:ref:`file_include_gwmodelpp_IBandwidthSelectable.h`)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GWCorrelation.h.rst:35 +msgid "" +"``IMultivariableAnalysis.h`` " +"(:ref:`file_include_gwmodelpp_IMultivariableAnalysis.h`)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GWCorrelation.h.rst:37 +msgid "``IParallelizable.h`` (:ref:`file_include_gwmodelpp_IParallelizable.h`)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GWCorrelation.h.rst:39 +msgid "" +"``SpatialMultiscaleAlgorithm.h`` " +"(:ref:`file_include_gwmodelpp_SpatialMultiscaleAlgorithm.h`)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GWCorrelation.h.rst:44 +msgid "Included By" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GWCorrelation.h.rst:47 +msgid ":ref:`file_include_gwmodel.h`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GWCorrelation.h.rst:53 +msgid "Namespaces" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GWCorrelation.h.rst:56 +msgid ":ref:`namespace_gwm`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GWCorrelation.h.rst:60 +msgid "Classes" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GWCorrelation.h.rst:63 +msgid ":ref:`exhale_class_classgwm_1_1GWCorrelation`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GWCorrelation.h.rst:67 +msgid "Defines" +msgstr "" + +#: ../../api/file_include_gwmodelpp_GWCorrelation.h.rst:70 +msgid ":ref:`exhale_define_GWCorrelation_8h_1ae5f13e5f38059de109492100f4f151dd`" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_GWPCA.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_GWPCA.h.po index eb1cf073..a4ea2522 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_GWPCA.h.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_GWPCA.h.po @@ -5,18 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-23 20:21+0000\n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" "PO-Revision-Date: 2023-01-31 12:42+0000\n" "Last-Translator: Yigong Hu \n" -"Language-Team: \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/file_include_gwmodelpp_GWPCA.h.rst:5 msgid "File GWPCA.h" @@ -24,8 +24,8 @@ msgstr "文件 GWPCA.h" #: ../../api/file_include_gwmodelpp_GWPCA.h.rst:7 msgid "" -"|exhale_lsh| :ref:`Parent directory ` (``include/" -"gwmodelpp``)" +"|exhale_lsh| :ref:`Parent directory ` " +"(``include/gwmodelpp``)" msgstr "" #: ../../api/file_include_gwmodelpp_GWPCA.h.rst:14 @@ -42,8 +42,8 @@ msgstr "包含" #: ../../api/file_include_gwmodelpp_GWPCA.h.rst:33 msgid "" -"``IMultivariableAnalysis.h`` (:ref:" -"`file_include_gwmodelpp_IMultivariableAnalysis.h`)" +"``IMultivariableAnalysis.h`` " +"(:ref:`file_include_gwmodelpp_IMultivariableAnalysis.h`)" msgstr "" #: ../../api/file_include_gwmodelpp_GWPCA.h.rst:35 @@ -52,12 +52,12 @@ msgstr "" #: ../../api/file_include_gwmodelpp_GWPCA.h.rst:37 msgid "" -"``SpatialMonoscaleAlgorithm.h`` (:ref:" -"`file_include_gwmodelpp_SpatialMonoscaleAlgorithm.h`)" +"``SpatialMonoscaleAlgorithm.h`` " +"(:ref:`file_include_gwmodelpp_SpatialMonoscaleAlgorithm.h`)" msgstr "" #: ../../api/file_include_gwmodelpp_GWPCA.h.rst:39 -msgid "``armadillo``" +msgid "``armadillo_config.h`` (:ref:`file_include_armadillo_config.h`)" msgstr "" #: ../../api/file_include_gwmodelpp_GWPCA.h.rst:41 @@ -91,3 +91,7 @@ msgstr "类" #: ../../api/file_include_gwmodelpp_GWPCA.h.rst:67 msgid ":ref:`exhale_class_classgwm_1_1GWPCA`" msgstr "" + +#~ msgid "``armadillo``" +#~ msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_GeneralizedLinearModel.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_GeneralizedLinearModel.h.po index a24a70b9..bb8a17ae 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_GeneralizedLinearModel.h.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_GeneralizedLinearModel.h.po @@ -5,18 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-23 20:21+0000\n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" "PO-Revision-Date: 2023-01-31 13:11+0000\n" "Last-Translator: Yigong Hu \n" -"Language-Team: \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/file_include_gwmodelpp_GeneralizedLinearModel.h.rst:5 msgid "File GeneralizedLinearModel.h" @@ -24,8 +24,8 @@ msgstr "文件 GeneralizedLinearModel.h" #: ../../api/file_include_gwmodelpp_GeneralizedLinearModel.h.rst:7 msgid "" -"|exhale_lsh| :ref:`Parent directory ` (``include/" -"gwmodelpp``)" +"|exhale_lsh| :ref:`Parent directory ` " +"(``include/gwmodelpp``)" msgstr "" #: ../../api/file_include_gwmodelpp_GeneralizedLinearModel.h.rst:14 @@ -49,7 +49,7 @@ msgid "``LinearModel.h`` (:ref:`file_include_gwmodelpp_GeneralizedLinearModel.h` msgstr "" #: ../../api/file_include_gwmodelpp_GeneralizedLinearModel.h.rst:37 -msgid "``armadillo``" +msgid "``armadillo_config.h`` (:ref:`file_include_armadillo_config.h`)" msgstr "" #: ../../api/file_include_gwmodelpp_GeneralizedLinearModel.h.rst:45 @@ -67,3 +67,7 @@ msgstr "类" #: ../../api/file_include_gwmodelpp_GeneralizedLinearModel.h.rst:55 msgid ":ref:`exhale_class_classgwm_1_1GeneralizedLinearModel`" msgstr "" + +#~ msgid "``armadillo``" +#~ msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_IBandwidthSelectable.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_IBandwidthSelectable.h.po index 830a61f1..15aa30ae 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_IBandwidthSelectable.h.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_IBandwidthSelectable.h.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" "PO-Revision-Date: 2023-01-31 13:12+0000\n" "Last-Translator: Yigong Hu \n" "Language: zh_CN\n" @@ -59,66 +59,73 @@ msgid ":ref:`file_include_gwmodelpp_BandwidthSelector.h`" msgstr "" #: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:45 -msgid ":ref:`file_include_gwmodelpp_GTWR.h`" +msgid ":ref:`file_include_gwmodelpp_GTDR.h`" msgstr "" #: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:47 -msgid ":ref:`file_include_gwmodelpp_GWRBasic.h`" +msgid ":ref:`file_include_gwmodelpp_GTWR.h`" msgstr "" #: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:49 -msgid ":ref:`file_include_gwmodelpp_GWRGeneralized.h`" +msgid ":ref:`file_include_gwmodelpp_GWCorrelation.h`" msgstr "" #: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:51 -msgid ":ref:`file_include_gwmodelpp_GWRLocalCollinearity.h`" +msgid ":ref:`file_include_gwmodelpp_GWRBasic.h`" msgstr "" #: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:53 -msgid ":ref:`file_include_gwmodelpp_GWRMultiscale.h`" +msgid ":ref:`file_include_gwmodelpp_GWRGeneralized.h`" msgstr "" #: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:55 -msgid ":ref:`file_include_gwmodelpp_GWRRobust.h`" +msgid ":ref:`file_include_gwmodelpp_GWRLocalCollinearity.h`" msgstr "" #: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:57 -msgid ":ref:`file_include_gwmodelpp_GWRScalable.h`" +msgid ":ref:`file_include_gwmodelpp_GWRMultiscale.h`" msgstr "" #: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:59 -msgid ":ref:`file_include_gwmodelpp_SDR.h`" +msgid ":ref:`file_include_gwmodelpp_GWRRobust.h`" msgstr "" -#: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:65 +#: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:61 +msgid ":ref:`file_include_gwmodelpp_GWRScalable.h`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:67 msgid "Namespaces" msgstr "命名空间" -#: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:68 +#: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:70 msgid ":ref:`namespace_gwm`" msgstr "" -#: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:72 +#: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:74 msgid "Classes" msgstr "类" -#: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:75 +#: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:77 msgid ":ref:`exhale_struct_structgwm_1_1IBandwidthSelectable`" msgstr "" -#: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:79 +#: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:81 msgid "Defines" msgstr "" -#: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:82 +#: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:84 msgid ":ref:`exhale_define_IBandwidthSelectable_8h_1ac255781338c0f15a823cefaca6911599`" msgstr "" -#: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:86 +#: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:88 msgid "Typedefs" msgstr "" -#: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:89 +#: ../../api/file_include_gwmodelpp_IBandwidthSelectable.h.rst:91 msgid ":ref:`exhale_typedef_IBandwidthSelectable_8h_1ae90108073e4144ac3fbed1a68bb44031`" msgstr "" +#~ msgid ":ref:`file_include_gwmodelpp_SDR.h`" +#~ msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_IMultivariableAnalysis.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_IMultivariableAnalysis.h.po index 9e9a7ecb..1075570e 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_IMultivariableAnalysis.h.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_IMultivariableAnalysis.h.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" "PO-Revision-Date: 2023-01-31 13:12+0000\n" "Last-Translator: Yigong Hu \n" "Language: zh_CN\n" @@ -41,7 +41,7 @@ msgid "Includes" msgstr "包含" #: ../../api/file_include_gwmodelpp_IMultivariableAnalysis.h.rst:33 -msgid "``armadillo``" +msgid "``armadillo_config.h`` (:ref:`file_include_armadillo_config.h`)" msgstr "" #: ../../api/file_include_gwmodelpp_IMultivariableAnalysis.h.rst:38 @@ -49,30 +49,44 @@ msgid "Included By" msgstr "被下列头文件包含" #: ../../api/file_include_gwmodelpp_IMultivariableAnalysis.h.rst:41 -msgid ":ref:`file_include_gwmodelpp_GWDA.h`" +msgid ":ref:`file_include_gwmodelpp_GWAverage.h`" msgstr "" #: ../../api/file_include_gwmodelpp_IMultivariableAnalysis.h.rst:43 -msgid ":ref:`file_include_gwmodelpp_GWPCA.h`" +msgid ":ref:`file_include_gwmodelpp_GWCorrelation.h`" msgstr "" #: ../../api/file_include_gwmodelpp_IMultivariableAnalysis.h.rst:45 -msgid ":ref:`file_include_gwmodelpp_GWSS.h`" +msgid ":ref:`file_include_gwmodelpp_GWDA.h`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_IMultivariableAnalysis.h.rst:47 +msgid ":ref:`file_include_gwmodelpp_GWPCA.h`" msgstr "" -#: ../../api/file_include_gwmodelpp_IMultivariableAnalysis.h.rst:51 +#: ../../api/file_include_gwmodelpp_IMultivariableAnalysis.h.rst:53 msgid "Namespaces" msgstr "命名空间" -#: ../../api/file_include_gwmodelpp_IMultivariableAnalysis.h.rst:54 +#: ../../api/file_include_gwmodelpp_IMultivariableAnalysis.h.rst:56 msgid ":ref:`namespace_gwm`" msgstr "" -#: ../../api/file_include_gwmodelpp_IMultivariableAnalysis.h.rst:58 +#: ../../api/file_include_gwmodelpp_IMultivariableAnalysis.h.rst:60 msgid "Classes" msgstr "类" -#: ../../api/file_include_gwmodelpp_IMultivariableAnalysis.h.rst:61 +#: ../../api/file_include_gwmodelpp_IMultivariableAnalysis.h.rst:63 msgid ":ref:`exhale_struct_structgwm_1_1IMultivariableAnalysis`" msgstr "" +#: ../../api/file_include_gwmodelpp_IMultivariableAnalysis.h.rst:65 +msgid ":ref:`exhale_struct_structgwm_1_1IMultivariateAnalysis`" +msgstr "" + +#~ msgid "``armadillo``" +#~ msgstr "" + +#~ msgid ":ref:`file_include_gwmodelpp_GWSS.h`" +#~ msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_IParallelizable.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_IParallelizable.h.po index 692fc774..8136cd7b 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_IParallelizable.h.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_IParallelizable.h.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" "PO-Revision-Date: 2023-01-31 13:12+0000\n" "Last-Translator: Yigong Hu \n" "Language: zh_CN\n" @@ -41,81 +41,119 @@ msgid "Included By" msgstr "被下列头文件包含" #: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:35 -msgid ":ref:`file_include_gwmodelpp_GTWR.h`" +msgid ":ref:`file_include_gwmodelpp_GTDR.h`" msgstr "" #: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:37 -msgid ":ref:`file_include_gwmodelpp_GWDA.h`" +msgid ":ref:`file_include_gwmodelpp_GTWR.h`" msgstr "" #: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:39 -msgid ":ref:`file_include_gwmodelpp_GWPCA.h`" +msgid ":ref:`file_include_gwmodelpp_GWAverage.h`" msgstr "" #: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:41 -msgid ":ref:`file_include_gwmodelpp_GWRBasic.h`" +msgid ":ref:`file_include_gwmodelpp_GWCorrelation.h`" msgstr "" #: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:43 -msgid ":ref:`file_include_gwmodelpp_GWRGeneralized.h`" +msgid ":ref:`file_include_gwmodelpp_GWDA.h`" msgstr "" #: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:45 -msgid ":ref:`file_include_gwmodelpp_GWRLocalCollinearity.h`" +msgid ":ref:`file_include_gwmodelpp_GWPCA.h`" msgstr "" #: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:47 -msgid ":ref:`file_include_gwmodelpp_GWRMultiscale.h`" +msgid ":ref:`file_include_gwmodelpp_GWRBasic.h`" msgstr "" #: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:49 -msgid ":ref:`file_include_gwmodelpp_GWRRobust.h`" +msgid ":ref:`file_include_gwmodelpp_GWRGeneralized.h`" msgstr "" #: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:51 -msgid ":ref:`file_include_gwmodelpp_GWRScalable.h`" +msgid ":ref:`file_include_gwmodelpp_GWRLocalCollinearity.h`" msgstr "" #: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:53 -msgid ":ref:`file_include_gwmodelpp_GWSS.h`" +msgid ":ref:`file_include_gwmodelpp_GWRMultiscale.h`" msgstr "" #: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:55 -msgid ":ref:`file_include_gwmodelpp_SDR.h`" +msgid ":ref:`file_include_gwmodelpp_GWRRobust.h`" msgstr "" -#: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:61 +#: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:57 +msgid ":ref:`file_include_gwmodelpp_GWRScalable.h`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:63 msgid "Namespaces" msgstr "命名空间" -#: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:64 +#: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:66 msgid ":ref:`namespace_gwm`" msgstr "" -#: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:68 +#: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:70 msgid "Classes" msgstr "类" -#: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:71 +#: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:73 msgid ":ref:`exhale_struct_structgwm_1_1IParallelCudaEnabled`" msgstr "" -#: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:73 +#: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:75 msgid ":ref:`exhale_struct_structgwm_1_1IParallelizable`" msgstr "" -#: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:75 -msgid ":ref:`exhale_struct_structgwm_1_1IParallelOpenmpEnabled`" +#: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:77 +msgid ":ref:`exhale_struct_structgwm_1_1IParallelMpiEnabled`" msgstr "" #: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:79 +msgid ":ref:`exhale_struct_structgwm_1_1IParallelOpenmpEnabled`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:83 msgid "Enums" msgstr "枚举" -#: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:82 +#: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:86 msgid ":ref:`exhale_enum_IParallelizable_8h_1a166813c41923ca9f51b81af038e7cb7a`" msgstr "" +#: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:90 +msgid "Defines" +msgstr "" + +#: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:93 +msgid ":ref:`exhale_define_IParallelizable_8h_1a4ae40a7bea1b8855bc82482e184e06a3`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:95 +msgid ":ref:`exhale_define_IParallelizable_8h_1a7e959142ceaa2d5619d9e29636be50e7`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:97 +msgid ":ref:`exhale_define_IParallelizable_8h_1abe708396a2d872200dedf5fe8e775439`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:99 +msgid ":ref:`exhale_define_IParallelizable_8h_1a2dc66763a64b412f1d3f74de695af93f`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_IParallelizable.h.rst:101 +msgid ":ref:`exhale_define_IParallelizable_8h_1a22c8a8da56959b70e447e19b322e8526`" +msgstr "" + #~ msgid ":ref:`file_include_gwmodelpp_GWDR.h`" #~ msgstr "" +#~ msgid ":ref:`file_include_gwmodelpp_GWSS.h`" +#~ msgstr "" + +#~ msgid ":ref:`file_include_gwmodelpp_SDR.h`" +#~ msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_IRegressionAnalysis.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_IRegressionAnalysis.h.po index 55ee3850..aa7a2938 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_IRegressionAnalysis.h.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_IRegressionAnalysis.h.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" "PO-Revision-Date: 2023-01-31 13:12+0000\n" "Last-Translator: Yigong Hu \n" "Language: zh_CN\n" @@ -47,7 +47,7 @@ msgid "" msgstr "" #: ../../api/file_include_gwmodelpp_IRegressionAnalysis.h.rst:35 -msgid "``armadillo``" +msgid "``armadillo_config.h`` (:ref:`file_include_armadillo_config.h`)" msgstr "" #: ../../api/file_include_gwmodelpp_IRegressionAnalysis.h.rst:37 @@ -59,15 +59,15 @@ msgid "Included By" msgstr "被下列头文件包含" #: ../../api/file_include_gwmodelpp_IRegressionAnalysis.h.rst:45 -msgid ":ref:`file_include_gwmodelpp_GWRBase.h`" +msgid ":ref:`file_include_gwmodelpp_GTDR.h`" msgstr "" #: ../../api/file_include_gwmodelpp_IRegressionAnalysis.h.rst:47 -msgid ":ref:`file_include_gwmodelpp_GWRMultiscale.h`" +msgid ":ref:`file_include_gwmodelpp_GWRBase.h`" msgstr "" #: ../../api/file_include_gwmodelpp_IRegressionAnalysis.h.rst:49 -msgid ":ref:`file_include_gwmodelpp_SDR.h`" +msgid ":ref:`file_include_gwmodelpp_GWRMultiscale.h`" msgstr "" #: ../../api/file_include_gwmodelpp_IRegressionAnalysis.h.rst:55 @@ -89,3 +89,9 @@ msgstr "" #~ msgid ":ref:`file_include_gwmodelpp_GWDR.h`" #~ msgstr "" +#~ msgid "``armadillo``" +#~ msgstr "" + +#~ msgid ":ref:`file_include_gwmodelpp_SDR.h`" +#~ msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_LinearModel.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_LinearModel.h.po index 30fd0181..3a4ed424 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_LinearModel.h.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_LinearModel.h.po @@ -5,18 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-23 20:21+0000\n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" "PO-Revision-Date: 2023-01-31 13:13+0000\n" "Last-Translator: Yigong Hu \n" -"Language-Team: \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/file_include_gwmodelpp_LinearModel.h.rst:5 msgid "File LinearModel.h" @@ -41,7 +41,7 @@ msgid "Includes" msgstr "包含" #: ../../api/file_include_gwmodelpp_LinearModel.h.rst:33 -msgid "``armadillo``" +msgid "``armadillo_config.h`` (:ref:`file_include_armadillo_config.h`)" msgstr "" #: ../../api/file_include_gwmodelpp_LinearModel.h.rst:38 @@ -75,3 +75,7 @@ msgstr "类" #: ../../api/file_include_gwmodelpp_LinearModel.h.rst:61 msgid ":ref:`exhale_class_classgwm_1_1LinearModel`" msgstr "" + +#~ msgid "``armadillo``" +#~ msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_SpatialAlgorithm.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_SpatialAlgorithm.h.po index 7e984cff..9d73009a 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_SpatialAlgorithm.h.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_SpatialAlgorithm.h.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" "PO-Revision-Date: 2023-01-31 13:14+0000\n" "Last-Translator: Yigong Hu \n" "Language: zh_CN\n" @@ -45,7 +45,7 @@ msgid "``Algorithm.h`` (:ref:`file_include_gwmodelpp_Algorithm.h`)" msgstr "" #: ../../api/file_include_gwmodelpp_SpatialAlgorithm.h.rst:35 -msgid "``armadillo``" +msgid "``armadillo_config.h`` (:ref:`file_include_armadillo_config.h`)" msgstr "" #: ../../api/file_include_gwmodelpp_SpatialAlgorithm.h.rst:40 @@ -57,7 +57,7 @@ msgid ":ref:`file_include_gwmodel.h`" msgstr "" #: ../../api/file_include_gwmodelpp_SpatialAlgorithm.h.rst:45 -msgid ":ref:`file_include_gwmodelpp_SDR.h`" +msgid ":ref:`file_include_gwmodelpp_GTDR.h`" msgstr "" #: ../../api/file_include_gwmodelpp_SpatialAlgorithm.h.rst:47 @@ -87,3 +87,9 @@ msgstr "" #~ msgid ":ref:`file_include_gwmodelpp_GWDR.h`" #~ msgstr "" +#~ msgid "``armadillo``" +#~ msgstr "" + +#~ msgid ":ref:`file_include_gwmodelpp_SDR.h`" +#~ msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_SpatialMonoscaleAlgorithm.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_SpatialMonoscaleAlgorithm.h.po index 156f3a67..e8155ebc 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_SpatialMonoscaleAlgorithm.h.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_SpatialMonoscaleAlgorithm.h.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" "PO-Revision-Date: 2023-01-31 13:14+0000\n" "Last-Translator: Yigong Hu \n" "Language: zh_CN\n" @@ -59,19 +59,19 @@ msgid ":ref:`file_include_gwmodel.h`" msgstr "" #: ../../api/file_include_gwmodelpp_SpatialMonoscaleAlgorithm.h.rst:45 -msgid ":ref:`file_include_gwmodelpp_GWDA.h`" +msgid ":ref:`file_include_gwmodelpp_GWAverage.h`" msgstr "" #: ../../api/file_include_gwmodelpp_SpatialMonoscaleAlgorithm.h.rst:47 -msgid ":ref:`file_include_gwmodelpp_GWPCA.h`" +msgid ":ref:`file_include_gwmodelpp_GWDA.h`" msgstr "" #: ../../api/file_include_gwmodelpp_SpatialMonoscaleAlgorithm.h.rst:49 -msgid ":ref:`file_include_gwmodelpp_GWRBase.h`" +msgid ":ref:`file_include_gwmodelpp_GWPCA.h`" msgstr "" #: ../../api/file_include_gwmodelpp_SpatialMonoscaleAlgorithm.h.rst:51 -msgid ":ref:`file_include_gwmodelpp_GWSS.h`" +msgid ":ref:`file_include_gwmodelpp_GWRBase.h`" msgstr "" #: ../../api/file_include_gwmodelpp_SpatialMonoscaleAlgorithm.h.rst:57 @@ -90,3 +90,6 @@ msgstr "类" msgid ":ref:`exhale_class_classgwm_1_1SpatialMonoscaleAlgorithm`" msgstr "" +#~ msgid ":ref:`file_include_gwmodelpp_GWSS.h`" +#~ msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_SpatialMultiscaleAlgorithm.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_SpatialMultiscaleAlgorithm.h.po index 40c12ad2..14f202c0 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_SpatialMultiscaleAlgorithm.h.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_SpatialMultiscaleAlgorithm.h.po @@ -5,18 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-30 11:13+0000\n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" "PO-Revision-Date: 2023-01-31 14:00+0000\n" "Last-Translator: Yigong Hu \n" -"Language-Team: \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/file_include_gwmodelpp_SpatialMultiscaleAlgorithm.h.rst:5 msgid "File SpatialMultiscaleAlgorithm.h" @@ -24,8 +24,8 @@ msgstr "文件 SpatialMultiscaleAlgorithm.h" #: ../../api/file_include_gwmodelpp_SpatialMultiscaleAlgorithm.h.rst:7 msgid "" -"|exhale_lsh| :ref:`Parent directory ` (``include/" -"gwmodelpp``)" +"|exhale_lsh| :ref:`Parent directory ` " +"(``include/gwmodelpp``)" msgstr "" #: ../../api/file_include_gwmodelpp_SpatialMultiscaleAlgorithm.h.rst:14 @@ -46,8 +46,8 @@ msgstr "" #: ../../api/file_include_gwmodelpp_SpatialMultiscaleAlgorithm.h.rst:35 msgid "" -"``spatialweight/SpatialWeight.h`` (:ref:" -"`file_include_gwmodelpp_spatialweight_SpatialWeight.h`)" +"``spatialweight/SpatialWeight.h`` " +"(:ref:`file_include_gwmodelpp_spatialweight_SpatialWeight.h`)" msgstr "" #: ../../api/file_include_gwmodelpp_SpatialMultiscaleAlgorithm.h.rst:37 @@ -63,21 +63,26 @@ msgid ":ref:`file_include_gwmodel.h`" msgstr "" #: ../../api/file_include_gwmodelpp_SpatialMultiscaleAlgorithm.h.rst:47 +msgid ":ref:`file_include_gwmodelpp_GWCorrelation.h`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_SpatialMultiscaleAlgorithm.h.rst:49 msgid ":ref:`file_include_gwmodelpp_GWRMultiscale.h`" msgstr "" -#: ../../api/file_include_gwmodelpp_SpatialMultiscaleAlgorithm.h.rst:53 +#: ../../api/file_include_gwmodelpp_SpatialMultiscaleAlgorithm.h.rst:55 msgid "Namespaces" msgstr "命名空间" -#: ../../api/file_include_gwmodelpp_SpatialMultiscaleAlgorithm.h.rst:56 +#: ../../api/file_include_gwmodelpp_SpatialMultiscaleAlgorithm.h.rst:58 msgid ":ref:`namespace_gwm`" msgstr "" -#: ../../api/file_include_gwmodelpp_SpatialMultiscaleAlgorithm.h.rst:60 +#: ../../api/file_include_gwmodelpp_SpatialMultiscaleAlgorithm.h.rst:62 msgid "Classes" msgstr "类" -#: ../../api/file_include_gwmodelpp_SpatialMultiscaleAlgorithm.h.rst:63 +#: ../../api/file_include_gwmodelpp_SpatialMultiscaleAlgorithm.h.rst:65 msgid ":ref:`exhale_class_classgwm_1_1SpatialMultiscaleAlgorithm`" msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_VariableForwardSelector.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_VariableForwardSelector.h.po index 02f6f283..e6b18465 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_VariableForwardSelector.h.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_VariableForwardSelector.h.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" "PO-Revision-Date: 2023-01-31 14:01+0000\n" "Last-Translator: Yigong Hu \n" "Language: zh_CN\n" @@ -47,7 +47,7 @@ msgid "" msgstr "" #: ../../api/file_include_gwmodelpp_VariableForwardSelector.h.rst:35 -msgid "``armadillo``" +msgid "``armadillo_config.h`` (:ref:`file_include_armadillo_config.h`)" msgstr "" #: ../../api/file_include_gwmodelpp_VariableForwardSelector.h.rst:37 @@ -63,7 +63,7 @@ msgid ":ref:`file_include_gwmodel.h`" msgstr "" #: ../../api/file_include_gwmodelpp_VariableForwardSelector.h.rst:47 -msgid ":ref:`file_include_gwmodelpp_SDR.h`" +msgid ":ref:`file_include_gwmodelpp_GTDR.h`" msgstr "" #: ../../api/file_include_gwmodelpp_VariableForwardSelector.h.rst:53 @@ -85,3 +85,9 @@ msgstr "" #~ msgid ":ref:`file_include_gwmodelpp_GWDR.h`" #~ msgstr "" +#~ msgid "``armadillo``" +#~ msgstr "" + +#~ msgid ":ref:`file_include_gwmodelpp_SDR.h`" +#~ msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_spatialweight_Distance.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_spatialweight_Distance.h.po index 3b13f01a..dd76063d 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_spatialweight_Distance.h.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_spatialweight_Distance.h.po @@ -5,18 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-23 20:21+0000\n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" "PO-Revision-Date: 2023-01-31 15:55+0000\n" "Last-Translator: Yigong Hu \n" -"Language-Team: \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/file_include_gwmodelpp_spatialweight_Distance.h.rst:5 msgid "File Distance.h" @@ -25,8 +25,8 @@ msgstr "文件 Distance.h" #: ../../api/file_include_gwmodelpp_spatialweight_Distance.h.rst:7 msgid "" "|exhale_lsh| :ref:`Parent directory " -"` (``include/gwmodelpp/" -"spatialweight``)" +"` " +"(``include/gwmodelpp/spatialweight``)" msgstr "" #: ../../api/file_include_gwmodelpp_spatialweight_Distance.h.rst:14 @@ -42,7 +42,7 @@ msgid "Includes" msgstr "包含" #: ../../api/file_include_gwmodelpp_spatialweight_Distance.h.rst:33 -msgid "``armadillo``" +msgid "``armadillo_config.h`` (:ref:`file_include_armadillo_config.h`)" msgstr "" #: ../../api/file_include_gwmodelpp_spatialweight_Distance.h.rst:35 @@ -112,3 +112,7 @@ msgstr "类型别名" #: ../../api/file_include_gwmodelpp_spatialweight_Distance.h.rst:82 msgid ":ref:`exhale_typedef_Distance_8h_1adde2a58509603bef6a9754d22a56959e`" msgstr "" + +#~ msgid "``armadillo``" +#~ msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_spatialweight_SpatialWeight.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_spatialweight_SpatialWeight.h.po index d2ca2244..85e244f6 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_spatialweight_SpatialWeight.h.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_spatialweight_SpatialWeight.h.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" "PO-Revision-Date: 2023-01-31 15:56+0000\n" "Last-Translator: Yigong Hu \n" "Language: zh_CN\n" @@ -96,11 +96,11 @@ msgid ":ref:`file_include_gwmodel.h`" msgstr "" #: ../../api/file_include_gwmodelpp_spatialweight_SpatialWeight.h.rst:57 -msgid ":ref:`file_include_gwmodelpp_GWRMultiscale.h`" +msgid ":ref:`file_include_gwmodelpp_GTDR.h`" msgstr "" #: ../../api/file_include_gwmodelpp_spatialweight_SpatialWeight.h.rst:59 -msgid ":ref:`file_include_gwmodelpp_SDR.h`" +msgid ":ref:`file_include_gwmodelpp_GWRMultiscale.h`" msgstr "" #: ../../api/file_include_gwmodelpp_spatialweight_SpatialWeight.h.rst:61 @@ -130,3 +130,6 @@ msgstr "" #~ msgid ":ref:`file_include_gwmodelpp_GWDR.h`" #~ msgstr "" +#~ msgid ":ref:`file_include_gwmodelpp_SDR.h`" +#~ msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_spatialweight_Weight.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_spatialweight_Weight.h.po index 743a801a..4d217373 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_spatialweight_Weight.h.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_spatialweight_Weight.h.po @@ -5,18 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-23 20:21+0000\n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" "PO-Revision-Date: 2023-01-31 15:56+0000\n" "Last-Translator: Yigong Hu \n" -"Language-Team: \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.11.0\n" #: ../../api/file_include_gwmodelpp_spatialweight_Weight.h.rst:5 msgid "File Weight.h" @@ -25,8 +25,8 @@ msgstr "文件 Weight.h" #: ../../api/file_include_gwmodelpp_spatialweight_Weight.h.rst:7 msgid "" "|exhale_lsh| :ref:`Parent directory " -"` (``include/gwmodelpp/" -"spatialweight``)" +"` " +"(``include/gwmodelpp/spatialweight``)" msgstr "" #: ../../api/file_include_gwmodelpp_spatialweight_Weight.h.rst:14 @@ -42,7 +42,7 @@ msgid "Includes" msgstr "包含" #: ../../api/file_include_gwmodelpp_spatialweight_Weight.h.rst:33 -msgid "``armadillo``" +msgid "``armadillo_config.h`` (:ref:`file_include_armadillo_config.h`)" msgstr "" #: ../../api/file_include_gwmodelpp_spatialweight_Weight.h.rst:35 @@ -84,3 +84,7 @@ msgstr "类" #: ../../api/file_include_gwmodelpp_spatialweight_Weight.h.rst:65 msgid ":ref:`exhale_class_classgwm_1_1Weight`" msgstr "" + +#~ msgid "``armadillo``" +#~ msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_utils_armampi.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_utils_armampi.h.po new file mode 100644 index 00000000..c7f12e55 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_utils_armampi.h.po @@ -0,0 +1,67 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2025. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/file_include_gwmodelpp_utils_armampi.h.rst:5 +msgid "File armampi.h" +msgstr "" + +#: ../../api/file_include_gwmodelpp_utils_armampi.h.rst:7 +msgid "" +"|exhale_lsh| :ref:`Parent directory ` " +"(``include/gwmodelpp/utils``)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_utils_armampi.h.rst:14 +msgid "Contents" +msgstr "" + +#: ../../api/file_include_gwmodelpp_utils_armampi.h.rst:17 +msgid "Definition (``include/gwmodelpp/utils/armampi.h``)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_utils_armampi.h.rst:30 +msgid "Includes" +msgstr "" + +#: ../../api/file_include_gwmodelpp_utils_armampi.h.rst:33 +msgid "``armadillo_config.h`` (:ref:`file_include_armadillo_config.h`)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_utils_armampi.h.rst:35 +msgid "``mpi.h`` (:ref:`file_include_gwmodelpp_utils_armampi.h`)" +msgstr "" + +#: ../../api/file_include_gwmodelpp_utils_armampi.h.rst:43 +msgid "Functions" +msgstr "" + +#: ../../api/file_include_gwmodelpp_utils_armampi.h.rst:46 +msgid ":ref:`exhale_function_armampi_8h_1a785049faff79a182aac5022e644a001f`" +msgstr "" + +#: ../../api/file_include_gwmodelpp_utils_armampi.h.rst:50 +msgid "Defines" +msgstr "" + +#: ../../api/file_include_gwmodelpp_utils_armampi.h.rst:53 +msgid ":ref:`exhale_define_armampi_8h_1ae3dfb1534cea3a4d5d40009d12f4181d`" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_utils_cumat.hpp.po b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_utils_cumat.hpp.po index 23925fce..9be3286e 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_utils_cumat.hpp.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/file_include_gwmodelpp_utils_cumat.hpp.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: libgwmodel \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language: zh_CN\n" @@ -42,7 +42,7 @@ msgid "Includes" msgstr "" #: ../../api/file_include_gwmodelpp_utils_cumat.hpp.rst:33 -msgid "``armadillo``" +msgid "``armadillo_config.h`` (:ref:`file_include_armadillo_config.h`)" msgstr "" #: ../../api/file_include_gwmodelpp_utils_cumat.hpp.rst:35 @@ -117,3 +117,14 @@ msgstr "" msgid ":ref:`exhale_class_classcuview_3_01custride_01_4`" msgstr "" +#: ../../api/file_include_gwmodelpp_utils_cumat.hpp.rst:80 +msgid "Functions" +msgstr "" + +#: ../../api/file_include_gwmodelpp_utils_cumat.hpp.rst:83 +msgid ":ref:`exhale_function_cumat_8hpp_1a4019ce70f7c9b3b67411dbc5506ea302`" +msgstr "" + +#~ msgid "``armadillo``" +#~ msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/function_armampi_8h_1a785049faff79a182aac5022e644a001f.po b/docs/locale/zh_CN/LC_MESSAGES/api/function_armampi_8h_1a785049faff79a182aac5022e644a001f.po new file mode 100644 index 00000000..c1ca7558 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/function_armampi_8h_1a785049faff79a182aac5022e644a001f.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2025. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/function_armampi_8h_1a785049faff79a182aac5022e644a001f.rst:4 +msgid "Function mat_mul_mpi" +msgstr "" + +#: ../../api/function_armampi_8h_1a785049faff79a182aac5022e644a001f.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_utils_armampi.h`" +msgstr "" + +#: ../../api/function_armampi_8h_1a785049faff79a182aac5022e644a001f.rst:10 +msgid "Function Documentation" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/function_cumat_8hpp_1a4019ce70f7c9b3b67411dbc5506ea302.po b/docs/locale/zh_CN/LC_MESSAGES/api/function_cumat_8hpp_1a4019ce70f7c9b3b67411dbc5506ea302.po new file mode 100644 index 00000000..ae468f48 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/function_cumat_8hpp_1a4019ce70f7c9b3b67411dbc5506ea302.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2025. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/function_cumat_8hpp_1a4019ce70f7c9b3b67411dbc5506ea302.rst:4 +msgid "Function print" +msgstr "" + +#: ../../api/function_cumat_8hpp_1a4019ce70f7c9b3b67411dbc5506ea302.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_utils_cumat.hpp`" +msgstr "" + +#: ../../api/function_cumat_8hpp_1a4019ce70f7c9b3b67411dbc5506ea302.rst:10 +msgid "Function Documentation" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/namespace_gwm.po b/docs/locale/zh_CN/LC_MESSAGES/api/namespace_gwm.po index 571986df..f1f79d79 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/namespace_gwm.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/namespace_gwm.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" "PO-Revision-Date: 2023-01-31 15:56+0000\n" "Last-Translator: Yigong Hu \n" "Language: zh_CN\n" @@ -47,222 +47,238 @@ msgid ":ref:`exhale_struct_structgwm_1_1GLMDiagnostic`" msgstr "" #: ../../api/namespace_gwm.rst:28 -msgid ":ref:`exhale_struct_structgwm_1_1GWRGeneralizedDiagnostic`" +msgid ":ref:`exhale_struct_structgwm_1_1GTDRBandwidthOptimizer_1_1Parameter`" msgstr "" #: ../../api/namespace_gwm.rst:30 -msgid ":ref:`exhale_struct_structgwm_1_1GWRScalable_1_1LoocvParams`" +msgid ":ref:`exhale_struct_structgwm_1_1GTWR_1_1Parameter`" msgstr "" #: ../../api/namespace_gwm.rst:32 -msgid ":ref:`exhale_struct_structgwm_1_1IBandwidthSelectable`" +msgid ":ref:`exhale_struct_structgwm_1_1GWRGeneralizedDiagnostic`" msgstr "" #: ../../api/namespace_gwm.rst:34 -msgid ":ref:`exhale_struct_structgwm_1_1IMultivariableAnalysis`" +msgid ":ref:`exhale_struct_structgwm_1_1GWRScalable_1_1LoocvParams`" msgstr "" #: ../../api/namespace_gwm.rst:36 -msgid ":ref:`exhale_struct_structgwm_1_1IParallelCudaEnabled`" +msgid ":ref:`exhale_struct_structgwm_1_1IBandwidthSelectable`" msgstr "" #: ../../api/namespace_gwm.rst:38 -msgid ":ref:`exhale_struct_structgwm_1_1IParallelizable`" +msgid ":ref:`exhale_struct_structgwm_1_1IMultivariableAnalysis`" msgstr "" #: ../../api/namespace_gwm.rst:40 -msgid ":ref:`exhale_struct_structgwm_1_1IParallelOpenmpEnabled`" +msgid ":ref:`exhale_struct_structgwm_1_1IMultivariateAnalysis`" msgstr "" #: ../../api/namespace_gwm.rst:42 -msgid ":ref:`exhale_struct_structgwm_1_1IRegressionAnalysis`" +msgid ":ref:`exhale_struct_structgwm_1_1IParallelCudaEnabled`" msgstr "" #: ../../api/namespace_gwm.rst:44 -msgid ":ref:`exhale_struct_structgwm_1_1ITelegram`" +msgid ":ref:`exhale_struct_structgwm_1_1IParallelizable`" msgstr "" #: ../../api/namespace_gwm.rst:46 -msgid ":ref:`exhale_struct_structgwm_1_1IVarialbeSelectable`" +msgid ":ref:`exhale_struct_structgwm_1_1IParallelMpiEnabled`" msgstr "" #: ../../api/namespace_gwm.rst:48 -msgid ":ref:`exhale_struct_structgwm_1_1OneDimDistance_1_1Parameter`" +msgid ":ref:`exhale_struct_structgwm_1_1IParallelOpenmpEnabled`" msgstr "" #: ../../api/namespace_gwm.rst:50 -msgid ":ref:`exhale_struct_structgwm_1_1RegressionDiagnostic`" +msgid ":ref:`exhale_struct_structgwm_1_1IRegressionAnalysis`" msgstr "" #: ../../api/namespace_gwm.rst:52 -msgid ":ref:`exhale_struct_structgwm_1_1SDRBandwidthOptimizer_1_1Parameter`" +msgid ":ref:`exhale_struct_structgwm_1_1ITelegram`" msgstr "" #: ../../api/namespace_gwm.rst:54 -msgid ":ref:`exhale_class_classgwm_1_1Algorithm`" +msgid ":ref:`exhale_struct_structgwm_1_1IVarialbeSelectable`" msgstr "" #: ../../api/namespace_gwm.rst:56 -msgid ":ref:`exhale_class_classgwm_1_1BandwidthSelector`" +msgid ":ref:`exhale_struct_structgwm_1_1OneDimDistance_1_1Parameter`" msgstr "" #: ../../api/namespace_gwm.rst:58 -msgid ":ref:`exhale_class_classgwm_1_1BandwidthWeight`" +msgid ":ref:`exhale_struct_structgwm_1_1RegressionDiagnostic`" msgstr "" #: ../../api/namespace_gwm.rst:60 -msgid ":ref:`exhale_class_classgwm_1_1BinomialModel`" +msgid ":ref:`exhale_class_classgwm_1_1Algorithm`" msgstr "" #: ../../api/namespace_gwm.rst:62 -msgid ":ref:`exhale_class_classgwm_1_1CRSDistance`" +msgid ":ref:`exhale_class_classgwm_1_1BandwidthSelector`" msgstr "" #: ../../api/namespace_gwm.rst:64 -msgid ":ref:`exhale_class_classgwm_1_1CRSSTDistance`" +msgid ":ref:`exhale_class_classgwm_1_1BandwidthWeight`" msgstr "" #: ../../api/namespace_gwm.rst:66 -msgid ":ref:`exhale_class_classgwm_1_1Distance`" +msgid ":ref:`exhale_class_classgwm_1_1BinomialModel`" msgstr "" #: ../../api/namespace_gwm.rst:68 -msgid ":ref:`exhale_class_classgwm_1_1DMatDistance`" +msgid ":ref:`exhale_class_classgwm_1_1CRSDistance`" msgstr "" #: ../../api/namespace_gwm.rst:70 -msgid ":ref:`exhale_class_classgwm_1_1GeneralizedLinearModel`" +msgid ":ref:`exhale_class_classgwm_1_1CRSSTDistance`" msgstr "" #: ../../api/namespace_gwm.rst:72 -msgid ":ref:`exhale_class_classgwm_1_1GTWR`" +msgid ":ref:`exhale_class_classgwm_1_1Distance`" msgstr "" #: ../../api/namespace_gwm.rst:74 -msgid ":ref:`exhale_class_classgwm_1_1GWDA`" +msgid ":ref:`exhale_class_classgwm_1_1DMatDistance`" msgstr "" #: ../../api/namespace_gwm.rst:76 -msgid ":ref:`exhale_class_classgwm_1_1GWPCA`" +msgid ":ref:`exhale_class_classgwm_1_1GeneralizedLinearModel`" msgstr "" #: ../../api/namespace_gwm.rst:78 -msgid ":ref:`exhale_class_classgwm_1_1GWRBase`" +msgid ":ref:`exhale_class_classgwm_1_1GTDR`" msgstr "" #: ../../api/namespace_gwm.rst:80 -msgid ":ref:`exhale_class_classgwm_1_1GWRBasic`" +msgid ":ref:`exhale_class_classgwm_1_1GTDRBandwidthOptimizer`" msgstr "" #: ../../api/namespace_gwm.rst:82 -msgid ":ref:`exhale_class_classgwm_1_1GWRGeneralized`" +msgid ":ref:`exhale_class_classgwm_1_1GTWR`" msgstr "" #: ../../api/namespace_gwm.rst:84 -msgid ":ref:`exhale_class_classgwm_1_1GWRLocalCollinearity`" +msgid ":ref:`exhale_class_classgwm_1_1GWAverage`" msgstr "" #: ../../api/namespace_gwm.rst:86 -msgid ":ref:`exhale_class_classgwm_1_1GWRMultiscale`" +msgid ":ref:`exhale_class_classgwm_1_1GWCorrelation`" msgstr "" #: ../../api/namespace_gwm.rst:88 -msgid ":ref:`exhale_class_classgwm_1_1GWRRobust`" +msgid ":ref:`exhale_class_classgwm_1_1GWDA`" msgstr "" #: ../../api/namespace_gwm.rst:90 -msgid ":ref:`exhale_class_classgwm_1_1GWRScalable`" +msgid ":ref:`exhale_class_classgwm_1_1GWPCA`" msgstr "" #: ../../api/namespace_gwm.rst:92 -msgid ":ref:`exhale_class_classgwm_1_1GWSS`" +msgid ":ref:`exhale_class_classgwm_1_1GWRBase`" msgstr "" #: ../../api/namespace_gwm.rst:94 -msgid ":ref:`exhale_class_classgwm_1_1LinearModel`" +msgid ":ref:`exhale_class_classgwm_1_1GWRBasic`" msgstr "" #: ../../api/namespace_gwm.rst:96 -msgid ":ref:`exhale_class_classgwm_1_1Logger`" +msgid ":ref:`exhale_class_classgwm_1_1GWRGeneralized`" msgstr "" #: ../../api/namespace_gwm.rst:98 -msgid ":ref:`exhale_class_classgwm_1_1MinkwoskiDistance`" +msgid ":ref:`exhale_class_classgwm_1_1GWRLocalCollinearity`" msgstr "" #: ../../api/namespace_gwm.rst:100 -msgid ":ref:`exhale_class_classgwm_1_1OneDimDistance`" +msgid ":ref:`exhale_class_classgwm_1_1GWRMultiscale`" msgstr "" #: ../../api/namespace_gwm.rst:102 -msgid ":ref:`exhale_class_classgwm_1_1PoissonModel`" +msgid ":ref:`exhale_class_classgwm_1_1GWRRobust`" msgstr "" #: ../../api/namespace_gwm.rst:104 -msgid ":ref:`exhale_class_classgwm_1_1SDR`" +msgid ":ref:`exhale_class_classgwm_1_1GWRScalable`" msgstr "" #: ../../api/namespace_gwm.rst:106 -msgid ":ref:`exhale_class_classgwm_1_1SDRBandwidthOptimizer`" +msgid ":ref:`exhale_class_classgwm_1_1LinearModel`" msgstr "" #: ../../api/namespace_gwm.rst:108 -msgid ":ref:`exhale_class_classgwm_1_1SpatialAlgorithm`" +msgid ":ref:`exhale_class_classgwm_1_1Logger`" msgstr "" #: ../../api/namespace_gwm.rst:110 -msgid ":ref:`exhale_class_classgwm_1_1SpatialMonoscaleAlgorithm`" +msgid ":ref:`exhale_class_classgwm_1_1MinkwoskiDistance`" msgstr "" #: ../../api/namespace_gwm.rst:112 -msgid ":ref:`exhale_class_classgwm_1_1SpatialMultiscaleAlgorithm`" +msgid ":ref:`exhale_class_classgwm_1_1OneDimDistance`" msgstr "" #: ../../api/namespace_gwm.rst:114 -msgid ":ref:`exhale_class_classgwm_1_1SpatialWeight`" +msgid ":ref:`exhale_class_classgwm_1_1PoissonModel`" msgstr "" #: ../../api/namespace_gwm.rst:116 -msgid ":ref:`exhale_class_classgwm_1_1VariableForwardSelector`" +msgid ":ref:`exhale_class_classgwm_1_1SpatialAlgorithm`" msgstr "" #: ../../api/namespace_gwm.rst:118 -msgid ":ref:`exhale_class_classgwm_1_1Weight`" +msgid ":ref:`exhale_class_classgwm_1_1SpatialMonoscaleAlgorithm`" +msgstr "" + +#: ../../api/namespace_gwm.rst:120 +msgid ":ref:`exhale_class_classgwm_1_1SpatialMultiscaleAlgorithm`" msgstr "" #: ../../api/namespace_gwm.rst:122 +msgid ":ref:`exhale_class_classgwm_1_1SpatialWeight`" +msgstr "" + +#: ../../api/namespace_gwm.rst:124 +msgid ":ref:`exhale_class_classgwm_1_1VariableForwardSelector`" +msgstr "" + +#: ../../api/namespace_gwm.rst:126 +msgid ":ref:`exhale_class_classgwm_1_1Weight`" +msgstr "" + +#: ../../api/namespace_gwm.rst:130 msgid "Enums" msgstr "枚举" -#: ../../api/namespace_gwm.rst:125 +#: ../../api/namespace_gwm.rst:133 msgid ":ref:`exhale_enum_IParallelizable_8h_1a166813c41923ca9f51b81af038e7cb7a`" msgstr "" -#: ../../api/namespace_gwm.rst:127 +#: ../../api/namespace_gwm.rst:135 msgid ":ref:`exhale_enum_Status_8h_1a9b4ae87cab1052ee0eebebe5a1ae19d9`" msgstr "" -#: ../../api/namespace_gwm.rst:131 +#: ../../api/namespace_gwm.rst:139 msgid "Functions" msgstr "" -#: ../../api/namespace_gwm.rst:134 +#: ../../api/namespace_gwm.rst:142 msgid ":ref:`exhale_function_Logger_8h_1a4c6d814c9e79f32979fa8c78c2024ff9`" msgstr "" -#: ../../api/namespace_gwm.rst:138 +#: ../../api/namespace_gwm.rst:146 msgid "Typedefs" msgstr "类型别名" -#: ../../api/namespace_gwm.rst:141 +#: ../../api/namespace_gwm.rst:149 msgid ":ref:`exhale_typedef_IBandwidthSelectable_8h_1ae90108073e4144ac3fbed1a68bb44031`" msgstr "" -#: ../../api/namespace_gwm.rst:143 +#: ../../api/namespace_gwm.rst:151 msgid ":ref:`exhale_typedef_Distance_8h_1adde2a58509603bef6a9754d22a56959e`" msgstr "" -#: ../../api/namespace_gwm.rst:145 +#: ../../api/namespace_gwm.rst:153 msgid ":ref:`exhale_typedef_IVarialbeSelectable_8h_1a11df23b545f168e1d3deefab7ee99ba9`" msgstr "" @@ -275,3 +291,15 @@ msgstr "" #~ msgid ":ref:`exhale_class_classgwm_1_1GWDRBandwidthOptimizer`" #~ msgstr "" +#~ msgid ":ref:`exhale_struct_structgwm_1_1SDRBandwidthOptimizer_1_1Parameter`" +#~ msgstr "" + +#~ msgid ":ref:`exhale_class_classgwm_1_1GWSS`" +#~ msgstr "" + +#~ msgid ":ref:`exhale_class_classgwm_1_1SDR`" +#~ msgstr "" + +#~ msgid ":ref:`exhale_class_classgwm_1_1SDRBandwidthOptimizer`" +#~ msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_armadillo_config.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_armadillo_config.h.po new file mode 100644 index 00000000..f15a0b99 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_armadillo_config.h.po @@ -0,0 +1,31 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2025. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/program_listing_file_include_armadillo_config.h.rst:5 +msgid "Program Listing for File armadillo_config.h" +msgstr "" + +#: ../../api/program_listing_file_include_armadillo_config.h.rst:7 +msgid "" +"|exhale_lsh| :ref:`Return to documentation for file " +"` (``include/armadillo_config.h``)" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_GTDR.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_GTDR.h.po new file mode 100644 index 00000000..7fc36520 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_GTDR.h.po @@ -0,0 +1,31 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2025. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/program_listing_file_include_gwmodelpp_GTDR.h.rst:5 +msgid "Program Listing for File GTDR.h" +msgstr "" + +#: ../../api/program_listing_file_include_gwmodelpp_GTDR.h.rst:7 +msgid "" +"|exhale_lsh| :ref:`Return to documentation for file " +"` (``include/gwmodelpp/GTDR.h``)" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_GWAverage.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_GWAverage.h.po new file mode 100644 index 00000000..2df690ce --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_GWAverage.h.po @@ -0,0 +1,31 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2025. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/program_listing_file_include_gwmodelpp_GWAverage.h.rst:5 +msgid "Program Listing for File GWAverage.h" +msgstr "" + +#: ../../api/program_listing_file_include_gwmodelpp_GWAverage.h.rst:7 +msgid "" +"|exhale_lsh| :ref:`Return to documentation for file " +"` (``include/gwmodelpp/GWAverage.h``)" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_GWCorrelation.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_GWCorrelation.h.po new file mode 100644 index 00000000..7f96cf3e --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_GWCorrelation.h.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2025. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/program_listing_file_include_gwmodelpp_GWCorrelation.h.rst:5 +msgid "Program Listing for File GWCorrelation.h" +msgstr "" + +#: ../../api/program_listing_file_include_gwmodelpp_GWCorrelation.h.rst:7 +msgid "" +"|exhale_lsh| :ref:`Return to documentation for file " +"` " +"(``include/gwmodelpp/GWCorrelation.h``)" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_utils_armampi.h.po b/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_utils_armampi.h.po new file mode 100644 index 00000000..56f39647 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/program_listing_file_include_gwmodelpp_utils_armampi.h.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2025. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/program_listing_file_include_gwmodelpp_utils_armampi.h.rst:5 +msgid "Program Listing for File armampi.h" +msgstr "" + +#: ../../api/program_listing_file_include_gwmodelpp_utils_armampi.h.rst:7 +msgid "" +"|exhale_lsh| :ref:`Return to documentation for file " +"` " +"(``include/gwmodelpp/utils/armampi.h``)" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1GTDRBandwidthOptimizer_1_1Parameter.po b/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1GTDRBandwidthOptimizer_1_1Parameter.po new file mode 100644 index 00000000..1852f076 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1GTDRBandwidthOptimizer_1_1Parameter.po @@ -0,0 +1,47 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2025. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/structgwm_1_1GTDRBandwidthOptimizer_1_1Parameter.rst:4 +msgid "Struct GTDRBandwidthOptimizer::Parameter" +msgstr "" + +#: ../../api/structgwm_1_1GTDRBandwidthOptimizer_1_1Parameter.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_GTDR.h`" +msgstr "" + +#: ../../api/structgwm_1_1GTDRBandwidthOptimizer_1_1Parameter.rst:10 +msgid "Nested Relationships" +msgstr "" + +#: ../../api/structgwm_1_1GTDRBandwidthOptimizer_1_1Parameter.rst:12 +msgid "" +"This struct is a nested type of " +":ref:`exhale_class_classgwm_1_1GTDRBandwidthOptimizer`." +msgstr "" + +#: ../../api/structgwm_1_1GTDRBandwidthOptimizer_1_1Parameter.rst:16 +msgid "Struct Documentation" +msgstr "" + +#: ../../api/structgwm_1_1GTDRBandwidthOptimizer_1_1Parameter.rst +msgid "Public Members" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1GTWR_1_1Parameter.po b/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1GTWR_1_1Parameter.po new file mode 100644 index 00000000..9e1dd20d --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1GTWR_1_1Parameter.po @@ -0,0 +1,45 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2025. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/structgwm_1_1GTWR_1_1Parameter.rst:4 +msgid "Struct GTWR::Parameter" +msgstr "" + +#: ../../api/structgwm_1_1GTWR_1_1Parameter.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_GTWR.h`" +msgstr "" + +#: ../../api/structgwm_1_1GTWR_1_1Parameter.rst:10 +msgid "Nested Relationships" +msgstr "" + +#: ../../api/structgwm_1_1GTWR_1_1Parameter.rst:12 +msgid "This struct is a nested type of :ref:`exhale_class_classgwm_1_1GTWR`." +msgstr "" + +#: ../../api/structgwm_1_1GTWR_1_1Parameter.rst:16 +msgid "Struct Documentation" +msgstr "" + +#: ../../api/structgwm_1_1GTWR_1_1Parameter.rst +msgid "Public Members" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IBandwidthSelectable.po b/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IBandwidthSelectable.po index 848a7a59..f0a90d13 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IBandwidthSelectable.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IBandwidthSelectable.po @@ -5,19 +5,18 @@ # msgid "" msgstr "" -"Project-Id-Version: libgwmodel\n" +"Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" "PO-Revision-Date: 2024-02-07 12:42+0000\n" "Last-Translator: Yigong Hu \n" -"Language-Team: \n" "Language: zh_CN\n" +"Language-Team: \n" +"Plural-Forms: nplurals=1; plural=0;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" "Generated-By: Babel 2.11.0\n" -"X-Generator: Poedit 3.4.2\n" #: ../../api/structgwm_1_1IBandwidthSelectable.rst:4 msgid "Struct IBandwidthSelectable" @@ -40,28 +39,34 @@ msgid "``public gwm::GTWR`` (:ref:`exhale_class_classgwm_1_1GTWR`)" msgstr "" #: ../../api/structgwm_1_1IBandwidthSelectable.rst:16 -msgid "``public gwm::GWRBasic`` (:ref:`exhale_class_classgwm_1_1GWRBasic`)" +msgid "" +"``public gwm::GWCorrelation`` " +"(:ref:`exhale_class_classgwm_1_1GWCorrelation`)" msgstr "" #: ../../api/structgwm_1_1IBandwidthSelectable.rst:17 -msgid "" -"``public gwm::GWRGeneralized`` (:ref:" -"`exhale_class_classgwm_1_1GWRGeneralized`)" +msgid "``public gwm::GWRBasic`` (:ref:`exhale_class_classgwm_1_1GWRBasic`)" msgstr "" #: ../../api/structgwm_1_1IBandwidthSelectable.rst:18 msgid "" -"``public gwm::GWRLocalCollinearity`` (:ref:" -"`exhale_class_classgwm_1_1GWRLocalCollinearity`)" +"``public gwm::GWRGeneralized`` " +"(:ref:`exhale_class_classgwm_1_1GWRGeneralized`)" msgstr "" #: ../../api/structgwm_1_1IBandwidthSelectable.rst:19 msgid "" -"``public gwm::GWRMultiscale`` (:ref:" -"`exhale_class_classgwm_1_1GWRMultiscale`)" +"``public gwm::GWRLocalCollinearity`` " +"(:ref:`exhale_class_classgwm_1_1GWRLocalCollinearity`)" +msgstr "" + +#: ../../api/structgwm_1_1IBandwidthSelectable.rst:20 +msgid "" +"``public gwm::GWRMultiscale`` " +"(:ref:`exhale_class_classgwm_1_1GWRMultiscale`)" msgstr "" -#: ../../api/structgwm_1_1IBandwidthSelectable.rst:23 +#: ../../api/structgwm_1_1IBandwidthSelectable.rst:24 msgid "Struct Documentation" msgstr "结构体文档" @@ -80,3 +85,4 @@ msgstr "返回" #: ../../api/structgwm_1_1IBandwidthSelectable.rst msgid "Public Static Functions" msgstr "公有成员函数" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IMultivariableAnalysis.po b/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IMultivariableAnalysis.po index 77b8e3be..6ef53b2b 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IMultivariableAnalysis.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IMultivariableAnalysis.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" "PO-Revision-Date: 2023-01-31 16:08+0000\n" "Last-Translator: Yigong Hu \n" "Language: zh_CN\n" @@ -35,15 +35,15 @@ msgid "Derived Types" msgstr "派生类" #: ../../api/structgwm_1_1IMultivariableAnalysis.rst:15 -msgid "``public gwm::GWDA`` (:ref:`exhale_class_classgwm_1_1GWDA`)" +msgid "``public gwm::GWAverage`` (:ref:`exhale_class_classgwm_1_1GWAverage`)" msgstr "" #: ../../api/structgwm_1_1IMultivariableAnalysis.rst:16 -msgid "``public gwm::GWPCA`` (:ref:`exhale_class_classgwm_1_1GWPCA`)" +msgid "``public gwm::GWDA`` (:ref:`exhale_class_classgwm_1_1GWDA`)" msgstr "" #: ../../api/structgwm_1_1IMultivariableAnalysis.rst:17 -msgid "``public gwm::GWSS`` (:ref:`exhale_class_classgwm_1_1GWSS`)" +msgid "``public gwm::GWPCA`` (:ref:`exhale_class_classgwm_1_1GWPCA`)" msgstr "" #: ../../api/structgwm_1_1IMultivariableAnalysis.rst:21 @@ -62,3 +62,6 @@ msgstr "返回" msgid "Parameters" msgstr "参数" +#~ msgid "``public gwm::GWSS`` (:ref:`exhale_class_classgwm_1_1GWSS`)" +#~ msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IMultivariateAnalysis.po b/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IMultivariateAnalysis.po new file mode 100644 index 00000000..1ad62b79 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IMultivariateAnalysis.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2025. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/structgwm_1_1IMultivariateAnalysis.rst:4 +msgid "Struct IMultivariateAnalysis" +msgstr "" + +#: ../../api/structgwm_1_1IMultivariateAnalysis.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_IMultivariableAnalysis.h`" +msgstr "" + +#: ../../api/structgwm_1_1IMultivariateAnalysis.rst:10 +msgid "Inheritance Relationships" +msgstr "" + +#: ../../api/structgwm_1_1IMultivariateAnalysis.rst:13 +msgid "Derived Type" +msgstr "" + +#: ../../api/structgwm_1_1IMultivariateAnalysis.rst:15 +msgid "" +"``public gwm::GWCorrelation`` " +"(:ref:`exhale_class_classgwm_1_1GWCorrelation`)" +msgstr "" + +#: ../../api/structgwm_1_1IMultivariateAnalysis.rst:19 +msgid "Struct Documentation" +msgstr "" + +#: ../../api/structgwm_1_1IMultivariateAnalysis.rst +msgid "Public Functions" +msgstr "" + +#: ../../api/structgwm_1_1IMultivariateAnalysis.rst +msgid "Returns" +msgstr "" + +#: ../../api/structgwm_1_1IMultivariateAnalysis.rst +msgid "Parameters" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IParallelMpiEnabled.po b/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IParallelMpiEnabled.po new file mode 100644 index 00000000..75c15713 --- /dev/null +++ b/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IParallelMpiEnabled.po @@ -0,0 +1,55 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2023, GWmodel Lab +# This file is distributed under the same license as the libgwmodel package. +# FIRST AUTHOR , 2025. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: libgwmodel \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: zh_CN\n" +"Language-Team: zh_CN \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: ../../api/structgwm_1_1IParallelMpiEnabled.rst:4 +msgid "Struct IParallelMpiEnabled" +msgstr "" + +#: ../../api/structgwm_1_1IParallelMpiEnabled.rst:6 +msgid "Defined in :ref:`file_include_gwmodelpp_IParallelizable.h`" +msgstr "" + +#: ../../api/structgwm_1_1IParallelMpiEnabled.rst:10 +msgid "Inheritance Relationships" +msgstr "" + +#: ../../api/structgwm_1_1IParallelMpiEnabled.rst:13 +msgid "Derived Types" +msgstr "" + +#: ../../api/structgwm_1_1IParallelMpiEnabled.rst:15 +msgid "``public gwm::GWRBasic`` (:ref:`exhale_class_classgwm_1_1GWRBasic`)" +msgstr "" + +#: ../../api/structgwm_1_1IParallelMpiEnabled.rst:16 +msgid "" +"``public gwm::GWRMultiscale`` " +"(:ref:`exhale_class_classgwm_1_1GWRMultiscale`)" +msgstr "" + +#: ../../api/structgwm_1_1IParallelMpiEnabled.rst:20 +msgid "Struct Documentation" +msgstr "" + +#: ../../api/structgwm_1_1IParallelMpiEnabled.rst +msgid "Public Functions" +msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IParallelOpenmpEnabled.po b/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IParallelOpenmpEnabled.po index ed6bd833..0ff0957e 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IParallelOpenmpEnabled.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IParallelOpenmpEnabled.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" "PO-Revision-Date: 2023-01-31 16:08+0000\n" "Last-Translator: Yigong Hu \n" "Language: zh_CN\n" @@ -35,44 +35,50 @@ msgid "Derived Types" msgstr "派生类" #: ../../api/structgwm_1_1IParallelOpenmpEnabled.rst:15 -msgid "``public gwm::GTWR`` (:ref:`exhale_class_classgwm_1_1GTWR`)" +msgid "``public gwm::GTDR`` (:ref:`exhale_class_classgwm_1_1GTDR`)" msgstr "" #: ../../api/structgwm_1_1IParallelOpenmpEnabled.rst:16 -msgid "``public gwm::GWDA`` (:ref:`exhale_class_classgwm_1_1GWDA`)" +msgid "``public gwm::GTWR`` (:ref:`exhale_class_classgwm_1_1GTWR`)" msgstr "" #: ../../api/structgwm_1_1IParallelOpenmpEnabled.rst:17 -msgid "``public gwm::GWRBasic`` (:ref:`exhale_class_classgwm_1_1GWRBasic`)" +msgid "``public gwm::GWAverage`` (:ref:`exhale_class_classgwm_1_1GWAverage`)" msgstr "" #: ../../api/structgwm_1_1IParallelOpenmpEnabled.rst:18 msgid "" -"``public gwm::GWRGeneralized`` " -"(:ref:`exhale_class_classgwm_1_1GWRGeneralized`)" +"``public gwm::GWCorrelation`` " +"(:ref:`exhale_class_classgwm_1_1GWCorrelation`)" msgstr "" #: ../../api/structgwm_1_1IParallelOpenmpEnabled.rst:19 -msgid "" -"``public gwm::GWRLocalCollinearity`` " -"(:ref:`exhale_class_classgwm_1_1GWRLocalCollinearity`)" +msgid "``public gwm::GWDA`` (:ref:`exhale_class_classgwm_1_1GWDA`)" msgstr "" #: ../../api/structgwm_1_1IParallelOpenmpEnabled.rst:20 -msgid "" -"``public gwm::GWRMultiscale`` " -"(:ref:`exhale_class_classgwm_1_1GWRMultiscale`)" +msgid "``public gwm::GWRBasic`` (:ref:`exhale_class_classgwm_1_1GWRBasic`)" msgstr "" #: ../../api/structgwm_1_1IParallelOpenmpEnabled.rst:21 -msgid "``public gwm::GWSS`` (:ref:`exhale_class_classgwm_1_1GWSS`)" +msgid "" +"``public gwm::GWRGeneralized`` " +"(:ref:`exhale_class_classgwm_1_1GWRGeneralized`)" msgstr "" #: ../../api/structgwm_1_1IParallelOpenmpEnabled.rst:22 -msgid "``public gwm::SDR`` (:ref:`exhale_class_classgwm_1_1SDR`)" +msgid "" +"``public gwm::GWRLocalCollinearity`` " +"(:ref:`exhale_class_classgwm_1_1GWRLocalCollinearity`)" +msgstr "" + +#: ../../api/structgwm_1_1IParallelOpenmpEnabled.rst:23 +msgid "" +"``public gwm::GWRMultiscale`` " +"(:ref:`exhale_class_classgwm_1_1GWRMultiscale`)" msgstr "" -#: ../../api/structgwm_1_1IParallelOpenmpEnabled.rst:26 +#: ../../api/structgwm_1_1IParallelOpenmpEnabled.rst:27 msgid "Struct Documentation" msgstr "结构体文档" @@ -87,3 +93,9 @@ msgstr "参数" #~ msgid "``public gwm::GWDR`` (:ref:`exhale_class_classgwm_1_1GWDR`)" #~ msgstr "" +#~ msgid "``public gwm::GWSS`` (:ref:`exhale_class_classgwm_1_1GWSS`)" +#~ msgstr "" + +#~ msgid "``public gwm::SDR`` (:ref:`exhale_class_classgwm_1_1SDR`)" +#~ msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IParallelizable.po b/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IParallelizable.po index 47abceb0..5cc02079 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IParallelizable.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IParallelizable.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" "PO-Revision-Date: 2023-01-31 16:08+0000\n" "Last-Translator: Yigong Hu \n" "Language: zh_CN\n" @@ -35,44 +35,50 @@ msgid "Derived Types" msgstr "派生类" #: ../../api/structgwm_1_1IParallelizable.rst:15 -msgid "``public gwm::GTWR`` (:ref:`exhale_class_classgwm_1_1GTWR`)" +msgid "``public gwm::GTDR`` (:ref:`exhale_class_classgwm_1_1GTDR`)" msgstr "" #: ../../api/structgwm_1_1IParallelizable.rst:16 -msgid "``public gwm::GWDA`` (:ref:`exhale_class_classgwm_1_1GWDA`)" +msgid "``public gwm::GTWR`` (:ref:`exhale_class_classgwm_1_1GTWR`)" msgstr "" #: ../../api/structgwm_1_1IParallelizable.rst:17 -msgid "``public gwm::GWRBasic`` (:ref:`exhale_class_classgwm_1_1GWRBasic`)" +msgid "``public gwm::GWAverage`` (:ref:`exhale_class_classgwm_1_1GWAverage`)" msgstr "" #: ../../api/structgwm_1_1IParallelizable.rst:18 msgid "" -"``public gwm::GWRGeneralized`` " -"(:ref:`exhale_class_classgwm_1_1GWRGeneralized`)" +"``public gwm::GWCorrelation`` " +"(:ref:`exhale_class_classgwm_1_1GWCorrelation`)" msgstr "" #: ../../api/structgwm_1_1IParallelizable.rst:19 -msgid "" -"``public gwm::GWRLocalCollinearity`` " -"(:ref:`exhale_class_classgwm_1_1GWRLocalCollinearity`)" +msgid "``public gwm::GWDA`` (:ref:`exhale_class_classgwm_1_1GWDA`)" msgstr "" #: ../../api/structgwm_1_1IParallelizable.rst:20 -msgid "" -"``public gwm::GWRMultiscale`` " -"(:ref:`exhale_class_classgwm_1_1GWRMultiscale`)" +msgid "``public gwm::GWRBasic`` (:ref:`exhale_class_classgwm_1_1GWRBasic`)" msgstr "" #: ../../api/structgwm_1_1IParallelizable.rst:21 -msgid "``public gwm::GWSS`` (:ref:`exhale_class_classgwm_1_1GWSS`)" +msgid "" +"``public gwm::GWRGeneralized`` " +"(:ref:`exhale_class_classgwm_1_1GWRGeneralized`)" msgstr "" #: ../../api/structgwm_1_1IParallelizable.rst:22 -msgid "``public gwm::SDR`` (:ref:`exhale_class_classgwm_1_1SDR`)" +msgid "" +"``public gwm::GWRLocalCollinearity`` " +"(:ref:`exhale_class_classgwm_1_1GWRLocalCollinearity`)" +msgstr "" + +#: ../../api/structgwm_1_1IParallelizable.rst:23 +msgid "" +"``public gwm::GWRMultiscale`` " +"(:ref:`exhale_class_classgwm_1_1GWRMultiscale`)" msgstr "" -#: ../../api/structgwm_1_1IParallelizable.rst:26 +#: ../../api/structgwm_1_1IParallelizable.rst:27 msgid "Struct Documentation" msgstr "结构体文档" @@ -91,3 +97,9 @@ msgstr "参数" #~ msgid "``public gwm::GWDR`` (:ref:`exhale_class_classgwm_1_1GWDR`)" #~ msgstr "" +#~ msgid "``public gwm::GWSS`` (:ref:`exhale_class_classgwm_1_1GWSS`)" +#~ msgstr "" + +#~ msgid "``public gwm::SDR`` (:ref:`exhale_class_classgwm_1_1SDR`)" +#~ msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IRegressionAnalysis.po b/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IRegressionAnalysis.po index df37a094..7da4c421 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IRegressionAnalysis.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IRegressionAnalysis.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" "PO-Revision-Date: 2023-01-31 16:08+0000\n" "Last-Translator: Yigong Hu \n" "Language: zh_CN\n" @@ -35,17 +35,17 @@ msgid "Derived Types" msgstr "派生类" #: ../../api/structgwm_1_1IRegressionAnalysis.rst:15 -msgid "``public gwm::GWRBase`` (:ref:`exhale_class_classgwm_1_1GWRBase`)" +msgid "``public gwm::GTDR`` (:ref:`exhale_class_classgwm_1_1GTDR`)" msgstr "" #: ../../api/structgwm_1_1IRegressionAnalysis.rst:16 -msgid "" -"``public gwm::GWRMultiscale`` " -"(:ref:`exhale_class_classgwm_1_1GWRMultiscale`)" +msgid "``public gwm::GWRBase`` (:ref:`exhale_class_classgwm_1_1GWRBase`)" msgstr "" #: ../../api/structgwm_1_1IRegressionAnalysis.rst:17 -msgid "``public gwm::SDR`` (:ref:`exhale_class_classgwm_1_1SDR`)" +msgid "" +"``public gwm::GWRMultiscale`` " +"(:ref:`exhale_class_classgwm_1_1GWRMultiscale`)" msgstr "" #: ../../api/structgwm_1_1IRegressionAnalysis.rst:21 @@ -67,3 +67,6 @@ msgstr "参数" #~ msgid "``public gwm::GWDR`` (:ref:`exhale_class_classgwm_1_1GWDR`)" #~ msgstr "" +#~ msgid "``public gwm::SDR`` (:ref:`exhale_class_classgwm_1_1SDR`)" +#~ msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IVarialbeSelectable.po b/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IVarialbeSelectable.po index db888cc9..82f00b4d 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IVarialbeSelectable.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1IVarialbeSelectable.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: libgwmodel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" "PO-Revision-Date: 2023-01-31 16:09+0000\n" "Last-Translator: Yigong Hu \n" "Language: zh_CN\n" @@ -35,11 +35,11 @@ msgid "Derived Types" msgstr "派生类" #: ../../api/structgwm_1_1IVarialbeSelectable.rst:15 -msgid "``public gwm::GWRBasic`` (:ref:`exhale_class_classgwm_1_1GWRBasic`)" +msgid "``public gwm::GTDR`` (:ref:`exhale_class_classgwm_1_1GTDR`)" msgstr "" #: ../../api/structgwm_1_1IVarialbeSelectable.rst:16 -msgid "``public gwm::SDR`` (:ref:`exhale_class_classgwm_1_1SDR`)" +msgid "``public gwm::GWRBasic`` (:ref:`exhale_class_classgwm_1_1GWRBasic`)" msgstr "" #: ../../api/structgwm_1_1IVarialbeSelectable.rst:20 @@ -66,3 +66,6 @@ msgstr "公有成员函数" #~ msgid "``public gwm::GWDR`` (:ref:`exhale_class_classgwm_1_1GWDR`)" #~ msgstr "" +#~ msgid "``public gwm::SDR`` (:ref:`exhale_class_classgwm_1_1SDR`)" +#~ msgstr "" + diff --git a/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1SDRBandwidthOptimizer_1_1Parameter.po b/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1SDRBandwidthOptimizer_1_1Parameter.po index c143f041..0f2eacff 100644 --- a/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1SDRBandwidthOptimizer_1_1Parameter.po +++ b/docs/locale/zh_CN/LC_MESSAGES/api/structgwm_1_1SDRBandwidthOptimizer_1_1Parameter.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: libgwmodel \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-07 12:00+0000\n" +"POT-Creation-Date: 2025-02-23 13:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language: zh_CN\n" @@ -41,7 +41,6 @@ msgstr "" msgid "Struct Documentation" msgstr "" -#: ../../api/structgwm_1_1SDRBandwidthOptimizer_1_1Parameter.rst -msgid "Public Members" -msgstr "" +#~ msgid "Public Members" +#~ msgstr ""