| 400 | } |
| 401 | |
| 402 | std::vector<std::string> InitializationConfigs() { |
| 403 | std::vector<std::string> configs = { |
| 404 | "hk2s", "hk2t", "jp2t", "s2hk", "s2t", "s2tw", "s2twp", |
| 405 | "t2hk", "t2jp", "t2s", "t2tw", "tw2s", "tw2sp", "tw2t", |
| 406 | }; |
| 407 | #ifdef OPENCC_BENCHMARK_JIEBA_CONFIG_DIR |
| 408 | configs.push_back("s2twp_jieba"); |
| 409 | #endif |
| 410 | return configs; |
| 411 | } |
| 412 | |
| 413 | std::vector<std::string> ConversionConfigs() { |
| 414 | std::vector<std::string> configs = {"s2t", "s2twp"}; |
no test coverage detected