├── Fast-PTransE ├── LICENSE ├── PCRA.py ├── README.md ├── dependency │ └── boost │ │ ├── assert.hpp │ │ ├── config.hpp │ │ ├── config │ │ ├── abi │ │ │ ├── borland_prefix.hpp │ │ │ ├── borland_suffix.hpp │ │ │ ├── msvc_prefix.hpp │ │ │ └── msvc_suffix.hpp │ │ ├── abi_prefix.hpp │ │ ├── abi_suffix.hpp │ │ ├── auto_link.hpp │ │ ├── compiler │ │ │ ├── borland.hpp │ │ │ ├── clang.hpp │ │ │ ├── codegear.hpp │ │ │ ├── comeau.hpp │ │ │ ├── common_edg.hpp │ │ │ ├── compaq_cxx.hpp │ │ │ ├── cray.hpp │ │ │ ├── digitalmars.hpp │ │ │ ├── gcc.hpp │ │ │ ├── gcc_xml.hpp │ │ │ ├── greenhills.hpp │ │ │ ├── hp_acc.hpp │ │ │ ├── intel.hpp │ │ │ ├── kai.hpp │ │ │ ├── metrowerks.hpp │ │ │ ├── mpw.hpp │ │ │ ├── nvcc.hpp │ │ │ ├── pathscale.hpp │ │ │ ├── pgi.hpp │ │ │ ├── sgi_mipspro.hpp │ │ │ ├── sunpro_cc.hpp │ │ │ ├── vacpp.hpp │ │ │ ├── visualc.hpp │ │ │ └── xlcpp.hpp │ │ ├── no_tr1 │ │ │ ├── cmath.hpp │ │ │ ├── complex.hpp │ │ │ ├── functional.hpp │ │ │ ├── memory.hpp │ │ │ └── utility.hpp │ │ ├── platform │ │ │ ├── aix.hpp │ │ │ ├── amigaos.hpp │ │ │ ├── beos.hpp │ │ │ ├── bsd.hpp │ │ │ ├── cloudabi.hpp │ │ │ ├── cray.hpp │ │ │ ├── cygwin.hpp │ │ │ ├── haiku.hpp │ │ │ ├── hpux.hpp │ │ │ ├── irix.hpp │ │ │ ├── linux.hpp │ │ │ ├── macos.hpp │ │ │ ├── qnxnto.hpp │ │ │ ├── solaris.hpp │ │ │ ├── symbian.hpp │ │ │ ├── vms.hpp │ │ │ ├── vxworks.hpp │ │ │ └── win32.hpp │ │ ├── posix_features.hpp │ │ ├── requires_threads.hpp │ │ ├── select_compiler_config.hpp │ │ ├── select_platform_config.hpp │ │ ├── select_stdlib_config.hpp │ │ ├── stdlib │ │ │ ├── dinkumware.hpp │ │ │ ├── libcomo.hpp │ │ │ ├── libcpp.hpp │ │ │ ├── libstdcpp3.hpp │ │ │ ├── modena.hpp │ │ │ ├── msl.hpp │ │ │ ├── roguewave.hpp │ │ │ ├── sgi.hpp │ │ │ ├── stlport.hpp │ │ │ └── vacpp.hpp │ │ ├── suffix.hpp │ │ ├── user.hpp │ │ └── warning_disable.hpp │ │ ├── core │ │ └── enable_if.hpp │ │ ├── cstdint.hpp │ │ ├── current_function.hpp │ │ ├── detail │ │ ├── container_fwd.hpp │ │ └── workaround.hpp │ │ ├── functional │ │ ├── hash.hpp │ │ └── hash │ │ │ ├── detail │ │ │ ├── float_functions.hpp │ │ │ ├── hash_float.hpp │ │ │ └── limits.hpp │ │ │ ├── extensions.hpp │ │ │ ├── hash.hpp │ │ │ └── hash_fwd.hpp │ │ ├── integer │ │ └── static_log2.hpp │ │ ├── integer_fwd.hpp │ │ ├── limits.hpp │ │ ├── preprocessor │ │ ├── arithmetic │ │ │ ├── add.hpp │ │ │ ├── dec.hpp │ │ │ ├── inc.hpp │ │ │ └── sub.hpp │ │ ├── cat.hpp │ │ ├── config │ │ │ └── config.hpp │ │ ├── control │ │ │ ├── detail │ │ │ │ ├── dmc │ │ │ │ │ └── while.hpp │ │ │ │ ├── edg │ │ │ │ │ └── while.hpp │ │ │ │ ├── msvc │ │ │ │ │ └── while.hpp │ │ │ │ └── while.hpp │ │ │ ├── expr_iif.hpp │ │ │ ├── if.hpp │ │ │ ├── iif.hpp │ │ │ └── while.hpp │ │ ├── debug │ │ │ └── error.hpp │ │ ├── detail │ │ │ ├── auto_rec.hpp │ │ │ ├── check.hpp │ │ │ ├── dmc │ │ │ │ └── auto_rec.hpp │ │ │ ├── is_binary.hpp │ │ │ └── split.hpp │ │ ├── facilities │ │ │ ├── detail │ │ │ │ └── is_empty.hpp │ │ │ ├── empty.hpp │ │ │ ├── expand.hpp │ │ │ ├── identity.hpp │ │ │ ├── is_1.hpp │ │ │ ├── is_empty.hpp │ │ │ ├── is_empty_variadic.hpp │ │ │ └── overload.hpp │ │ ├── list │ │ │ ├── adt.hpp │ │ │ ├── detail │ │ │ │ ├── dmc │ │ │ │ │ └── fold_left.hpp │ │ │ │ ├── edg │ │ │ │ │ ├── fold_left.hpp │ │ │ │ │ └── fold_right.hpp │ │ │ │ ├── fold_left.hpp │ │ │ │ └── fold_right.hpp │ │ │ ├── fold_left.hpp │ │ │ ├── fold_right.hpp │ │ │ └── reverse.hpp │ │ ├── logical │ │ │ ├── bitand.hpp │ │ │ ├── bool.hpp │ │ │ └── compl.hpp │ │ ├── punctuation │ │ │ ├── comma.hpp │ │ │ ├── comma_if.hpp │ │ │ ├── detail │ │ │ │ └── is_begin_parens.hpp │ │ │ └── is_begin_parens.hpp │ │ ├── repetition │ │ │ ├── enum_params.hpp │ │ │ ├── repeat.hpp │ │ │ └── repeat_from_to.hpp │ │ ├── tuple │ │ │ ├── detail │ │ │ │ └── is_single_return.hpp │ │ │ ├── eat.hpp │ │ │ ├── elem.hpp │ │ │ ├── rem.hpp │ │ │ └── size.hpp │ │ └── variadic │ │ │ ├── elem.hpp │ │ │ └── size.hpp │ │ ├── static_assert.hpp │ │ ├── type_traits │ │ ├── add_lvalue_reference.hpp │ │ ├── add_reference.hpp │ │ ├── add_rvalue_reference.hpp │ │ ├── declval.hpp │ │ ├── detail │ │ │ ├── config.hpp │ │ │ ├── is_function_ptr_helper.hpp │ │ │ ├── is_function_ptr_tester.hpp │ │ │ ├── is_mem_fun_pointer_impl.hpp │ │ │ ├── is_mem_fun_pointer_tester.hpp │ │ │ └── yes_no_type.hpp │ │ ├── integral_constant.hpp │ │ ├── intrinsics.hpp │ │ ├── is_abstract.hpp │ │ ├── is_arithmetic.hpp │ │ ├── is_array.hpp │ │ ├── is_class.hpp │ │ ├── is_convertible.hpp │ │ ├── is_enum.hpp │ │ ├── is_floating_point.hpp │ │ ├── is_function.hpp │ │ ├── is_integral.hpp │ │ ├── is_lvalue_reference.hpp │ │ ├── is_member_function_pointer.hpp │ │ ├── is_member_pointer.hpp │ │ ├── is_pointer.hpp │ │ ├── is_polymorphic.hpp │ │ ├── is_reference.hpp │ │ ├── is_rvalue_reference.hpp │ │ ├── is_same.hpp │ │ ├── is_scalar.hpp │ │ ├── is_union.hpp │ │ ├── is_void.hpp │ │ ├── is_volatile.hpp │ │ ├── remove_cv.hpp │ │ └── remove_reference.hpp │ │ ├── utility │ │ └── enable_if.hpp │ │ └── version.hpp ├── hashing.h └── ptranse.cpp ├── LICENSE ├── README.md ├── data ├── FB15K │ ├── 1-1.txt │ ├── 1-n.txt │ ├── entity2id.txt │ ├── n-1.txt │ ├── n-n.py │ ├── n-n.txt │ ├── relation2id.txt │ ├── test2id.txt │ ├── test2id_all.txt │ ├── train2id.txt │ ├── type_constrain.txt │ └── valid2id.txt └── WN18 │ ├── 1-1.txt │ ├── 1-n.txt │ ├── entity2id.txt │ ├── n-1.txt │ ├── n-n.py │ ├── n-n.txt │ ├── relation2id.txt │ ├── test2id.txt │ ├── test2id_all.txt │ ├── train2id.txt │ ├── type_constrain.txt │ └── valid2id.txt ├── tranSparse └── TranSparse.cpp ├── transD ├── test_transD.cpp └── transD.cpp ├── transE ├── test_transE.cpp └── transE.cpp ├── transH ├── test_transH.cpp └── transH.cpp └── transR ├── test_transR.cpp └── transR.cpp /Fast-PTransE/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/LICENSE -------------------------------------------------------------------------------- /Fast-PTransE/PCRA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/PCRA.py -------------------------------------------------------------------------------- /Fast-PTransE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/README.md -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/assert.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/abi/borland_prefix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/abi/borland_prefix.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/abi/borland_suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/abi/borland_suffix.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/abi/msvc_prefix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/abi/msvc_prefix.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/abi/msvc_suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/abi/msvc_suffix.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/abi_prefix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/abi_prefix.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/abi_suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/abi_suffix.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/auto_link.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/auto_link.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/compiler/borland.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/compiler/borland.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/compiler/clang.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/compiler/clang.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/compiler/codegear.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/compiler/codegear.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/compiler/comeau.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/compiler/comeau.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/compiler/common_edg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/compiler/common_edg.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/compiler/compaq_cxx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/compiler/compaq_cxx.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/compiler/cray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/compiler/cray.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/compiler/digitalmars.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/compiler/digitalmars.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/compiler/gcc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/compiler/gcc.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/compiler/gcc_xml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/compiler/gcc_xml.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/compiler/greenhills.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/compiler/greenhills.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/compiler/hp_acc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/compiler/hp_acc.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/compiler/intel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/compiler/intel.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/compiler/kai.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/compiler/kai.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/compiler/metrowerks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/compiler/metrowerks.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/compiler/mpw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/compiler/mpw.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/compiler/nvcc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/compiler/nvcc.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/compiler/pathscale.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/compiler/pathscale.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/compiler/pgi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/compiler/pgi.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/compiler/sgi_mipspro.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/compiler/sgi_mipspro.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/compiler/sunpro_cc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/compiler/sunpro_cc.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/compiler/vacpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/compiler/vacpp.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/compiler/visualc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/compiler/visualc.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/compiler/xlcpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/compiler/xlcpp.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/no_tr1/cmath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/no_tr1/cmath.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/no_tr1/complex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/no_tr1/complex.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/no_tr1/functional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/no_tr1/functional.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/no_tr1/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/no_tr1/memory.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/no_tr1/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/no_tr1/utility.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/platform/aix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/platform/aix.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/platform/amigaos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/platform/amigaos.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/platform/beos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/platform/beos.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/platform/bsd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/platform/bsd.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/platform/cloudabi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/platform/cloudabi.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/platform/cray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/platform/cray.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/platform/cygwin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/platform/cygwin.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/platform/haiku.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/platform/haiku.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/platform/hpux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/platform/hpux.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/platform/irix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/platform/irix.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/platform/linux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/platform/linux.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/platform/macos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/platform/macos.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/platform/qnxnto.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/platform/qnxnto.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/platform/solaris.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/platform/solaris.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/platform/symbian.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/platform/symbian.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/platform/vms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/platform/vms.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/platform/vxworks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/platform/vxworks.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/platform/win32.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/platform/win32.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/posix_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/posix_features.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/requires_threads.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/requires_threads.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/select_compiler_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/select_compiler_config.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/select_platform_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/select_platform_config.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/select_stdlib_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/select_stdlib_config.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/stdlib/dinkumware.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/stdlib/dinkumware.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/stdlib/libcomo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/stdlib/libcomo.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/stdlib/libcpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/stdlib/libcpp.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/stdlib/libstdcpp3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/stdlib/libstdcpp3.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/stdlib/modena.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/stdlib/modena.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/stdlib/msl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/stdlib/msl.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/stdlib/roguewave.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/stdlib/roguewave.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/stdlib/sgi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/stdlib/sgi.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/stdlib/stlport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/stdlib/stlport.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/stdlib/vacpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/stdlib/vacpp.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/suffix.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/user.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/user.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/config/warning_disable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/config/warning_disable.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/core/enable_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/core/enable_if.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/cstdint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/cstdint.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/current_function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/current_function.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/detail/container_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/detail/container_fwd.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/detail/workaround.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/detail/workaround.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/functional/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/functional/hash.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/functional/hash/detail/float_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/functional/hash/detail/float_functions.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/functional/hash/detail/hash_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/functional/hash/detail/hash_float.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/functional/hash/detail/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/functional/hash/detail/limits.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/functional/hash/extensions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/functional/hash/extensions.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/functional/hash/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/functional/hash/hash.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/functional/hash/hash_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/functional/hash/hash_fwd.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/integer/static_log2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/integer/static_log2.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/integer_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/integer_fwd.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/limits.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/arithmetic/add.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/arithmetic/add.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/arithmetic/dec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/arithmetic/dec.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/arithmetic/inc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/arithmetic/inc.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/arithmetic/sub.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/arithmetic/sub.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/cat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/cat.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/config/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/config/config.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/control/detail/dmc/while.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/control/detail/dmc/while.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/control/detail/edg/while.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/control/detail/edg/while.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/control/detail/msvc/while.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/control/detail/msvc/while.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/control/detail/while.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/control/detail/while.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/control/expr_iif.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/control/expr_iif.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/control/if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/control/if.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/control/iif.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/control/iif.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/control/while.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/control/while.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/debug/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/debug/error.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/detail/auto_rec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/detail/auto_rec.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/detail/check.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/detail/check.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/detail/dmc/auto_rec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/detail/dmc/auto_rec.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/detail/is_binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/detail/is_binary.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/detail/split.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/detail/split.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/facilities/detail/is_empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/facilities/detail/is_empty.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/facilities/empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/facilities/empty.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/facilities/expand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/facilities/expand.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/facilities/identity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/facilities/identity.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/facilities/is_1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/facilities/is_1.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/facilities/is_empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/facilities/is_empty.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/facilities/is_empty_variadic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/facilities/is_empty_variadic.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/facilities/overload.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/facilities/overload.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/list/adt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/list/adt.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/list/detail/dmc/fold_left.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/list/detail/dmc/fold_left.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/list/detail/edg/fold_left.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/list/detail/edg/fold_left.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/list/detail/edg/fold_right.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/list/detail/edg/fold_right.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/list/detail/fold_left.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/list/detail/fold_left.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/list/detail/fold_right.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/list/detail/fold_right.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/list/fold_left.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/list/fold_left.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/list/fold_right.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/list/fold_right.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/list/reverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/list/reverse.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/logical/bitand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/logical/bitand.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/logical/bool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/logical/bool.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/logical/compl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/logical/compl.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/punctuation/comma.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/punctuation/comma.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/punctuation/comma_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/punctuation/comma_if.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/punctuation/detail/is_begin_parens.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/punctuation/detail/is_begin_parens.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/punctuation/is_begin_parens.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/punctuation/is_begin_parens.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/repetition/enum_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/repetition/enum_params.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/repetition/repeat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/repetition/repeat.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/repetition/repeat_from_to.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/repetition/repeat_from_to.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/tuple/detail/is_single_return.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/tuple/detail/is_single_return.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/tuple/eat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/tuple/eat.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/tuple/elem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/tuple/elem.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/tuple/rem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/tuple/rem.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/tuple/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/tuple/size.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/variadic/elem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/variadic/elem.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/preprocessor/variadic/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/preprocessor/variadic/size.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/static_assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/static_assert.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/type_traits/add_lvalue_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/type_traits/add_lvalue_reference.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/type_traits/add_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/type_traits/add_reference.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/type_traits/add_rvalue_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/type_traits/add_rvalue_reference.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/type_traits/declval.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/type_traits/declval.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/type_traits/detail/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/type_traits/detail/config.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/type_traits/detail/is_function_ptr_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/type_traits/detail/is_function_ptr_helper.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/type_traits/detail/is_function_ptr_tester.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/type_traits/detail/is_function_ptr_tester.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/type_traits/detail/is_mem_fun_pointer_tester.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/type_traits/detail/is_mem_fun_pointer_tester.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/type_traits/detail/yes_no_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/type_traits/detail/yes_no_type.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/type_traits/integral_constant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/type_traits/integral_constant.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/type_traits/intrinsics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/type_traits/intrinsics.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/type_traits/is_abstract.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/type_traits/is_abstract.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/type_traits/is_arithmetic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/type_traits/is_arithmetic.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/type_traits/is_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/type_traits/is_array.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/type_traits/is_class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/type_traits/is_class.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/type_traits/is_convertible.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/type_traits/is_convertible.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/type_traits/is_enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/type_traits/is_enum.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/type_traits/is_floating_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/type_traits/is_floating_point.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/type_traits/is_function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/type_traits/is_function.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/type_traits/is_integral.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/type_traits/is_integral.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/type_traits/is_lvalue_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/type_traits/is_lvalue_reference.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/type_traits/is_member_function_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/type_traits/is_member_function_pointer.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/type_traits/is_member_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/type_traits/is_member_pointer.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/type_traits/is_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/type_traits/is_pointer.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/type_traits/is_polymorphic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/type_traits/is_polymorphic.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/type_traits/is_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/type_traits/is_reference.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/type_traits/is_rvalue_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/type_traits/is_rvalue_reference.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/type_traits/is_same.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/type_traits/is_same.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/type_traits/is_scalar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/type_traits/is_scalar.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/type_traits/is_union.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/type_traits/is_union.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/type_traits/is_void.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/type_traits/is_void.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/type_traits/is_volatile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/type_traits/is_volatile.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/type_traits/remove_cv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/type_traits/remove_cv.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/type_traits/remove_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/type_traits/remove_reference.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/utility/enable_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/utility/enable_if.hpp -------------------------------------------------------------------------------- /Fast-PTransE/dependency/boost/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/dependency/boost/version.hpp -------------------------------------------------------------------------------- /Fast-PTransE/hashing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/hashing.h -------------------------------------------------------------------------------- /Fast-PTransE/ptranse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/Fast-PTransE/ptranse.cpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/README.md -------------------------------------------------------------------------------- /data/FB15K/1-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/data/FB15K/1-1.txt -------------------------------------------------------------------------------- /data/FB15K/1-n.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/data/FB15K/1-n.txt -------------------------------------------------------------------------------- /data/FB15K/entity2id.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/data/FB15K/entity2id.txt -------------------------------------------------------------------------------- /data/FB15K/n-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/data/FB15K/n-1.txt -------------------------------------------------------------------------------- /data/FB15K/n-n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/data/FB15K/n-n.py -------------------------------------------------------------------------------- /data/FB15K/n-n.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/data/FB15K/n-n.txt -------------------------------------------------------------------------------- /data/FB15K/relation2id.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/data/FB15K/relation2id.txt -------------------------------------------------------------------------------- /data/FB15K/test2id.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/data/FB15K/test2id.txt -------------------------------------------------------------------------------- /data/FB15K/test2id_all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/data/FB15K/test2id_all.txt -------------------------------------------------------------------------------- /data/FB15K/train2id.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/data/FB15K/train2id.txt -------------------------------------------------------------------------------- /data/FB15K/type_constrain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/data/FB15K/type_constrain.txt -------------------------------------------------------------------------------- /data/FB15K/valid2id.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/data/FB15K/valid2id.txt -------------------------------------------------------------------------------- /data/WN18/1-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/data/WN18/1-1.txt -------------------------------------------------------------------------------- /data/WN18/1-n.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/data/WN18/1-n.txt -------------------------------------------------------------------------------- /data/WN18/entity2id.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/data/WN18/entity2id.txt -------------------------------------------------------------------------------- /data/WN18/n-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/data/WN18/n-1.txt -------------------------------------------------------------------------------- /data/WN18/n-n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/data/WN18/n-n.py -------------------------------------------------------------------------------- /data/WN18/n-n.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/data/WN18/n-n.txt -------------------------------------------------------------------------------- /data/WN18/relation2id.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/data/WN18/relation2id.txt -------------------------------------------------------------------------------- /data/WN18/test2id.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/data/WN18/test2id.txt -------------------------------------------------------------------------------- /data/WN18/test2id_all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/data/WN18/test2id_all.txt -------------------------------------------------------------------------------- /data/WN18/train2id.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/data/WN18/train2id.txt -------------------------------------------------------------------------------- /data/WN18/type_constrain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/data/WN18/type_constrain.txt -------------------------------------------------------------------------------- /data/WN18/valid2id.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/data/WN18/valid2id.txt -------------------------------------------------------------------------------- /tranSparse/TranSparse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/tranSparse/TranSparse.cpp -------------------------------------------------------------------------------- /transD/test_transD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/transD/test_transD.cpp -------------------------------------------------------------------------------- /transD/transD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/transD/transD.cpp -------------------------------------------------------------------------------- /transE/test_transE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/transE/test_transE.cpp -------------------------------------------------------------------------------- /transE/transE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/transE/transE.cpp -------------------------------------------------------------------------------- /transH/test_transH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/transH/test_transH.cpp -------------------------------------------------------------------------------- /transH/transH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/transH/transH.cpp -------------------------------------------------------------------------------- /transR/test_transR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/transR/test_transR.cpp -------------------------------------------------------------------------------- /transR/transR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/Fast-TransX/HEAD/transR/transR.cpp --------------------------------------------------------------------------------