├── .gitignore ├── LICENSE.txt ├── README.md ├── code ├── Classifier │ ├── CLPL.py │ ├── Classifier.py │ ├── Classifier_em.py │ ├── DataIO.py │ ├── HierarchySVM.py │ ├── Logistic.py │ ├── MulticlassSVM.py │ ├── PLSVM.py │ ├── Perceptron.py │ ├── SVM.py │ ├── TypeHierarchy.py │ ├── liblinear.py │ ├── liblinear.so.3 │ └── liblinearutil.py ├── DataProcessor │ ├── Feature │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── abstract_feature.py │ │ ├── abstract_feature.pyc │ │ ├── brown_feature.py │ │ ├── brown_feature.pyc │ │ ├── dependency_feature.py │ │ ├── dependency_feature.pyc │ │ ├── em_brown_feature.py │ │ ├── em_brown_feature.pyc │ │ ├── em_dependency_feature.py │ │ ├── em_dependency_feature.pyc │ │ ├── em_other_feature.py │ │ ├── em_other_feature.pyc │ │ ├── em_token_feature.py │ │ ├── em_token_feature.pyc │ │ ├── other_feature.py │ │ ├── other_feature.pyc │ │ ├── token_feature.py │ │ └── token_feature.pyc │ ├── __init__.py │ ├── feature_generation.py │ ├── liblinear_processor.py │ ├── mention.py │ ├── mention_reader.py │ ├── ner_feature.py │ ├── nlp_parse.py │ ├── pruning_heuristics.py │ └── statistic.py ├── Evaluation │ ├── convertPredictionToJson.py │ ├── emb_prediction.py │ ├── emb_test.py │ ├── evaluation.py │ └── tune_threshold.py └── Model │ ├── FCM │ ├── README.md │ ├── all.sen │ ├── code │ │ ├── BaseComponentModel.cpp │ │ ├── BaseComponentModel.h │ │ ├── BaseComponentModel.o │ │ ├── Commons.h │ │ ├── EmbeddingModel.cpp │ │ ├── EmbeddingModel.h │ │ ├── EmbeddingModel.o │ │ ├── FctCoarseModel.cpp │ │ ├── FctCoarseModel.h │ │ ├── FctCoarseModel.o │ │ ├── FctConvolutionModel.cpp │ │ ├── FctConvolutionModel.h │ │ ├── FctConvolutionModel.o │ │ ├── FctDeepModel.cpp │ │ ├── FctDeepModel.h │ │ ├── FctDeepModel.o │ │ ├── FeatureModel.cpp │ │ ├── FeatureModel.h │ │ ├── FeatureModel.o │ │ ├── FullFctModel.cpp │ │ ├── FullFctModel.h │ │ ├── FullFctModel.o │ │ ├── Instances.cpp │ │ ├── Instances.h │ │ ├── Instances.o │ │ ├── RE_FCT │ │ ├── RE_FCT.cpp │ │ ├── RE_FCT_fixed │ │ ├── RE_FCT_fixed.cpp │ │ ├── makefile │ │ └── predict.fea.fullnerpair.onlyne.txt │ ├── data │ │ ├── SemEval.test.fea.sst │ │ ├── SemEval.test.keys │ │ ├── SemEval.train.fea.sst │ │ ├── semeval2010_task8_scorer-v1.2.pl │ │ └── vectors.nyt2011.cbow.semeval.filtered │ ├── filter.py │ ├── gen_fmt.py │ ├── gen_sen.py │ ├── predict.txt │ ├── process.py │ ├── run.sh │ ├── test.fmt │ ├── test.fmt.tmp │ ├── test.id │ ├── test.sen │ ├── train.fmt │ ├── train.id │ ├── train.sen │ ├── vec.emb │ ├── word2vec │ └── word2vec.cpp │ ├── baselines │ ├── hypenet │ │ ├── README.md │ │ ├── data │ │ │ └── README.md │ │ ├── evaluation.py │ │ ├── helper.py │ │ ├── lemmatize.py │ │ ├── model.h5 │ │ ├── plot.py │ │ ├── postprocess.py │ │ ├── preprocess.py │ │ ├── sdp.py │ │ ├── sentence_normalize.py │ │ ├── sentence_tokens.py │ │ ├── shortest_dep.py │ │ ├── split_baseline_data.py │ │ └── test_corenlp.py │ ├── sdp-lstm │ │ ├── README.md │ │ ├── dependency-kbp │ │ │ ├── __init__.py │ │ │ ├── analyze.py │ │ │ ├── data_utils.py │ │ │ ├── emb_utils.py │ │ │ ├── eval.py │ │ │ ├── scorer.py │ │ │ ├── sprnn_model.py │ │ │ ├── train-cv.py │ │ │ └── utils.py │ │ └── dependency │ │ │ ├── analyze.py │ │ │ ├── data_utils.py │ │ │ ├── emb_utils.py │ │ │ ├── eval.py │ │ │ ├── scorer.py │ │ │ ├── sprnn_model.py │ │ │ ├── train.py │ │ │ ├── tree.py │ │ │ └── utils.py │ └── sentence-level-models │ │ ├── README.md │ │ ├── cotype2json.py │ │ ├── model.py │ │ ├── models │ │ ├── bgru.py │ │ ├── cnn.py │ │ ├── lstm.py │ │ ├── pcnn.py │ │ └── position_aware_lstm.py │ │ ├── tacred2json.py │ │ ├── train-cv.py │ │ ├── train.py │ │ ├── utils.py │ │ └── vocab.py │ ├── dw │ ├── deepwalk-bipa.cpp │ ├── deepwalk-hete-em.cpp │ ├── deepwalk-hete.cpp │ └── makefile │ ├── eigen-3.2.5 │ ├── .hg_archival.txt │ ├── .hgeol │ ├── .hgignore │ ├── .hgtags │ ├── CMakeLists.txt │ ├── COPYING.BSD │ ├── COPYING.GPL │ ├── COPYING.LGPL │ ├── COPYING.MINPACK │ ├── COPYING.MPL2 │ ├── COPYING.README │ ├── CTestConfig.cmake │ ├── CTestCustom.cmake.in │ ├── Eigen │ │ ├── Array │ │ ├── CMakeLists.txt │ │ ├── Cholesky │ │ ├── CholmodSupport │ │ ├── Core │ │ ├── Dense │ │ ├── Eigen │ │ ├── Eigen2Support │ │ ├── Eigenvalues │ │ ├── Geometry │ │ ├── Householder │ │ ├── IterativeLinearSolvers │ │ ├── Jacobi │ │ ├── LU │ │ ├── LeastSquares │ │ ├── MetisSupport │ │ ├── OrderingMethods │ │ ├── PaStiXSupport │ │ ├── PardisoSupport │ │ ├── QR │ │ ├── QtAlignedMalloc │ │ ├── SPQRSupport │ │ ├── SVD │ │ ├── Sparse │ │ ├── SparseCholesky │ │ ├── SparseCore │ │ ├── SparseLU │ │ ├── SparseQR │ │ ├── StdDeque │ │ ├── StdList │ │ ├── StdVector │ │ ├── SuperLUSupport │ │ ├── UmfPackSupport │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ ├── Cholesky │ │ │ ├── CMakeLists.txt │ │ │ ├── LDLT.h │ │ │ ├── LLT.h │ │ │ └── LLT_MKL.h │ │ │ ├── CholmodSupport │ │ │ ├── CMakeLists.txt │ │ │ └── CholmodSupport.h │ │ │ ├── Core │ │ │ ├── Array.h │ │ │ ├── ArrayBase.h │ │ │ ├── ArrayWrapper.h │ │ │ ├── Assign.h │ │ │ ├── Assign_MKL.h │ │ │ ├── BandMatrix.h │ │ │ ├── Block.h │ │ │ ├── BooleanRedux.h │ │ │ ├── CMakeLists.txt │ │ │ ├── CommaInitializer.h │ │ │ ├── CoreIterators.h │ │ │ ├── CwiseBinaryOp.h │ │ │ ├── CwiseNullaryOp.h │ │ │ ├── CwiseUnaryOp.h │ │ │ ├── CwiseUnaryView.h │ │ │ ├── DenseBase.h │ │ │ ├── DenseCoeffsBase.h │ │ │ ├── DenseStorage.h │ │ │ ├── Diagonal.h │ │ │ ├── DiagonalMatrix.h │ │ │ ├── DiagonalProduct.h │ │ │ ├── Dot.h │ │ │ ├── EigenBase.h │ │ │ ├── Flagged.h │ │ │ ├── ForceAlignedAccess.h │ │ │ ├── Functors.h │ │ │ ├── Fuzzy.h │ │ │ ├── GeneralProduct.h │ │ │ ├── GenericPacketMath.h │ │ │ ├── GlobalFunctions.h │ │ │ ├── IO.h │ │ │ ├── Map.h │ │ │ ├── MapBase.h │ │ │ ├── MathFunctions.h │ │ │ ├── Matrix.h │ │ │ ├── MatrixBase.h │ │ │ ├── NestByValue.h │ │ │ ├── NoAlias.h │ │ │ ├── NumTraits.h │ │ │ ├── PermutationMatrix.h │ │ │ ├── PlainObjectBase.h │ │ │ ├── ProductBase.h │ │ │ ├── Random.h │ │ │ ├── Redux.h │ │ │ ├── Ref.h │ │ │ ├── Replicate.h │ │ │ ├── ReturnByValue.h │ │ │ ├── Reverse.h │ │ │ ├── Select.h │ │ │ ├── SelfAdjointView.h │ │ │ ├── SelfCwiseBinaryOp.h │ │ │ ├── SolveTriangular.h │ │ │ ├── StableNorm.h │ │ │ ├── Stride.h │ │ │ ├── Swap.h │ │ │ ├── Transpose.h │ │ │ ├── Transpositions.h │ │ │ ├── TriangularMatrix.h │ │ │ ├── VectorBlock.h │ │ │ ├── VectorwiseOp.h │ │ │ ├── Visitor.h │ │ │ ├── arch │ │ │ │ ├── AltiVec │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Complex.h │ │ │ │ │ └── PacketMath.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Default │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── Settings.h │ │ │ │ ├── NEON │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Complex.h │ │ │ │ │ └── PacketMath.h │ │ │ │ └── SSE │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ └── PacketMath.h │ │ │ ├── products │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CoeffBasedProduct.h │ │ │ │ ├── GeneralBlockPanelKernel.h │ │ │ │ ├── GeneralMatrixMatrix.h │ │ │ │ ├── GeneralMatrixMatrixTriangular.h │ │ │ │ ├── GeneralMatrixMatrixTriangular_MKL.h │ │ │ │ ├── GeneralMatrixMatrix_MKL.h │ │ │ │ ├── GeneralMatrixVector.h │ │ │ │ ├── GeneralMatrixVector_MKL.h │ │ │ │ ├── Parallelizer.h │ │ │ │ ├── SelfadjointMatrixMatrix.h │ │ │ │ ├── SelfadjointMatrixMatrix_MKL.h │ │ │ │ ├── SelfadjointMatrixVector.h │ │ │ │ ├── SelfadjointMatrixVector_MKL.h │ │ │ │ ├── SelfadjointProduct.h │ │ │ │ ├── SelfadjointRank2Update.h │ │ │ │ ├── TriangularMatrixMatrix.h │ │ │ │ ├── TriangularMatrixMatrix_MKL.h │ │ │ │ ├── TriangularMatrixVector.h │ │ │ │ ├── TriangularMatrixVector_MKL.h │ │ │ │ ├── TriangularSolverMatrix.h │ │ │ │ ├── TriangularSolverMatrix_MKL.h │ │ │ │ └── TriangularSolverVector.h │ │ │ └── util │ │ │ │ ├── BlasUtil.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Constants.h │ │ │ │ ├── DisableStupidWarnings.h │ │ │ │ ├── ForwardDeclarations.h │ │ │ │ ├── MKL_support.h │ │ │ │ ├── Macros.h │ │ │ │ ├── Memory.h │ │ │ │ ├── Meta.h │ │ │ │ ├── NonMPL2.h │ │ │ │ ├── ReenableStupidWarnings.h │ │ │ │ ├── StaticAssert.h │ │ │ │ └── XprHelper.h │ │ │ ├── Eigen2Support │ │ │ ├── Block.h │ │ │ ├── CMakeLists.txt │ │ │ ├── Cwise.h │ │ │ ├── CwiseOperators.h │ │ │ ├── Geometry │ │ │ │ ├── AlignedBox.h │ │ │ │ ├── All.h │ │ │ │ ├── AngleAxis.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Hyperplane.h │ │ │ │ ├── ParametrizedLine.h │ │ │ │ ├── Quaternion.h │ │ │ │ ├── Rotation2D.h │ │ │ │ ├── RotationBase.h │ │ │ │ ├── Scaling.h │ │ │ │ ├── Transform.h │ │ │ │ └── Translation.h │ │ │ ├── LU.h │ │ │ ├── Lazy.h │ │ │ ├── LeastSquares.h │ │ │ ├── Macros.h │ │ │ ├── MathFunctions.h │ │ │ ├── Memory.h │ │ │ ├── Meta.h │ │ │ ├── Minor.h │ │ │ ├── QR.h │ │ │ ├── SVD.h │ │ │ ├── TriangularSolver.h │ │ │ └── VectorBlock.h │ │ │ ├── Eigenvalues │ │ │ ├── CMakeLists.txt │ │ │ ├── ComplexEigenSolver.h │ │ │ ├── ComplexSchur.h │ │ │ ├── ComplexSchur_MKL.h │ │ │ ├── EigenSolver.h │ │ │ ├── GeneralizedEigenSolver.h │ │ │ ├── GeneralizedSelfAdjointEigenSolver.h │ │ │ ├── HessenbergDecomposition.h │ │ │ ├── MatrixBaseEigenvalues.h │ │ │ ├── RealQZ.h │ │ │ ├── RealSchur.h │ │ │ ├── RealSchur_MKL.h │ │ │ ├── SelfAdjointEigenSolver.h │ │ │ ├── SelfAdjointEigenSolver_MKL.h │ │ │ └── Tridiagonalization.h │ │ │ ├── Geometry │ │ │ ├── AlignedBox.h │ │ │ ├── AngleAxis.h │ │ │ ├── CMakeLists.txt │ │ │ ├── EulerAngles.h │ │ │ ├── Homogeneous.h │ │ │ ├── Hyperplane.h │ │ │ ├── OrthoMethods.h │ │ │ ├── ParametrizedLine.h │ │ │ ├── Quaternion.h │ │ │ ├── Rotation2D.h │ │ │ ├── RotationBase.h │ │ │ ├── Scaling.h │ │ │ ├── Transform.h │ │ │ ├── Translation.h │ │ │ ├── Umeyama.h │ │ │ └── arch │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── Geometry_SSE.h │ │ │ ├── Householder │ │ │ ├── BlockHouseholder.h │ │ │ ├── CMakeLists.txt │ │ │ ├── Householder.h │ │ │ └── HouseholderSequence.h │ │ │ ├── IterativeLinearSolvers │ │ │ ├── BasicPreconditioners.h │ │ │ ├── BiCGSTAB.h │ │ │ ├── CMakeLists.txt │ │ │ ├── ConjugateGradient.h │ │ │ ├── IncompleteLUT.h │ │ │ └── IterativeSolverBase.h │ │ │ ├── Jacobi │ │ │ ├── CMakeLists.txt │ │ │ └── Jacobi.h │ │ │ ├── LU │ │ │ ├── CMakeLists.txt │ │ │ ├── Determinant.h │ │ │ ├── FullPivLU.h │ │ │ ├── Inverse.h │ │ │ ├── PartialPivLU.h │ │ │ ├── PartialPivLU_MKL.h │ │ │ └── arch │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── Inverse_SSE.h │ │ │ ├── MetisSupport │ │ │ ├── CMakeLists.txt │ │ │ └── MetisSupport.h │ │ │ ├── OrderingMethods │ │ │ ├── Amd.h │ │ │ ├── CMakeLists.txt │ │ │ ├── Eigen_Colamd.h │ │ │ └── Ordering.h │ │ │ ├── PaStiXSupport │ │ │ ├── CMakeLists.txt │ │ │ └── PaStiXSupport.h │ │ │ ├── PardisoSupport │ │ │ ├── CMakeLists.txt │ │ │ └── PardisoSupport.h │ │ │ ├── QR │ │ │ ├── CMakeLists.txt │ │ │ ├── ColPivHouseholderQR.h │ │ │ ├── ColPivHouseholderQR_MKL.h │ │ │ ├── FullPivHouseholderQR.h │ │ │ ├── HouseholderQR.h │ │ │ └── HouseholderQR_MKL.h │ │ │ ├── SPQRSupport │ │ │ ├── CMakeLists.txt │ │ │ └── SuiteSparseQRSupport.h │ │ │ ├── SVD │ │ │ ├── CMakeLists.txt │ │ │ ├── JacobiSVD.h │ │ │ ├── JacobiSVD_MKL.h │ │ │ └── UpperBidiagonalization.h │ │ │ ├── SparseCholesky │ │ │ ├── CMakeLists.txt │ │ │ ├── SimplicialCholesky.h │ │ │ └── SimplicialCholesky_impl.h │ │ │ ├── SparseCore │ │ │ ├── AmbiVector.h │ │ │ ├── CMakeLists.txt │ │ │ ├── CompressedStorage.h │ │ │ ├── ConservativeSparseSparseProduct.h │ │ │ ├── MappedSparseMatrix.h │ │ │ ├── SparseBlock.h │ │ │ ├── SparseColEtree.h │ │ │ ├── SparseCwiseBinaryOp.h │ │ │ ├── SparseCwiseUnaryOp.h │ │ │ ├── SparseDenseProduct.h │ │ │ ├── SparseDiagonalProduct.h │ │ │ ├── SparseDot.h │ │ │ ├── SparseFuzzy.h │ │ │ ├── SparseMatrix.h │ │ │ ├── SparseMatrixBase.h │ │ │ ├── SparsePermutation.h │ │ │ ├── SparseProduct.h │ │ │ ├── SparseRedux.h │ │ │ ├── SparseSelfAdjointView.h │ │ │ ├── SparseSparseProductWithPruning.h │ │ │ ├── SparseTranspose.h │ │ │ ├── SparseTriangularView.h │ │ │ ├── SparseUtil.h │ │ │ ├── SparseVector.h │ │ │ ├── SparseView.h │ │ │ └── TriangularSolver.h │ │ │ ├── SparseLU │ │ │ ├── CMakeLists.txt │ │ │ ├── SparseLU.h │ │ │ ├── SparseLUImpl.h │ │ │ ├── SparseLU_Memory.h │ │ │ ├── SparseLU_Structs.h │ │ │ ├── SparseLU_SupernodalMatrix.h │ │ │ ├── SparseLU_Utils.h │ │ │ ├── SparseLU_column_bmod.h │ │ │ ├── SparseLU_column_dfs.h │ │ │ ├── SparseLU_copy_to_ucol.h │ │ │ ├── SparseLU_gemm_kernel.h │ │ │ ├── SparseLU_heap_relax_snode.h │ │ │ ├── SparseLU_kernel_bmod.h │ │ │ ├── SparseLU_panel_bmod.h │ │ │ ├── SparseLU_panel_dfs.h │ │ │ ├── SparseLU_pivotL.h │ │ │ ├── SparseLU_pruneL.h │ │ │ └── SparseLU_relax_snode.h │ │ │ ├── SparseQR │ │ │ ├── CMakeLists.txt │ │ │ └── SparseQR.h │ │ │ ├── StlSupport │ │ │ ├── CMakeLists.txt │ │ │ ├── StdDeque.h │ │ │ ├── StdList.h │ │ │ ├── StdVector.h │ │ │ └── details.h │ │ │ ├── SuperLUSupport │ │ │ ├── CMakeLists.txt │ │ │ └── SuperLUSupport.h │ │ │ ├── UmfPackSupport │ │ │ ├── CMakeLists.txt │ │ │ └── UmfPackSupport.h │ │ │ ├── misc │ │ │ ├── CMakeLists.txt │ │ │ ├── Image.h │ │ │ ├── Kernel.h │ │ │ ├── Solve.h │ │ │ ├── SparseSolve.h │ │ │ └── blas.h │ │ │ └── plugins │ │ │ ├── ArrayCwiseBinaryOps.h │ │ │ ├── ArrayCwiseUnaryOps.h │ │ │ ├── BlockMethods.h │ │ │ ├── CMakeLists.txt │ │ │ ├── CommonCwiseBinaryOps.h │ │ │ ├── CommonCwiseUnaryOps.h │ │ │ ├── MatrixCwiseBinaryOps.h │ │ │ └── MatrixCwiseUnaryOps.h │ ├── INSTALL │ ├── bench │ │ ├── BenchSparseUtil.h │ │ ├── BenchTimer.h │ │ ├── BenchUtil.h │ │ ├── README.txt │ │ ├── basicbench.cxxlist │ │ ├── basicbenchmark.cpp │ │ ├── basicbenchmark.h │ │ ├── benchBlasGemm.cpp │ │ ├── benchCholesky.cpp │ │ ├── benchEigenSolver.cpp │ │ ├── benchFFT.cpp │ │ ├── benchGeometry.cpp │ │ ├── benchVecAdd.cpp │ │ ├── bench_gemm.cpp │ │ ├── bench_multi_compilers.sh │ │ ├── bench_norm.cpp │ │ ├── bench_reverse.cpp │ │ ├── bench_sum.cpp │ │ ├── bench_unrolling │ │ ├── benchmark.cpp │ │ ├── benchmarkSlice.cpp │ │ ├── benchmarkX.cpp │ │ ├── benchmarkXcwise.cpp │ │ ├── benchmark_suite │ │ ├── btl │ │ │ ├── CMakeLists.txt │ │ │ ├── COPYING │ │ │ ├── README │ │ │ ├── actions │ │ │ │ ├── action_aat_product.hh │ │ │ │ ├── action_ata_product.hh │ │ │ │ ├── action_atv_product.hh │ │ │ │ ├── action_axpby.hh │ │ │ │ ├── action_axpy.hh │ │ │ │ ├── action_cholesky.hh │ │ │ │ ├── action_ger.hh │ │ │ │ ├── action_hessenberg.hh │ │ │ │ ├── action_lu_decomp.hh │ │ │ │ ├── action_lu_solve.hh │ │ │ │ ├── action_matrix_matrix_product.hh │ │ │ │ ├── action_matrix_matrix_product_bis.hh │ │ │ │ ├── action_matrix_vector_product.hh │ │ │ │ ├── action_partial_lu.hh │ │ │ │ ├── action_rot.hh │ │ │ │ ├── action_symv.hh │ │ │ │ ├── action_syr2.hh │ │ │ │ ├── action_trisolve.hh │ │ │ │ ├── action_trisolve_matrix.hh │ │ │ │ ├── action_trmm.hh │ │ │ │ └── basic_actions.hh │ │ │ ├── cmake │ │ │ │ ├── FindACML.cmake │ │ │ │ ├── FindATLAS.cmake │ │ │ │ ├── FindBlitz.cmake │ │ │ │ ├── FindCBLAS.cmake │ │ │ │ ├── FindGMM.cmake │ │ │ │ ├── FindGOTO.cmake │ │ │ │ ├── FindGOTO2.cmake │ │ │ │ ├── FindMKL.cmake │ │ │ │ ├── FindMTL4.cmake │ │ │ │ ├── FindPackageHandleStandardArgs.cmake │ │ │ │ ├── FindTvmet.cmake │ │ │ │ └── MacroOptionalAddSubdirectory.cmake │ │ │ ├── data │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── action_settings.txt │ │ │ │ ├── gnuplot_common_settings.hh │ │ │ │ ├── go_mean │ │ │ │ ├── mean.cxx │ │ │ │ ├── mk_gnuplot_script.sh │ │ │ │ ├── mk_mean_script.sh │ │ │ │ ├── mk_new_gnuplot.sh │ │ │ │ ├── perlib_plot_settings.txt │ │ │ │ ├── regularize.cxx │ │ │ │ ├── smooth.cxx │ │ │ │ └── smooth_all.sh │ │ │ ├── generic_bench │ │ │ │ ├── bench.hh │ │ │ │ ├── bench_parameter.hh │ │ │ │ ├── btl.hh │ │ │ │ ├── init │ │ │ │ │ ├── init_function.hh │ │ │ │ │ ├── init_matrix.hh │ │ │ │ │ └── init_vector.hh │ │ │ │ ├── static │ │ │ │ │ ├── bench_static.hh │ │ │ │ │ ├── intel_bench_fixed_size.hh │ │ │ │ │ └── static_size_generator.hh │ │ │ │ ├── timers │ │ │ │ │ ├── STL_perf_analyzer.hh │ │ │ │ │ ├── STL_timer.hh │ │ │ │ │ ├── mixed_perf_analyzer.hh │ │ │ │ │ ├── portable_perf_analyzer.hh │ │ │ │ │ ├── portable_perf_analyzer_old.hh │ │ │ │ │ ├── portable_timer.hh │ │ │ │ │ ├── x86_perf_analyzer.hh │ │ │ │ │ └── x86_timer.hh │ │ │ │ └── utils │ │ │ │ │ ├── size_lin_log.hh │ │ │ │ │ ├── size_log.hh │ │ │ │ │ ├── utilities.h │ │ │ │ │ └── xy_file.hh │ │ │ └── libs │ │ │ │ ├── BLAS │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── blas.h │ │ │ │ ├── blas_interface.hh │ │ │ │ ├── blas_interface_impl.hh │ │ │ │ ├── c_interface_base.h │ │ │ │ └── main.cpp │ │ │ │ ├── STL │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── STL_interface.hh │ │ │ │ └── main.cpp │ │ │ │ ├── blitz │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── blitz_LU_solve_interface.hh │ │ │ │ ├── blitz_interface.hh │ │ │ │ ├── btl_blitz.cpp │ │ │ │ ├── btl_tiny_blitz.cpp │ │ │ │ └── tiny_blitz_interface.hh │ │ │ │ ├── eigen2 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── btl_tiny_eigen2.cpp │ │ │ │ ├── eigen2_interface.hh │ │ │ │ ├── main_adv.cpp │ │ │ │ ├── main_linear.cpp │ │ │ │ ├── main_matmat.cpp │ │ │ │ └── main_vecmat.cpp │ │ │ │ ├── eigen3 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── btl_tiny_eigen3.cpp │ │ │ │ ├── eigen3_interface.hh │ │ │ │ ├── main_adv.cpp │ │ │ │ ├── main_linear.cpp │ │ │ │ ├── main_matmat.cpp │ │ │ │ └── main_vecmat.cpp │ │ │ │ ├── gmm │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── gmm_LU_solve_interface.hh │ │ │ │ ├── gmm_interface.hh │ │ │ │ └── main.cpp │ │ │ │ ├── mtl4 │ │ │ │ ├── .kdbgrc.main │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── main.cpp │ │ │ │ ├── mtl4_LU_solve_interface.hh │ │ │ │ └── mtl4_interface.hh │ │ │ │ ├── tvmet │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── main.cpp │ │ │ │ └── tvmet_interface.hh │ │ │ │ └── ublas │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── main.cpp │ │ │ │ └── ublas_interface.hh │ │ ├── check_cache_queries.cpp │ │ ├── eig33.cpp │ │ ├── geometry.cpp │ │ ├── product_threshold.cpp │ │ ├── quat_slerp.cpp │ │ ├── quatmul.cpp │ │ ├── sparse_cholesky.cpp │ │ ├── sparse_dense_product.cpp │ │ ├── sparse_lu.cpp │ │ ├── sparse_product.cpp │ │ ├── sparse_randomsetter.cpp │ │ ├── sparse_setter.cpp │ │ ├── sparse_transpose.cpp │ │ ├── sparse_trisolver.cpp │ │ ├── spbench │ │ │ ├── CMakeLists.txt │ │ │ ├── sp_solver.cpp │ │ │ ├── spbench.dtd │ │ │ ├── spbenchsolver.cpp │ │ │ ├── spbenchsolver.h │ │ │ ├── spbenchstyle.h │ │ │ └── test_sparseLU.cpp │ │ ├── spmv.cpp │ │ └── vdw_new.cpp │ ├── blas │ │ ├── BandTriangularSolver.h │ │ ├── CMakeLists.txt │ │ ├── GeneralRank1Update.h │ │ ├── PackedSelfadjointProduct.h │ │ ├── PackedTriangularMatrixVector.h │ │ ├── PackedTriangularSolverVector.h │ │ ├── README.txt │ │ ├── Rank2Update.h │ │ ├── chbmv.f │ │ ├── chpmv.f │ │ ├── common.h │ │ ├── complex_double.cpp │ │ ├── complex_single.cpp │ │ ├── complexdots.f │ │ ├── ctbmv.f │ │ ├── double.cpp │ │ ├── drotm.f │ │ ├── drotmg.f │ │ ├── dsbmv.f │ │ ├── dspmv.f │ │ ├── dtbmv.f │ │ ├── level1_cplx_impl.h │ │ ├── level1_impl.h │ │ ├── level1_real_impl.h │ │ ├── level2_cplx_impl.h │ │ ├── level2_impl.h │ │ ├── level2_real_impl.h │ │ ├── level3_impl.h │ │ ├── lsame.f │ │ ├── single.cpp │ │ ├── srotm.f │ │ ├── srotmg.f │ │ ├── ssbmv.f │ │ ├── sspmv.f │ │ ├── stbmv.f │ │ ├── testing │ │ │ ├── CMakeLists.txt │ │ │ ├── cblat1.f │ │ │ ├── cblat2.dat │ │ │ ├── cblat2.f │ │ │ ├── cblat3.dat │ │ │ ├── cblat3.f │ │ │ ├── dblat1.f │ │ │ ├── dblat2.dat │ │ │ ├── dblat2.f │ │ │ ├── dblat3.dat │ │ │ ├── dblat3.f │ │ │ ├── runblastest.sh │ │ │ ├── sblat1.f │ │ │ ├── sblat2.dat │ │ │ ├── sblat2.f │ │ │ ├── sblat3.dat │ │ │ ├── sblat3.f │ │ │ ├── zblat1.f │ │ │ ├── zblat2.dat │ │ │ ├── zblat2.f │ │ │ ├── zblat3.dat │ │ │ └── zblat3.f │ │ ├── xerbla.cpp │ │ ├── zhbmv.f │ │ ├── zhpmv.f │ │ └── ztbmv.f │ ├── cmake │ │ ├── EigenConfigureTesting.cmake │ │ ├── EigenDetermineOSVersion.cmake │ │ ├── EigenDetermineVSServicePack.cmake │ │ ├── EigenTesting.cmake │ │ ├── FindAdolc.cmake │ │ ├── FindBLAS.cmake │ │ ├── FindCholmod.cmake │ │ ├── FindEigen2.cmake │ │ ├── FindEigen3.cmake │ │ ├── FindFFTW.cmake │ │ ├── FindGLEW.cmake │ │ ├── FindGMP.cmake │ │ ├── FindGSL.cmake │ │ ├── FindGoogleHash.cmake │ │ ├── FindLAPACK.cmake │ │ ├── FindMPFR.cmake │ │ ├── FindMetis.cmake │ │ ├── FindPastix.cmake │ │ ├── FindSPQR.cmake │ │ ├── FindScotch.cmake │ │ ├── FindStandardMathLibrary.cmake │ │ ├── FindSuperLU.cmake │ │ ├── FindUmfpack.cmake │ │ ├── RegexUtils.cmake │ │ └── language_support.cmake │ ├── debug │ │ ├── gdb │ │ │ ├── __init__.py │ │ │ └── printers.py │ │ └── msvc │ │ │ ├── eigen.natvis │ │ │ └── eigen_autoexp_part.dat │ ├── demos │ │ ├── CMakeLists.txt │ │ ├── mandelbrot │ │ │ ├── CMakeLists.txt │ │ │ ├── README │ │ │ ├── mandelbrot.cpp │ │ │ └── mandelbrot.h │ │ ├── mix_eigen_and_c │ │ │ ├── README │ │ │ ├── binary_library.cpp │ │ │ ├── binary_library.h │ │ │ └── example.c │ │ └── opengl │ │ │ ├── CMakeLists.txt │ │ │ ├── README │ │ │ ├── camera.cpp │ │ │ ├── camera.h │ │ │ ├── gpuhelper.cpp │ │ │ ├── gpuhelper.h │ │ │ ├── icosphere.cpp │ │ │ ├── icosphere.h │ │ │ ├── quaternion_demo.cpp │ │ │ ├── quaternion_demo.h │ │ │ ├── trackball.cpp │ │ │ └── trackball.h │ ├── doc │ │ ├── A05_PortingFrom2To3.dox │ │ ├── A10_Eigen2SupportModes.dox │ │ ├── AsciiQuickReference.txt │ │ ├── B01_Experimental.dox │ │ ├── CMakeLists.txt │ │ ├── ClassHierarchy.dox │ │ ├── CustomizingEigen.dox │ │ ├── Doxyfile.in │ │ ├── Eigen_Silly_Professor_64x64.png │ │ ├── FixedSizeVectorizable.dox │ │ ├── FunctionsTakingEigenTypes.dox │ │ ├── HiPerformance.dox │ │ ├── InsideEigenExample.dox │ │ ├── Manual.dox │ │ ├── Overview.dox │ │ ├── PassingByValue.dox │ │ ├── PreprocessorDirectives.dox │ │ ├── QuickReference.dox │ │ ├── QuickStartGuide.dox │ │ ├── SparseLinearSystems.dox │ │ ├── SparseQuickReference.dox │ │ ├── StlContainers.dox │ │ ├── StorageOrders.dox │ │ ├── StructHavingEigenMembers.dox │ │ ├── TemplateKeyword.dox │ │ ├── TopicAliasing.dox │ │ ├── TopicAssertions.dox │ │ ├── TopicEigenExpressionTemplates.dox │ │ ├── TopicLazyEvaluation.dox │ │ ├── TopicLinearAlgebraDecompositions.dox │ │ ├── TopicMultithreading.dox │ │ ├── TopicResizing.dox │ │ ├── TopicScalarTypes.dox │ │ ├── TopicVectorization.dox │ │ ├── TutorialAdvancedInitialization.dox │ │ ├── TutorialArrayClass.dox │ │ ├── TutorialBlockOperations.dox │ │ ├── TutorialGeometry.dox │ │ ├── TutorialLinearAlgebra.dox │ │ ├── TutorialMapClass.dox │ │ ├── TutorialMatrixArithmetic.dox │ │ ├── TutorialMatrixClass.dox │ │ ├── TutorialReductionsVisitorsBroadcasting.dox │ │ ├── TutorialSparse.dox │ │ ├── TutorialSparse_example_details.dox │ │ ├── UnalignedArrayAssert.dox │ │ ├── UsingIntelMKL.dox │ │ ├── WrongStackAlignment.dox │ │ ├── eigen_navtree_hacks.js │ │ ├── eigendoxy.css │ │ ├── eigendoxy_footer.html.in │ │ ├── eigendoxy_header.html.in │ │ ├── eigendoxy_layout.xml.in │ │ ├── eigendoxy_tabs.css │ │ ├── examples │ │ │ ├── .krazy │ │ │ ├── CMakeLists.txt │ │ │ ├── DenseBase_middleCols_int.cpp │ │ │ ├── DenseBase_middleRows_int.cpp │ │ │ ├── DenseBase_template_int_middleCols.cpp │ │ │ ├── DenseBase_template_int_middleRows.cpp │ │ │ ├── MatrixBase_cwise_const.cpp │ │ │ ├── QuickStart_example.cpp │ │ │ ├── QuickStart_example2_dynamic.cpp │ │ │ ├── QuickStart_example2_fixed.cpp │ │ │ ├── TemplateKeyword_flexible.cpp │ │ │ ├── TemplateKeyword_simple.cpp │ │ │ ├── TutorialLinAlgComputeTwice.cpp │ │ │ ├── TutorialLinAlgExComputeSolveError.cpp │ │ │ ├── TutorialLinAlgExSolveColPivHouseholderQR.cpp │ │ │ ├── TutorialLinAlgExSolveLDLT.cpp │ │ │ ├── TutorialLinAlgInverseDeterminant.cpp │ │ │ ├── TutorialLinAlgRankRevealing.cpp │ │ │ ├── TutorialLinAlgSVDSolve.cpp │ │ │ ├── TutorialLinAlgSelfAdjointEigenSolver.cpp │ │ │ ├── TutorialLinAlgSetThreshold.cpp │ │ │ ├── Tutorial_ArrayClass_accessors.cpp │ │ │ ├── Tutorial_ArrayClass_addition.cpp │ │ │ ├── Tutorial_ArrayClass_cwise_other.cpp │ │ │ ├── Tutorial_ArrayClass_interop.cpp │ │ │ ├── Tutorial_ArrayClass_interop_matrix.cpp │ │ │ ├── Tutorial_ArrayClass_mult.cpp │ │ │ ├── Tutorial_BlockOperations_block_assignment.cpp │ │ │ ├── Tutorial_BlockOperations_colrow.cpp │ │ │ ├── Tutorial_BlockOperations_corner.cpp │ │ │ ├── Tutorial_BlockOperations_print_block.cpp │ │ │ ├── Tutorial_BlockOperations_vector.cpp │ │ │ ├── Tutorial_PartialLU_solve.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_broadcast_1nn.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_broadcast_simple.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_broadcast_simple_rowwise.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_colwise.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_maxnorm.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_reductions_bool.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_reductions_norm.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_rowwise.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_visitors.cpp │ │ │ ├── Tutorial_simple_example_dynamic_size.cpp │ │ │ ├── Tutorial_simple_example_fixed_size.cpp │ │ │ ├── class_Block.cpp │ │ │ ├── class_CwiseBinaryOp.cpp │ │ │ ├── class_CwiseUnaryOp.cpp │ │ │ ├── class_CwiseUnaryOp_ptrfun.cpp │ │ │ ├── class_FixedBlock.cpp │ │ │ ├── class_FixedVectorBlock.cpp │ │ │ ├── class_VectorBlock.cpp │ │ │ ├── function_taking_eigenbase.cpp │ │ │ ├── function_taking_ref.cpp │ │ │ ├── tut_arithmetic_add_sub.cpp │ │ │ ├── tut_arithmetic_dot_cross.cpp │ │ │ ├── tut_arithmetic_matrix_mul.cpp │ │ │ ├── tut_arithmetic_redux_basic.cpp │ │ │ ├── tut_arithmetic_scalar_mul_div.cpp │ │ │ ├── tut_matrix_coefficient_accessors.cpp │ │ │ ├── tut_matrix_resize.cpp │ │ │ └── tut_matrix_resize_fixed_size.cpp │ │ ├── snippets │ │ │ ├── .krazy │ │ │ ├── AngleAxis_mimic_euler.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── ColPivHouseholderQR_solve.cpp │ │ │ ├── ComplexEigenSolver_compute.cpp │ │ │ ├── ComplexEigenSolver_eigenvalues.cpp │ │ │ ├── ComplexEigenSolver_eigenvectors.cpp │ │ │ ├── ComplexSchur_compute.cpp │ │ │ ├── ComplexSchur_matrixT.cpp │ │ │ ├── ComplexSchur_matrixU.cpp │ │ │ ├── Cwise_abs.cpp │ │ │ ├── Cwise_abs2.cpp │ │ │ ├── Cwise_acos.cpp │ │ │ ├── Cwise_asin.cpp │ │ │ ├── Cwise_boolean_and.cpp │ │ │ ├── Cwise_boolean_or.cpp │ │ │ ├── Cwise_cos.cpp │ │ │ ├── Cwise_cube.cpp │ │ │ ├── Cwise_equal_equal.cpp │ │ │ ├── Cwise_exp.cpp │ │ │ ├── Cwise_greater.cpp │ │ │ ├── Cwise_greater_equal.cpp │ │ │ ├── Cwise_inverse.cpp │ │ │ ├── Cwise_less.cpp │ │ │ ├── Cwise_less_equal.cpp │ │ │ ├── Cwise_log.cpp │ │ │ ├── Cwise_max.cpp │ │ │ ├── Cwise_min.cpp │ │ │ ├── Cwise_minus.cpp │ │ │ ├── Cwise_minus_equal.cpp │ │ │ ├── Cwise_not_equal.cpp │ │ │ ├── Cwise_plus.cpp │ │ │ ├── Cwise_plus_equal.cpp │ │ │ ├── Cwise_pow.cpp │ │ │ ├── Cwise_product.cpp │ │ │ ├── Cwise_quotient.cpp │ │ │ ├── Cwise_sin.cpp │ │ │ ├── Cwise_slash_equal.cpp │ │ │ ├── Cwise_sqrt.cpp │ │ │ ├── Cwise_square.cpp │ │ │ ├── Cwise_tan.cpp │ │ │ ├── Cwise_times_equal.cpp │ │ │ ├── DenseBase_LinSpaced.cpp │ │ │ ├── DenseBase_LinSpaced_seq.cpp │ │ │ ├── DenseBase_setLinSpaced.cpp │ │ │ ├── DirectionWise_replicate.cpp │ │ │ ├── DirectionWise_replicate_int.cpp │ │ │ ├── EigenSolver_EigenSolver_MatrixType.cpp │ │ │ ├── EigenSolver_compute.cpp │ │ │ ├── EigenSolver_eigenvalues.cpp │ │ │ ├── EigenSolver_eigenvectors.cpp │ │ │ ├── EigenSolver_pseudoEigenvectors.cpp │ │ │ ├── FullPivHouseholderQR_solve.cpp │ │ │ ├── FullPivLU_image.cpp │ │ │ ├── FullPivLU_kernel.cpp │ │ │ ├── FullPivLU_solve.cpp │ │ │ ├── GeneralizedEigenSolver.cpp │ │ │ ├── HessenbergDecomposition_compute.cpp │ │ │ ├── HessenbergDecomposition_matrixH.cpp │ │ │ ├── HessenbergDecomposition_packedMatrix.cpp │ │ │ ├── HouseholderQR_householderQ.cpp │ │ │ ├── HouseholderQR_solve.cpp │ │ │ ├── HouseholderSequence_HouseholderSequence.cpp │ │ │ ├── IOFormat.cpp │ │ │ ├── JacobiSVD_basic.cpp │ │ │ ├── Jacobi_makeGivens.cpp │ │ │ ├── Jacobi_makeJacobi.cpp │ │ │ ├── LLT_example.cpp │ │ │ ├── LLT_solve.cpp │ │ │ ├── Map_general_stride.cpp │ │ │ ├── Map_inner_stride.cpp │ │ │ ├── Map_outer_stride.cpp │ │ │ ├── Map_placement_new.cpp │ │ │ ├── Map_simple.cpp │ │ │ ├── MatrixBase_adjoint.cpp │ │ │ ├── MatrixBase_all.cpp │ │ │ ├── MatrixBase_applyOnTheLeft.cpp │ │ │ ├── MatrixBase_applyOnTheRight.cpp │ │ │ ├── MatrixBase_array.cpp │ │ │ ├── MatrixBase_array_const.cpp │ │ │ ├── MatrixBase_asDiagonal.cpp │ │ │ ├── MatrixBase_block_int_int.cpp │ │ │ ├── MatrixBase_block_int_int_int_int.cpp │ │ │ ├── MatrixBase_bottomLeftCorner_int_int.cpp │ │ │ ├── MatrixBase_bottomRightCorner_int_int.cpp │ │ │ ├── MatrixBase_bottomRows_int.cpp │ │ │ ├── MatrixBase_cast.cpp │ │ │ ├── MatrixBase_col.cpp │ │ │ ├── MatrixBase_colwise.cpp │ │ │ ├── MatrixBase_computeInverseAndDetWithCheck.cpp │ │ │ ├── MatrixBase_computeInverseWithCheck.cpp │ │ │ ├── MatrixBase_cwiseAbs.cpp │ │ │ ├── MatrixBase_cwiseAbs2.cpp │ │ │ ├── MatrixBase_cwiseEqual.cpp │ │ │ ├── MatrixBase_cwiseInverse.cpp │ │ │ ├── MatrixBase_cwiseMax.cpp │ │ │ ├── MatrixBase_cwiseMin.cpp │ │ │ ├── MatrixBase_cwiseNotEqual.cpp │ │ │ ├── MatrixBase_cwiseProduct.cpp │ │ │ ├── MatrixBase_cwiseQuotient.cpp │ │ │ ├── MatrixBase_cwiseSqrt.cpp │ │ │ ├── MatrixBase_diagonal.cpp │ │ │ ├── MatrixBase_diagonal_int.cpp │ │ │ ├── MatrixBase_diagonal_template_int.cpp │ │ │ ├── MatrixBase_eigenvalues.cpp │ │ │ ├── MatrixBase_end_int.cpp │ │ │ ├── MatrixBase_eval.cpp │ │ │ ├── MatrixBase_extract.cpp │ │ │ ├── MatrixBase_fixedBlock_int_int.cpp │ │ │ ├── MatrixBase_identity.cpp │ │ │ ├── MatrixBase_identity_int_int.cpp │ │ │ ├── MatrixBase_inverse.cpp │ │ │ ├── MatrixBase_isDiagonal.cpp │ │ │ ├── MatrixBase_isIdentity.cpp │ │ │ ├── MatrixBase_isOnes.cpp │ │ │ ├── MatrixBase_isOrthogonal.cpp │ │ │ ├── MatrixBase_isUnitary.cpp │ │ │ ├── MatrixBase_isZero.cpp │ │ │ ├── MatrixBase_leftCols_int.cpp │ │ │ ├── MatrixBase_marked.cpp │ │ │ ├── MatrixBase_noalias.cpp │ │ │ ├── MatrixBase_ones.cpp │ │ │ ├── MatrixBase_ones_int.cpp │ │ │ ├── MatrixBase_ones_int_int.cpp │ │ │ ├── MatrixBase_operatorNorm.cpp │ │ │ ├── MatrixBase_part.cpp │ │ │ ├── MatrixBase_prod.cpp │ │ │ ├── MatrixBase_random.cpp │ │ │ ├── MatrixBase_random_int.cpp │ │ │ ├── MatrixBase_random_int_int.cpp │ │ │ ├── MatrixBase_replicate.cpp │ │ │ ├── MatrixBase_replicate_int_int.cpp │ │ │ ├── MatrixBase_reverse.cpp │ │ │ ├── MatrixBase_rightCols_int.cpp │ │ │ ├── MatrixBase_row.cpp │ │ │ ├── MatrixBase_rowwise.cpp │ │ │ ├── MatrixBase_segment_int_int.cpp │ │ │ ├── MatrixBase_select.cpp │ │ │ ├── MatrixBase_set.cpp │ │ │ ├── MatrixBase_setIdentity.cpp │ │ │ ├── MatrixBase_setOnes.cpp │ │ │ ├── MatrixBase_setRandom.cpp │ │ │ ├── MatrixBase_setZero.cpp │ │ │ ├── MatrixBase_start_int.cpp │ │ │ ├── MatrixBase_template_int_bottomRows.cpp │ │ │ ├── MatrixBase_template_int_end.cpp │ │ │ ├── MatrixBase_template_int_int_block_int_int_int_int.cpp │ │ │ ├── MatrixBase_template_int_int_bottomLeftCorner.cpp │ │ │ ├── MatrixBase_template_int_int_bottomLeftCorner_int_int.cpp │ │ │ ├── MatrixBase_template_int_int_bottomRightCorner.cpp │ │ │ ├── MatrixBase_template_int_int_bottomRightCorner_int_int.cpp │ │ │ ├── MatrixBase_template_int_int_topLeftCorner.cpp │ │ │ ├── MatrixBase_template_int_int_topLeftCorner_int_int.cpp │ │ │ ├── MatrixBase_template_int_int_topRightCorner.cpp │ │ │ ├── MatrixBase_template_int_int_topRightCorner_int_int.cpp │ │ │ ├── MatrixBase_template_int_leftCols.cpp │ │ │ ├── MatrixBase_template_int_rightCols.cpp │ │ │ ├── MatrixBase_template_int_segment.cpp │ │ │ ├── MatrixBase_template_int_start.cpp │ │ │ ├── MatrixBase_template_int_topRows.cpp │ │ │ ├── MatrixBase_topLeftCorner_int_int.cpp │ │ │ ├── MatrixBase_topRightCorner_int_int.cpp │ │ │ ├── MatrixBase_topRows_int.cpp │ │ │ ├── MatrixBase_transpose.cpp │ │ │ ├── MatrixBase_zero.cpp │ │ │ ├── MatrixBase_zero_int.cpp │ │ │ ├── MatrixBase_zero_int_int.cpp │ │ │ ├── Matrix_resize_NoChange_int.cpp │ │ │ ├── Matrix_resize_int.cpp │ │ │ ├── Matrix_resize_int_NoChange.cpp │ │ │ ├── Matrix_resize_int_int.cpp │ │ │ ├── Matrix_setConstant_int.cpp │ │ │ ├── Matrix_setConstant_int_int.cpp │ │ │ ├── Matrix_setIdentity_int_int.cpp │ │ │ ├── Matrix_setOnes_int.cpp │ │ │ ├── Matrix_setOnes_int_int.cpp │ │ │ ├── Matrix_setRandom_int.cpp │ │ │ ├── Matrix_setRandom_int_int.cpp │ │ │ ├── Matrix_setZero_int.cpp │ │ │ ├── Matrix_setZero_int_int.cpp │ │ │ ├── PartialPivLU_solve.cpp │ │ │ ├── PartialRedux_count.cpp │ │ │ ├── PartialRedux_maxCoeff.cpp │ │ │ ├── PartialRedux_minCoeff.cpp │ │ │ ├── PartialRedux_norm.cpp │ │ │ ├── PartialRedux_prod.cpp │ │ │ ├── PartialRedux_squaredNorm.cpp │ │ │ ├── PartialRedux_sum.cpp │ │ │ ├── RealQZ_compute.cpp │ │ │ ├── RealSchur_RealSchur_MatrixType.cpp │ │ │ ├── RealSchur_compute.cpp │ │ │ ├── SelfAdjointEigenSolver_SelfAdjointEigenSolver.cpp │ │ │ ├── SelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType.cpp │ │ │ ├── SelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType2.cpp │ │ │ ├── SelfAdjointEigenSolver_compute_MatrixType.cpp │ │ │ ├── SelfAdjointEigenSolver_compute_MatrixType2.cpp │ │ │ ├── SelfAdjointEigenSolver_eigenvalues.cpp │ │ │ ├── SelfAdjointEigenSolver_eigenvectors.cpp │ │ │ ├── SelfAdjointEigenSolver_operatorInverseSqrt.cpp │ │ │ ├── SelfAdjointEigenSolver_operatorSqrt.cpp │ │ │ ├── SelfAdjointView_eigenvalues.cpp │ │ │ ├── SelfAdjointView_operatorNorm.cpp │ │ │ ├── TopicAliasing_block.cpp │ │ │ ├── TopicAliasing_block_correct.cpp │ │ │ ├── TopicAliasing_cwise.cpp │ │ │ ├── TopicAliasing_mult1.cpp │ │ │ ├── TopicAliasing_mult2.cpp │ │ │ ├── TopicAliasing_mult3.cpp │ │ │ ├── TopicStorageOrders_example.cpp │ │ │ ├── Tridiagonalization_Tridiagonalization_MatrixType.cpp │ │ │ ├── Tridiagonalization_compute.cpp │ │ │ ├── Tridiagonalization_decomposeInPlace.cpp │ │ │ ├── Tridiagonalization_diagonal.cpp │ │ │ ├── Tridiagonalization_householderCoefficients.cpp │ │ │ ├── Tridiagonalization_packedMatrix.cpp │ │ │ ├── Tutorial_AdvancedInitialization_Block.cpp │ │ │ ├── Tutorial_AdvancedInitialization_CommaTemporary.cpp │ │ │ ├── Tutorial_AdvancedInitialization_Join.cpp │ │ │ ├── Tutorial_AdvancedInitialization_LinSpaced.cpp │ │ │ ├── Tutorial_AdvancedInitialization_ThreeWays.cpp │ │ │ ├── Tutorial_AdvancedInitialization_Zero.cpp │ │ │ ├── Tutorial_Map_rowmajor.cpp │ │ │ ├── Tutorial_Map_using.cpp │ │ │ ├── Tutorial_commainit_01.cpp │ │ │ ├── Tutorial_commainit_01b.cpp │ │ │ ├── Tutorial_commainit_02.cpp │ │ │ ├── Tutorial_solve_matrix_inverse.cpp │ │ │ ├── Tutorial_solve_multiple_rhs.cpp │ │ │ ├── Tutorial_solve_reuse_decomposition.cpp │ │ │ ├── Tutorial_solve_singular.cpp │ │ │ ├── Tutorial_solve_triangular.cpp │ │ │ ├── Tutorial_solve_triangular_inplace.cpp │ │ │ ├── Vectorwise_reverse.cpp │ │ │ ├── class_FullPivLU.cpp │ │ │ ├── compile_snippet.cpp.in │ │ │ ├── tut_arithmetic_redux_minmax.cpp │ │ │ ├── tut_arithmetic_transpose_aliasing.cpp │ │ │ ├── tut_arithmetic_transpose_conjugate.cpp │ │ │ ├── tut_arithmetic_transpose_inplace.cpp │ │ │ └── tut_matrix_assignment_resizing.cpp │ │ ├── special_examples │ │ │ ├── CMakeLists.txt │ │ │ ├── Tutorial_sparse_example.cpp │ │ │ └── Tutorial_sparse_example_details.cpp │ │ └── tutorial.cpp │ ├── eigen3.pc.in │ ├── failtest │ │ ├── CMakeLists.txt │ │ ├── block_nonconst_ctor_on_const_xpr_0.cpp │ │ ├── block_nonconst_ctor_on_const_xpr_1.cpp │ │ ├── block_nonconst_ctor_on_const_xpr_2.cpp │ │ ├── block_on_const_type_actually_const_0.cpp │ │ ├── block_on_const_type_actually_const_1.cpp │ │ ├── colpivqr_int.cpp │ │ ├── const_qualified_block_method_retval_0.cpp │ │ ├── const_qualified_block_method_retval_1.cpp │ │ ├── const_qualified_diagonal_method_retval.cpp │ │ ├── const_qualified_transpose_method_retval.cpp │ │ ├── diagonal_nonconst_ctor_on_const_xpr.cpp │ │ ├── diagonal_on_const_type_actually_const.cpp │ │ ├── eigensolver_cplx.cpp │ │ ├── eigensolver_int.cpp │ │ ├── failtest_sanity_check.cpp │ │ ├── fullpivlu_int.cpp │ │ ├── fullpivqr_int.cpp │ │ ├── jacobisvd_int.cpp │ │ ├── ldlt_int.cpp │ │ ├── llt_int.cpp │ │ ├── map_nonconst_ctor_on_const_ptr_0.cpp │ │ ├── map_nonconst_ctor_on_const_ptr_1.cpp │ │ ├── map_nonconst_ctor_on_const_ptr_2.cpp │ │ ├── map_nonconst_ctor_on_const_ptr_3.cpp │ │ ├── map_nonconst_ctor_on_const_ptr_4.cpp │ │ ├── map_on_const_type_actually_const_0.cpp │ │ ├── map_on_const_type_actually_const_1.cpp │ │ ├── partialpivlu_int.cpp │ │ ├── qr_int.cpp │ │ ├── ref_1.cpp │ │ ├── ref_2.cpp │ │ ├── ref_3.cpp │ │ ├── ref_4.cpp │ │ ├── ref_5.cpp │ │ ├── transpose_nonconst_ctor_on_const_xpr.cpp │ │ └── transpose_on_const_type_actually_const.cpp │ ├── lapack │ │ ├── CMakeLists.txt │ │ ├── cholesky.cpp │ │ ├── clacgv.f │ │ ├── cladiv.f │ │ ├── clarf.f │ │ ├── clarfb.f │ │ ├── clarfg.f │ │ ├── clarft.f │ │ ├── complex_double.cpp │ │ ├── complex_single.cpp │ │ ├── dladiv.f │ │ ├── dlamch.f │ │ ├── dlapy2.f │ │ ├── dlapy3.f │ │ ├── dlarf.f │ │ ├── dlarfb.f │ │ ├── dlarfg.f │ │ ├── dlarft.f │ │ ├── double.cpp │ │ ├── dsecnd_NONE.f │ │ ├── eigenvalues.cpp │ │ ├── ilaclc.f │ │ ├── ilaclr.f │ │ ├── iladlc.f │ │ ├── iladlr.f │ │ ├── ilaslc.f │ │ ├── ilaslr.f │ │ ├── ilazlc.f │ │ ├── ilazlr.f │ │ ├── lapack_common.h │ │ ├── lu.cpp │ │ ├── second_NONE.f │ │ ├── single.cpp │ │ ├── sladiv.f │ │ ├── slamch.f │ │ ├── slapy2.f │ │ ├── slapy3.f │ │ ├── slarf.f │ │ ├── slarfb.f │ │ ├── slarfg.f │ │ ├── slarft.f │ │ ├── zlacgv.f │ │ ├── zladiv.f │ │ ├── zlarf.f │ │ ├── zlarfb.f │ │ ├── zlarfg.f │ │ └── zlarft.f │ ├── scripts │ │ ├── CMakeLists.txt │ │ ├── buildtests.in │ │ ├── cdashtesting.cmake.in │ │ ├── check.in │ │ ├── debug.in │ │ ├── eigen_gen_credits.cpp │ │ ├── eigen_gen_docs │ │ ├── release.in │ │ └── relicense.py │ ├── signature_of_eigen3_matrix_library │ ├── test │ │ ├── CMakeLists.txt │ │ ├── adjoint.cpp │ │ ├── array.cpp │ │ ├── array_for_matrix.cpp │ │ ├── array_replicate.cpp │ │ ├── array_reverse.cpp │ │ ├── bandmatrix.cpp │ │ ├── basicstuff.cpp │ │ ├── bicgstab.cpp │ │ ├── block.cpp │ │ ├── cholesky.cpp │ │ ├── cholmod_support.cpp │ │ ├── commainitializer.cpp │ │ ├── conjugate_gradient.cpp │ │ ├── conservative_resize.cpp │ │ ├── corners.cpp │ │ ├── cwiseop.cpp │ │ ├── denseLM.cpp │ │ ├── determinant.cpp │ │ ├── diagonal.cpp │ │ ├── diagonalmatrices.cpp │ │ ├── dontalign.cpp │ │ ├── dynalloc.cpp │ │ ├── eigen2 │ │ │ ├── CMakeLists.txt │ │ │ ├── eigen2_adjoint.cpp │ │ │ ├── eigen2_alignedbox.cpp │ │ │ ├── eigen2_array.cpp │ │ │ ├── eigen2_basicstuff.cpp │ │ │ ├── eigen2_bug_132.cpp │ │ │ ├── eigen2_cholesky.cpp │ │ │ ├── eigen2_commainitializer.cpp │ │ │ ├── eigen2_cwiseop.cpp │ │ │ ├── eigen2_determinant.cpp │ │ │ ├── eigen2_dynalloc.cpp │ │ │ ├── eigen2_eigensolver.cpp │ │ │ ├── eigen2_first_aligned.cpp │ │ │ ├── eigen2_geometry.cpp │ │ │ ├── eigen2_geometry_with_eigen2_prefix.cpp │ │ │ ├── eigen2_hyperplane.cpp │ │ │ ├── eigen2_inverse.cpp │ │ │ ├── eigen2_linearstructure.cpp │ │ │ ├── eigen2_lu.cpp │ │ │ ├── eigen2_map.cpp │ │ │ ├── eigen2_meta.cpp │ │ │ ├── eigen2_miscmatrices.cpp │ │ │ ├── eigen2_mixingtypes.cpp │ │ │ ├── eigen2_newstdvector.cpp │ │ │ ├── eigen2_nomalloc.cpp │ │ │ ├── eigen2_packetmath.cpp │ │ │ ├── eigen2_parametrizedline.cpp │ │ │ ├── eigen2_prec_inverse_4x4.cpp │ │ │ ├── eigen2_product_large.cpp │ │ │ ├── eigen2_product_small.cpp │ │ │ ├── eigen2_qr.cpp │ │ │ ├── eigen2_qtvector.cpp │ │ │ ├── eigen2_regression.cpp │ │ │ ├── eigen2_sizeof.cpp │ │ │ ├── eigen2_smallvectors.cpp │ │ │ ├── eigen2_sparse_basic.cpp │ │ │ ├── eigen2_sparse_product.cpp │ │ │ ├── eigen2_sparse_solvers.cpp │ │ │ ├── eigen2_sparse_vector.cpp │ │ │ ├── eigen2_stdvector.cpp │ │ │ ├── eigen2_submatrices.cpp │ │ │ ├── eigen2_sum.cpp │ │ │ ├── eigen2_svd.cpp │ │ │ ├── eigen2_swap.cpp │ │ │ ├── eigen2_triangular.cpp │ │ │ ├── eigen2_unalignedassert.cpp │ │ │ ├── eigen2_visitor.cpp │ │ │ ├── gsl_helper.h │ │ │ ├── main.h │ │ │ ├── product.h │ │ │ ├── runtest.sh │ │ │ ├── sparse.h │ │ │ └── testsuite.cmake │ │ ├── eigen2support.cpp │ │ ├── eigensolver_complex.cpp │ │ ├── eigensolver_generalized_real.cpp │ │ ├── eigensolver_generic.cpp │ │ ├── eigensolver_selfadjoint.cpp │ │ ├── exceptions.cpp │ │ ├── first_aligned.cpp │ │ ├── geo_alignedbox.cpp │ │ ├── geo_eulerangles.cpp │ │ ├── geo_homogeneous.cpp │ │ ├── geo_hyperplane.cpp │ │ ├── geo_orthomethods.cpp │ │ ├── geo_parametrizedline.cpp │ │ ├── geo_quaternion.cpp │ │ ├── geo_transformations.cpp │ │ ├── hessenberg.cpp │ │ ├── householder.cpp │ │ ├── integer_types.cpp │ │ ├── inverse.cpp │ │ ├── jacobi.cpp │ │ ├── jacobisvd.cpp │ │ ├── linearstructure.cpp │ │ ├── lu.cpp │ │ ├── main.h │ │ ├── mapped_matrix.cpp │ │ ├── mapstaticmethods.cpp │ │ ├── mapstride.cpp │ │ ├── meta.cpp │ │ ├── metis_support.cpp │ │ ├── miscmatrices.cpp │ │ ├── mixingtypes.cpp │ │ ├── nesting_ops.cpp │ │ ├── nomalloc.cpp │ │ ├── nullary.cpp │ │ ├── packetmath.cpp │ │ ├── pardiso_support.cpp │ │ ├── pastix_support.cpp │ │ ├── permutationmatrices.cpp │ │ ├── prec_inverse_4x4.cpp │ │ ├── product.h │ │ ├── product_extra.cpp │ │ ├── product_large.cpp │ │ ├── product_mmtr.cpp │ │ ├── product_notemporary.cpp │ │ ├── product_selfadjoint.cpp │ │ ├── product_small.cpp │ │ ├── product_symm.cpp │ │ ├── product_syrk.cpp │ │ ├── product_trmm.cpp │ │ ├── product_trmv.cpp │ │ ├── product_trsolve.cpp │ │ ├── qr.cpp │ │ ├── qr_colpivoting.cpp │ │ ├── qr_fullpivoting.cpp │ │ ├── qtvector.cpp │ │ ├── real_qz.cpp │ │ ├── redux.cpp │ │ ├── ref.cpp │ │ ├── resize.cpp │ │ ├── runtest.sh │ │ ├── schur_complex.cpp │ │ ├── schur_real.cpp │ │ ├── selfadjoint.cpp │ │ ├── simplicial_cholesky.cpp │ │ ├── sizeof.cpp │ │ ├── sizeoverflow.cpp │ │ ├── smallvectors.cpp │ │ ├── sparse.h │ │ ├── sparseLM.cpp │ │ ├── sparse_basic.cpp │ │ ├── sparse_permutations.cpp │ │ ├── sparse_product.cpp │ │ ├── sparse_solver.h │ │ ├── sparse_solvers.cpp │ │ ├── sparse_vector.cpp │ │ ├── sparselu.cpp │ │ ├── sparseqr.cpp │ │ ├── special_numbers.cpp │ │ ├── spqr_support.cpp │ │ ├── stable_norm.cpp │ │ ├── stddeque.cpp │ │ ├── stdlist.cpp │ │ ├── stdvector.cpp │ │ ├── stdvector_overload.cpp │ │ ├── superlu_support.cpp │ │ ├── swap.cpp │ │ ├── testsuite.cmake │ │ ├── triangular.cpp │ │ ├── umeyama.cpp │ │ ├── umfpack_support.cpp │ │ ├── unalignedassert.cpp │ │ ├── unalignedcount.cpp │ │ ├── upperbidiagonalization.cpp │ │ ├── vectorization_logic.cpp │ │ ├── vectorwiseop.cpp │ │ ├── visitor.cpp │ │ └── zerosized.cpp │ └── unsupported │ │ ├── CMakeLists.txt │ │ ├── Eigen │ │ ├── AdolcForward │ │ ├── AlignedVector3 │ │ ├── ArpackSupport │ │ ├── AutoDiff │ │ ├── BVH │ │ ├── CMakeLists.txt │ │ ├── FFT │ │ ├── IterativeSolvers │ │ ├── KroneckerProduct │ │ ├── LevenbergMarquardt │ │ ├── MPRealSupport │ │ ├── MatrixFunctions │ │ ├── MoreVectorization │ │ ├── NonLinearOptimization │ │ ├── NumericalDiff │ │ ├── OpenGLSupport │ │ ├── Polynomials │ │ ├── SVD │ │ ├── Skyline │ │ ├── SparseExtra │ │ ├── Splines │ │ └── src │ │ │ ├── AutoDiff │ │ │ ├── AutoDiffJacobian.h │ │ │ ├── AutoDiffScalar.h │ │ │ ├── AutoDiffVector.h │ │ │ └── CMakeLists.txt │ │ │ ├── BVH │ │ │ ├── BVAlgorithms.h │ │ │ ├── CMakeLists.txt │ │ │ └── KdBVH.h │ │ │ ├── CMakeLists.txt │ │ │ ├── Eigenvalues │ │ │ └── ArpackSelfAdjointEigenSolver.h │ │ │ ├── FFT │ │ │ ├── CMakeLists.txt │ │ │ ├── ei_fftw_impl.h │ │ │ └── ei_kissfft_impl.h │ │ │ ├── IterativeSolvers │ │ │ ├── CMakeLists.txt │ │ │ ├── ConstrainedConjGrad.h │ │ │ ├── DGMRES.h │ │ │ ├── GMRES.h │ │ │ ├── IncompleteCholesky.h │ │ │ ├── IncompleteLU.h │ │ │ ├── IterationController.h │ │ │ ├── MINRES.h │ │ │ └── Scaling.h │ │ │ ├── KroneckerProduct │ │ │ ├── CMakeLists.txt │ │ │ └── KroneckerTensorProduct.h │ │ │ ├── LevenbergMarquardt │ │ │ ├── CMakeLists.txt │ │ │ ├── CopyrightMINPACK.txt │ │ │ ├── LMcovar.h │ │ │ ├── LMonestep.h │ │ │ ├── LMpar.h │ │ │ ├── LMqrsolv.h │ │ │ └── LevenbergMarquardt.h │ │ │ ├── MatrixFunctions │ │ │ ├── CMakeLists.txt │ │ │ ├── MatrixExponential.h │ │ │ ├── MatrixFunction.h │ │ │ ├── MatrixFunctionAtomic.h │ │ │ ├── MatrixLogarithm.h │ │ │ ├── MatrixPower.h │ │ │ ├── MatrixSquareRoot.h │ │ │ └── StemFunction.h │ │ │ ├── MoreVectorization │ │ │ ├── CMakeLists.txt │ │ │ └── MathFunctions.h │ │ │ ├── NonLinearOptimization │ │ │ ├── CMakeLists.txt │ │ │ ├── HybridNonLinearSolver.h │ │ │ ├── LevenbergMarquardt.h │ │ │ ├── chkder.h │ │ │ ├── covar.h │ │ │ ├── dogleg.h │ │ │ ├── fdjac1.h │ │ │ ├── lmpar.h │ │ │ ├── qrsolv.h │ │ │ ├── r1mpyq.h │ │ │ ├── r1updt.h │ │ │ └── rwupdt.h │ │ │ ├── NumericalDiff │ │ │ ├── CMakeLists.txt │ │ │ └── NumericalDiff.h │ │ │ ├── Polynomials │ │ │ ├── CMakeLists.txt │ │ │ ├── Companion.h │ │ │ ├── PolynomialSolver.h │ │ │ └── PolynomialUtils.h │ │ │ ├── SVD │ │ │ ├── BDCSVD.h │ │ │ ├── CMakeLists.txt │ │ │ ├── JacobiSVD.h │ │ │ ├── SVDBase.h │ │ │ ├── TODOBdcsvd.txt │ │ │ └── doneInBDCSVD.txt │ │ │ ├── Skyline │ │ │ ├── CMakeLists.txt │ │ │ ├── SkylineInplaceLU.h │ │ │ ├── SkylineMatrix.h │ │ │ ├── SkylineMatrixBase.h │ │ │ ├── SkylineProduct.h │ │ │ ├── SkylineStorage.h │ │ │ └── SkylineUtil.h │ │ │ ├── SparseExtra │ │ │ ├── BlockOfDynamicSparseMatrix.h │ │ │ ├── CMakeLists.txt │ │ │ ├── DynamicSparseMatrix.h │ │ │ ├── MarketIO.h │ │ │ ├── MatrixMarketIterator.h │ │ │ └── RandomSetter.h │ │ │ └── Splines │ │ │ ├── CMakeLists.txt │ │ │ ├── Spline.h │ │ │ ├── SplineFitting.h │ │ │ └── SplineFwd.h │ │ ├── README.txt │ │ ├── bench │ │ └── bench_svd.cpp │ │ ├── doc │ │ ├── CMakeLists.txt │ │ ├── Overview.dox │ │ ├── eigendoxy_layout.xml.in │ │ ├── examples │ │ │ ├── BVH_Example.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── FFT.cpp │ │ │ ├── MatrixExponential.cpp │ │ │ ├── MatrixFunction.cpp │ │ │ ├── MatrixLogarithm.cpp │ │ │ ├── MatrixPower.cpp │ │ │ ├── MatrixPower_optimal.cpp │ │ │ ├── MatrixSine.cpp │ │ │ ├── MatrixSinh.cpp │ │ │ ├── MatrixSquareRoot.cpp │ │ │ ├── PolynomialSolver1.cpp │ │ │ └── PolynomialUtils1.cpp │ │ └── snippets │ │ │ └── CMakeLists.txt │ │ └── test │ │ ├── BVH.cpp │ │ ├── CMakeLists.txt │ │ ├── FFT.cpp │ │ ├── FFTW.cpp │ │ ├── NonLinearOptimization.cpp │ │ ├── NumericalDiff.cpp │ │ ├── alignedvector3.cpp │ │ ├── autodiff.cpp │ │ ├── bdcsvd.cpp │ │ ├── dgmres.cpp │ │ ├── forward_adolc.cpp │ │ ├── gmres.cpp │ │ ├── jacobisvd.cpp │ │ ├── kronecker_product.cpp │ │ ├── levenberg_marquardt.cpp │ │ ├── matrix_exponential.cpp │ │ ├── matrix_function.cpp │ │ ├── matrix_functions.h │ │ ├── matrix_power.cpp │ │ ├── matrix_square_root.cpp │ │ ├── minres.cpp │ │ ├── mpreal │ │ └── mpreal.h │ │ ├── mpreal_support.cpp │ │ ├── openglsupport.cpp │ │ ├── polynomialsolver.cpp │ │ ├── polynomialutils.cpp │ │ ├── sparse_extra.cpp │ │ ├── splines.cpp │ │ └── svd_common.h │ ├── multir │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── LICENSE.txt │ ├── README.txt │ ├── annotations │ │ ├── sentential-byrelation.txt │ │ └── sentential.txt │ ├── lib │ │ └── protobuf-java-2.3.0.jar │ ├── multiR.jar │ ├── multiR_new.jar │ ├── multir.jar │ ├── run.sh │ └── src │ │ ├── cc │ │ └── factorie │ │ │ └── protobuf │ │ │ └── DocumentProtos.java │ │ └── edu │ │ └── uw │ │ └── cs │ │ └── multir │ │ ├── learning │ │ ├── algorithm │ │ │ ├── AveragedPerceptron.java │ │ │ ├── ConditionalInference.java │ │ │ ├── FullInference.java │ │ │ ├── Model.java │ │ │ ├── Parameters.java │ │ │ ├── Parse.java │ │ │ ├── Scorer.java │ │ │ └── Viterbi.java │ │ └── data │ │ │ ├── Dataset.java │ │ │ ├── MILDocument.java │ │ │ └── MemoryDataset.java │ │ ├── main │ │ ├── AggregatePrecisionRecallCurve.java │ │ ├── Main.java │ │ ├── Preprocess.java │ │ ├── ResultWriter.java │ │ ├── SententialPrecisionRecallByRelation.java │ │ ├── SententialPrecisionRecallCurve.java │ │ ├── Test.java │ │ └── Train.java │ │ ├── preprocess │ │ ├── ConvertProtobufToMILDocument.java │ │ └── Mappings.java │ │ └── util │ │ ├── DenseVector.java │ │ └── SparseBinaryVector.java │ ├── pte │ ├── line.cpp │ ├── linelib.cpp │ ├── linelib.h │ ├── makefile │ ├── pte-hete.cpp │ ├── ransampl.c │ └── ransampl.h │ ├── retype │ ├── hplelib.cpp │ ├── hplelib.h │ ├── hplelib.o │ ├── makefile │ ├── ransampl.c │ ├── ransampl.h │ ├── ransampl.o │ ├── retype │ ├── retype-rm │ ├── retype-rm.cpp │ ├── retype-rm.o │ ├── retype.cpp │ └── retype.o │ ├── seq-kernel │ ├── gen_data.py │ ├── gen_fmt.py │ ├── gen_lb.py │ ├── gen_sen.py │ ├── libsvm-3.21.zip │ ├── libsvm │ │ ├── COPYRIGHT │ │ ├── FAQ.html │ │ ├── Makefile │ │ ├── Makefile.win │ │ ├── README │ │ ├── heart_scale │ │ ├── java │ │ │ ├── Makefile │ │ │ ├── libsvm.jar │ │ │ ├── libsvm │ │ │ │ ├── svm.java │ │ │ │ ├── svm.m4 │ │ │ │ ├── svm_model.java │ │ │ │ ├── svm_node.java │ │ │ │ ├── svm_parameter.java │ │ │ │ ├── svm_print_interface.java │ │ │ │ └── svm_problem.java │ │ │ ├── svm_predict.java │ │ │ ├── svm_scale.java │ │ │ ├── svm_toy.java │ │ │ ├── svm_train.java │ │ │ └── test_applet.html │ │ ├── matlab │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── libsvmread.c │ │ │ ├── libsvmwrite.c │ │ │ ├── make.m │ │ │ ├── svm_model_matlab.c │ │ │ ├── svm_model_matlab.h │ │ │ ├── svmpredict.c │ │ │ └── svmtrain.c │ │ ├── model.txt │ │ ├── predict.txt │ │ ├── python │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── svm.py │ │ │ └── svmutil.py │ │ ├── svm-predict │ │ ├── svm-predict.c │ │ ├── svm-scale │ │ ├── svm-scale.c │ │ ├── svm-toy │ │ │ ├── gtk │ │ │ │ ├── Makefile │ │ │ │ ├── callbacks.cpp │ │ │ │ ├── callbacks.h │ │ │ │ ├── interface.c │ │ │ │ ├── interface.h │ │ │ │ ├── main.c │ │ │ │ └── svm-toy.glade │ │ │ ├── qt │ │ │ │ ├── Makefile │ │ │ │ └── svm-toy.cpp │ │ │ └── windows │ │ │ │ └── svm-toy.cpp │ │ ├── svm-train │ │ ├── svm-train.c │ │ ├── svm.cpp │ │ ├── svm.def │ │ ├── svm.h │ │ ├── svm.o │ │ ├── tools │ │ │ ├── README │ │ │ ├── checkdata.py │ │ │ ├── easy.py │ │ │ ├── grid.py │ │ │ └── subset.py │ │ └── windows │ │ │ ├── libsvm.dll │ │ │ ├── libsvmread.mexw64 │ │ │ ├── libsvmwrite.mexw64 │ │ │ ├── svm-predict.exe │ │ │ ├── svm-scale.exe │ │ │ ├── svm-toy.exe │ │ │ ├── svm-train.exe │ │ │ ├── svmpredict.mexw64 │ │ │ └── svmtrain.mexw64 │ ├── process.py │ ├── run.sh │ ├── ssk_core │ │ ├── base.txt │ │ ├── hs_err_pid12502.log │ │ ├── hs_err_pid16669.log │ │ ├── hs_err_pid18953.log │ │ ├── infer.txt │ │ ├── libsvm │ │ │ ├── Cache$1.class │ │ │ ├── Cache$head_t.class │ │ │ ├── Cache.class │ │ │ ├── CustomKernel.class │ │ │ ├── CustomKernel.java │ │ │ ├── Kernel.class │ │ │ ├── Makefile │ │ │ ├── ONE_CLASS_Q.class │ │ │ ├── QMatrix.class │ │ │ ├── SVC_Q.class │ │ │ ├── SVR_Q.class │ │ │ ├── Solver$SolutionInfo.class │ │ │ ├── Solver.class │ │ │ ├── Solver_NU.class │ │ │ ├── libsvm.jar │ │ │ ├── svm$decision_function.class │ │ │ ├── svm.class │ │ │ ├── svm.java │ │ │ ├── svm_model.class │ │ │ ├── svm_model.java │ │ │ ├── svm_node.class │ │ │ ├── svm_node.java │ │ │ ├── svm_parameter.class │ │ │ ├── svm_parameter.java │ │ │ ├── svm_problem.class │ │ │ └── svm_problem.java │ │ ├── readme.txt │ │ └── ssk │ │ │ ├── FeatureDictionary.class │ │ │ ├── FeatureDictionary.java │ │ │ ├── InstanceExample.class │ │ │ ├── InstanceExample.java │ │ │ ├── Makefile │ │ │ ├── SubsequenceKernel.class │ │ │ ├── SubsequenceKernel.java │ │ │ ├── intex_node.class │ │ │ ├── intex_node.java │ │ │ └── ssk.jar │ ├── test.lb │ ├── test.sen │ ├── test.txt │ ├── train.shuf │ ├── train.smp │ ├── train.smp.lb │ └── train.smp.sen │ └── warp │ ├── makefile │ └── warp.cpp ├── data └── source │ ├── BioInfer │ └── README.md │ ├── KBP │ └── README.md │ └── NYT │ └── README.md └── run.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/README.md -------------------------------------------------------------------------------- /code/Classifier/CLPL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Classifier/CLPL.py -------------------------------------------------------------------------------- /code/Classifier/Classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Classifier/Classifier.py -------------------------------------------------------------------------------- /code/Classifier/Classifier_em.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Classifier/Classifier_em.py -------------------------------------------------------------------------------- /code/Classifier/DataIO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Classifier/DataIO.py -------------------------------------------------------------------------------- /code/Classifier/HierarchySVM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Classifier/HierarchySVM.py -------------------------------------------------------------------------------- /code/Classifier/Logistic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Classifier/Logistic.py -------------------------------------------------------------------------------- /code/Classifier/MulticlassSVM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Classifier/MulticlassSVM.py -------------------------------------------------------------------------------- /code/Classifier/PLSVM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Classifier/PLSVM.py -------------------------------------------------------------------------------- /code/Classifier/Perceptron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Classifier/Perceptron.py -------------------------------------------------------------------------------- /code/Classifier/SVM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Classifier/SVM.py -------------------------------------------------------------------------------- /code/Classifier/TypeHierarchy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Classifier/TypeHierarchy.py -------------------------------------------------------------------------------- /code/Classifier/liblinear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Classifier/liblinear.py -------------------------------------------------------------------------------- /code/Classifier/liblinear.so.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Classifier/liblinear.so.3 -------------------------------------------------------------------------------- /code/Classifier/liblinearutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Classifier/liblinearutil.py -------------------------------------------------------------------------------- /code/DataProcessor/Feature/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/DataProcessor/Feature/__init__.py -------------------------------------------------------------------------------- /code/DataProcessor/Feature/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/DataProcessor/Feature/__init__.pyc -------------------------------------------------------------------------------- /code/DataProcessor/Feature/abstract_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/DataProcessor/Feature/abstract_feature.py -------------------------------------------------------------------------------- /code/DataProcessor/Feature/abstract_feature.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/DataProcessor/Feature/abstract_feature.pyc -------------------------------------------------------------------------------- /code/DataProcessor/Feature/brown_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/DataProcessor/Feature/brown_feature.py -------------------------------------------------------------------------------- /code/DataProcessor/Feature/brown_feature.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/DataProcessor/Feature/brown_feature.pyc -------------------------------------------------------------------------------- /code/DataProcessor/Feature/dependency_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/DataProcessor/Feature/dependency_feature.py -------------------------------------------------------------------------------- /code/DataProcessor/Feature/dependency_feature.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/DataProcessor/Feature/dependency_feature.pyc -------------------------------------------------------------------------------- /code/DataProcessor/Feature/em_brown_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/DataProcessor/Feature/em_brown_feature.py -------------------------------------------------------------------------------- /code/DataProcessor/Feature/em_brown_feature.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/DataProcessor/Feature/em_brown_feature.pyc -------------------------------------------------------------------------------- /code/DataProcessor/Feature/em_dependency_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/DataProcessor/Feature/em_dependency_feature.py -------------------------------------------------------------------------------- /code/DataProcessor/Feature/em_dependency_feature.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/DataProcessor/Feature/em_dependency_feature.pyc -------------------------------------------------------------------------------- /code/DataProcessor/Feature/em_other_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/DataProcessor/Feature/em_other_feature.py -------------------------------------------------------------------------------- /code/DataProcessor/Feature/em_other_feature.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/DataProcessor/Feature/em_other_feature.pyc -------------------------------------------------------------------------------- /code/DataProcessor/Feature/em_token_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/DataProcessor/Feature/em_token_feature.py -------------------------------------------------------------------------------- /code/DataProcessor/Feature/em_token_feature.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/DataProcessor/Feature/em_token_feature.pyc -------------------------------------------------------------------------------- /code/DataProcessor/Feature/other_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/DataProcessor/Feature/other_feature.py -------------------------------------------------------------------------------- /code/DataProcessor/Feature/other_feature.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/DataProcessor/Feature/other_feature.pyc -------------------------------------------------------------------------------- /code/DataProcessor/Feature/token_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/DataProcessor/Feature/token_feature.py -------------------------------------------------------------------------------- /code/DataProcessor/Feature/token_feature.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/DataProcessor/Feature/token_feature.pyc -------------------------------------------------------------------------------- /code/DataProcessor/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'wenqihe' 2 | 3 | -------------------------------------------------------------------------------- /code/DataProcessor/feature_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/DataProcessor/feature_generation.py -------------------------------------------------------------------------------- /code/DataProcessor/liblinear_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/DataProcessor/liblinear_processor.py -------------------------------------------------------------------------------- /code/DataProcessor/mention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/DataProcessor/mention.py -------------------------------------------------------------------------------- /code/DataProcessor/mention_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/DataProcessor/mention_reader.py -------------------------------------------------------------------------------- /code/DataProcessor/ner_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/DataProcessor/ner_feature.py -------------------------------------------------------------------------------- /code/DataProcessor/nlp_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/DataProcessor/nlp_parse.py -------------------------------------------------------------------------------- /code/DataProcessor/pruning_heuristics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/DataProcessor/pruning_heuristics.py -------------------------------------------------------------------------------- /code/DataProcessor/statistic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/DataProcessor/statistic.py -------------------------------------------------------------------------------- /code/Evaluation/convertPredictionToJson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Evaluation/convertPredictionToJson.py -------------------------------------------------------------------------------- /code/Evaluation/emb_prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Evaluation/emb_prediction.py -------------------------------------------------------------------------------- /code/Evaluation/emb_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Evaluation/emb_test.py -------------------------------------------------------------------------------- /code/Evaluation/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Evaluation/evaluation.py -------------------------------------------------------------------------------- /code/Evaluation/tune_threshold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Evaluation/tune_threshold.py -------------------------------------------------------------------------------- /code/Model/FCM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/README.md -------------------------------------------------------------------------------- /code/Model/FCM/all.sen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/all.sen -------------------------------------------------------------------------------- /code/Model/FCM/code/BaseComponentModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/code/BaseComponentModel.cpp -------------------------------------------------------------------------------- /code/Model/FCM/code/BaseComponentModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/code/BaseComponentModel.h -------------------------------------------------------------------------------- /code/Model/FCM/code/BaseComponentModel.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/code/BaseComponentModel.o -------------------------------------------------------------------------------- /code/Model/FCM/code/Commons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/code/Commons.h -------------------------------------------------------------------------------- /code/Model/FCM/code/EmbeddingModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/code/EmbeddingModel.cpp -------------------------------------------------------------------------------- /code/Model/FCM/code/EmbeddingModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/code/EmbeddingModel.h -------------------------------------------------------------------------------- /code/Model/FCM/code/EmbeddingModel.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/code/EmbeddingModel.o -------------------------------------------------------------------------------- /code/Model/FCM/code/FctCoarseModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/code/FctCoarseModel.cpp -------------------------------------------------------------------------------- /code/Model/FCM/code/FctCoarseModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/code/FctCoarseModel.h -------------------------------------------------------------------------------- /code/Model/FCM/code/FctCoarseModel.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/code/FctCoarseModel.o -------------------------------------------------------------------------------- /code/Model/FCM/code/FctConvolutionModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/code/FctConvolutionModel.cpp -------------------------------------------------------------------------------- /code/Model/FCM/code/FctConvolutionModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/code/FctConvolutionModel.h -------------------------------------------------------------------------------- /code/Model/FCM/code/FctConvolutionModel.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/code/FctConvolutionModel.o -------------------------------------------------------------------------------- /code/Model/FCM/code/FctDeepModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/code/FctDeepModel.cpp -------------------------------------------------------------------------------- /code/Model/FCM/code/FctDeepModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/code/FctDeepModel.h -------------------------------------------------------------------------------- /code/Model/FCM/code/FctDeepModel.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/code/FctDeepModel.o -------------------------------------------------------------------------------- /code/Model/FCM/code/FeatureModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/code/FeatureModel.cpp -------------------------------------------------------------------------------- /code/Model/FCM/code/FeatureModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/code/FeatureModel.h -------------------------------------------------------------------------------- /code/Model/FCM/code/FeatureModel.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/code/FeatureModel.o -------------------------------------------------------------------------------- /code/Model/FCM/code/FullFctModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/code/FullFctModel.cpp -------------------------------------------------------------------------------- /code/Model/FCM/code/FullFctModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/code/FullFctModel.h -------------------------------------------------------------------------------- /code/Model/FCM/code/FullFctModel.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/code/FullFctModel.o -------------------------------------------------------------------------------- /code/Model/FCM/code/Instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/code/Instances.cpp -------------------------------------------------------------------------------- /code/Model/FCM/code/Instances.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/code/Instances.h -------------------------------------------------------------------------------- /code/Model/FCM/code/Instances.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/code/Instances.o -------------------------------------------------------------------------------- /code/Model/FCM/code/RE_FCT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/code/RE_FCT -------------------------------------------------------------------------------- /code/Model/FCM/code/RE_FCT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/code/RE_FCT.cpp -------------------------------------------------------------------------------- /code/Model/FCM/code/RE_FCT_fixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/code/RE_FCT_fixed -------------------------------------------------------------------------------- /code/Model/FCM/code/RE_FCT_fixed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/code/RE_FCT_fixed.cpp -------------------------------------------------------------------------------- /code/Model/FCM/code/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/code/makefile -------------------------------------------------------------------------------- /code/Model/FCM/data/SemEval.test.fea.sst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/data/SemEval.test.fea.sst -------------------------------------------------------------------------------- /code/Model/FCM/data/SemEval.test.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/data/SemEval.test.keys -------------------------------------------------------------------------------- /code/Model/FCM/data/SemEval.train.fea.sst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/data/SemEval.train.fea.sst -------------------------------------------------------------------------------- /code/Model/FCM/data/semeval2010_task8_scorer-v1.2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/data/semeval2010_task8_scorer-v1.2.pl -------------------------------------------------------------------------------- /code/Model/FCM/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/filter.py -------------------------------------------------------------------------------- /code/Model/FCM/gen_fmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/gen_fmt.py -------------------------------------------------------------------------------- /code/Model/FCM/gen_sen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/gen_sen.py -------------------------------------------------------------------------------- /code/Model/FCM/predict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/predict.txt -------------------------------------------------------------------------------- /code/Model/FCM/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/process.py -------------------------------------------------------------------------------- /code/Model/FCM/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/run.sh -------------------------------------------------------------------------------- /code/Model/FCM/test.fmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/test.fmt -------------------------------------------------------------------------------- /code/Model/FCM/test.fmt.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/test.fmt.tmp -------------------------------------------------------------------------------- /code/Model/FCM/test.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/test.id -------------------------------------------------------------------------------- /code/Model/FCM/test.sen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/test.sen -------------------------------------------------------------------------------- /code/Model/FCM/train.fmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/train.fmt -------------------------------------------------------------------------------- /code/Model/FCM/train.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/train.id -------------------------------------------------------------------------------- /code/Model/FCM/train.sen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/train.sen -------------------------------------------------------------------------------- /code/Model/FCM/vec.emb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/vec.emb -------------------------------------------------------------------------------- /code/Model/FCM/word2vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/word2vec -------------------------------------------------------------------------------- /code/Model/FCM/word2vec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/FCM/word2vec.cpp -------------------------------------------------------------------------------- /code/Model/baselines/hypenet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/baselines/hypenet/README.md -------------------------------------------------------------------------------- /code/Model/baselines/hypenet/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/baselines/hypenet/data/README.md -------------------------------------------------------------------------------- /code/Model/baselines/hypenet/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/baselines/hypenet/evaluation.py -------------------------------------------------------------------------------- /code/Model/baselines/hypenet/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/baselines/hypenet/helper.py -------------------------------------------------------------------------------- /code/Model/baselines/hypenet/lemmatize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/baselines/hypenet/lemmatize.py -------------------------------------------------------------------------------- /code/Model/baselines/hypenet/model.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/baselines/hypenet/model.h5 -------------------------------------------------------------------------------- /code/Model/baselines/hypenet/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/baselines/hypenet/plot.py -------------------------------------------------------------------------------- /code/Model/baselines/hypenet/postprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/baselines/hypenet/postprocess.py -------------------------------------------------------------------------------- /code/Model/baselines/hypenet/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/baselines/hypenet/preprocess.py -------------------------------------------------------------------------------- /code/Model/baselines/hypenet/sdp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/baselines/hypenet/sdp.py -------------------------------------------------------------------------------- /code/Model/baselines/hypenet/sentence_normalize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/baselines/hypenet/sentence_normalize.py -------------------------------------------------------------------------------- /code/Model/baselines/hypenet/sentence_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/baselines/hypenet/sentence_tokens.py -------------------------------------------------------------------------------- /code/Model/baselines/hypenet/shortest_dep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/baselines/hypenet/shortest_dep.py -------------------------------------------------------------------------------- /code/Model/baselines/hypenet/split_baseline_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/baselines/hypenet/split_baseline_data.py -------------------------------------------------------------------------------- /code/Model/baselines/hypenet/test_corenlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/baselines/hypenet/test_corenlp.py -------------------------------------------------------------------------------- /code/Model/baselines/sdp-lstm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/baselines/sdp-lstm/README.md -------------------------------------------------------------------------------- /code/Model/baselines/sdp-lstm/dependency-kbp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/Model/baselines/sdp-lstm/dependency-kbp/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/baselines/sdp-lstm/dependency-kbp/eval.py -------------------------------------------------------------------------------- /code/Model/baselines/sdp-lstm/dependency/analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/baselines/sdp-lstm/dependency/analyze.py -------------------------------------------------------------------------------- /code/Model/baselines/sdp-lstm/dependency/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/baselines/sdp-lstm/dependency/eval.py -------------------------------------------------------------------------------- /code/Model/baselines/sdp-lstm/dependency/scorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/baselines/sdp-lstm/dependency/scorer.py -------------------------------------------------------------------------------- /code/Model/baselines/sdp-lstm/dependency/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/baselines/sdp-lstm/dependency/train.py -------------------------------------------------------------------------------- /code/Model/baselines/sdp-lstm/dependency/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/baselines/sdp-lstm/dependency/tree.py -------------------------------------------------------------------------------- /code/Model/baselines/sdp-lstm/dependency/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/baselines/sdp-lstm/dependency/utils.py -------------------------------------------------------------------------------- /code/Model/baselines/sentence-level-models/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/baselines/sentence-level-models/README.md -------------------------------------------------------------------------------- /code/Model/baselines/sentence-level-models/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/baselines/sentence-level-models/model.py -------------------------------------------------------------------------------- /code/Model/baselines/sentence-level-models/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/baselines/sentence-level-models/train.py -------------------------------------------------------------------------------- /code/Model/baselines/sentence-level-models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/baselines/sentence-level-models/utils.py -------------------------------------------------------------------------------- /code/Model/baselines/sentence-level-models/vocab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/baselines/sentence-level-models/vocab.py -------------------------------------------------------------------------------- /code/Model/dw/deepwalk-bipa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/dw/deepwalk-bipa.cpp -------------------------------------------------------------------------------- /code/Model/dw/deepwalk-hete-em.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/dw/deepwalk-hete-em.cpp -------------------------------------------------------------------------------- /code/Model/dw/deepwalk-hete.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/dw/deepwalk-hete.cpp -------------------------------------------------------------------------------- /code/Model/dw/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/dw/makefile -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/.hg_archival.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/.hg_archival.txt -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/.hgeol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/.hgeol -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/.hgignore -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/.hgtags -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/CMakeLists.txt -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/COPYING.BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/COPYING.BSD -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/COPYING.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/COPYING.GPL -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/COPYING.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/COPYING.LGPL -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/COPYING.MINPACK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/COPYING.MINPACK -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/COPYING.MPL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/COPYING.MPL2 -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/COPYING.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/COPYING.README -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/CTestConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/CTestConfig.cmake -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/CTestCustom.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/CTestCustom.cmake.in -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/Array: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/Array -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/CMakeLists.txt -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/Cholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/Cholesky -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/CholmodSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/CholmodSupport -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/Core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/Core -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/Dense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/Dense -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/Eigen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/Eigen -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/Eigen2Support: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/Eigen2Support -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/Eigenvalues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/Eigenvalues -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/Geometry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/Geometry -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/Householder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/Householder -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/IterativeLinearSolvers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/IterativeLinearSolvers -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/Jacobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/Jacobi -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/LU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/LU -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/LeastSquares: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/LeastSquares -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/MetisSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/MetisSupport -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/OrderingMethods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/OrderingMethods -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/PaStiXSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/PaStiXSupport -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/PardisoSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/PardisoSupport -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/QR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/QR -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/QtAlignedMalloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/QtAlignedMalloc -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/SPQRSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/SPQRSupport -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/SVD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/SVD -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/Sparse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/Sparse -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/SparseCholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/SparseCholesky -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/SparseCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/SparseCore -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/SparseLU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/SparseLU -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/SparseQR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/SparseQR -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/StdDeque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/StdDeque -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/StdList: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/StdList -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/StdVector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/StdVector -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/SuperLUSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/SuperLUSupport -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/UmfPackSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/UmfPackSupport -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/CMakeLists.txt -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Cholesky/LDLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Cholesky/LDLT.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Cholesky/LLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Cholesky/LLT.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Cholesky/LLT_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Cholesky/LLT_MKL.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Core/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Core/Array.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Core/ArrayBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Core/ArrayBase.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Core/ArrayWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Core/ArrayWrapper.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Core/Assign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Core/Assign.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Core/Assign_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Core/Assign_MKL.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Core/BandMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Core/BandMatrix.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Core/Block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Core/Block.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Core/BooleanRedux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Core/BooleanRedux.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Core/CMakeLists.txt -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Core/CwiseUnaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Core/CwiseUnaryOp.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Core/DenseBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Core/DenseBase.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Core/DenseStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Core/DenseStorage.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Core/Diagonal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Core/Diagonal.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Core/Dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Core/Dot.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Core/EigenBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Core/EigenBase.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Core/Flagged.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Core/Flagged.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Core/Functors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Core/Functors.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Core/Fuzzy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Core/Fuzzy.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Core/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Core/IO.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Core/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Core/Map.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Core/MapBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Core/MapBase.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Core/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Core/Matrix.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Core/MatrixBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Core/MatrixBase.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Core/NestByValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Core/NestByValue.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Core/NoAlias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Core/NoAlias.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Core/NumTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Core/NumTraits.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Core/ProductBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Core/ProductBase.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Core/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Core/Random.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Core/Redux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Core/Redux.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Core/Ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Core/Ref.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Core/Replicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Core/Replicate.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Core/Reverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Core/Reverse.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Core/Select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Core/Select.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Core/StableNorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Core/StableNorm.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Core/Stride.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Core/Stride.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Core/Swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Core/Swap.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Core/Transpose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Core/Transpose.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Core/VectorBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Core/VectorBlock.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Core/VectorwiseOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Core/VectorwiseOp.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Core/Visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Core/Visitor.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Core/util/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Core/util/Macros.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Core/util/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Core/util/Memory.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Core/util/Meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Core/util/Meta.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Core/util/NonMPL2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Core/util/NonMPL2.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Eigen2Support/LU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Eigen2Support/LU.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Eigen2Support/QR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Eigen2Support/QR.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Eigen2Support/SVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Eigen2Support/SVD.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Geometry/Scaling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Geometry/Scaling.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Geometry/Umeyama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Geometry/Umeyama.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/Jacobi/Jacobi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/Jacobi/Jacobi.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/LU/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/LU/CMakeLists.txt -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/LU/Determinant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/LU/Determinant.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/LU/FullPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/LU/FullPivLU.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/LU/Inverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/LU/Inverse.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/LU/PartialPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/LU/PartialPivLU.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/QR/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/QR/CMakeLists.txt -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/QR/HouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/QR/HouseholderQR.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/SVD/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/SVD/CMakeLists.txt -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/SVD/JacobiSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/SVD/JacobiSVD.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/SVD/JacobiSVD_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/SVD/JacobiSVD_MKL.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/SparseLU/SparseLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/SparseLU/SparseLU.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/SparseQR/SparseQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/SparseQR/SparseQR.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/misc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/misc/CMakeLists.txt -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/misc/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/misc/Image.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/misc/Kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/misc/Kernel.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/misc/Solve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/misc/Solve.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/misc/SparseSolve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/misc/SparseSolve.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/Eigen/src/misc/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/Eigen/src/misc/blas.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/INSTALL -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/BenchSparseUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/BenchSparseUtil.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/BenchTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/BenchTimer.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/BenchUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/BenchUtil.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/README.txt -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/basicbench.cxxlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/basicbench.cxxlist -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/basicbenchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/basicbenchmark.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/basicbenchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/basicbenchmark.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/benchBlasGemm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/benchBlasGemm.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/benchCholesky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/benchCholesky.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/benchEigenSolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/benchEigenSolver.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/benchFFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/benchFFT.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/benchGeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/benchGeometry.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/benchVecAdd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/benchVecAdd.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/bench_gemm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/bench_gemm.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/bench_norm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/bench_norm.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/bench_reverse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/bench_reverse.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/bench_sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/bench_sum.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/bench_unrolling: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/bench_unrolling -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/benchmark.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/benchmarkSlice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/benchmarkSlice.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/benchmarkX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/benchmarkX.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/benchmarkXcwise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/benchmarkXcwise.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/benchmark_suite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/benchmark_suite -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/btl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/btl/CMakeLists.txt -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/btl/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/btl/COPYING -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/btl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/btl/README -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/btl/cmake/FindGMM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/btl/cmake/FindGMM.cmake -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/btl/cmake/FindMKL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/btl/cmake/FindMKL.cmake -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/btl/data/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/btl/data/CMakeLists.txt -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/btl/data/go_mean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/btl/data/go_mean -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/btl/data/mean.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/btl/data/mean.cxx -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/btl/data/regularize.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/btl/data/regularize.cxx -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/btl/data/smooth.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/btl/data/smooth.cxx -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/btl/data/smooth_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/btl/data/smooth_all.sh -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/btl/libs/BLAS/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/btl/libs/BLAS/blas.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/btl/libs/BLAS/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/btl/libs/BLAS/main.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/btl/libs/STL/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/btl/libs/STL/main.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/btl/libs/gmm/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/btl/libs/gmm/main.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/btl/libs/mtl4/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/btl/libs/mtl4/main.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/btl/libs/tvmet/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/btl/libs/tvmet/main.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/btl/libs/ublas/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/btl/libs/ublas/main.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/check_cache_queries.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/check_cache_queries.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/eig33.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/eig33.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/geometry.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/product_threshold.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/product_threshold.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/quat_slerp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/quat_slerp.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/quatmul.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/quatmul.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/sparse_cholesky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/sparse_cholesky.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/sparse_lu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/sparse_lu.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/sparse_product.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/sparse_product.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/sparse_randomsetter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/sparse_randomsetter.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/sparse_setter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/sparse_setter.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/sparse_transpose.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/sparse_transpose.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/sparse_trisolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/sparse_trisolver.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/spbench/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/spbench/CMakeLists.txt -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/spbench/sp_solver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/spbench/sp_solver.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/spbench/spbench.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/spbench/spbench.dtd -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/spbench/spbenchsolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/spbench/spbenchsolver.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/spbench/spbenchstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/spbench/spbenchstyle.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/spmv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/spmv.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/bench/vdw_new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/bench/vdw_new.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/BandTriangularSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/BandTriangularSolver.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/CMakeLists.txt -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/GeneralRank1Update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/GeneralRank1Update.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/README.txt -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/Rank2Update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/Rank2Update.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/chbmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/chbmv.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/chpmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/chpmv.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/common.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/complex_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/complex_double.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/complex_single.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/complex_single.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/complexdots.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/complexdots.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/ctbmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/ctbmv.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/double.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/drotm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/drotm.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/drotmg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/drotmg.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/dsbmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/dsbmv.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/dspmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/dspmv.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/dtbmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/dtbmv.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/level1_cplx_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/level1_cplx_impl.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/level1_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/level1_impl.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/level1_real_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/level1_real_impl.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/level2_cplx_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/level2_cplx_impl.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/level2_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/level2_impl.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/level2_real_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/level2_real_impl.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/level3_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/level3_impl.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/lsame.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/lsame.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/single.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/single.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/srotm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/srotm.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/srotmg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/srotmg.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/ssbmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/ssbmv.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/sspmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/sspmv.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/stbmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/stbmv.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/testing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/testing/CMakeLists.txt -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/testing/cblat1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/testing/cblat1.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/testing/cblat2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/testing/cblat2.dat -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/testing/cblat2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/testing/cblat2.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/testing/cblat3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/testing/cblat3.dat -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/testing/cblat3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/testing/cblat3.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/testing/dblat1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/testing/dblat1.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/testing/dblat2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/testing/dblat2.dat -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/testing/dblat2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/testing/dblat2.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/testing/dblat3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/testing/dblat3.dat -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/testing/dblat3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/testing/dblat3.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/testing/runblastest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/testing/runblastest.sh -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/testing/sblat1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/testing/sblat1.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/testing/sblat2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/testing/sblat2.dat -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/testing/sblat2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/testing/sblat2.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/testing/sblat3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/testing/sblat3.dat -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/testing/sblat3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/testing/sblat3.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/testing/zblat1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/testing/zblat1.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/testing/zblat2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/testing/zblat2.dat -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/testing/zblat2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/testing/zblat2.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/testing/zblat3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/testing/zblat3.dat -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/testing/zblat3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/testing/zblat3.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/xerbla.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/xerbla.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/zhbmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/zhbmv.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/zhpmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/zhpmv.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/blas/ztbmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/blas/ztbmv.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/cmake/EigenTesting.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/cmake/EigenTesting.cmake -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/cmake/FindAdolc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/cmake/FindAdolc.cmake -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/cmake/FindBLAS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/cmake/FindBLAS.cmake -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/cmake/FindCholmod.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/cmake/FindCholmod.cmake -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/cmake/FindEigen2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/cmake/FindEigen2.cmake -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/cmake/FindEigen3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/cmake/FindEigen3.cmake -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/cmake/FindFFTW.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/cmake/FindFFTW.cmake -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/cmake/FindGLEW.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/cmake/FindGLEW.cmake -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/cmake/FindGMP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/cmake/FindGMP.cmake -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/cmake/FindGSL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/cmake/FindGSL.cmake -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/cmake/FindGoogleHash.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/cmake/FindGoogleHash.cmake -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/cmake/FindLAPACK.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/cmake/FindLAPACK.cmake -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/cmake/FindMPFR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/cmake/FindMPFR.cmake -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/cmake/FindMetis.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/cmake/FindMetis.cmake -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/cmake/FindPastix.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/cmake/FindPastix.cmake -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/cmake/FindSPQR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/cmake/FindSPQR.cmake -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/cmake/FindScotch.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/cmake/FindScotch.cmake -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/cmake/FindSuperLU.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/cmake/FindSuperLU.cmake -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/cmake/FindUmfpack.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/cmake/FindUmfpack.cmake -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/cmake/RegexUtils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/cmake/RegexUtils.cmake -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/cmake/language_support.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/cmake/language_support.cmake -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/debug/gdb/__init__.py: -------------------------------------------------------------------------------- 1 | # Intentionally empty 2 | -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/debug/gdb/printers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/debug/gdb/printers.py -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/debug/msvc/eigen.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/debug/msvc/eigen.natvis -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/demos/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/demos/CMakeLists.txt -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/demos/mandelbrot/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/demos/mandelbrot/README -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/demos/mandelbrot/mandelbrot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/demos/mandelbrot/mandelbrot.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/demos/mix_eigen_and_c/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/demos/mix_eigen_and_c/README -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/demos/opengl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/demos/opengl/CMakeLists.txt -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/demos/opengl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/demos/opengl/README -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/demos/opengl/camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/demos/opengl/camera.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/demos/opengl/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/demos/opengl/camera.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/demos/opengl/gpuhelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/demos/opengl/gpuhelper.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/demos/opengl/gpuhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/demos/opengl/gpuhelper.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/demos/opengl/icosphere.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/demos/opengl/icosphere.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/demos/opengl/icosphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/demos/opengl/icosphere.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/demos/opengl/trackball.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/demos/opengl/trackball.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/demos/opengl/trackball.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/demos/opengl/trackball.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/A05_PortingFrom2To3.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/doc/A05_PortingFrom2To3.dox -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/AsciiQuickReference.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/doc/AsciiQuickReference.txt -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/B01_Experimental.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/doc/B01_Experimental.dox -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/doc/CMakeLists.txt -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/ClassHierarchy.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/doc/ClassHierarchy.dox -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/CustomizingEigen.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/doc/CustomizingEigen.dox -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/doc/Doxyfile.in -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/FixedSizeVectorizable.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/doc/FixedSizeVectorizable.dox -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/HiPerformance.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/doc/HiPerformance.dox -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/InsideEigenExample.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/doc/InsideEigenExample.dox -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/Manual.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/doc/Manual.dox -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/Overview.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/doc/Overview.dox -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/PassingByValue.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/doc/PassingByValue.dox -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/QuickReference.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/doc/QuickReference.dox -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/QuickStartGuide.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/doc/QuickStartGuide.dox -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/SparseLinearSystems.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/doc/SparseLinearSystems.dox -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/SparseQuickReference.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/doc/SparseQuickReference.dox -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/StlContainers.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/doc/StlContainers.dox -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/StorageOrders.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/doc/StorageOrders.dox -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/TemplateKeyword.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/doc/TemplateKeyword.dox -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/TopicAliasing.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/doc/TopicAliasing.dox -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/TopicAssertions.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/doc/TopicAssertions.dox -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/TopicResizing.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/doc/TopicResizing.dox -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/TopicScalarTypes.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/doc/TopicScalarTypes.dox -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/TopicVectorization.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/doc/TopicVectorization.dox -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/TutorialArrayClass.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/doc/TutorialArrayClass.dox -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/TutorialGeometry.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/doc/TutorialGeometry.dox -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/TutorialMapClass.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/doc/TutorialMapClass.dox -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/TutorialSparse.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/doc/TutorialSparse.dox -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/UsingIntelMKL.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/doc/UsingIntelMKL.dox -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/eigen_navtree_hacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/doc/eigen_navtree_hacks.js -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/eigendoxy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/doc/eigendoxy.css -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/eigendoxy_tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/doc/eigendoxy_tabs.css -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/examples/.krazy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/doc/examples/.krazy -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/snippets/.krazy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/doc/snippets/.krazy -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/snippets/Cwise_abs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/doc/snippets/Cwise_abs.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/snippets/Cwise_cos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/doc/snippets/Cwise_cos.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/snippets/Cwise_exp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/doc/snippets/Cwise_exp.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/snippets/Cwise_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/doc/snippets/Cwise_log.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/snippets/Cwise_max.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/doc/snippets/Cwise_max.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/snippets/Cwise_min.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/doc/snippets/Cwise_min.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/snippets/Cwise_pow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/doc/snippets/Cwise_pow.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/snippets/Cwise_sin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/doc/snippets/Cwise_sin.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/snippets/Cwise_tan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/doc/snippets/Cwise_tan.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/snippets/IOFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/doc/snippets/IOFormat.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/snippets/LLT_solve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/doc/snippets/LLT_solve.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/snippets/MatrixBase_cwiseSqrt.cpp: -------------------------------------------------------------------------------- 1 | Vector3d v(1,2,4); 2 | cout << v.cwiseSqrt() << endl; 3 | -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/snippets/MatrixBase_identity.cpp: -------------------------------------------------------------------------------- 1 | cout << Matrix::Identity() << endl; 2 | -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/snippets/MatrixBase_identity_int_int.cpp: -------------------------------------------------------------------------------- 1 | cout << MatrixXd::Identity(4, 3) << endl; 2 | -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/snippets/MatrixBase_ones_int_int.cpp: -------------------------------------------------------------------------------- 1 | cout << MatrixXi::Ones(2,3) << endl; 2 | -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/snippets/MatrixBase_random.cpp: -------------------------------------------------------------------------------- 1 | cout << 100 * Matrix2i::Random() << endl; 2 | -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/snippets/MatrixBase_random_int.cpp: -------------------------------------------------------------------------------- 1 | cout << VectorXi::Random(2) << endl; 2 | -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/snippets/MatrixBase_random_int_int.cpp: -------------------------------------------------------------------------------- 1 | cout << MatrixXi::Random(2,3) << endl; 2 | -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/snippets/MatrixBase_zero_int_int.cpp: -------------------------------------------------------------------------------- 1 | cout << MatrixXi::Zero(2,3) << endl; 2 | -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/doc/tutorial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/doc/tutorial.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/eigen3.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/eigen3.pc.in -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/failtest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/failtest/CMakeLists.txt -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/failtest/colpivqr_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/failtest/colpivqr_int.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/failtest/fullpivlu_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/failtest/fullpivlu_int.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/failtest/fullpivqr_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/failtest/fullpivqr_int.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/failtest/jacobisvd_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/failtest/jacobisvd_int.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/failtest/ldlt_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/failtest/ldlt_int.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/failtest/llt_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/failtest/llt_int.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/failtest/qr_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/failtest/qr_int.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/failtest/ref_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/failtest/ref_1.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/failtest/ref_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/failtest/ref_2.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/failtest/ref_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/failtest/ref_3.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/failtest/ref_4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/failtest/ref_4.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/failtest/ref_5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/failtest/ref_5.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/lapack/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/lapack/CMakeLists.txt -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/lapack/cholesky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/lapack/cholesky.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/lapack/clacgv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/lapack/clacgv.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/lapack/cladiv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/lapack/cladiv.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/lapack/clarf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/lapack/clarf.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/lapack/clarfb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/lapack/clarfb.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/lapack/clarfg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/lapack/clarfg.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/lapack/clarft.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/lapack/clarft.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/lapack/complex_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/lapack/complex_double.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/lapack/complex_single.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/lapack/complex_single.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/lapack/dladiv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/lapack/dladiv.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/lapack/dlamch.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/lapack/dlamch.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/lapack/dlapy2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/lapack/dlapy2.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/lapack/dlapy3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/lapack/dlapy3.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/lapack/dlarf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/lapack/dlarf.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/lapack/dlarfb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/lapack/dlarfb.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/lapack/dlarfg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/lapack/dlarfg.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/lapack/dlarft.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/lapack/dlarft.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/lapack/double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/lapack/double.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/lapack/dsecnd_NONE.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/lapack/dsecnd_NONE.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/lapack/eigenvalues.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/lapack/eigenvalues.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/lapack/ilaclc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/lapack/ilaclc.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/lapack/ilaclr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/lapack/ilaclr.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/lapack/iladlc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/lapack/iladlc.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/lapack/iladlr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/lapack/iladlr.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/lapack/ilaslc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/lapack/ilaslc.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/lapack/ilaslr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/lapack/ilaslr.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/lapack/ilazlc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/lapack/ilazlc.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/lapack/ilazlr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/lapack/ilazlr.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/lapack/lapack_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/lapack/lapack_common.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/lapack/lu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/lapack/lu.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/lapack/second_NONE.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/lapack/second_NONE.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/lapack/single.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/lapack/single.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/lapack/sladiv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/lapack/sladiv.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/lapack/slamch.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/lapack/slamch.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/lapack/slapy2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/lapack/slapy2.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/lapack/slapy3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/lapack/slapy3.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/lapack/slarf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/lapack/slarf.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/lapack/slarfb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/lapack/slarfb.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/lapack/slarfg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/lapack/slarfg.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/lapack/slarft.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/lapack/slarft.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/lapack/zlacgv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/lapack/zlacgv.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/lapack/zladiv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/lapack/zladiv.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/lapack/zlarf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/lapack/zlarf.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/lapack/zlarfb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/lapack/zlarfb.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/lapack/zlarfg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/lapack/zlarfg.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/lapack/zlarft.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/lapack/zlarft.f -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/scripts/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/scripts/CMakeLists.txt -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/scripts/buildtests.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/scripts/buildtests.in -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/scripts/check.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/scripts/check.in -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/scripts/debug.in: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cmake -DCMAKE_BUILD_TYPE=Debug . 4 | -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/scripts/eigen_gen_docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/scripts/eigen_gen_docs -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/scripts/release.in: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cmake -DCMAKE_BUILD_TYPE=Release . 4 | -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/scripts/relicense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/scripts/relicense.py -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/CMakeLists.txt -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/adjoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/adjoint.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/array.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/array_for_matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/array_for_matrix.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/array_replicate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/array_replicate.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/array_reverse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/array_reverse.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/bandmatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/bandmatrix.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/basicstuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/basicstuff.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/bicgstab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/bicgstab.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/block.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/cholesky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/cholesky.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/cholmod_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/cholmod_support.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/commainitializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/commainitializer.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/corners.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/corners.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/cwiseop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/cwiseop.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/denseLM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/denseLM.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/determinant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/determinant.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/diagonal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/diagonal.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/diagonalmatrices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/diagonalmatrices.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/dontalign.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/dontalign.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/dynalloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/dynalloc.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/eigen2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/eigen2/CMakeLists.txt -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/eigen2/eigen2_lu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/eigen2/eigen2_lu.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/eigen2/eigen2_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/eigen2/eigen2_map.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/eigen2/eigen2_qr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/eigen2/eigen2_qr.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/eigen2/eigen2_sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/eigen2/eigen2_sum.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/eigen2/eigen2_svd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/eigen2/eigen2_svd.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/eigen2/gsl_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/eigen2/gsl_helper.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/eigen2/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/eigen2/main.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/eigen2/product.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/eigen2/product.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/eigen2/runtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/eigen2/runtest.sh -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/eigen2/sparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/eigen2/sparse.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/eigen2support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/eigen2support.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/exceptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/exceptions.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/first_aligned.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/first_aligned.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/geo_alignedbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/geo_alignedbox.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/geo_eulerangles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/geo_eulerangles.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/geo_homogeneous.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/geo_homogeneous.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/geo_hyperplane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/geo_hyperplane.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/geo_orthomethods.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/geo_orthomethods.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/geo_quaternion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/geo_quaternion.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/hessenberg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/hessenberg.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/householder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/householder.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/integer_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/integer_types.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/inverse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/inverse.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/jacobi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/jacobi.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/jacobisvd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/jacobisvd.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/linearstructure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/linearstructure.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/lu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/lu.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/main.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/mapped_matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/mapped_matrix.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/mapstaticmethods.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/mapstaticmethods.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/mapstride.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/mapstride.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/meta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/meta.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/metis_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/metis_support.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/miscmatrices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/miscmatrices.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/mixingtypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/mixingtypes.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/nesting_ops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/nesting_ops.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/nomalloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/nomalloc.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/nullary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/nullary.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/packetmath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/packetmath.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/pardiso_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/pardiso_support.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/pastix_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/pastix_support.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/prec_inverse_4x4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/prec_inverse_4x4.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/product.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/product.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/product_extra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/product_extra.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/product_large.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/product_large.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/product_mmtr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/product_mmtr.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/product_small.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/product_small.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/product_symm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/product_symm.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/product_syrk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/product_syrk.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/product_trmm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/product_trmm.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/product_trmv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/product_trmv.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/product_trsolve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/product_trsolve.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/qr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/qr.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/qr_colpivoting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/qr_colpivoting.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/qr_fullpivoting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/qr_fullpivoting.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/qtvector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/qtvector.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/real_qz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/real_qz.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/redux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/redux.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/ref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/ref.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/resize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/resize.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/runtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/runtest.sh -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/schur_complex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/schur_complex.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/schur_real.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/schur_real.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/selfadjoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/selfadjoint.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/sizeof.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/sizeof.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/sizeoverflow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/sizeoverflow.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/smallvectors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/smallvectors.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/sparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/sparse.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/sparseLM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/sparseLM.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/sparse_basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/sparse_basic.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/sparse_product.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/sparse_product.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/sparse_solver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/sparse_solver.h -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/sparse_solvers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/sparse_solvers.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/sparse_vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/sparse_vector.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/sparselu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/sparselu.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/sparseqr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/sparseqr.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/special_numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/special_numbers.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/spqr_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/spqr_support.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/stable_norm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/stable_norm.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/stddeque.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/stddeque.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/stdlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/stdlist.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/stdvector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/stdvector.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/superlu_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/superlu_support.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/swap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/swap.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/testsuite.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/testsuite.cmake -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/triangular.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/triangular.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/umeyama.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/umeyama.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/umfpack_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/umfpack_support.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/unalignedassert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/unalignedassert.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/unalignedcount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/unalignedcount.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/vectorwiseop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/vectorwiseop.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/visitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/visitor.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/test/zerosized.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/test/zerosized.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/unsupported/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/unsupported/CMakeLists.txt -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/unsupported/Eigen/AutoDiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/unsupported/Eigen/AutoDiff -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/unsupported/Eigen/BVH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/unsupported/Eigen/BVH -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/unsupported/Eigen/FFT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/unsupported/Eigen/FFT -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/unsupported/Eigen/SVD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/unsupported/Eigen/SVD -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/unsupported/Eigen/Skyline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/unsupported/Eigen/Skyline -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/unsupported/Eigen/Splines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/unsupported/Eigen/Splines -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/unsupported/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/unsupported/README.txt -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/unsupported/test/BVH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/unsupported/test/BVH.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/unsupported/test/FFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/unsupported/test/FFT.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/unsupported/test/FFTW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/unsupported/test/FFTW.cpp -------------------------------------------------------------------------------- /code/Model/eigen-3.2.5/unsupported/test/gmres.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/eigen-3.2.5/unsupported/test/gmres.cpp -------------------------------------------------------------------------------- /code/Model/multir/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/multir/.classpath -------------------------------------------------------------------------------- /code/Model/multir/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/multir/.project -------------------------------------------------------------------------------- /code/Model/multir/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/multir/LICENSE.txt -------------------------------------------------------------------------------- /code/Model/multir/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/multir/README.txt -------------------------------------------------------------------------------- /code/Model/multir/annotations/sentential.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/multir/annotations/sentential.txt -------------------------------------------------------------------------------- /code/Model/multir/lib/protobuf-java-2.3.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/multir/lib/protobuf-java-2.3.0.jar -------------------------------------------------------------------------------- /code/Model/multir/multiR.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/multir/multiR.jar -------------------------------------------------------------------------------- /code/Model/multir/multiR_new.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/multir/multiR_new.jar -------------------------------------------------------------------------------- /code/Model/multir/multir.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/multir/multir.jar -------------------------------------------------------------------------------- /code/Model/multir/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/multir/run.sh -------------------------------------------------------------------------------- /code/Model/pte/line.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/pte/line.cpp -------------------------------------------------------------------------------- /code/Model/pte/linelib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/pte/linelib.cpp -------------------------------------------------------------------------------- /code/Model/pte/linelib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/pte/linelib.h -------------------------------------------------------------------------------- /code/Model/pte/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/pte/makefile -------------------------------------------------------------------------------- /code/Model/pte/pte-hete.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/pte/pte-hete.cpp -------------------------------------------------------------------------------- /code/Model/pte/ransampl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/pte/ransampl.c -------------------------------------------------------------------------------- /code/Model/pte/ransampl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/pte/ransampl.h -------------------------------------------------------------------------------- /code/Model/retype/hplelib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/retype/hplelib.cpp -------------------------------------------------------------------------------- /code/Model/retype/hplelib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/retype/hplelib.h -------------------------------------------------------------------------------- /code/Model/retype/hplelib.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/retype/hplelib.o -------------------------------------------------------------------------------- /code/Model/retype/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/retype/makefile -------------------------------------------------------------------------------- /code/Model/retype/ransampl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/retype/ransampl.c -------------------------------------------------------------------------------- /code/Model/retype/ransampl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/retype/ransampl.h -------------------------------------------------------------------------------- /code/Model/retype/ransampl.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/retype/ransampl.o -------------------------------------------------------------------------------- /code/Model/retype/retype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/retype/retype -------------------------------------------------------------------------------- /code/Model/retype/retype-rm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/retype/retype-rm -------------------------------------------------------------------------------- /code/Model/retype/retype-rm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/retype/retype-rm.cpp -------------------------------------------------------------------------------- /code/Model/retype/retype-rm.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/retype/retype-rm.o -------------------------------------------------------------------------------- /code/Model/retype/retype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/retype/retype.cpp -------------------------------------------------------------------------------- /code/Model/retype/retype.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/retype/retype.o -------------------------------------------------------------------------------- /code/Model/seq-kernel/gen_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/gen_data.py -------------------------------------------------------------------------------- /code/Model/seq-kernel/gen_fmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/gen_fmt.py -------------------------------------------------------------------------------- /code/Model/seq-kernel/gen_lb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/gen_lb.py -------------------------------------------------------------------------------- /code/Model/seq-kernel/gen_sen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/gen_sen.py -------------------------------------------------------------------------------- /code/Model/seq-kernel/libsvm-3.21.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/libsvm-3.21.zip -------------------------------------------------------------------------------- /code/Model/seq-kernel/libsvm/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/libsvm/COPYRIGHT -------------------------------------------------------------------------------- /code/Model/seq-kernel/libsvm/FAQ.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/libsvm/FAQ.html -------------------------------------------------------------------------------- /code/Model/seq-kernel/libsvm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/libsvm/Makefile -------------------------------------------------------------------------------- /code/Model/seq-kernel/libsvm/Makefile.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/libsvm/Makefile.win -------------------------------------------------------------------------------- /code/Model/seq-kernel/libsvm/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/libsvm/README -------------------------------------------------------------------------------- /code/Model/seq-kernel/libsvm/heart_scale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/libsvm/heart_scale -------------------------------------------------------------------------------- /code/Model/seq-kernel/libsvm/java/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/libsvm/java/Makefile -------------------------------------------------------------------------------- /code/Model/seq-kernel/libsvm/java/libsvm.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/libsvm/java/libsvm.jar -------------------------------------------------------------------------------- /code/Model/seq-kernel/libsvm/java/libsvm/svm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/libsvm/java/libsvm/svm.java -------------------------------------------------------------------------------- /code/Model/seq-kernel/libsvm/java/libsvm/svm.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/libsvm/java/libsvm/svm.m4 -------------------------------------------------------------------------------- /code/Model/seq-kernel/libsvm/java/svm_scale.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/libsvm/java/svm_scale.java -------------------------------------------------------------------------------- /code/Model/seq-kernel/libsvm/java/svm_toy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/libsvm/java/svm_toy.java -------------------------------------------------------------------------------- /code/Model/seq-kernel/libsvm/java/svm_train.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/libsvm/java/svm_train.java -------------------------------------------------------------------------------- /code/Model/seq-kernel/libsvm/matlab/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/libsvm/matlab/Makefile -------------------------------------------------------------------------------- /code/Model/seq-kernel/libsvm/matlab/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/libsvm/matlab/README -------------------------------------------------------------------------------- /code/Model/seq-kernel/libsvm/matlab/libsvmread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/libsvm/matlab/libsvmread.c -------------------------------------------------------------------------------- /code/Model/seq-kernel/libsvm/matlab/libsvmwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/libsvm/matlab/libsvmwrite.c -------------------------------------------------------------------------------- /code/Model/seq-kernel/libsvm/matlab/make.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/libsvm/matlab/make.m -------------------------------------------------------------------------------- /code/Model/seq-kernel/libsvm/matlab/svmpredict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/libsvm/matlab/svmpredict.c -------------------------------------------------------------------------------- /code/Model/seq-kernel/libsvm/matlab/svmtrain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/libsvm/matlab/svmtrain.c -------------------------------------------------------------------------------- /code/Model/seq-kernel/libsvm/model.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/libsvm/model.txt -------------------------------------------------------------------------------- /code/Model/seq-kernel/libsvm/predict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/libsvm/predict.txt -------------------------------------------------------------------------------- /code/Model/seq-kernel/libsvm/python/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/libsvm/python/Makefile -------------------------------------------------------------------------------- /code/Model/seq-kernel/libsvm/python/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/libsvm/python/README -------------------------------------------------------------------------------- /code/Model/seq-kernel/libsvm/python/svm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/libsvm/python/svm.py -------------------------------------------------------------------------------- /code/Model/seq-kernel/libsvm/python/svmutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/libsvm/python/svmutil.py -------------------------------------------------------------------------------- /code/Model/seq-kernel/libsvm/svm-predict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/libsvm/svm-predict -------------------------------------------------------------------------------- /code/Model/seq-kernel/libsvm/svm-predict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/libsvm/svm-predict.c -------------------------------------------------------------------------------- /code/Model/seq-kernel/libsvm/svm-scale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/libsvm/svm-scale -------------------------------------------------------------------------------- /code/Model/seq-kernel/libsvm/svm-scale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/libsvm/svm-scale.c -------------------------------------------------------------------------------- /code/Model/seq-kernel/libsvm/svm-toy/gtk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/libsvm/svm-toy/gtk/Makefile -------------------------------------------------------------------------------- /code/Model/seq-kernel/libsvm/svm-toy/gtk/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/libsvm/svm-toy/gtk/main.c -------------------------------------------------------------------------------- /code/Model/seq-kernel/libsvm/svm-toy/qt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/libsvm/svm-toy/qt/Makefile -------------------------------------------------------------------------------- /code/Model/seq-kernel/libsvm/svm-train: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/libsvm/svm-train -------------------------------------------------------------------------------- /code/Model/seq-kernel/libsvm/svm-train.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/libsvm/svm-train.c -------------------------------------------------------------------------------- /code/Model/seq-kernel/libsvm/svm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/libsvm/svm.cpp -------------------------------------------------------------------------------- /code/Model/seq-kernel/libsvm/svm.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/libsvm/svm.def -------------------------------------------------------------------------------- /code/Model/seq-kernel/libsvm/svm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/libsvm/svm.h -------------------------------------------------------------------------------- /code/Model/seq-kernel/libsvm/svm.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/libsvm/svm.o -------------------------------------------------------------------------------- /code/Model/seq-kernel/libsvm/tools/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/libsvm/tools/README -------------------------------------------------------------------------------- /code/Model/seq-kernel/libsvm/tools/checkdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/libsvm/tools/checkdata.py -------------------------------------------------------------------------------- /code/Model/seq-kernel/libsvm/tools/easy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/libsvm/tools/easy.py -------------------------------------------------------------------------------- /code/Model/seq-kernel/libsvm/tools/grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/libsvm/tools/grid.py -------------------------------------------------------------------------------- /code/Model/seq-kernel/libsvm/tools/subset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/libsvm/tools/subset.py -------------------------------------------------------------------------------- /code/Model/seq-kernel/libsvm/windows/libsvm.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/libsvm/windows/libsvm.dll -------------------------------------------------------------------------------- /code/Model/seq-kernel/libsvm/windows/svm-toy.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/libsvm/windows/svm-toy.exe -------------------------------------------------------------------------------- /code/Model/seq-kernel/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/process.py -------------------------------------------------------------------------------- /code/Model/seq-kernel/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/run.sh -------------------------------------------------------------------------------- /code/Model/seq-kernel/ssk_core/base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/ssk_core/base.txt -------------------------------------------------------------------------------- /code/Model/seq-kernel/ssk_core/infer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/ssk_core/infer.txt -------------------------------------------------------------------------------- /code/Model/seq-kernel/ssk_core/libsvm/Cache.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/ssk_core/libsvm/Cache.class -------------------------------------------------------------------------------- /code/Model/seq-kernel/ssk_core/libsvm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/ssk_core/libsvm/Makefile -------------------------------------------------------------------------------- /code/Model/seq-kernel/ssk_core/libsvm/SVC_Q.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/ssk_core/libsvm/SVC_Q.class -------------------------------------------------------------------------------- /code/Model/seq-kernel/ssk_core/libsvm/SVR_Q.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/ssk_core/libsvm/SVR_Q.class -------------------------------------------------------------------------------- /code/Model/seq-kernel/ssk_core/libsvm/libsvm.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/ssk_core/libsvm/libsvm.jar -------------------------------------------------------------------------------- /code/Model/seq-kernel/ssk_core/libsvm/svm.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/ssk_core/libsvm/svm.class -------------------------------------------------------------------------------- /code/Model/seq-kernel/ssk_core/libsvm/svm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/ssk_core/libsvm/svm.java -------------------------------------------------------------------------------- /code/Model/seq-kernel/ssk_core/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/ssk_core/readme.txt -------------------------------------------------------------------------------- /code/Model/seq-kernel/ssk_core/ssk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/ssk_core/ssk/Makefile -------------------------------------------------------------------------------- /code/Model/seq-kernel/ssk_core/ssk/ssk.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/ssk_core/ssk/ssk.jar -------------------------------------------------------------------------------- /code/Model/seq-kernel/test.lb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/test.lb -------------------------------------------------------------------------------- /code/Model/seq-kernel/test.sen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/test.sen -------------------------------------------------------------------------------- /code/Model/seq-kernel/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/test.txt -------------------------------------------------------------------------------- /code/Model/seq-kernel/train.shuf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/train.shuf -------------------------------------------------------------------------------- /code/Model/seq-kernel/train.smp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/train.smp -------------------------------------------------------------------------------- /code/Model/seq-kernel/train.smp.lb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/train.smp.lb -------------------------------------------------------------------------------- /code/Model/seq-kernel/train.smp.sen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/seq-kernel/train.smp.sen -------------------------------------------------------------------------------- /code/Model/warp/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/warp/makefile -------------------------------------------------------------------------------- /code/Model/warp/warp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/code/Model/warp/warp.cpp -------------------------------------------------------------------------------- /data/source/BioInfer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/data/source/BioInfer/README.md -------------------------------------------------------------------------------- /data/source/KBP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/data/source/KBP/README.md -------------------------------------------------------------------------------- /data/source/NYT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/data/source/NYT/README.md -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INK-USC/USC-DS-RelationExtraction/HEAD/run.sh --------------------------------------------------------------------------------