├── .gitignore ├── CMakeLists.txt ├── README.md ├── data ├── .DS_Store ├── bumpy_cube.off ├── bunny.off ├── cube.off ├── hat.obj └── jet.obj ├── ext ├── eigen │ ├── .hgeol │ ├── .hgignore │ ├── .hgtags │ ├── CMakeLists.txt │ ├── COPYING.BSD │ ├── COPYING.GPL │ ├── COPYING.LGPL │ ├── COPYING.MINPACK │ ├── COPYING.MPL2 │ ├── COPYING.README │ ├── CTestConfig.cmake │ ├── CTestCustom.cmake.in │ ├── Eigen │ │ ├── CMakeLists.txt │ │ ├── Cholesky │ │ ├── CholmodSupport │ │ ├── Core │ │ ├── Dense │ │ ├── Eigen │ │ ├── Eigenvalues │ │ ├── Geometry │ │ ├── Householder │ │ ├── IterativeLinearSolvers │ │ ├── Jacobi │ │ ├── KLUSupport │ │ ├── LU │ │ ├── MetisSupport │ │ ├── OrderingMethods │ │ ├── PaStiXSupport │ │ ├── PardisoSupport │ │ ├── QR │ │ ├── QtAlignedMalloc │ │ ├── SPQRSupport │ │ ├── SVD │ │ ├── Sparse │ │ ├── SparseCholesky │ │ ├── SparseCore │ │ ├── SparseLU │ │ ├── SparseQR │ │ ├── StdDeque │ │ ├── StdList │ │ ├── StdVector │ │ ├── SuperLUSupport │ │ ├── UmfPackSupport │ │ └── src │ │ │ ├── Cholesky │ │ │ ├── LDLT.h │ │ │ ├── LLT.h │ │ │ └── LLT_LAPACKE.h │ │ │ ├── CholmodSupport │ │ │ └── CholmodSupport.h │ │ │ ├── Core │ │ │ ├── ArithmeticSequence.h │ │ │ ├── Array.h │ │ │ ├── ArrayBase.h │ │ │ ├── ArrayWrapper.h │ │ │ ├── Assign.h │ │ │ ├── AssignEvaluator.h │ │ │ ├── Assign_MKL.h │ │ │ ├── BandMatrix.h │ │ │ ├── Block.h │ │ │ ├── BooleanRedux.h │ │ │ ├── CommaInitializer.h │ │ │ ├── ConditionEstimator.h │ │ │ ├── CoreEvaluators.h │ │ │ ├── CoreIterators.h │ │ │ ├── CwiseBinaryOp.h │ │ │ ├── CwiseNullaryOp.h │ │ │ ├── CwiseTernaryOp.h │ │ │ ├── CwiseUnaryOp.h │ │ │ ├── CwiseUnaryView.h │ │ │ ├── DenseBase.h │ │ │ ├── DenseCoeffsBase.h │ │ │ ├── DenseStorage.h │ │ │ ├── Diagonal.h │ │ │ ├── DiagonalMatrix.h │ │ │ ├── DiagonalProduct.h │ │ │ ├── Dot.h │ │ │ ├── EigenBase.h │ │ │ ├── ForceAlignedAccess.h │ │ │ ├── Fuzzy.h │ │ │ ├── GeneralProduct.h │ │ │ ├── GenericPacketMath.h │ │ │ ├── GlobalFunctions.h │ │ │ ├── IO.h │ │ │ ├── IndexedView.h │ │ │ ├── Inverse.h │ │ │ ├── Map.h │ │ │ ├── MapBase.h │ │ │ ├── MathFunctions.h │ │ │ ├── MathFunctionsImpl.h │ │ │ ├── Matrix.h │ │ │ ├── MatrixBase.h │ │ │ ├── NestByValue.h │ │ │ ├── NoAlias.h │ │ │ ├── NumTraits.h │ │ │ ├── PartialReduxEvaluator.h │ │ │ ├── PermutationMatrix.h │ │ │ ├── PlainObjectBase.h │ │ │ ├── Product.h │ │ │ ├── ProductEvaluators.h │ │ │ ├── Random.h │ │ │ ├── Redux.h │ │ │ ├── Ref.h │ │ │ ├── Replicate.h │ │ │ ├── Reshaped.h │ │ │ ├── ReturnByValue.h │ │ │ ├── Reverse.h │ │ │ ├── Select.h │ │ │ ├── SelfAdjointView.h │ │ │ ├── SelfCwiseBinaryOp.h │ │ │ ├── Solve.h │ │ │ ├── SolveTriangular.h │ │ │ ├── SolverBase.h │ │ │ ├── StableNorm.h │ │ │ ├── StlIterators.h │ │ │ ├── Stride.h │ │ │ ├── Swap.h │ │ │ ├── Transpose.h │ │ │ ├── Transpositions.h │ │ │ ├── TriangularMatrix.h │ │ │ ├── VectorBlock.h │ │ │ ├── VectorwiseOp.h │ │ │ ├── Visitor.h │ │ │ ├── arch │ │ │ │ ├── AVX │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ ├── AVX512 │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ ├── AltiVec │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ └── PacketMath.h │ │ │ │ ├── CUDA │ │ │ │ │ └── Complex.h │ │ │ │ ├── Default │ │ │ │ │ ├── ConjHelper.h │ │ │ │ │ ├── GenericPacketMathFunctions.h │ │ │ │ │ ├── GenericPacketMathFunctionsFwd.h │ │ │ │ │ ├── Half.h │ │ │ │ │ ├── Settings.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ ├── GPU │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ ├── HIP │ │ │ │ │ └── hcc │ │ │ │ │ │ └── math_constants.h │ │ │ │ ├── MSA │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ └── PacketMath.h │ │ │ │ ├── NEON │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ ├── SSE │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ ├── SYCL │ │ │ │ │ ├── InteropHeaders.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ ├── SyclMemoryModel.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ └── ZVector │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ └── PacketMath.h │ │ │ ├── functors │ │ │ │ ├── AssignmentFunctors.h │ │ │ │ ├── BinaryFunctors.h │ │ │ │ ├── NullaryFunctors.h │ │ │ │ ├── StlFunctors.h │ │ │ │ ├── TernaryFunctors.h │ │ │ │ └── UnaryFunctors.h │ │ │ ├── products │ │ │ │ ├── GeneralBlockPanelKernel.h │ │ │ │ ├── GeneralMatrixMatrix.h │ │ │ │ ├── GeneralMatrixMatrixTriangular.h │ │ │ │ ├── GeneralMatrixMatrixTriangular_BLAS.h │ │ │ │ ├── GeneralMatrixMatrix_BLAS.h │ │ │ │ ├── GeneralMatrixVector.h │ │ │ │ ├── GeneralMatrixVector_BLAS.h │ │ │ │ ├── Parallelizer.h │ │ │ │ ├── SelfadjointMatrixMatrix.h │ │ │ │ ├── SelfadjointMatrixMatrix_BLAS.h │ │ │ │ ├── SelfadjointMatrixVector.h │ │ │ │ ├── SelfadjointMatrixVector_BLAS.h │ │ │ │ ├── SelfadjointProduct.h │ │ │ │ ├── SelfadjointRank2Update.h │ │ │ │ ├── TriangularMatrixMatrix.h │ │ │ │ ├── TriangularMatrixMatrix_BLAS.h │ │ │ │ ├── TriangularMatrixVector.h │ │ │ │ ├── TriangularMatrixVector_BLAS.h │ │ │ │ ├── TriangularSolverMatrix.h │ │ │ │ ├── TriangularSolverMatrix_BLAS.h │ │ │ │ └── TriangularSolverVector.h │ │ │ └── util │ │ │ │ ├── BlasUtil.h │ │ │ │ ├── ConfigureVectorization.h │ │ │ │ ├── Constants.h │ │ │ │ ├── DisableStupidWarnings.h │ │ │ │ ├── ForwardDeclarations.h │ │ │ │ ├── IndexedViewHelper.h │ │ │ │ ├── IntegralConstant.h │ │ │ │ ├── MKL_support.h │ │ │ │ ├── Macros.h │ │ │ │ ├── Memory.h │ │ │ │ ├── Meta.h │ │ │ │ ├── NonMPL2.h │ │ │ │ ├── ReenableStupidWarnings.h │ │ │ │ ├── ReshapedHelper.h │ │ │ │ ├── StaticAssert.h │ │ │ │ ├── SymbolicIndex.h │ │ │ │ └── XprHelper.h │ │ │ ├── Eigenvalues │ │ │ ├── ComplexEigenSolver.h │ │ │ ├── ComplexSchur.h │ │ │ ├── ComplexSchur_LAPACKE.h │ │ │ ├── EigenSolver.h │ │ │ ├── GeneralizedEigenSolver.h │ │ │ ├── GeneralizedSelfAdjointEigenSolver.h │ │ │ ├── HessenbergDecomposition.h │ │ │ ├── MatrixBaseEigenvalues.h │ │ │ ├── RealQZ.h │ │ │ ├── RealSchur.h │ │ │ ├── RealSchur_LAPACKE.h │ │ │ ├── SelfAdjointEigenSolver.h │ │ │ ├── SelfAdjointEigenSolver_LAPACKE.h │ │ │ └── Tridiagonalization.h │ │ │ ├── Geometry │ │ │ ├── AlignedBox.h │ │ │ ├── AngleAxis.h │ │ │ ├── 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 │ │ │ │ └── Geometry_SSE.h │ │ │ ├── Householder │ │ │ ├── BlockHouseholder.h │ │ │ ├── Householder.h │ │ │ └── HouseholderSequence.h │ │ │ ├── IterativeLinearSolvers │ │ │ ├── BasicPreconditioners.h │ │ │ ├── BiCGSTAB.h │ │ │ ├── ConjugateGradient.h │ │ │ ├── IncompleteCholesky.h │ │ │ ├── IncompleteLUT.h │ │ │ ├── IterativeSolverBase.h │ │ │ ├── LeastSquareConjugateGradient.h │ │ │ └── SolveWithGuess.h │ │ │ ├── Jacobi │ │ │ └── Jacobi.h │ │ │ ├── KLUSupport │ │ │ └── KLUSupport.h │ │ │ ├── LU │ │ │ ├── Determinant.h │ │ │ ├── FullPivLU.h │ │ │ ├── InverseImpl.h │ │ │ ├── PartialPivLU.h │ │ │ ├── PartialPivLU_LAPACKE.h │ │ │ └── arch │ │ │ │ └── Inverse_SSE.h │ │ │ ├── MetisSupport │ │ │ └── MetisSupport.h │ │ │ ├── OrderingMethods │ │ │ ├── Amd.h │ │ │ ├── Eigen_Colamd.h │ │ │ └── Ordering.h │ │ │ ├── PaStiXSupport │ │ │ └── PaStiXSupport.h │ │ │ ├── PardisoSupport │ │ │ └── PardisoSupport.h │ │ │ ├── QR │ │ │ ├── ColPivHouseholderQR.h │ │ │ ├── ColPivHouseholderQR_LAPACKE.h │ │ │ ├── CompleteOrthogonalDecomposition.h │ │ │ ├── FullPivHouseholderQR.h │ │ │ ├── HouseholderQR.h │ │ │ └── HouseholderQR_LAPACKE.h │ │ │ ├── SPQRSupport │ │ │ └── SuiteSparseQRSupport.h │ │ │ ├── SVD │ │ │ ├── BDCSVD.h │ │ │ ├── JacobiSVD.h │ │ │ ├── JacobiSVD_LAPACKE.h │ │ │ ├── SVDBase.h │ │ │ └── UpperBidiagonalization.h │ │ │ ├── SparseCholesky │ │ │ ├── SimplicialCholesky.h │ │ │ └── SimplicialCholesky_impl.h │ │ │ ├── SparseCore │ │ │ ├── AmbiVector.h │ │ │ ├── CompressedStorage.h │ │ │ ├── ConservativeSparseSparseProduct.h │ │ │ ├── MappedSparseMatrix.h │ │ │ ├── SparseAssign.h │ │ │ ├── SparseBlock.h │ │ │ ├── SparseColEtree.h │ │ │ ├── SparseCompressedBase.h │ │ │ ├── SparseCwiseBinaryOp.h │ │ │ ├── SparseCwiseUnaryOp.h │ │ │ ├── SparseDenseProduct.h │ │ │ ├── SparseDiagonalProduct.h │ │ │ ├── SparseDot.h │ │ │ ├── SparseFuzzy.h │ │ │ ├── SparseMap.h │ │ │ ├── SparseMatrix.h │ │ │ ├── SparseMatrixBase.h │ │ │ ├── SparsePermutation.h │ │ │ ├── SparseProduct.h │ │ │ ├── SparseRedux.h │ │ │ ├── SparseRef.h │ │ │ ├── SparseSelfAdjointView.h │ │ │ ├── SparseSolverBase.h │ │ │ ├── SparseSparseProductWithPruning.h │ │ │ ├── SparseTranspose.h │ │ │ ├── SparseTriangularView.h │ │ │ ├── SparseUtil.h │ │ │ ├── SparseVector.h │ │ │ ├── SparseView.h │ │ │ └── TriangularSolver.h │ │ │ ├── SparseLU │ │ │ ├── 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 │ │ │ └── SparseQR.h │ │ │ ├── StlSupport │ │ │ ├── StdDeque.h │ │ │ ├── StdList.h │ │ │ ├── StdVector.h │ │ │ └── details.h │ │ │ ├── SuperLUSupport │ │ │ └── SuperLUSupport.h │ │ │ ├── UmfPackSupport │ │ │ └── UmfPackSupport.h │ │ │ ├── misc │ │ │ ├── Image.h │ │ │ ├── Kernel.h │ │ │ ├── RealSvd2x2.h │ │ │ ├── blas.h │ │ │ ├── lapack.h │ │ │ ├── lapacke.h │ │ │ └── lapacke_mangling.h │ │ │ └── plugins │ │ │ ├── ArrayCwiseBinaryOps.h │ │ │ ├── ArrayCwiseUnaryOps.h │ │ │ ├── BlockMethods.h │ │ │ ├── CommonCwiseBinaryOps.h │ │ │ ├── CommonCwiseUnaryOps.h │ │ │ ├── IndexedViewMethods.h │ │ │ ├── MatrixCwiseBinaryOps.h │ │ │ ├── MatrixCwiseUnaryOps.h │ │ │ └── ReshapedMethods.h │ ├── INSTALL │ ├── README.md │ ├── bench │ │ ├── BenchSparseUtil.h │ │ ├── BenchTimer.h │ │ ├── BenchUtil.h │ │ ├── README.txt │ │ ├── analyze-blocking-sizes.cpp │ │ ├── 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-blocking-sizes.cpp │ │ ├── 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 │ │ │ │ ├── FindBLAZE.cmake │ │ │ │ ├── FindBlitz.cmake │ │ │ │ ├── FindCBLAS.cmake │ │ │ │ ├── FindGMM.cmake │ │ │ │ ├── FindMKL.cmake │ │ │ │ ├── FindMTL4.cmake │ │ │ │ ├── FindOPENBLAS.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 │ │ │ │ ├── blaze │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── blaze_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 │ │ │ │ ├── tensors │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── main_linear.cpp │ │ │ │ ├── main_matmat.cpp │ │ │ │ ├── main_vecmat.cpp │ │ │ │ └── tensor_interface.hh │ │ │ │ ├── tvmet │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── main.cpp │ │ │ │ └── tvmet_interface.hh │ │ │ │ └── ublas │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── main.cpp │ │ │ │ └── ublas_interface.hh │ │ ├── check_cache_queries.cpp │ │ ├── dense_solvers.cpp │ │ ├── eig33.cpp │ │ ├── geometry.cpp │ │ ├── perf_monitoring │ │ │ ├── changesets.txt │ │ │ ├── gemm.cpp │ │ │ ├── gemm_common.h │ │ │ ├── gemm_settings.txt │ │ │ ├── gemm_square_settings.txt │ │ │ ├── gemv.cpp │ │ │ ├── gemv_common.h │ │ │ ├── gemv_settings.txt │ │ │ ├── gemv_square_settings.txt │ │ │ ├── gemvt.cpp │ │ │ ├── lazy_gemm.cpp │ │ │ ├── lazy_gemm_settings.txt │ │ │ ├── llt.cpp │ │ │ ├── make_plot.sh │ │ │ ├── resources │ │ │ │ ├── chart_footer.html │ │ │ │ ├── chart_header.html │ │ │ │ ├── footer.html │ │ │ │ ├── header.html │ │ │ │ ├── s1.js │ │ │ │ └── s2.js │ │ │ ├── run.sh │ │ │ ├── runall.sh │ │ │ ├── trmv_lo.cpp │ │ │ ├── trmv_lot.cpp │ │ │ ├── trmv_up.cpp │ │ │ └── trmv_upt.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 │ │ ├── tensors │ │ │ ├── README │ │ │ ├── benchmark.h │ │ │ ├── benchmark_main.cc │ │ │ ├── contraction_benchmarks_cpu.cc │ │ │ ├── tensor_benchmarks.h │ │ │ ├── tensor_benchmarks_cpu.cc │ │ │ ├── tensor_benchmarks_fp16_gpu.cu │ │ │ ├── tensor_benchmarks_gpu.cu │ │ │ ├── tensor_benchmarks_sycl.cc │ │ │ └── tensor_benchmarks_sycl_include_headers.cc │ │ └── vdw_new.cpp │ ├── blas │ │ ├── BandTriangularSolver.h │ │ ├── CMakeLists.txt │ │ ├── GeneralRank1Update.h │ │ ├── PackedSelfadjointProduct.h │ │ ├── PackedTriangularMatrixVector.h │ │ ├── PackedTriangularSolverVector.h │ │ ├── README.txt │ │ ├── Rank2Update.h │ │ ├── common.h │ │ ├── complex_double.cpp │ │ ├── complex_single.cpp │ │ ├── double.cpp │ │ ├── f2c │ │ │ ├── chbmv.c │ │ │ ├── chpmv.c │ │ │ ├── complexdots.c │ │ │ ├── ctbmv.c │ │ │ ├── d_cnjg.c │ │ │ ├── datatypes.h │ │ │ ├── drotm.c │ │ │ ├── drotmg.c │ │ │ ├── dsbmv.c │ │ │ ├── dspmv.c │ │ │ ├── dtbmv.c │ │ │ ├── lsame.c │ │ │ ├── r_cnjg.c │ │ │ ├── srotm.c │ │ │ ├── srotmg.c │ │ │ ├── ssbmv.c │ │ │ ├── sspmv.c │ │ │ ├── stbmv.c │ │ │ ├── zhbmv.c │ │ │ ├── zhpmv.c │ │ │ └── ztbmv.c │ │ ├── fortran │ │ │ └── complexdots.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 │ │ ├── single.cpp │ │ ├── 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 │ ├── cmake │ │ ├── Eigen3Config.cmake.in │ │ ├── Eigen3ConfigLegacy.cmake.in │ │ ├── EigenConfigureTesting.cmake │ │ ├── EigenDetermineOSVersion.cmake │ │ ├── EigenDetermineVSServicePack.cmake │ │ ├── EigenTesting.cmake │ │ ├── EigenUninstall.cmake │ │ ├── FindAdolc.cmake │ │ ├── FindBLAS.cmake │ │ ├── FindBLASEXT.cmake │ │ ├── FindCholmod.cmake │ │ ├── FindComputeCpp.cmake │ │ ├── FindEigen2.cmake │ │ ├── FindEigen3.cmake │ │ ├── FindFFTW.cmake │ │ ├── FindGLEW.cmake │ │ ├── FindGMP.cmake │ │ ├── FindGSL.cmake │ │ ├── FindGoogleHash.cmake │ │ ├── FindHWLOC.cmake │ │ ├── FindKLU.cmake │ │ ├── FindLAPACK.cmake │ │ ├── FindMPFR.cmake │ │ ├── FindMetis.cmake │ │ ├── FindPTSCOTCH.cmake │ │ ├── FindPastix.cmake │ │ ├── FindSPQR.cmake │ │ ├── FindScotch.cmake │ │ ├── FindStandardMathLibrary.cmake │ │ ├── FindSuperLU.cmake │ │ ├── FindTriSYCL.cmake │ │ ├── FindUmfpack.cmake │ │ ├── RegexUtils.cmake │ │ ├── UseEigen3.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 │ │ ├── AsciiQuickReference.txt │ │ ├── B01_Experimental.dox │ │ ├── CMakeLists.txt │ │ ├── ClassHierarchy.dox │ │ ├── CoeffwiseMathFunctionsTable.dox │ │ ├── CustomizingEigen_CustomScalar.dox │ │ ├── CustomizingEigen_InheritingMatrix.dox │ │ ├── CustomizingEigen_NullaryExpr.dox │ │ ├── CustomizingEigen_Plugins.dox │ │ ├── DenseDecompositionBenchmark.dox │ │ ├── Doxyfile.in │ │ ├── FixedSizeVectorizable.dox │ │ ├── FunctionsTakingEigenTypes.dox │ │ ├── HiPerformance.dox │ │ ├── InplaceDecomposition.dox │ │ ├── InsideEigenExample.dox │ │ ├── LeastSquares.dox │ │ ├── Manual.dox │ │ ├── MatrixfreeSolverExample.dox │ │ ├── NewExpressionType.dox │ │ ├── Overview.dox │ │ ├── PassingByValue.dox │ │ ├── Pitfalls.dox │ │ ├── PreprocessorDirectives.dox │ │ ├── QuickReference.dox │ │ ├── QuickStartGuide.dox │ │ ├── SparseLinearSystems.dox │ │ ├── SparseQuickReference.dox │ │ ├── StlContainers.dox │ │ ├── StorageOrders.dox │ │ ├── StructHavingEigenMembers.dox │ │ ├── TemplateKeyword.dox │ │ ├── TopicAliasing.dox │ │ ├── TopicAssertions.dox │ │ ├── TopicCMakeGuide.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 │ │ ├── TutorialReshape.dox │ │ ├── TutorialSTL.dox │ │ ├── TutorialSlicingIndexing.dox │ │ ├── TutorialSparse.dox │ │ ├── TutorialSparse_example_details.dox │ │ ├── UnalignedArrayAssert.dox │ │ ├── UsingBlasLapackBackends.dox │ │ ├── UsingIntelMKL.dox │ │ ├── UsingNVCC.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 │ │ │ ├── CustomizingEigen_Inheritance.cpp │ │ │ ├── Cwise_erf.cpp │ │ │ ├── Cwise_erfc.cpp │ │ │ ├── Cwise_lgamma.cpp │ │ │ ├── DenseBase_middleCols_int.cpp │ │ │ ├── DenseBase_middleRows_int.cpp │ │ │ ├── DenseBase_template_int_middleCols.cpp │ │ │ ├── DenseBase_template_int_middleRows.cpp │ │ │ ├── QuickStart_example.cpp │ │ │ ├── QuickStart_example2_dynamic.cpp │ │ │ ├── QuickStart_example2_fixed.cpp │ │ │ ├── TemplateKeyword_flexible.cpp │ │ │ ├── TemplateKeyword_simple.cpp │ │ │ ├── TutorialInplaceLU.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_reductions_operatornorm.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_FixedReshaped.cpp │ │ │ ├── class_FixedVectorBlock.cpp │ │ │ ├── class_Reshaped.cpp │ │ │ ├── class_VectorBlock.cpp │ │ │ ├── function_taking_eigenbase.cpp │ │ │ ├── function_taking_ref.cpp │ │ │ ├── make_circulant.cpp │ │ │ ├── make_circulant.cpp.entry │ │ │ ├── make_circulant.cpp.evaluator │ │ │ ├── make_circulant.cpp.expression │ │ │ ├── make_circulant.cpp.main │ │ │ ├── make_circulant.cpp.preamble │ │ │ ├── make_circulant.cpp.traits │ │ │ ├── make_circulant2.cpp │ │ │ ├── matrixfree_cg.cpp │ │ │ ├── nullary_indexing.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 │ │ │ ├── Array_initializer_list_23_cxx11.cpp │ │ │ ├── Array_initializer_list_vector_cxx11.cpp │ │ │ ├── Array_variadic_ctor_cxx11.cpp │ │ │ ├── BiCGSTAB_simple.cpp │ │ │ ├── BiCGSTAB_step_by_step.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_arg.cpp │ │ │ ├── Cwise_array_power_array.cpp │ │ │ ├── Cwise_asin.cpp │ │ │ ├── Cwise_atan.cpp │ │ │ ├── Cwise_boolean_and.cpp │ │ │ ├── Cwise_boolean_not.cpp │ │ │ ├── Cwise_boolean_or.cpp │ │ │ ├── Cwise_boolean_xor.cpp │ │ │ ├── Cwise_ceil.cpp │ │ │ ├── Cwise_cos.cpp │ │ │ ├── Cwise_cosh.cpp │ │ │ ├── Cwise_cube.cpp │ │ │ ├── Cwise_equal_equal.cpp │ │ │ ├── Cwise_exp.cpp │ │ │ ├── Cwise_floor.cpp │ │ │ ├── Cwise_greater.cpp │ │ │ ├── Cwise_greater_equal.cpp │ │ │ ├── Cwise_inverse.cpp │ │ │ ├── Cwise_isFinite.cpp │ │ │ ├── Cwise_isInf.cpp │ │ │ ├── Cwise_isNaN.cpp │ │ │ ├── Cwise_less.cpp │ │ │ ├── Cwise_less_equal.cpp │ │ │ ├── Cwise_log.cpp │ │ │ ├── Cwise_log10.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_round.cpp │ │ │ ├── Cwise_scalar_power_array.cpp │ │ │ ├── Cwise_sign.cpp │ │ │ ├── Cwise_sin.cpp │ │ │ ├── Cwise_sinh.cpp │ │ │ ├── Cwise_slash_equal.cpp │ │ │ ├── Cwise_sqrt.cpp │ │ │ ├── Cwise_square.cpp │ │ │ ├── Cwise_tan.cpp │ │ │ ├── Cwise_tanh.cpp │ │ │ ├── Cwise_times_equal.cpp │ │ │ ├── DenseBase_LinSpaced.cpp │ │ │ ├── DenseBase_LinSpacedInt.cpp │ │ │ ├── DenseBase_LinSpaced_seq_deprecated.cpp │ │ │ ├── DenseBase_setLinSpaced.cpp │ │ │ ├── DirectionWise_hnormalized.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 │ │ │ ├── LeastSquaresNormalEquations.cpp │ │ │ ├── LeastSquaresQR.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_colwise_iterator_cxx11.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_cwiseSign.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_fixedBlock_int_int.cpp │ │ │ ├── MatrixBase_hnormalized.cpp │ │ │ ├── MatrixBase_homogeneous.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_noalias.cpp │ │ │ ├── MatrixBase_ones.cpp │ │ │ ├── MatrixBase_ones_int.cpp │ │ │ ├── MatrixBase_ones_int_int.cpp │ │ │ ├── MatrixBase_operatorNorm.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_reshaped_auto.cpp │ │ │ ├── MatrixBase_reshaped_fixed.cpp │ │ │ ├── MatrixBase_reshaped_int_int.cpp │ │ │ ├── MatrixBase_reshaped_to_vector.cpp │ │ │ ├── MatrixBase_reverse.cpp │ │ │ ├── MatrixBase_rightCols_int.cpp │ │ │ ├── MatrixBase_row.cpp │ │ │ ├── MatrixBase_rowwise.cpp │ │ │ ├── MatrixBase_segment_int_int.cpp │ │ │ ├── MatrixBase_select.cpp │ │ │ ├── MatrixBase_selfadjointView.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_triangularView.cpp │ │ │ ├── MatrixBase_zero.cpp │ │ │ ├── MatrixBase_zero_int.cpp │ │ │ ├── MatrixBase_zero_int_int.cpp │ │ │ ├── Matrix_Map_stride.cpp │ │ │ ├── Matrix_initializer_list_23_cxx11.cpp │ │ │ ├── Matrix_initializer_list_vector_cxx11.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 │ │ │ ├── Matrix_variadic_ctor_cxx11.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 │ │ │ ├── Slicing_arrayexpr.cpp │ │ │ ├── Slicing_custom_padding_cxx11.cpp │ │ │ ├── Slicing_rawarray_cxx11.cpp │ │ │ ├── Slicing_stdvector_cxx11.cpp │ │ │ ├── SparseMatrix_coeffs.cpp │ │ │ ├── TopicAliasing_block.cpp │ │ │ ├── TopicAliasing_block_correct.cpp │ │ │ ├── TopicAliasing_cwise.cpp │ │ │ ├── TopicAliasing_mult1.cpp │ │ │ ├── TopicAliasing_mult2.cpp │ │ │ ├── TopicAliasing_mult3.cpp │ │ │ ├── TopicAliasing_mult4.cpp │ │ │ ├── TopicAliasing_mult5.cpp │ │ │ ├── TopicStorageOrders_example.cpp │ │ │ ├── Triangular_solve.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_ReshapeMat2Mat.cpp │ │ │ ├── Tutorial_ReshapeMat2Vec.cpp │ │ │ ├── Tutorial_SlicingCol.cpp │ │ │ ├── Tutorial_SlicingVec.cpp │ │ │ ├── Tutorial_commainit_01.cpp │ │ │ ├── Tutorial_commainit_01b.cpp │ │ │ ├── Tutorial_commainit_02.cpp │ │ │ ├── Tutorial_range_for_loop_1d_cxx11.cpp │ │ │ ├── Tutorial_range_for_loop_2d_cxx11.cpp │ │ │ ├── Tutorial_reshaped_vs_resize_1.cpp │ │ │ ├── Tutorial_reshaped_vs_resize_2.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 │ │ │ ├── Tutorial_std_sort.cpp │ │ │ ├── Tutorial_std_sort_rows_cxx11.cpp │ │ │ ├── VectorwiseOp_homogeneous.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 │ │ │ └── random_cpp11.cpp │ │ └── tutorial.cpp │ ├── eigen3.pc.in │ ├── failtest │ │ ├── CMakeLists.txt │ │ ├── bdcsvd_int.cpp │ │ ├── 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 │ │ ├── cwiseunaryview_nonconst_ctor_on_const_xpr.cpp │ │ ├── cwiseunaryview_on_const_type_actually_const.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 │ │ ├── initializer_list_1.cpp │ │ ├── initializer_list_2.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 │ │ ├── selfadjointview_nonconst_ctor_on_const_xpr.cpp │ │ ├── selfadjointview_on_const_type_actually_const.cpp │ │ ├── sparse_ref_1.cpp │ │ ├── sparse_ref_2.cpp │ │ ├── sparse_ref_3.cpp │ │ ├── sparse_ref_4.cpp │ │ ├── sparse_ref_5.cpp │ │ ├── sparse_storage_mismatch.cpp │ │ ├── swap_1.cpp │ │ ├── swap_2.cpp │ │ ├── ternary_1.cpp │ │ ├── ternary_2.cpp │ │ ├── transpose_nonconst_ctor_on_const_xpr.cpp │ │ ├── transpose_on_const_type_actually_const.cpp │ │ ├── triangularview_nonconst_ctor_on_const_xpr.cpp │ │ └── triangularview_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 │ │ ├── svd.cpp │ │ ├── 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 │ │ ├── eigen_gen_split_test_help.cmake │ │ ├── eigen_monitor_perf.sh │ │ ├── release.in │ │ └── relicense.py │ ├── signature_of_eigen3_matrix_library │ ├── test │ │ ├── AnnoyingScalar.h │ │ ├── CMakeLists.txt │ │ ├── adjoint.cpp │ │ ├── array_cwise.cpp │ │ ├── array_for_matrix.cpp │ │ ├── array_of_string.cpp │ │ ├── array_replicate.cpp │ │ ├── array_reverse.cpp │ │ ├── bandmatrix.cpp │ │ ├── basicstuff.cpp │ │ ├── bdcsvd.cpp │ │ ├── bicgstab.cpp │ │ ├── block.cpp │ │ ├── boostmultiprec.cpp │ │ ├── bug1213.cpp │ │ ├── bug1213.h │ │ ├── bug1213_main.cpp │ │ ├── cholesky.cpp │ │ ├── cholmod_support.cpp │ │ ├── commainitializer.cpp │ │ ├── conjugate_gradient.cpp │ │ ├── conservative_resize.cpp │ │ ├── constructor.cpp │ │ ├── corners.cpp │ │ ├── ctorleak.cpp │ │ ├── denseLM.cpp │ │ ├── dense_storage.cpp │ │ ├── determinant.cpp │ │ ├── diagonal.cpp │ │ ├── diagonal_matrix_variadic_ctor.cpp │ │ ├── diagonalmatrices.cpp │ │ ├── dontalign.cpp │ │ ├── dynalloc.cpp │ │ ├── eigen2support.cpp │ │ ├── eigensolver_complex.cpp │ │ ├── eigensolver_generalized_real.cpp │ │ ├── eigensolver_generic.cpp │ │ ├── eigensolver_selfadjoint.cpp │ │ ├── evaluator_common.h │ │ ├── evaluators.cpp │ │ ├── exceptions.cpp │ │ ├── fastmath.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 │ │ ├── gpu_basic.cu │ │ ├── gpu_common.h │ │ ├── half_float.cpp │ │ ├── hessenberg.cpp │ │ ├── householder.cpp │ │ ├── incomplete_cholesky.cpp │ │ ├── indexed_view.cpp │ │ ├── initializer_list_construction.cpp │ │ ├── inplace_decomposition.cpp │ │ ├── integer_types.cpp │ │ ├── inverse.cpp │ │ ├── is_same_dense.cpp │ │ ├── jacobi.cpp │ │ ├── jacobisvd.cpp │ │ ├── klu_support.cpp │ │ ├── linearstructure.cpp │ │ ├── lscg.cpp │ │ ├── lu.cpp │ │ ├── main.h │ │ ├── mapped_matrix.cpp │ │ ├── mapstaticmethods.cpp │ │ ├── mapstride.cpp │ │ ├── meta.cpp │ │ ├── metis_support.cpp │ │ ├── miscmatrices.cpp │ │ ├── mixingtypes.cpp │ │ ├── mpl2only.cpp │ │ ├── nestbyvalue.cpp │ │ ├── nesting_ops.cpp │ │ ├── nomalloc.cpp │ │ ├── nullary.cpp │ │ ├── num_dimensions.cpp │ │ ├── numext.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 │ │ ├── rand.cpp │ │ ├── real_qz.cpp │ │ ├── redux.cpp │ │ ├── ref.cpp │ │ ├── reshape.cpp │ │ ├── resize.cpp │ │ ├── rvalue_types.cpp │ │ ├── schur_complex.cpp │ │ ├── schur_real.cpp │ │ ├── selfadjoint.cpp │ │ ├── simplicial_cholesky.cpp │ │ ├── sizeof.cpp │ │ ├── sizeoverflow.cpp │ │ ├── smallvectors.cpp │ │ ├── solverbase.h │ │ ├── sparse.h │ │ ├── sparseLM.cpp │ │ ├── sparse_basic.cpp │ │ ├── sparse_block.cpp │ │ ├── sparse_permutations.cpp │ │ ├── sparse_product.cpp │ │ ├── sparse_ref.cpp │ │ ├── sparse_solver.h │ │ ├── sparse_solvers.cpp │ │ ├── sparse_vector.cpp │ │ ├── sparselu.cpp │ │ ├── sparseqr.cpp │ │ ├── special_numbers.cpp │ │ ├── split_test_helper.h │ │ ├── spqr_support.cpp │ │ ├── stable_norm.cpp │ │ ├── stddeque.cpp │ │ ├── stddeque_overload.cpp │ │ ├── stdlist.cpp │ │ ├── stdlist_overload.cpp │ │ ├── stdvector.cpp │ │ ├── stdvector_overload.cpp │ │ ├── stl_iterators.cpp │ │ ├── superlu_support.cpp │ │ ├── svd_common.h │ │ ├── svd_fill.h │ │ ├── swap.cpp │ │ ├── symbolic_index.cpp │ │ ├── triangular.cpp │ │ ├── type_alias.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 │ │ ├── CXX11 │ │ │ ├── CMakeLists.txt │ │ │ ├── Tensor │ │ │ ├── TensorSymmetry │ │ │ ├── ThreadPool │ │ │ └── src │ │ │ │ ├── Tensor │ │ │ │ ├── README.md │ │ │ │ ├── Tensor.h │ │ │ │ ├── TensorArgMax.h │ │ │ │ ├── TensorArgMaxSycl.h │ │ │ │ ├── TensorAssign.h │ │ │ │ ├── TensorBase.h │ │ │ │ ├── TensorBlock.h │ │ │ │ ├── TensorBroadcasting.h │ │ │ │ ├── TensorChipping.h │ │ │ │ ├── TensorConcatenation.h │ │ │ │ ├── TensorContraction.h │ │ │ │ ├── TensorContractionBlocking.h │ │ │ │ ├── TensorContractionCuda.h │ │ │ │ ├── TensorContractionGpu.h │ │ │ │ ├── TensorContractionMapper.h │ │ │ │ ├── TensorContractionSycl.h │ │ │ │ ├── TensorContractionThreadPool.h │ │ │ │ ├── TensorConversion.h │ │ │ │ ├── TensorConvolution.h │ │ │ │ ├── TensorConvolutionSycl.h │ │ │ │ ├── TensorCostModel.h │ │ │ │ ├── TensorCustomOp.h │ │ │ │ ├── TensorDevice.h │ │ │ │ ├── TensorDeviceCuda.h │ │ │ │ ├── TensorDeviceDefault.h │ │ │ │ ├── TensorDeviceGpu.h │ │ │ │ ├── TensorDeviceSycl.h │ │ │ │ ├── TensorDeviceThreadPool.h │ │ │ │ ├── TensorDimensionList.h │ │ │ │ ├── TensorDimensions.h │ │ │ │ ├── TensorEvalTo.h │ │ │ │ ├── TensorEvaluator.h │ │ │ │ ├── TensorExecutor.h │ │ │ │ ├── TensorExpr.h │ │ │ │ ├── TensorFFT.h │ │ │ │ ├── TensorFixedSize.h │ │ │ │ ├── TensorForcedEval.h │ │ │ │ ├── TensorForwardDeclarations.h │ │ │ │ ├── TensorFunctors.h │ │ │ │ ├── TensorGenerator.h │ │ │ │ ├── TensorGlobalFunctions.h │ │ │ │ ├── TensorGpuHipCudaDefines.h │ │ │ │ ├── TensorGpuHipCudaUndefines.h │ │ │ │ ├── TensorIO.h │ │ │ │ ├── TensorImagePatch.h │ │ │ │ ├── TensorIndexList.h │ │ │ │ ├── TensorInflation.h │ │ │ │ ├── TensorInitializer.h │ │ │ │ ├── TensorIntDiv.h │ │ │ │ ├── TensorLayoutSwap.h │ │ │ │ ├── TensorMacros.h │ │ │ │ ├── TensorMap.h │ │ │ │ ├── TensorMeta.h │ │ │ │ ├── TensorMorphing.h │ │ │ │ ├── TensorPadding.h │ │ │ │ ├── TensorPatch.h │ │ │ │ ├── TensorRandom.h │ │ │ │ ├── TensorReduction.h │ │ │ │ ├── TensorReductionCuda.h │ │ │ │ ├── TensorReductionGpu.h │ │ │ │ ├── TensorReductionSycl.h │ │ │ │ ├── TensorRef.h │ │ │ │ ├── TensorReverse.h │ │ │ │ ├── TensorScan.h │ │ │ │ ├── TensorShuffling.h │ │ │ │ ├── TensorStorage.h │ │ │ │ ├── TensorStriding.h │ │ │ │ ├── TensorSycl.h │ │ │ │ ├── TensorSyclConvertToDeviceExpression.h │ │ │ │ ├── TensorSyclExprConstructor.h │ │ │ │ ├── TensorSyclExtractAccessor.h │ │ │ │ ├── TensorSyclExtractFunctors.h │ │ │ │ ├── TensorSyclFunctors.h │ │ │ │ ├── TensorSyclLeafCount.h │ │ │ │ ├── TensorSyclPlaceHolderExpr.h │ │ │ │ ├── TensorSyclRun.h │ │ │ │ ├── TensorSyclTuple.h │ │ │ │ ├── TensorTrace.h │ │ │ │ ├── TensorTraits.h │ │ │ │ ├── TensorUInt128.h │ │ │ │ └── TensorVolumePatch.h │ │ │ │ ├── TensorSymmetry │ │ │ │ ├── DynamicSymmetry.h │ │ │ │ ├── StaticSymmetry.h │ │ │ │ ├── Symmetry.h │ │ │ │ └── util │ │ │ │ │ └── TemplateGroupTheory.h │ │ │ │ ├── ThreadPool │ │ │ │ ├── Barrier.h │ │ │ │ ├── EventCount.h │ │ │ │ ├── NonBlockingThreadPool.h │ │ │ │ ├── RunQueue.h │ │ │ │ ├── ThreadCancel.h │ │ │ │ ├── ThreadEnvironment.h │ │ │ │ ├── ThreadLocal.h │ │ │ │ ├── ThreadPoolInterface.h │ │ │ │ └── ThreadYield.h │ │ │ │ └── util │ │ │ │ ├── CXX11Meta.h │ │ │ │ ├── CXX11Workarounds.h │ │ │ │ ├── EmulateArray.h │ │ │ │ ├── EmulateCXX11Meta.h │ │ │ │ └── MaxSizeVector.h │ │ ├── EulerAngles │ │ ├── FFT │ │ ├── IterativeSolvers │ │ ├── KroneckerProduct │ │ ├── LevenbergMarquardt │ │ ├── MPRealSupport │ │ ├── MatrixFunctions │ │ ├── MoreVectorization │ │ ├── NonLinearOptimization │ │ ├── NumericalDiff │ │ ├── OpenGLSupport │ │ ├── Polynomials │ │ ├── Skyline │ │ ├── SparseExtra │ │ ├── SpecialFunctions │ │ ├── Splines │ │ └── src │ │ │ ├── AutoDiff │ │ │ ├── AutoDiffJacobian.h │ │ │ ├── AutoDiffScalar.h │ │ │ └── AutoDiffVector.h │ │ │ ├── BVH │ │ │ ├── BVAlgorithms.h │ │ │ └── KdBVH.h │ │ │ ├── Eigenvalues │ │ │ └── ArpackSelfAdjointEigenSolver.h │ │ │ ├── EulerAngles │ │ │ ├── CMakeLists.txt │ │ │ ├── EulerAngles.h │ │ │ └── EulerSystem.h │ │ │ ├── FFT │ │ │ ├── ei_fftw_impl.h │ │ │ └── ei_kissfft_impl.h │ │ │ ├── IterativeSolvers │ │ │ ├── ConstrainedConjGrad.h │ │ │ ├── DGMRES.h │ │ │ ├── GMRES.h │ │ │ ├── IncompleteLU.h │ │ │ ├── IterationController.h │ │ │ ├── MINRES.h │ │ │ └── Scaling.h │ │ │ ├── KroneckerProduct │ │ │ └── KroneckerTensorProduct.h │ │ │ ├── LevenbergMarquardt │ │ │ ├── CopyrightMINPACK.txt │ │ │ ├── LMcovar.h │ │ │ ├── LMonestep.h │ │ │ ├── LMpar.h │ │ │ ├── LMqrsolv.h │ │ │ └── LevenbergMarquardt.h │ │ │ ├── MatrixFunctions │ │ │ ├── MatrixExponential.h │ │ │ ├── MatrixFunction.h │ │ │ ├── MatrixLogarithm.h │ │ │ ├── MatrixPower.h │ │ │ ├── MatrixSquareRoot.h │ │ │ └── StemFunction.h │ │ │ ├── MoreVectorization │ │ │ └── MathFunctions.h │ │ │ ├── NonLinearOptimization │ │ │ ├── HybridNonLinearSolver.h │ │ │ ├── LevenbergMarquardt.h │ │ │ ├── chkder.h │ │ │ ├── covar.h │ │ │ ├── dogleg.h │ │ │ ├── fdjac1.h │ │ │ ├── lmpar.h │ │ │ ├── qrsolv.h │ │ │ ├── r1mpyq.h │ │ │ ├── r1updt.h │ │ │ └── rwupdt.h │ │ │ ├── NumericalDiff │ │ │ └── NumericalDiff.h │ │ │ ├── Polynomials │ │ │ ├── Companion.h │ │ │ ├── PolynomialSolver.h │ │ │ └── PolynomialUtils.h │ │ │ ├── Skyline │ │ │ ├── SkylineInplaceLU.h │ │ │ ├── SkylineMatrix.h │ │ │ ├── SkylineMatrixBase.h │ │ │ ├── SkylineProduct.h │ │ │ ├── SkylineStorage.h │ │ │ └── SkylineUtil.h │ │ │ ├── SparseExtra │ │ │ ├── BlockOfDynamicSparseMatrix.h │ │ │ ├── BlockSparseMatrix.h │ │ │ ├── DynamicSparseMatrix.h │ │ │ ├── MarketIO.h │ │ │ ├── MatrixMarketIterator.h │ │ │ └── RandomSetter.h │ │ │ ├── SpecialFunctions │ │ │ ├── SpecialFunctionsArrayAPI.h │ │ │ ├── SpecialFunctionsFunctors.h │ │ │ ├── SpecialFunctionsHalf.h │ │ │ ├── SpecialFunctionsImpl.h │ │ │ ├── SpecialFunctionsPacketMath.h │ │ │ └── arch │ │ │ │ └── GPU │ │ │ │ └── GpuSpecialFunctions.h │ │ │ └── Splines │ │ │ ├── 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 │ │ │ ├── EulerAngles.cpp │ │ │ ├── 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 │ │ ├── EulerAngles.cpp │ │ ├── FFT.cpp │ │ ├── FFTW.cpp │ │ ├── NonLinearOptimization.cpp │ │ ├── NumericalDiff.cpp │ │ ├── alignedvector3.cpp │ │ ├── autodiff.cpp │ │ ├── autodiff_scalar.cpp │ │ ├── cxx11_eventcount.cpp │ │ ├── cxx11_maxsizevector.cpp │ │ ├── cxx11_meta.cpp │ │ ├── cxx11_non_blocking_thread_pool.cpp │ │ ├── cxx11_runqueue.cpp │ │ ├── cxx11_tensor_argmax.cpp │ │ ├── cxx11_tensor_argmax_gpu.cu │ │ ├── cxx11_tensor_argmax_sycl.cpp │ │ ├── cxx11_tensor_assign.cpp │ │ ├── cxx11_tensor_block_access.cpp │ │ ├── cxx11_tensor_broadcast_sycl.cpp │ │ ├── cxx11_tensor_broadcasting.cpp │ │ ├── cxx11_tensor_builtins_sycl.cpp │ │ ├── cxx11_tensor_cast_float16_gpu.cu │ │ ├── cxx11_tensor_casts.cpp │ │ ├── cxx11_tensor_chipping.cpp │ │ ├── cxx11_tensor_chipping_sycl.cpp │ │ ├── cxx11_tensor_comparisons.cpp │ │ ├── cxx11_tensor_complex_cwise_ops_gpu.cu │ │ ├── cxx11_tensor_complex_gpu.cu │ │ ├── cxx11_tensor_concatenation.cpp │ │ ├── cxx11_tensor_concatenation_sycl.cpp │ │ ├── cxx11_tensor_const.cpp │ │ ├── cxx11_tensor_contract_gpu.cu │ │ ├── cxx11_tensor_contract_sycl.cpp │ │ ├── cxx11_tensor_contraction.cpp │ │ ├── cxx11_tensor_convolution.cpp │ │ ├── cxx11_tensor_convolution_sycl.cpp │ │ ├── cxx11_tensor_custom_index.cpp │ │ ├── cxx11_tensor_custom_op.cpp │ │ ├── cxx11_tensor_custom_op_sycl.cpp │ │ ├── cxx11_tensor_device.cu │ │ ├── cxx11_tensor_device_sycl.cpp │ │ ├── cxx11_tensor_dimension.cpp │ │ ├── cxx11_tensor_empty.cpp │ │ ├── cxx11_tensor_executor.cpp │ │ ├── cxx11_tensor_expr.cpp │ │ ├── cxx11_tensor_fft.cpp │ │ ├── cxx11_tensor_fixed_size.cpp │ │ ├── cxx11_tensor_forced_eval.cpp │ │ ├── cxx11_tensor_forced_eval_sycl.cpp │ │ ├── cxx11_tensor_generator.cpp │ │ ├── cxx11_tensor_generator_sycl.cpp │ │ ├── cxx11_tensor_gpu.cu │ │ ├── cxx11_tensor_ifft.cpp │ │ ├── cxx11_tensor_image_patch.cpp │ │ ├── cxx11_tensor_image_patch_sycl.cpp │ │ ├── cxx11_tensor_index_list.cpp │ │ ├── cxx11_tensor_inflation.cpp │ │ ├── cxx11_tensor_inflation_sycl.cpp │ │ ├── cxx11_tensor_intdiv.cpp │ │ ├── cxx11_tensor_io.cpp │ │ ├── cxx11_tensor_layout_swap.cpp │ │ ├── cxx11_tensor_layout_swap_sycl.cpp │ │ ├── cxx11_tensor_lvalue.cpp │ │ ├── cxx11_tensor_map.cpp │ │ ├── cxx11_tensor_math.cpp │ │ ├── cxx11_tensor_mixed_indices.cpp │ │ ├── cxx11_tensor_morphing.cpp │ │ ├── cxx11_tensor_morphing_sycl.cpp │ │ ├── cxx11_tensor_move.cpp │ │ ├── cxx11_tensor_notification.cpp │ │ ├── cxx11_tensor_of_complex.cpp │ │ ├── cxx11_tensor_of_const_values.cpp │ │ ├── cxx11_tensor_of_float16_gpu.cu │ │ ├── cxx11_tensor_of_strings.cpp │ │ ├── cxx11_tensor_padding.cpp │ │ ├── cxx11_tensor_padding_sycl.cpp │ │ ├── cxx11_tensor_patch.cpp │ │ ├── cxx11_tensor_patch_sycl.cpp │ │ ├── cxx11_tensor_random.cpp │ │ ├── cxx11_tensor_random_gpu.cu │ │ ├── cxx11_tensor_reduction.cpp │ │ ├── cxx11_tensor_reduction_gpu.cu │ │ ├── cxx11_tensor_reduction_sycl.cpp │ │ ├── cxx11_tensor_ref.cpp │ │ ├── cxx11_tensor_reverse.cpp │ │ ├── cxx11_tensor_reverse_sycl.cpp │ │ ├── cxx11_tensor_roundings.cpp │ │ ├── cxx11_tensor_scan.cpp │ │ ├── cxx11_tensor_scan_gpu.cu │ │ ├── cxx11_tensor_shuffling.cpp │ │ ├── cxx11_tensor_shuffling_sycl.cpp │ │ ├── cxx11_tensor_simple.cpp │ │ ├── cxx11_tensor_striding.cpp │ │ ├── cxx11_tensor_striding_sycl.cpp │ │ ├── cxx11_tensor_sugar.cpp │ │ ├── cxx11_tensor_sycl.cpp │ │ ├── cxx11_tensor_symmetry.cpp │ │ ├── cxx11_tensor_thread_local.cpp │ │ ├── cxx11_tensor_thread_pool.cpp │ │ ├── cxx11_tensor_trace.cpp │ │ ├── cxx11_tensor_uint128.cpp │ │ ├── cxx11_tensor_volume_patch.cpp │ │ ├── cxx11_tensor_volume_patch_sycl.cpp │ │ ├── dgmres.cpp │ │ ├── forward_adolc.cpp │ │ ├── gmres.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 │ │ ├── special_functions.cpp │ │ └── splines.cpp ├── glew │ ├── CMakeLists.txt │ ├── include │ │ └── GL │ │ │ ├── glew.h │ │ │ ├── glxew.h │ │ │ └── wglew.h │ └── src │ │ └── glew.c └── glfw │ ├── .appveyor.yml │ ├── .travis.yml │ ├── CMake │ ├── GenerateMappings.cmake │ ├── MacOSXBundleInfo.plist.in │ ├── i686-w64-mingw32-clang.cmake │ ├── i686-w64-mingw32.cmake │ ├── modules │ │ ├── FindEpollShim.cmake │ │ ├── FindOSMesa.cmake │ │ ├── FindWaylandProtocols.cmake │ │ └── FindXKBCommon.cmake │ ├── x86_64-w64-mingw32-clang.cmake │ └── x86_64-w64-mingw32.cmake │ ├── CMakeLists.txt │ ├── LICENSE.md │ ├── README.md │ ├── cmake_uninstall.cmake.in │ ├── deps │ ├── getopt.c │ ├── getopt.h │ ├── glad │ │ ├── gl.h │ │ ├── khrplatform.h │ │ ├── vk_platform.h │ │ └── vulkan.h │ ├── glad_gl.c │ ├── glad_vulkan.c │ ├── linmath.h │ ├── mingw │ │ ├── _mingw_dxhelper.h │ │ ├── dinput.h │ │ └── xinput.h │ ├── nuklear.h │ ├── nuklear_glfw_gl2.h │ ├── stb_image_write.h │ ├── tinycthread.c │ ├── tinycthread.h │ └── vs2008 │ │ └── stdint.h │ ├── docs │ ├── CMakeLists.txt │ ├── CONTRIBUTING.md │ ├── Doxyfile.in │ ├── DoxygenLayout.xml │ ├── build.dox │ ├── compat.dox │ ├── compile.dox │ ├── context.dox │ ├── extra.css │ ├── extra.less │ ├── footer.html │ ├── header.html │ ├── input.dox │ ├── internal.dox │ ├── intro.dox │ ├── main.dox │ ├── monitor.dox │ ├── moving.dox │ ├── news.dox │ ├── quick.dox │ ├── spaces.svg │ ├── vulkan.dox │ └── window.dox │ ├── examples │ ├── CMakeLists.txt │ ├── boing.c │ ├── gears.c │ ├── glfw.icns │ ├── glfw.ico │ ├── glfw.rc │ ├── heightmap.c │ ├── offscreen.c │ ├── particles.c │ ├── sharing.c │ ├── splitview.c │ ├── triangle-opengl.c │ └── wave.c │ ├── include │ └── GLFW │ │ ├── glfw3.h │ │ └── glfw3native.h │ ├── src │ ├── CMakeLists.txt │ ├── cocoa_init.m │ ├── cocoa_joystick.h │ ├── cocoa_joystick.m │ ├── cocoa_monitor.m │ ├── cocoa_platform.h │ ├── cocoa_time.c │ ├── cocoa_window.m │ ├── context.c │ ├── egl_context.c │ ├── egl_context.h │ ├── glfw3.pc.in │ ├── glfw3Config.cmake.in │ ├── glfw_config.h.in │ ├── glx_context.c │ ├── glx_context.h │ ├── init.c │ ├── input.c │ ├── internal.h │ ├── linux_joystick.c │ ├── linux_joystick.h │ ├── mappings.h │ ├── mappings.h.in │ ├── monitor.c │ ├── nsgl_context.h │ ├── nsgl_context.m │ ├── null_init.c │ ├── null_joystick.c │ ├── null_joystick.h │ ├── null_monitor.c │ ├── null_platform.h │ ├── null_window.c │ ├── osmesa_context.c │ ├── osmesa_context.h │ ├── posix_thread.c │ ├── posix_thread.h │ ├── posix_time.c │ ├── posix_time.h │ ├── vulkan.c │ ├── wgl_context.c │ ├── wgl_context.h │ ├── win32_init.c │ ├── win32_joystick.c │ ├── win32_joystick.h │ ├── win32_monitor.c │ ├── win32_platform.h │ ├── win32_thread.c │ ├── win32_time.c │ ├── win32_window.c │ ├── window.c │ ├── wl_init.c │ ├── wl_monitor.c │ ├── wl_platform.h │ ├── wl_window.c │ ├── x11_init.c │ ├── x11_monitor.c │ ├── x11_platform.h │ ├── x11_window.c │ ├── xkb_unicode.c │ └── xkb_unicode.h │ └── tests │ ├── CMakeLists.txt │ ├── clipboard.c │ ├── cursor.c │ ├── empty.c │ ├── events.c │ ├── gamma.c │ ├── glfwinfo.c │ ├── icon.c │ ├── iconify.c │ ├── inputlag.c │ ├── joysticks.c │ ├── monitors.c │ ├── msaa.c │ ├── opacity.c │ ├── reopen.c │ ├── tearing.c │ ├── threads.c │ ├── timeout.c │ ├── title.c │ ├── triangle-vulkan.c │ └── windows.c ├── images ├── depth.gif ├── normal.gif └── sketch.gif ├── py_src └── edge.py ├── run.sh ├── src ├── Helpers.cpp ├── Helpers.h ├── main.cpp └── stb_image_write.h └── tools ├── .ipynb_checkpoints └── shapenet-checkpoint.ipynb ├── cpk.txt └── shapenet.ipynb /.gitignore: -------------------------------------------------------------------------------- 1 | . 2 | .. 3 | .DS_STORE 4 | data_* 5 | *.png 6 | build 7 | 8 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/README.md -------------------------------------------------------------------------------- /data/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/data/.DS_Store -------------------------------------------------------------------------------- /data/bumpy_cube.off: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/data/bumpy_cube.off -------------------------------------------------------------------------------- /data/bunny.off: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/data/bunny.off -------------------------------------------------------------------------------- /data/cube.off: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/data/cube.off -------------------------------------------------------------------------------- /data/hat.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/data/hat.obj -------------------------------------------------------------------------------- /data/jet.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/data/jet.obj -------------------------------------------------------------------------------- /ext/eigen/.hgeol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/.hgeol -------------------------------------------------------------------------------- /ext/eigen/.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/.hgignore -------------------------------------------------------------------------------- /ext/eigen/.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/.hgtags -------------------------------------------------------------------------------- /ext/eigen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/CMakeLists.txt -------------------------------------------------------------------------------- /ext/eigen/COPYING.BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/COPYING.BSD -------------------------------------------------------------------------------- /ext/eigen/COPYING.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/COPYING.GPL -------------------------------------------------------------------------------- /ext/eigen/COPYING.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/COPYING.LGPL -------------------------------------------------------------------------------- /ext/eigen/COPYING.MINPACK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/COPYING.MINPACK -------------------------------------------------------------------------------- /ext/eigen/COPYING.MPL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/COPYING.MPL2 -------------------------------------------------------------------------------- /ext/eigen/COPYING.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/COPYING.README -------------------------------------------------------------------------------- /ext/eigen/CTestConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/CTestConfig.cmake -------------------------------------------------------------------------------- /ext/eigen/CTestCustom.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/CTestCustom.cmake.in -------------------------------------------------------------------------------- /ext/eigen/Eigen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/CMakeLists.txt -------------------------------------------------------------------------------- /ext/eigen/Eigen/Cholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/Cholesky -------------------------------------------------------------------------------- /ext/eigen/Eigen/CholmodSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/CholmodSupport -------------------------------------------------------------------------------- /ext/eigen/Eigen/Core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/Core -------------------------------------------------------------------------------- /ext/eigen/Eigen/Dense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/Dense -------------------------------------------------------------------------------- /ext/eigen/Eigen/Eigen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/Eigen -------------------------------------------------------------------------------- /ext/eigen/Eigen/Eigenvalues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/Eigenvalues -------------------------------------------------------------------------------- /ext/eigen/Eigen/Geometry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/Geometry -------------------------------------------------------------------------------- /ext/eigen/Eigen/Householder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/Householder -------------------------------------------------------------------------------- /ext/eigen/Eigen/IterativeLinearSolvers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/IterativeLinearSolvers -------------------------------------------------------------------------------- /ext/eigen/Eigen/Jacobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/Jacobi -------------------------------------------------------------------------------- /ext/eigen/Eigen/KLUSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/KLUSupport -------------------------------------------------------------------------------- /ext/eigen/Eigen/LU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/LU -------------------------------------------------------------------------------- /ext/eigen/Eigen/MetisSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/MetisSupport -------------------------------------------------------------------------------- /ext/eigen/Eigen/OrderingMethods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/OrderingMethods -------------------------------------------------------------------------------- /ext/eigen/Eigen/PaStiXSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/PaStiXSupport -------------------------------------------------------------------------------- /ext/eigen/Eigen/PardisoSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/PardisoSupport -------------------------------------------------------------------------------- /ext/eigen/Eigen/QR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/QR -------------------------------------------------------------------------------- /ext/eigen/Eigen/QtAlignedMalloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/QtAlignedMalloc -------------------------------------------------------------------------------- /ext/eigen/Eigen/SPQRSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/SPQRSupport -------------------------------------------------------------------------------- /ext/eigen/Eigen/SVD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/SVD -------------------------------------------------------------------------------- /ext/eigen/Eigen/Sparse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/Sparse -------------------------------------------------------------------------------- /ext/eigen/Eigen/SparseCholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/SparseCholesky -------------------------------------------------------------------------------- /ext/eigen/Eigen/SparseCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/SparseCore -------------------------------------------------------------------------------- /ext/eigen/Eigen/SparseLU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/SparseLU -------------------------------------------------------------------------------- /ext/eigen/Eigen/SparseQR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/SparseQR -------------------------------------------------------------------------------- /ext/eigen/Eigen/StdDeque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/StdDeque -------------------------------------------------------------------------------- /ext/eigen/Eigen/StdList: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/StdList -------------------------------------------------------------------------------- /ext/eigen/Eigen/StdVector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/StdVector -------------------------------------------------------------------------------- /ext/eigen/Eigen/SuperLUSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/SuperLUSupport -------------------------------------------------------------------------------- /ext/eigen/Eigen/UmfPackSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/UmfPackSupport -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Cholesky/LDLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Cholesky/LDLT.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Cholesky/LLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Cholesky/LLT.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/Array.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/ArrayBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/ArrayBase.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/ArrayWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/ArrayWrapper.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/Assign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/Assign.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/Assign_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/Assign_MKL.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/BandMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/BandMatrix.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/Block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/Block.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/BooleanRedux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/BooleanRedux.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/CoreEvaluators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/CoreEvaluators.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/CoreIterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/CoreIterators.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/CwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/CwiseBinaryOp.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/CwiseNullaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/CwiseNullaryOp.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/CwiseTernaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/CwiseTernaryOp.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/CwiseUnaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/CwiseUnaryOp.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/CwiseUnaryView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/CwiseUnaryView.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/DenseBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/DenseBase.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/DenseStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/DenseStorage.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/Diagonal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/Diagonal.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/DiagonalMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/DiagonalMatrix.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/Dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/Dot.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/EigenBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/EigenBase.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/Fuzzy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/Fuzzy.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/GeneralProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/GeneralProduct.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/IO.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/IndexedView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/IndexedView.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/Inverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/Inverse.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/Map.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/MapBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/MapBase.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/MathFunctions.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/Matrix.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/MatrixBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/MatrixBase.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/NestByValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/NestByValue.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/NoAlias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/NoAlias.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/NumTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/NumTraits.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/Product.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/Product.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/Random.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/Redux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/Redux.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/Ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/Ref.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/Replicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/Replicate.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/Reshaped.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/Reshaped.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/ReturnByValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/ReturnByValue.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/Reverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/Reverse.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/Select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/Select.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/Solve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/Solve.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/SolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/SolverBase.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/StableNorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/StableNorm.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/StlIterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/StlIterators.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/Stride.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/Stride.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/Swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/Swap.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/Transpose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/Transpose.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/Transpositions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/Transpositions.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/VectorBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/VectorBlock.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/VectorwiseOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/VectorwiseOp.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/Visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/Visitor.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/util/BlasUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/util/BlasUtil.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/util/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/util/Constants.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/util/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/util/Macros.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/util/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/util/Memory.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/util/Meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/util/Meta.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/util/NonMPL2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/util/NonMPL2.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/util/XprHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Core/util/XprHelper.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Eigenvalues/RealQZ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Eigenvalues/RealQZ.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Geometry/AlignedBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Geometry/AlignedBox.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Geometry/AngleAxis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Geometry/AngleAxis.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Geometry/Hyperplane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Geometry/Hyperplane.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Geometry/Quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Geometry/Quaternion.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Geometry/Rotation2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Geometry/Rotation2D.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Geometry/Scaling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Geometry/Scaling.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Geometry/Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Geometry/Transform.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Geometry/Umeyama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Geometry/Umeyama.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Jacobi/Jacobi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/Jacobi/Jacobi.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/LU/Determinant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/LU/Determinant.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/LU/FullPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/LU/FullPivLU.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/LU/InverseImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/LU/InverseImpl.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/LU/PartialPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/LU/PartialPivLU.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/LU/arch/Inverse_SSE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/LU/arch/Inverse_SSE.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/OrderingMethods/Amd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/OrderingMethods/Amd.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/QR/HouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/QR/HouseholderQR.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/SVD/BDCSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/SVD/BDCSVD.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/SVD/JacobiSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/SVD/JacobiSVD.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/SVD/SVDBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/SVD/SVDBase.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/SparseLU/SparseLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/SparseLU/SparseLU.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/SparseQR/SparseQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/SparseQR/SparseQR.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/StlSupport/StdDeque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/StlSupport/StdDeque.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/StlSupport/StdList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/StlSupport/StdList.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/StlSupport/details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/StlSupport/details.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/misc/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/misc/Image.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/misc/Kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/misc/Kernel.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/misc/RealSvd2x2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/misc/RealSvd2x2.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/misc/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/misc/blas.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/misc/lapack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/misc/lapack.h -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/misc/lapacke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/Eigen/src/misc/lapacke.h -------------------------------------------------------------------------------- /ext/eigen/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/INSTALL -------------------------------------------------------------------------------- /ext/eigen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/README.md -------------------------------------------------------------------------------- /ext/eigen/bench/BenchSparseUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/BenchSparseUtil.h -------------------------------------------------------------------------------- /ext/eigen/bench/BenchTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/BenchTimer.h -------------------------------------------------------------------------------- /ext/eigen/bench/BenchUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/BenchUtil.h -------------------------------------------------------------------------------- /ext/eigen/bench/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/README.txt -------------------------------------------------------------------------------- /ext/eigen/bench/basicbench.cxxlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/basicbench.cxxlist -------------------------------------------------------------------------------- /ext/eigen/bench/basicbenchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/basicbenchmark.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/basicbenchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/basicbenchmark.h -------------------------------------------------------------------------------- /ext/eigen/bench/benchBlasGemm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/benchBlasGemm.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/benchCholesky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/benchCholesky.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/benchEigenSolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/benchEigenSolver.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/benchFFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/benchFFT.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/benchGeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/benchGeometry.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/benchVecAdd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/benchVecAdd.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/bench_gemm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/bench_gemm.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/bench_multi_compilers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/bench_multi_compilers.sh -------------------------------------------------------------------------------- /ext/eigen/bench/bench_norm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/bench_norm.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/bench_reverse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/bench_reverse.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/bench_sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/bench_sum.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/bench_unrolling: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/bench_unrolling -------------------------------------------------------------------------------- /ext/eigen/bench/benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/benchmark.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/benchmarkSlice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/benchmarkSlice.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/benchmarkX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/benchmarkX.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/benchmarkXcwise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/benchmarkXcwise.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/benchmark_suite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/benchmark_suite -------------------------------------------------------------------------------- /ext/eigen/bench/btl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/btl/CMakeLists.txt -------------------------------------------------------------------------------- /ext/eigen/bench/btl/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/btl/COPYING -------------------------------------------------------------------------------- /ext/eigen/bench/btl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/btl/README -------------------------------------------------------------------------------- /ext/eigen/bench/btl/actions/action_ger.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/btl/actions/action_ger.hh -------------------------------------------------------------------------------- /ext/eigen/bench/btl/actions/action_rot.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/btl/actions/action_rot.hh -------------------------------------------------------------------------------- /ext/eigen/bench/btl/cmake/FindACML.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/btl/cmake/FindACML.cmake -------------------------------------------------------------------------------- /ext/eigen/bench/btl/cmake/FindATLAS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/btl/cmake/FindATLAS.cmake -------------------------------------------------------------------------------- /ext/eigen/bench/btl/cmake/FindBLAZE.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/btl/cmake/FindBLAZE.cmake -------------------------------------------------------------------------------- /ext/eigen/bench/btl/cmake/FindBlitz.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/btl/cmake/FindBlitz.cmake -------------------------------------------------------------------------------- /ext/eigen/bench/btl/cmake/FindCBLAS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/btl/cmake/FindCBLAS.cmake -------------------------------------------------------------------------------- /ext/eigen/bench/btl/cmake/FindGMM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/btl/cmake/FindGMM.cmake -------------------------------------------------------------------------------- /ext/eigen/bench/btl/cmake/FindMKL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/btl/cmake/FindMKL.cmake -------------------------------------------------------------------------------- /ext/eigen/bench/btl/cmake/FindMTL4.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/btl/cmake/FindMTL4.cmake -------------------------------------------------------------------------------- /ext/eigen/bench/btl/cmake/FindTvmet.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/btl/cmake/FindTvmet.cmake -------------------------------------------------------------------------------- /ext/eigen/bench/btl/data/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/btl/data/CMakeLists.txt -------------------------------------------------------------------------------- /ext/eigen/bench/btl/data/go_mean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/btl/data/go_mean -------------------------------------------------------------------------------- /ext/eigen/bench/btl/data/mean.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/btl/data/mean.cxx -------------------------------------------------------------------------------- /ext/eigen/bench/btl/data/regularize.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/btl/data/regularize.cxx -------------------------------------------------------------------------------- /ext/eigen/bench/btl/data/smooth.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/btl/data/smooth.cxx -------------------------------------------------------------------------------- /ext/eigen/bench/btl/data/smooth_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/btl/data/smooth_all.sh -------------------------------------------------------------------------------- /ext/eigen/bench/btl/generic_bench/btl.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/btl/generic_bench/btl.hh -------------------------------------------------------------------------------- /ext/eigen/bench/btl/libs/BLAS/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/btl/libs/BLAS/blas.h -------------------------------------------------------------------------------- /ext/eigen/bench/btl/libs/BLAS/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/btl/libs/BLAS/main.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/btl/libs/STL/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/btl/libs/STL/main.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/btl/libs/blaze/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/btl/libs/blaze/main.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/btl/libs/gmm/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/btl/libs/gmm/main.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/btl/libs/mtl4/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/btl/libs/mtl4/main.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/btl/libs/tvmet/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/btl/libs/tvmet/main.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/btl/libs/ublas/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/btl/libs/ublas/main.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/check_cache_queries.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/check_cache_queries.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/dense_solvers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/dense_solvers.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/eig33.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/eig33.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/geometry.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/perf_monitoring/gemm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/perf_monitoring/gemm.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/perf_monitoring/gemv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/perf_monitoring/gemv.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/perf_monitoring/gemvt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/perf_monitoring/gemvt.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/perf_monitoring/llt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/perf_monitoring/llt.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/perf_monitoring/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/perf_monitoring/run.sh -------------------------------------------------------------------------------- /ext/eigen/bench/perf_monitoring/runall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/perf_monitoring/runall.sh -------------------------------------------------------------------------------- /ext/eigen/bench/product_threshold.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/product_threshold.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/quat_slerp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/quat_slerp.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/quatmul.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/quatmul.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/sparse_cholesky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/sparse_cholesky.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/sparse_dense_product.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/sparse_dense_product.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/sparse_lu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/sparse_lu.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/sparse_product.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/sparse_product.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/sparse_randomsetter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/sparse_randomsetter.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/sparse_setter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/sparse_setter.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/sparse_transpose.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/sparse_transpose.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/sparse_trisolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/sparse_trisolver.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/spbench/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/spbench/CMakeLists.txt -------------------------------------------------------------------------------- /ext/eigen/bench/spbench/sp_solver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/spbench/sp_solver.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/spbench/spbench.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/spbench/spbench.dtd -------------------------------------------------------------------------------- /ext/eigen/bench/spbench/spbenchsolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/spbench/spbenchsolver.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/spbench/spbenchsolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/spbench/spbenchsolver.h -------------------------------------------------------------------------------- /ext/eigen/bench/spbench/spbenchstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/spbench/spbenchstyle.h -------------------------------------------------------------------------------- /ext/eigen/bench/spbench/test_sparseLU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/spbench/test_sparseLU.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/spmv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/spmv.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/tensors/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/tensors/README -------------------------------------------------------------------------------- /ext/eigen/bench/tensors/benchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/tensors/benchmark.h -------------------------------------------------------------------------------- /ext/eigen/bench/tensors/benchmark_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/tensors/benchmark_main.cc -------------------------------------------------------------------------------- /ext/eigen/bench/vdw_new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/bench/vdw_new.cpp -------------------------------------------------------------------------------- /ext/eigen/blas/BandTriangularSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/BandTriangularSolver.h -------------------------------------------------------------------------------- /ext/eigen/blas/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/CMakeLists.txt -------------------------------------------------------------------------------- /ext/eigen/blas/GeneralRank1Update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/GeneralRank1Update.h -------------------------------------------------------------------------------- /ext/eigen/blas/PackedSelfadjointProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/PackedSelfadjointProduct.h -------------------------------------------------------------------------------- /ext/eigen/blas/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/README.txt -------------------------------------------------------------------------------- /ext/eigen/blas/Rank2Update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/Rank2Update.h -------------------------------------------------------------------------------- /ext/eigen/blas/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/common.h -------------------------------------------------------------------------------- /ext/eigen/blas/complex_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/complex_double.cpp -------------------------------------------------------------------------------- /ext/eigen/blas/complex_single.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/complex_single.cpp -------------------------------------------------------------------------------- /ext/eigen/blas/double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/double.cpp -------------------------------------------------------------------------------- /ext/eigen/blas/f2c/chbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/f2c/chbmv.c -------------------------------------------------------------------------------- /ext/eigen/blas/f2c/chpmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/f2c/chpmv.c -------------------------------------------------------------------------------- /ext/eigen/blas/f2c/complexdots.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/f2c/complexdots.c -------------------------------------------------------------------------------- /ext/eigen/blas/f2c/ctbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/f2c/ctbmv.c -------------------------------------------------------------------------------- /ext/eigen/blas/f2c/d_cnjg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/f2c/d_cnjg.c -------------------------------------------------------------------------------- /ext/eigen/blas/f2c/datatypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/f2c/datatypes.h -------------------------------------------------------------------------------- /ext/eigen/blas/f2c/drotm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/f2c/drotm.c -------------------------------------------------------------------------------- /ext/eigen/blas/f2c/drotmg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/f2c/drotmg.c -------------------------------------------------------------------------------- /ext/eigen/blas/f2c/dsbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/f2c/dsbmv.c -------------------------------------------------------------------------------- /ext/eigen/blas/f2c/dspmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/f2c/dspmv.c -------------------------------------------------------------------------------- /ext/eigen/blas/f2c/dtbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/f2c/dtbmv.c -------------------------------------------------------------------------------- /ext/eigen/blas/f2c/lsame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/f2c/lsame.c -------------------------------------------------------------------------------- /ext/eigen/blas/f2c/r_cnjg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/f2c/r_cnjg.c -------------------------------------------------------------------------------- /ext/eigen/blas/f2c/srotm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/f2c/srotm.c -------------------------------------------------------------------------------- /ext/eigen/blas/f2c/srotmg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/f2c/srotmg.c -------------------------------------------------------------------------------- /ext/eigen/blas/f2c/ssbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/f2c/ssbmv.c -------------------------------------------------------------------------------- /ext/eigen/blas/f2c/sspmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/f2c/sspmv.c -------------------------------------------------------------------------------- /ext/eigen/blas/f2c/stbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/f2c/stbmv.c -------------------------------------------------------------------------------- /ext/eigen/blas/f2c/zhbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/f2c/zhbmv.c -------------------------------------------------------------------------------- /ext/eigen/blas/f2c/zhpmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/f2c/zhpmv.c -------------------------------------------------------------------------------- /ext/eigen/blas/f2c/ztbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/f2c/ztbmv.c -------------------------------------------------------------------------------- /ext/eigen/blas/fortran/complexdots.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/fortran/complexdots.f -------------------------------------------------------------------------------- /ext/eigen/blas/level1_cplx_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/level1_cplx_impl.h -------------------------------------------------------------------------------- /ext/eigen/blas/level1_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/level1_impl.h -------------------------------------------------------------------------------- /ext/eigen/blas/level1_real_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/level1_real_impl.h -------------------------------------------------------------------------------- /ext/eigen/blas/level2_cplx_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/level2_cplx_impl.h -------------------------------------------------------------------------------- /ext/eigen/blas/level2_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/level2_impl.h -------------------------------------------------------------------------------- /ext/eigen/blas/level2_real_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/level2_real_impl.h -------------------------------------------------------------------------------- /ext/eigen/blas/level3_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/level3_impl.h -------------------------------------------------------------------------------- /ext/eigen/blas/single.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/single.cpp -------------------------------------------------------------------------------- /ext/eigen/blas/testing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/testing/CMakeLists.txt -------------------------------------------------------------------------------- /ext/eigen/blas/testing/cblat1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/testing/cblat1.f -------------------------------------------------------------------------------- /ext/eigen/blas/testing/cblat2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/testing/cblat2.dat -------------------------------------------------------------------------------- /ext/eigen/blas/testing/cblat2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/testing/cblat2.f -------------------------------------------------------------------------------- /ext/eigen/blas/testing/cblat3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/testing/cblat3.dat -------------------------------------------------------------------------------- /ext/eigen/blas/testing/cblat3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/testing/cblat3.f -------------------------------------------------------------------------------- /ext/eigen/blas/testing/dblat1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/testing/dblat1.f -------------------------------------------------------------------------------- /ext/eigen/blas/testing/dblat2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/testing/dblat2.dat -------------------------------------------------------------------------------- /ext/eigen/blas/testing/dblat2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/testing/dblat2.f -------------------------------------------------------------------------------- /ext/eigen/blas/testing/dblat3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/testing/dblat3.dat -------------------------------------------------------------------------------- /ext/eigen/blas/testing/dblat3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/testing/dblat3.f -------------------------------------------------------------------------------- /ext/eigen/blas/testing/runblastest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/testing/runblastest.sh -------------------------------------------------------------------------------- /ext/eigen/blas/testing/sblat1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/testing/sblat1.f -------------------------------------------------------------------------------- /ext/eigen/blas/testing/sblat2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/testing/sblat2.dat -------------------------------------------------------------------------------- /ext/eigen/blas/testing/sblat2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/testing/sblat2.f -------------------------------------------------------------------------------- /ext/eigen/blas/testing/sblat3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/testing/sblat3.dat -------------------------------------------------------------------------------- /ext/eigen/blas/testing/sblat3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/testing/sblat3.f -------------------------------------------------------------------------------- /ext/eigen/blas/testing/zblat1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/testing/zblat1.f -------------------------------------------------------------------------------- /ext/eigen/blas/testing/zblat2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/testing/zblat2.dat -------------------------------------------------------------------------------- /ext/eigen/blas/testing/zblat2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/testing/zblat2.f -------------------------------------------------------------------------------- /ext/eigen/blas/testing/zblat3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/testing/zblat3.dat -------------------------------------------------------------------------------- /ext/eigen/blas/testing/zblat3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/testing/zblat3.f -------------------------------------------------------------------------------- /ext/eigen/blas/xerbla.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/blas/xerbla.cpp -------------------------------------------------------------------------------- /ext/eigen/cmake/Eigen3Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/cmake/Eigen3Config.cmake.in -------------------------------------------------------------------------------- /ext/eigen/cmake/EigenTesting.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/cmake/EigenTesting.cmake -------------------------------------------------------------------------------- /ext/eigen/cmake/EigenUninstall.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/cmake/EigenUninstall.cmake -------------------------------------------------------------------------------- /ext/eigen/cmake/FindAdolc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/cmake/FindAdolc.cmake -------------------------------------------------------------------------------- /ext/eigen/cmake/FindBLAS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/cmake/FindBLAS.cmake -------------------------------------------------------------------------------- /ext/eigen/cmake/FindBLASEXT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/cmake/FindBLASEXT.cmake -------------------------------------------------------------------------------- /ext/eigen/cmake/FindCholmod.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/cmake/FindCholmod.cmake -------------------------------------------------------------------------------- /ext/eigen/cmake/FindComputeCpp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/cmake/FindComputeCpp.cmake -------------------------------------------------------------------------------- /ext/eigen/cmake/FindEigen2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/cmake/FindEigen2.cmake -------------------------------------------------------------------------------- /ext/eigen/cmake/FindEigen3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/cmake/FindEigen3.cmake -------------------------------------------------------------------------------- /ext/eigen/cmake/FindFFTW.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/cmake/FindFFTW.cmake -------------------------------------------------------------------------------- /ext/eigen/cmake/FindGLEW.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/cmake/FindGLEW.cmake -------------------------------------------------------------------------------- /ext/eigen/cmake/FindGMP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/cmake/FindGMP.cmake -------------------------------------------------------------------------------- /ext/eigen/cmake/FindGSL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/cmake/FindGSL.cmake -------------------------------------------------------------------------------- /ext/eigen/cmake/FindGoogleHash.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/cmake/FindGoogleHash.cmake -------------------------------------------------------------------------------- /ext/eigen/cmake/FindHWLOC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/cmake/FindHWLOC.cmake -------------------------------------------------------------------------------- /ext/eigen/cmake/FindKLU.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/cmake/FindKLU.cmake -------------------------------------------------------------------------------- /ext/eigen/cmake/FindLAPACK.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/cmake/FindLAPACK.cmake -------------------------------------------------------------------------------- /ext/eigen/cmake/FindMPFR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/cmake/FindMPFR.cmake -------------------------------------------------------------------------------- /ext/eigen/cmake/FindMetis.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/cmake/FindMetis.cmake -------------------------------------------------------------------------------- /ext/eigen/cmake/FindPTSCOTCH.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/cmake/FindPTSCOTCH.cmake -------------------------------------------------------------------------------- /ext/eigen/cmake/FindPastix.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/cmake/FindPastix.cmake -------------------------------------------------------------------------------- /ext/eigen/cmake/FindSPQR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/cmake/FindSPQR.cmake -------------------------------------------------------------------------------- /ext/eigen/cmake/FindScotch.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/cmake/FindScotch.cmake -------------------------------------------------------------------------------- /ext/eigen/cmake/FindSuperLU.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/cmake/FindSuperLU.cmake -------------------------------------------------------------------------------- /ext/eigen/cmake/FindTriSYCL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/cmake/FindTriSYCL.cmake -------------------------------------------------------------------------------- /ext/eigen/cmake/FindUmfpack.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/cmake/FindUmfpack.cmake -------------------------------------------------------------------------------- /ext/eigen/cmake/RegexUtils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/cmake/RegexUtils.cmake -------------------------------------------------------------------------------- /ext/eigen/cmake/UseEigen3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/cmake/UseEigen3.cmake -------------------------------------------------------------------------------- /ext/eigen/cmake/language_support.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/cmake/language_support.cmake -------------------------------------------------------------------------------- /ext/eigen/debug/gdb/__init__.py: -------------------------------------------------------------------------------- 1 | # Intentionally empty 2 | -------------------------------------------------------------------------------- /ext/eigen/debug/gdb/printers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/debug/gdb/printers.py -------------------------------------------------------------------------------- /ext/eigen/debug/msvc/eigen.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/debug/msvc/eigen.natvis -------------------------------------------------------------------------------- /ext/eigen/demos/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/demos/CMakeLists.txt -------------------------------------------------------------------------------- /ext/eigen/demos/mandelbrot/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/demos/mandelbrot/README -------------------------------------------------------------------------------- /ext/eigen/demos/mandelbrot/mandelbrot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/demos/mandelbrot/mandelbrot.h -------------------------------------------------------------------------------- /ext/eigen/demos/mix_eigen_and_c/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/demos/mix_eigen_and_c/README -------------------------------------------------------------------------------- /ext/eigen/demos/opengl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/demos/opengl/CMakeLists.txt -------------------------------------------------------------------------------- /ext/eigen/demos/opengl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/demos/opengl/README -------------------------------------------------------------------------------- /ext/eigen/demos/opengl/camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/demos/opengl/camera.cpp -------------------------------------------------------------------------------- /ext/eigen/demos/opengl/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/demos/opengl/camera.h -------------------------------------------------------------------------------- /ext/eigen/demos/opengl/gpuhelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/demos/opengl/gpuhelper.cpp -------------------------------------------------------------------------------- /ext/eigen/demos/opengl/gpuhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/demos/opengl/gpuhelper.h -------------------------------------------------------------------------------- /ext/eigen/demos/opengl/icosphere.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/demos/opengl/icosphere.cpp -------------------------------------------------------------------------------- /ext/eigen/demos/opengl/icosphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/demos/opengl/icosphere.h -------------------------------------------------------------------------------- /ext/eigen/demos/opengl/trackball.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/demos/opengl/trackball.cpp -------------------------------------------------------------------------------- /ext/eigen/demos/opengl/trackball.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/demos/opengl/trackball.h -------------------------------------------------------------------------------- /ext/eigen/doc/AsciiQuickReference.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/AsciiQuickReference.txt -------------------------------------------------------------------------------- /ext/eigen/doc/B01_Experimental.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/B01_Experimental.dox -------------------------------------------------------------------------------- /ext/eigen/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/CMakeLists.txt -------------------------------------------------------------------------------- /ext/eigen/doc/ClassHierarchy.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/ClassHierarchy.dox -------------------------------------------------------------------------------- /ext/eigen/doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/Doxyfile.in -------------------------------------------------------------------------------- /ext/eigen/doc/FixedSizeVectorizable.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/FixedSizeVectorizable.dox -------------------------------------------------------------------------------- /ext/eigen/doc/HiPerformance.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/HiPerformance.dox -------------------------------------------------------------------------------- /ext/eigen/doc/InplaceDecomposition.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/InplaceDecomposition.dox -------------------------------------------------------------------------------- /ext/eigen/doc/InsideEigenExample.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/InsideEigenExample.dox -------------------------------------------------------------------------------- /ext/eigen/doc/LeastSquares.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/LeastSquares.dox -------------------------------------------------------------------------------- /ext/eigen/doc/Manual.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/Manual.dox -------------------------------------------------------------------------------- /ext/eigen/doc/NewExpressionType.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/NewExpressionType.dox -------------------------------------------------------------------------------- /ext/eigen/doc/Overview.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/Overview.dox -------------------------------------------------------------------------------- /ext/eigen/doc/PassingByValue.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/PassingByValue.dox -------------------------------------------------------------------------------- /ext/eigen/doc/Pitfalls.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/Pitfalls.dox -------------------------------------------------------------------------------- /ext/eigen/doc/QuickReference.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/QuickReference.dox -------------------------------------------------------------------------------- /ext/eigen/doc/QuickStartGuide.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/QuickStartGuide.dox -------------------------------------------------------------------------------- /ext/eigen/doc/SparseLinearSystems.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/SparseLinearSystems.dox -------------------------------------------------------------------------------- /ext/eigen/doc/SparseQuickReference.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/SparseQuickReference.dox -------------------------------------------------------------------------------- /ext/eigen/doc/StlContainers.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/StlContainers.dox -------------------------------------------------------------------------------- /ext/eigen/doc/StorageOrders.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/StorageOrders.dox -------------------------------------------------------------------------------- /ext/eigen/doc/TemplateKeyword.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/TemplateKeyword.dox -------------------------------------------------------------------------------- /ext/eigen/doc/TopicAliasing.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/TopicAliasing.dox -------------------------------------------------------------------------------- /ext/eigen/doc/TopicAssertions.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/TopicAssertions.dox -------------------------------------------------------------------------------- /ext/eigen/doc/TopicCMakeGuide.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/TopicCMakeGuide.dox -------------------------------------------------------------------------------- /ext/eigen/doc/TopicLazyEvaluation.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/TopicLazyEvaluation.dox -------------------------------------------------------------------------------- /ext/eigen/doc/TopicMultithreading.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/TopicMultithreading.dox -------------------------------------------------------------------------------- /ext/eigen/doc/TopicResizing.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/TopicResizing.dox -------------------------------------------------------------------------------- /ext/eigen/doc/TopicScalarTypes.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/TopicScalarTypes.dox -------------------------------------------------------------------------------- /ext/eigen/doc/TopicVectorization.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/TopicVectorization.dox -------------------------------------------------------------------------------- /ext/eigen/doc/TutorialArrayClass.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/TutorialArrayClass.dox -------------------------------------------------------------------------------- /ext/eigen/doc/TutorialGeometry.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/TutorialGeometry.dox -------------------------------------------------------------------------------- /ext/eigen/doc/TutorialLinearAlgebra.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/TutorialLinearAlgebra.dox -------------------------------------------------------------------------------- /ext/eigen/doc/TutorialMapClass.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/TutorialMapClass.dox -------------------------------------------------------------------------------- /ext/eigen/doc/TutorialMatrixClass.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/TutorialMatrixClass.dox -------------------------------------------------------------------------------- /ext/eigen/doc/TutorialReshape.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/TutorialReshape.dox -------------------------------------------------------------------------------- /ext/eigen/doc/TutorialSTL.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/TutorialSTL.dox -------------------------------------------------------------------------------- /ext/eigen/doc/TutorialSparse.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/TutorialSparse.dox -------------------------------------------------------------------------------- /ext/eigen/doc/UnalignedArrayAssert.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/UnalignedArrayAssert.dox -------------------------------------------------------------------------------- /ext/eigen/doc/UsingIntelMKL.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/UsingIntelMKL.dox -------------------------------------------------------------------------------- /ext/eigen/doc/UsingNVCC.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/UsingNVCC.dox -------------------------------------------------------------------------------- /ext/eigen/doc/WrongStackAlignment.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/WrongStackAlignment.dox -------------------------------------------------------------------------------- /ext/eigen/doc/eigen_navtree_hacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/eigen_navtree_hacks.js -------------------------------------------------------------------------------- /ext/eigen/doc/eigendoxy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/eigendoxy.css -------------------------------------------------------------------------------- /ext/eigen/doc/eigendoxy_footer.html.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/eigendoxy_footer.html.in -------------------------------------------------------------------------------- /ext/eigen/doc/eigendoxy_header.html.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/eigendoxy_header.html.in -------------------------------------------------------------------------------- /ext/eigen/doc/eigendoxy_layout.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/eigendoxy_layout.xml.in -------------------------------------------------------------------------------- /ext/eigen/doc/eigendoxy_tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/eigendoxy_tabs.css -------------------------------------------------------------------------------- /ext/eigen/doc/examples/.krazy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/examples/.krazy -------------------------------------------------------------------------------- /ext/eigen/doc/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/examples/CMakeLists.txt -------------------------------------------------------------------------------- /ext/eigen/doc/examples/Cwise_erf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/examples/Cwise_erf.cpp -------------------------------------------------------------------------------- /ext/eigen/doc/examples/Cwise_erfc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/examples/Cwise_erfc.cpp -------------------------------------------------------------------------------- /ext/eigen/doc/examples/Cwise_lgamma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/examples/Cwise_lgamma.cpp -------------------------------------------------------------------------------- /ext/eigen/doc/examples/class_Block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/examples/class_Block.cpp -------------------------------------------------------------------------------- /ext/eigen/doc/snippets/.krazy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/snippets/.krazy -------------------------------------------------------------------------------- /ext/eigen/doc/snippets/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/snippets/CMakeLists.txt -------------------------------------------------------------------------------- /ext/eigen/doc/snippets/Cwise_abs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/snippets/Cwise_abs.cpp -------------------------------------------------------------------------------- /ext/eigen/doc/snippets/Cwise_abs2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/snippets/Cwise_abs2.cpp -------------------------------------------------------------------------------- /ext/eigen/doc/snippets/Cwise_acos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/snippets/Cwise_acos.cpp -------------------------------------------------------------------------------- /ext/eigen/doc/snippets/Cwise_arg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/snippets/Cwise_arg.cpp -------------------------------------------------------------------------------- /ext/eigen/doc/snippets/Cwise_asin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/snippets/Cwise_asin.cpp -------------------------------------------------------------------------------- /ext/eigen/doc/snippets/Cwise_atan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/snippets/Cwise_atan.cpp -------------------------------------------------------------------------------- /ext/eigen/doc/snippets/Cwise_ceil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/snippets/Cwise_ceil.cpp -------------------------------------------------------------------------------- /ext/eigen/doc/snippets/Cwise_cos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/snippets/Cwise_cos.cpp -------------------------------------------------------------------------------- /ext/eigen/doc/snippets/Cwise_cosh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/snippets/Cwise_cosh.cpp -------------------------------------------------------------------------------- /ext/eigen/doc/snippets/Cwise_cube.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/snippets/Cwise_cube.cpp -------------------------------------------------------------------------------- /ext/eigen/doc/snippets/Cwise_exp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/snippets/Cwise_exp.cpp -------------------------------------------------------------------------------- /ext/eigen/doc/snippets/Cwise_floor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/snippets/Cwise_floor.cpp -------------------------------------------------------------------------------- /ext/eigen/doc/snippets/Cwise_isInf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/snippets/Cwise_isInf.cpp -------------------------------------------------------------------------------- /ext/eigen/doc/snippets/Cwise_isNaN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/snippets/Cwise_isNaN.cpp -------------------------------------------------------------------------------- /ext/eigen/doc/snippets/Cwise_less.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/snippets/Cwise_less.cpp -------------------------------------------------------------------------------- /ext/eigen/doc/snippets/Cwise_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/snippets/Cwise_log.cpp -------------------------------------------------------------------------------- /ext/eigen/doc/snippets/Cwise_log10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/snippets/Cwise_log10.cpp -------------------------------------------------------------------------------- /ext/eigen/doc/snippets/Cwise_max.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/snippets/Cwise_max.cpp -------------------------------------------------------------------------------- /ext/eigen/doc/snippets/Cwise_min.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/snippets/Cwise_min.cpp -------------------------------------------------------------------------------- /ext/eigen/doc/snippets/Cwise_minus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/snippets/Cwise_minus.cpp -------------------------------------------------------------------------------- /ext/eigen/doc/snippets/Cwise_plus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/snippets/Cwise_plus.cpp -------------------------------------------------------------------------------- /ext/eigen/doc/snippets/Cwise_pow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/snippets/Cwise_pow.cpp -------------------------------------------------------------------------------- /ext/eigen/doc/snippets/Cwise_round.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/snippets/Cwise_round.cpp -------------------------------------------------------------------------------- /ext/eigen/doc/snippets/Cwise_sign.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/snippets/Cwise_sign.cpp -------------------------------------------------------------------------------- /ext/eigen/doc/snippets/Cwise_sin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/snippets/Cwise_sin.cpp -------------------------------------------------------------------------------- /ext/eigen/doc/snippets/Cwise_sinh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/snippets/Cwise_sinh.cpp -------------------------------------------------------------------------------- /ext/eigen/doc/snippets/Cwise_sqrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/snippets/Cwise_sqrt.cpp -------------------------------------------------------------------------------- /ext/eigen/doc/snippets/Cwise_square.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/snippets/Cwise_square.cpp -------------------------------------------------------------------------------- /ext/eigen/doc/snippets/Cwise_tan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/snippets/Cwise_tan.cpp -------------------------------------------------------------------------------- /ext/eigen/doc/snippets/Cwise_tanh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/snippets/Cwise_tanh.cpp -------------------------------------------------------------------------------- /ext/eigen/doc/snippets/IOFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/snippets/IOFormat.cpp -------------------------------------------------------------------------------- /ext/eigen/doc/snippets/LLT_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/snippets/LLT_example.cpp -------------------------------------------------------------------------------- /ext/eigen/doc/snippets/LLT_solve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/snippets/LLT_solve.cpp -------------------------------------------------------------------------------- /ext/eigen/doc/snippets/Map_simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/snippets/Map_simple.cpp -------------------------------------------------------------------------------- /ext/eigen/doc/snippets/MatrixBase_cwiseSqrt.cpp: -------------------------------------------------------------------------------- 1 | Vector3d v(1,2,4); 2 | cout << v.cwiseSqrt() << endl; 3 | -------------------------------------------------------------------------------- /ext/eigen/doc/snippets/MatrixBase_identity.cpp: -------------------------------------------------------------------------------- 1 | cout << Matrix::Identity() << endl; 2 | -------------------------------------------------------------------------------- /ext/eigen/doc/snippets/MatrixBase_identity_int_int.cpp: -------------------------------------------------------------------------------- 1 | cout << MatrixXd::Identity(4, 3) << endl; 2 | -------------------------------------------------------------------------------- /ext/eigen/doc/snippets/MatrixBase_ones_int_int.cpp: -------------------------------------------------------------------------------- 1 | cout << MatrixXi::Ones(2,3) << endl; 2 | -------------------------------------------------------------------------------- /ext/eigen/doc/snippets/MatrixBase_random.cpp: -------------------------------------------------------------------------------- 1 | cout << 100 * Matrix2i::Random() << endl; 2 | -------------------------------------------------------------------------------- /ext/eigen/doc/snippets/MatrixBase_random_int.cpp: -------------------------------------------------------------------------------- 1 | cout << VectorXi::Random(2) << endl; 2 | -------------------------------------------------------------------------------- /ext/eigen/doc/snippets/MatrixBase_random_int_int.cpp: -------------------------------------------------------------------------------- 1 | cout << MatrixXi::Random(2,3) << endl; 2 | -------------------------------------------------------------------------------- /ext/eigen/doc/snippets/MatrixBase_zero_int_int.cpp: -------------------------------------------------------------------------------- 1 | cout << MatrixXi::Zero(2,3) << endl; 2 | -------------------------------------------------------------------------------- /ext/eigen/doc/tutorial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/doc/tutorial.cpp -------------------------------------------------------------------------------- /ext/eigen/eigen3.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/eigen3.pc.in -------------------------------------------------------------------------------- /ext/eigen/failtest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/failtest/CMakeLists.txt -------------------------------------------------------------------------------- /ext/eigen/failtest/bdcsvd_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/failtest/bdcsvd_int.cpp -------------------------------------------------------------------------------- /ext/eigen/failtest/colpivqr_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/failtest/colpivqr_int.cpp -------------------------------------------------------------------------------- /ext/eigen/failtest/eigensolver_cplx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/failtest/eigensolver_cplx.cpp -------------------------------------------------------------------------------- /ext/eigen/failtest/eigensolver_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/failtest/eigensolver_int.cpp -------------------------------------------------------------------------------- /ext/eigen/failtest/fullpivlu_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/failtest/fullpivlu_int.cpp -------------------------------------------------------------------------------- /ext/eigen/failtest/fullpivqr_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/failtest/fullpivqr_int.cpp -------------------------------------------------------------------------------- /ext/eigen/failtest/jacobisvd_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/failtest/jacobisvd_int.cpp -------------------------------------------------------------------------------- /ext/eigen/failtest/ldlt_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/failtest/ldlt_int.cpp -------------------------------------------------------------------------------- /ext/eigen/failtest/llt_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/failtest/llt_int.cpp -------------------------------------------------------------------------------- /ext/eigen/failtest/partialpivlu_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/failtest/partialpivlu_int.cpp -------------------------------------------------------------------------------- /ext/eigen/failtest/qr_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/failtest/qr_int.cpp -------------------------------------------------------------------------------- /ext/eigen/failtest/ref_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/failtest/ref_1.cpp -------------------------------------------------------------------------------- /ext/eigen/failtest/ref_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/failtest/ref_2.cpp -------------------------------------------------------------------------------- /ext/eigen/failtest/ref_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/failtest/ref_3.cpp -------------------------------------------------------------------------------- /ext/eigen/failtest/ref_4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/failtest/ref_4.cpp -------------------------------------------------------------------------------- /ext/eigen/failtest/ref_5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/failtest/ref_5.cpp -------------------------------------------------------------------------------- /ext/eigen/failtest/sparse_ref_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/failtest/sparse_ref_1.cpp -------------------------------------------------------------------------------- /ext/eigen/failtest/sparse_ref_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/failtest/sparse_ref_2.cpp -------------------------------------------------------------------------------- /ext/eigen/failtest/sparse_ref_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/failtest/sparse_ref_3.cpp -------------------------------------------------------------------------------- /ext/eigen/failtest/sparse_ref_4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/failtest/sparse_ref_4.cpp -------------------------------------------------------------------------------- /ext/eigen/failtest/sparse_ref_5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/failtest/sparse_ref_5.cpp -------------------------------------------------------------------------------- /ext/eigen/failtest/swap_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/failtest/swap_1.cpp -------------------------------------------------------------------------------- /ext/eigen/failtest/swap_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/failtest/swap_2.cpp -------------------------------------------------------------------------------- /ext/eigen/failtest/ternary_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/failtest/ternary_1.cpp -------------------------------------------------------------------------------- /ext/eigen/failtest/ternary_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/failtest/ternary_2.cpp -------------------------------------------------------------------------------- /ext/eigen/lapack/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/lapack/CMakeLists.txt -------------------------------------------------------------------------------- /ext/eigen/lapack/cholesky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/lapack/cholesky.cpp -------------------------------------------------------------------------------- /ext/eigen/lapack/clacgv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/lapack/clacgv.f -------------------------------------------------------------------------------- /ext/eigen/lapack/cladiv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/lapack/cladiv.f -------------------------------------------------------------------------------- /ext/eigen/lapack/clarf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/lapack/clarf.f -------------------------------------------------------------------------------- /ext/eigen/lapack/clarfb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/lapack/clarfb.f -------------------------------------------------------------------------------- /ext/eigen/lapack/clarfg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/lapack/clarfg.f -------------------------------------------------------------------------------- /ext/eigen/lapack/clarft.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/lapack/clarft.f -------------------------------------------------------------------------------- /ext/eigen/lapack/complex_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/lapack/complex_double.cpp -------------------------------------------------------------------------------- /ext/eigen/lapack/complex_single.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/lapack/complex_single.cpp -------------------------------------------------------------------------------- /ext/eigen/lapack/dladiv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/lapack/dladiv.f -------------------------------------------------------------------------------- /ext/eigen/lapack/dlamch.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/lapack/dlamch.f -------------------------------------------------------------------------------- /ext/eigen/lapack/dlapy2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/lapack/dlapy2.f -------------------------------------------------------------------------------- /ext/eigen/lapack/dlapy3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/lapack/dlapy3.f -------------------------------------------------------------------------------- /ext/eigen/lapack/dlarf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/lapack/dlarf.f -------------------------------------------------------------------------------- /ext/eigen/lapack/dlarfb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/lapack/dlarfb.f -------------------------------------------------------------------------------- /ext/eigen/lapack/dlarfg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/lapack/dlarfg.f -------------------------------------------------------------------------------- /ext/eigen/lapack/dlarft.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/lapack/dlarft.f -------------------------------------------------------------------------------- /ext/eigen/lapack/double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/lapack/double.cpp -------------------------------------------------------------------------------- /ext/eigen/lapack/dsecnd_NONE.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/lapack/dsecnd_NONE.f -------------------------------------------------------------------------------- /ext/eigen/lapack/eigenvalues.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/lapack/eigenvalues.cpp -------------------------------------------------------------------------------- /ext/eigen/lapack/ilaclc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/lapack/ilaclc.f -------------------------------------------------------------------------------- /ext/eigen/lapack/ilaclr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/lapack/ilaclr.f -------------------------------------------------------------------------------- /ext/eigen/lapack/iladlc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/lapack/iladlc.f -------------------------------------------------------------------------------- /ext/eigen/lapack/iladlr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/lapack/iladlr.f -------------------------------------------------------------------------------- /ext/eigen/lapack/ilaslc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/lapack/ilaslc.f -------------------------------------------------------------------------------- /ext/eigen/lapack/ilaslr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/lapack/ilaslr.f -------------------------------------------------------------------------------- /ext/eigen/lapack/ilazlc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/lapack/ilazlc.f -------------------------------------------------------------------------------- /ext/eigen/lapack/ilazlr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/lapack/ilazlr.f -------------------------------------------------------------------------------- /ext/eigen/lapack/lapack_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/lapack/lapack_common.h -------------------------------------------------------------------------------- /ext/eigen/lapack/lu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/lapack/lu.cpp -------------------------------------------------------------------------------- /ext/eigen/lapack/second_NONE.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/lapack/second_NONE.f -------------------------------------------------------------------------------- /ext/eigen/lapack/single.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/lapack/single.cpp -------------------------------------------------------------------------------- /ext/eigen/lapack/sladiv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/lapack/sladiv.f -------------------------------------------------------------------------------- /ext/eigen/lapack/slamch.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/lapack/slamch.f -------------------------------------------------------------------------------- /ext/eigen/lapack/slapy2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/lapack/slapy2.f -------------------------------------------------------------------------------- /ext/eigen/lapack/slapy3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/lapack/slapy3.f -------------------------------------------------------------------------------- /ext/eigen/lapack/slarf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/lapack/slarf.f -------------------------------------------------------------------------------- /ext/eigen/lapack/slarfb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/lapack/slarfb.f -------------------------------------------------------------------------------- /ext/eigen/lapack/slarfg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/lapack/slarfg.f -------------------------------------------------------------------------------- /ext/eigen/lapack/slarft.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/lapack/slarft.f -------------------------------------------------------------------------------- /ext/eigen/lapack/svd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/lapack/svd.cpp -------------------------------------------------------------------------------- /ext/eigen/lapack/zlacgv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/lapack/zlacgv.f -------------------------------------------------------------------------------- /ext/eigen/lapack/zladiv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/lapack/zladiv.f -------------------------------------------------------------------------------- /ext/eigen/lapack/zlarf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/lapack/zlarf.f -------------------------------------------------------------------------------- /ext/eigen/lapack/zlarfb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/lapack/zlarfb.f -------------------------------------------------------------------------------- /ext/eigen/lapack/zlarfg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/lapack/zlarfg.f -------------------------------------------------------------------------------- /ext/eigen/lapack/zlarft.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/lapack/zlarft.f -------------------------------------------------------------------------------- /ext/eigen/scripts/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/scripts/CMakeLists.txt -------------------------------------------------------------------------------- /ext/eigen/scripts/buildtests.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/scripts/buildtests.in -------------------------------------------------------------------------------- /ext/eigen/scripts/cdashtesting.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/scripts/cdashtesting.cmake.in -------------------------------------------------------------------------------- /ext/eigen/scripts/check.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/scripts/check.in -------------------------------------------------------------------------------- /ext/eigen/scripts/debug.in: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cmake -DCMAKE_BUILD_TYPE=Debug . 4 | -------------------------------------------------------------------------------- /ext/eigen/scripts/eigen_gen_credits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/scripts/eigen_gen_credits.cpp -------------------------------------------------------------------------------- /ext/eigen/scripts/eigen_gen_docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/scripts/eigen_gen_docs -------------------------------------------------------------------------------- /ext/eigen/scripts/eigen_monitor_perf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/scripts/eigen_monitor_perf.sh -------------------------------------------------------------------------------- /ext/eigen/scripts/release.in: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cmake -DCMAKE_BUILD_TYPE=Release . 4 | -------------------------------------------------------------------------------- /ext/eigen/scripts/relicense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/scripts/relicense.py -------------------------------------------------------------------------------- /ext/eigen/test/AnnoyingScalar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/AnnoyingScalar.h -------------------------------------------------------------------------------- /ext/eigen/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/CMakeLists.txt -------------------------------------------------------------------------------- /ext/eigen/test/adjoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/adjoint.cpp -------------------------------------------------------------------------------- /ext/eigen/test/array_cwise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/array_cwise.cpp -------------------------------------------------------------------------------- /ext/eigen/test/array_for_matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/array_for_matrix.cpp -------------------------------------------------------------------------------- /ext/eigen/test/array_of_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/array_of_string.cpp -------------------------------------------------------------------------------- /ext/eigen/test/array_replicate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/array_replicate.cpp -------------------------------------------------------------------------------- /ext/eigen/test/array_reverse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/array_reverse.cpp -------------------------------------------------------------------------------- /ext/eigen/test/bandmatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/bandmatrix.cpp -------------------------------------------------------------------------------- /ext/eigen/test/basicstuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/basicstuff.cpp -------------------------------------------------------------------------------- /ext/eigen/test/bdcsvd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/bdcsvd.cpp -------------------------------------------------------------------------------- /ext/eigen/test/bicgstab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/bicgstab.cpp -------------------------------------------------------------------------------- /ext/eigen/test/block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/block.cpp -------------------------------------------------------------------------------- /ext/eigen/test/boostmultiprec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/boostmultiprec.cpp -------------------------------------------------------------------------------- /ext/eigen/test/bug1213.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/bug1213.cpp -------------------------------------------------------------------------------- /ext/eigen/test/bug1213.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/bug1213.h -------------------------------------------------------------------------------- /ext/eigen/test/bug1213_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/bug1213_main.cpp -------------------------------------------------------------------------------- /ext/eigen/test/cholesky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/cholesky.cpp -------------------------------------------------------------------------------- /ext/eigen/test/cholmod_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/cholmod_support.cpp -------------------------------------------------------------------------------- /ext/eigen/test/commainitializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/commainitializer.cpp -------------------------------------------------------------------------------- /ext/eigen/test/conjugate_gradient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/conjugate_gradient.cpp -------------------------------------------------------------------------------- /ext/eigen/test/conservative_resize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/conservative_resize.cpp -------------------------------------------------------------------------------- /ext/eigen/test/constructor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/constructor.cpp -------------------------------------------------------------------------------- /ext/eigen/test/corners.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/corners.cpp -------------------------------------------------------------------------------- /ext/eigen/test/ctorleak.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/ctorleak.cpp -------------------------------------------------------------------------------- /ext/eigen/test/denseLM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/denseLM.cpp -------------------------------------------------------------------------------- /ext/eigen/test/dense_storage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/dense_storage.cpp -------------------------------------------------------------------------------- /ext/eigen/test/determinant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/determinant.cpp -------------------------------------------------------------------------------- /ext/eigen/test/diagonal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/diagonal.cpp -------------------------------------------------------------------------------- /ext/eigen/test/diagonalmatrices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/diagonalmatrices.cpp -------------------------------------------------------------------------------- /ext/eigen/test/dontalign.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/dontalign.cpp -------------------------------------------------------------------------------- /ext/eigen/test/dynalloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/dynalloc.cpp -------------------------------------------------------------------------------- /ext/eigen/test/eigen2support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/eigen2support.cpp -------------------------------------------------------------------------------- /ext/eigen/test/eigensolver_complex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/eigensolver_complex.cpp -------------------------------------------------------------------------------- /ext/eigen/test/eigensolver_generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/eigensolver_generic.cpp -------------------------------------------------------------------------------- /ext/eigen/test/evaluator_common.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/eigen/test/evaluators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/evaluators.cpp -------------------------------------------------------------------------------- /ext/eigen/test/exceptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/exceptions.cpp -------------------------------------------------------------------------------- /ext/eigen/test/fastmath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/fastmath.cpp -------------------------------------------------------------------------------- /ext/eigen/test/first_aligned.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/first_aligned.cpp -------------------------------------------------------------------------------- /ext/eigen/test/geo_alignedbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/geo_alignedbox.cpp -------------------------------------------------------------------------------- /ext/eigen/test/geo_eulerangles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/geo_eulerangles.cpp -------------------------------------------------------------------------------- /ext/eigen/test/geo_homogeneous.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/geo_homogeneous.cpp -------------------------------------------------------------------------------- /ext/eigen/test/geo_hyperplane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/geo_hyperplane.cpp -------------------------------------------------------------------------------- /ext/eigen/test/geo_orthomethods.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/geo_orthomethods.cpp -------------------------------------------------------------------------------- /ext/eigen/test/geo_parametrizedline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/geo_parametrizedline.cpp -------------------------------------------------------------------------------- /ext/eigen/test/geo_quaternion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/geo_quaternion.cpp -------------------------------------------------------------------------------- /ext/eigen/test/geo_transformations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/geo_transformations.cpp -------------------------------------------------------------------------------- /ext/eigen/test/gpu_basic.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/gpu_basic.cu -------------------------------------------------------------------------------- /ext/eigen/test/gpu_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/gpu_common.h -------------------------------------------------------------------------------- /ext/eigen/test/half_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/half_float.cpp -------------------------------------------------------------------------------- /ext/eigen/test/hessenberg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/hessenberg.cpp -------------------------------------------------------------------------------- /ext/eigen/test/householder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/householder.cpp -------------------------------------------------------------------------------- /ext/eigen/test/incomplete_cholesky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/incomplete_cholesky.cpp -------------------------------------------------------------------------------- /ext/eigen/test/indexed_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/indexed_view.cpp -------------------------------------------------------------------------------- /ext/eigen/test/integer_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/integer_types.cpp -------------------------------------------------------------------------------- /ext/eigen/test/inverse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/inverse.cpp -------------------------------------------------------------------------------- /ext/eigen/test/is_same_dense.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/is_same_dense.cpp -------------------------------------------------------------------------------- /ext/eigen/test/jacobi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/jacobi.cpp -------------------------------------------------------------------------------- /ext/eigen/test/jacobisvd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/jacobisvd.cpp -------------------------------------------------------------------------------- /ext/eigen/test/klu_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/klu_support.cpp -------------------------------------------------------------------------------- /ext/eigen/test/linearstructure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/linearstructure.cpp -------------------------------------------------------------------------------- /ext/eigen/test/lscg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/lscg.cpp -------------------------------------------------------------------------------- /ext/eigen/test/lu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/lu.cpp -------------------------------------------------------------------------------- /ext/eigen/test/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/main.h -------------------------------------------------------------------------------- /ext/eigen/test/mapped_matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/mapped_matrix.cpp -------------------------------------------------------------------------------- /ext/eigen/test/mapstaticmethods.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/mapstaticmethods.cpp -------------------------------------------------------------------------------- /ext/eigen/test/mapstride.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/mapstride.cpp -------------------------------------------------------------------------------- /ext/eigen/test/meta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/meta.cpp -------------------------------------------------------------------------------- /ext/eigen/test/metis_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/metis_support.cpp -------------------------------------------------------------------------------- /ext/eigen/test/miscmatrices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/miscmatrices.cpp -------------------------------------------------------------------------------- /ext/eigen/test/mixingtypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/mixingtypes.cpp -------------------------------------------------------------------------------- /ext/eigen/test/mpl2only.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/mpl2only.cpp -------------------------------------------------------------------------------- /ext/eigen/test/nestbyvalue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/nestbyvalue.cpp -------------------------------------------------------------------------------- /ext/eigen/test/nesting_ops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/nesting_ops.cpp -------------------------------------------------------------------------------- /ext/eigen/test/nomalloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/nomalloc.cpp -------------------------------------------------------------------------------- /ext/eigen/test/nullary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/nullary.cpp -------------------------------------------------------------------------------- /ext/eigen/test/num_dimensions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/num_dimensions.cpp -------------------------------------------------------------------------------- /ext/eigen/test/numext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/numext.cpp -------------------------------------------------------------------------------- /ext/eigen/test/packetmath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/packetmath.cpp -------------------------------------------------------------------------------- /ext/eigen/test/pardiso_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/pardiso_support.cpp -------------------------------------------------------------------------------- /ext/eigen/test/pastix_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/pastix_support.cpp -------------------------------------------------------------------------------- /ext/eigen/test/permutationmatrices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/permutationmatrices.cpp -------------------------------------------------------------------------------- /ext/eigen/test/prec_inverse_4x4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/prec_inverse_4x4.cpp -------------------------------------------------------------------------------- /ext/eigen/test/product.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/product.h -------------------------------------------------------------------------------- /ext/eigen/test/product_extra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/product_extra.cpp -------------------------------------------------------------------------------- /ext/eigen/test/product_large.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/product_large.cpp -------------------------------------------------------------------------------- /ext/eigen/test/product_mmtr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/product_mmtr.cpp -------------------------------------------------------------------------------- /ext/eigen/test/product_notemporary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/product_notemporary.cpp -------------------------------------------------------------------------------- /ext/eigen/test/product_selfadjoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/product_selfadjoint.cpp -------------------------------------------------------------------------------- /ext/eigen/test/product_small.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/product_small.cpp -------------------------------------------------------------------------------- /ext/eigen/test/product_symm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/product_symm.cpp -------------------------------------------------------------------------------- /ext/eigen/test/product_syrk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/product_syrk.cpp -------------------------------------------------------------------------------- /ext/eigen/test/product_trmm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/product_trmm.cpp -------------------------------------------------------------------------------- /ext/eigen/test/product_trmv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/product_trmv.cpp -------------------------------------------------------------------------------- /ext/eigen/test/product_trsolve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/product_trsolve.cpp -------------------------------------------------------------------------------- /ext/eigen/test/qr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/qr.cpp -------------------------------------------------------------------------------- /ext/eigen/test/qr_colpivoting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/qr_colpivoting.cpp -------------------------------------------------------------------------------- /ext/eigen/test/qr_fullpivoting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/qr_fullpivoting.cpp -------------------------------------------------------------------------------- /ext/eigen/test/qtvector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/qtvector.cpp -------------------------------------------------------------------------------- /ext/eigen/test/rand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/rand.cpp -------------------------------------------------------------------------------- /ext/eigen/test/real_qz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/real_qz.cpp -------------------------------------------------------------------------------- /ext/eigen/test/redux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/redux.cpp -------------------------------------------------------------------------------- /ext/eigen/test/ref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/ref.cpp -------------------------------------------------------------------------------- /ext/eigen/test/reshape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/reshape.cpp -------------------------------------------------------------------------------- /ext/eigen/test/resize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/resize.cpp -------------------------------------------------------------------------------- /ext/eigen/test/rvalue_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/rvalue_types.cpp -------------------------------------------------------------------------------- /ext/eigen/test/schur_complex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/schur_complex.cpp -------------------------------------------------------------------------------- /ext/eigen/test/schur_real.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/schur_real.cpp -------------------------------------------------------------------------------- /ext/eigen/test/selfadjoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/selfadjoint.cpp -------------------------------------------------------------------------------- /ext/eigen/test/simplicial_cholesky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/simplicial_cholesky.cpp -------------------------------------------------------------------------------- /ext/eigen/test/sizeof.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/sizeof.cpp -------------------------------------------------------------------------------- /ext/eigen/test/sizeoverflow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/sizeoverflow.cpp -------------------------------------------------------------------------------- /ext/eigen/test/smallvectors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/smallvectors.cpp -------------------------------------------------------------------------------- /ext/eigen/test/solverbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/solverbase.h -------------------------------------------------------------------------------- /ext/eigen/test/sparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/sparse.h -------------------------------------------------------------------------------- /ext/eigen/test/sparseLM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/sparseLM.cpp -------------------------------------------------------------------------------- /ext/eigen/test/sparse_basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/sparse_basic.cpp -------------------------------------------------------------------------------- /ext/eigen/test/sparse_block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/sparse_block.cpp -------------------------------------------------------------------------------- /ext/eigen/test/sparse_permutations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/sparse_permutations.cpp -------------------------------------------------------------------------------- /ext/eigen/test/sparse_product.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/sparse_product.cpp -------------------------------------------------------------------------------- /ext/eigen/test/sparse_ref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/sparse_ref.cpp -------------------------------------------------------------------------------- /ext/eigen/test/sparse_solver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/sparse_solver.h -------------------------------------------------------------------------------- /ext/eigen/test/sparse_solvers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/sparse_solvers.cpp -------------------------------------------------------------------------------- /ext/eigen/test/sparse_vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/sparse_vector.cpp -------------------------------------------------------------------------------- /ext/eigen/test/sparselu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/sparselu.cpp -------------------------------------------------------------------------------- /ext/eigen/test/sparseqr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/sparseqr.cpp -------------------------------------------------------------------------------- /ext/eigen/test/special_numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/special_numbers.cpp -------------------------------------------------------------------------------- /ext/eigen/test/split_test_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/split_test_helper.h -------------------------------------------------------------------------------- /ext/eigen/test/spqr_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/spqr_support.cpp -------------------------------------------------------------------------------- /ext/eigen/test/stable_norm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/stable_norm.cpp -------------------------------------------------------------------------------- /ext/eigen/test/stddeque.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/stddeque.cpp -------------------------------------------------------------------------------- /ext/eigen/test/stddeque_overload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/stddeque_overload.cpp -------------------------------------------------------------------------------- /ext/eigen/test/stdlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/stdlist.cpp -------------------------------------------------------------------------------- /ext/eigen/test/stdlist_overload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/stdlist_overload.cpp -------------------------------------------------------------------------------- /ext/eigen/test/stdvector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/stdvector.cpp -------------------------------------------------------------------------------- /ext/eigen/test/stdvector_overload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/stdvector_overload.cpp -------------------------------------------------------------------------------- /ext/eigen/test/stl_iterators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/stl_iterators.cpp -------------------------------------------------------------------------------- /ext/eigen/test/superlu_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/superlu_support.cpp -------------------------------------------------------------------------------- /ext/eigen/test/svd_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/svd_common.h -------------------------------------------------------------------------------- /ext/eigen/test/svd_fill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/svd_fill.h -------------------------------------------------------------------------------- /ext/eigen/test/swap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/swap.cpp -------------------------------------------------------------------------------- /ext/eigen/test/symbolic_index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/symbolic_index.cpp -------------------------------------------------------------------------------- /ext/eigen/test/triangular.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/triangular.cpp -------------------------------------------------------------------------------- /ext/eigen/test/type_alias.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/type_alias.cpp -------------------------------------------------------------------------------- /ext/eigen/test/umeyama.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/umeyama.cpp -------------------------------------------------------------------------------- /ext/eigen/test/umfpack_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/umfpack_support.cpp -------------------------------------------------------------------------------- /ext/eigen/test/unalignedassert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/unalignedassert.cpp -------------------------------------------------------------------------------- /ext/eigen/test/unalignedcount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/unalignedcount.cpp -------------------------------------------------------------------------------- /ext/eigen/test/vectorization_logic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/vectorization_logic.cpp -------------------------------------------------------------------------------- /ext/eigen/test/vectorwiseop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/vectorwiseop.cpp -------------------------------------------------------------------------------- /ext/eigen/test/visitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/visitor.cpp -------------------------------------------------------------------------------- /ext/eigen/test/zerosized.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/test/zerosized.cpp -------------------------------------------------------------------------------- /ext/eigen/unsupported/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/unsupported/CMakeLists.txt -------------------------------------------------------------------------------- /ext/eigen/unsupported/Eigen/AutoDiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/unsupported/Eigen/AutoDiff -------------------------------------------------------------------------------- /ext/eigen/unsupported/Eigen/BVH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/unsupported/Eigen/BVH -------------------------------------------------------------------------------- /ext/eigen/unsupported/Eigen/EulerAngles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/unsupported/Eigen/EulerAngles -------------------------------------------------------------------------------- /ext/eigen/unsupported/Eigen/FFT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/unsupported/Eigen/FFT -------------------------------------------------------------------------------- /ext/eigen/unsupported/Eigen/Polynomials: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/unsupported/Eigen/Polynomials -------------------------------------------------------------------------------- /ext/eigen/unsupported/Eigen/Skyline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/unsupported/Eigen/Skyline -------------------------------------------------------------------------------- /ext/eigen/unsupported/Eigen/SparseExtra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/unsupported/Eigen/SparseExtra -------------------------------------------------------------------------------- /ext/eigen/unsupported/Eigen/Splines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/unsupported/Eigen/Splines -------------------------------------------------------------------------------- /ext/eigen/unsupported/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/unsupported/README.txt -------------------------------------------------------------------------------- /ext/eigen/unsupported/doc/Overview.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/unsupported/doc/Overview.dox -------------------------------------------------------------------------------- /ext/eigen/unsupported/test/BVH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/unsupported/test/BVH.cpp -------------------------------------------------------------------------------- /ext/eigen/unsupported/test/FFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/unsupported/test/FFT.cpp -------------------------------------------------------------------------------- /ext/eigen/unsupported/test/FFTW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/unsupported/test/FFTW.cpp -------------------------------------------------------------------------------- /ext/eigen/unsupported/test/autodiff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/unsupported/test/autodiff.cpp -------------------------------------------------------------------------------- /ext/eigen/unsupported/test/dgmres.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/unsupported/test/dgmres.cpp -------------------------------------------------------------------------------- /ext/eigen/unsupported/test/gmres.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/unsupported/test/gmres.cpp -------------------------------------------------------------------------------- /ext/eigen/unsupported/test/minres.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/unsupported/test/minres.cpp -------------------------------------------------------------------------------- /ext/eigen/unsupported/test/splines.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/eigen/unsupported/test/splines.cpp -------------------------------------------------------------------------------- /ext/glew/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glew/CMakeLists.txt -------------------------------------------------------------------------------- /ext/glew/include/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glew/include/GL/glew.h -------------------------------------------------------------------------------- /ext/glew/include/GL/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glew/include/GL/glxew.h -------------------------------------------------------------------------------- /ext/glew/include/GL/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glew/include/GL/wglew.h -------------------------------------------------------------------------------- /ext/glew/src/glew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glew/src/glew.c -------------------------------------------------------------------------------- /ext/glfw/.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/.appveyor.yml -------------------------------------------------------------------------------- /ext/glfw/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/.travis.yml -------------------------------------------------------------------------------- /ext/glfw/CMake/GenerateMappings.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/CMake/GenerateMappings.cmake -------------------------------------------------------------------------------- /ext/glfw/CMake/i686-w64-mingw32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/CMake/i686-w64-mingw32.cmake -------------------------------------------------------------------------------- /ext/glfw/CMake/modules/FindOSMesa.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/CMake/modules/FindOSMesa.cmake -------------------------------------------------------------------------------- /ext/glfw/CMake/x86_64-w64-mingw32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/CMake/x86_64-w64-mingw32.cmake -------------------------------------------------------------------------------- /ext/glfw/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/CMakeLists.txt -------------------------------------------------------------------------------- /ext/glfw/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/LICENSE.md -------------------------------------------------------------------------------- /ext/glfw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/README.md -------------------------------------------------------------------------------- /ext/glfw/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /ext/glfw/deps/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/deps/getopt.c -------------------------------------------------------------------------------- /ext/glfw/deps/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/deps/getopt.h -------------------------------------------------------------------------------- /ext/glfw/deps/glad/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/deps/glad/gl.h -------------------------------------------------------------------------------- /ext/glfw/deps/glad/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/deps/glad/khrplatform.h -------------------------------------------------------------------------------- /ext/glfw/deps/glad/vk_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/deps/glad/vk_platform.h -------------------------------------------------------------------------------- /ext/glfw/deps/glad/vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/deps/glad/vulkan.h -------------------------------------------------------------------------------- /ext/glfw/deps/glad_gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/deps/glad_gl.c -------------------------------------------------------------------------------- /ext/glfw/deps/glad_vulkan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/deps/glad_vulkan.c -------------------------------------------------------------------------------- /ext/glfw/deps/linmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/deps/linmath.h -------------------------------------------------------------------------------- /ext/glfw/deps/mingw/_mingw_dxhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/deps/mingw/_mingw_dxhelper.h -------------------------------------------------------------------------------- /ext/glfw/deps/mingw/dinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/deps/mingw/dinput.h -------------------------------------------------------------------------------- /ext/glfw/deps/mingw/xinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/deps/mingw/xinput.h -------------------------------------------------------------------------------- /ext/glfw/deps/nuklear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/deps/nuklear.h -------------------------------------------------------------------------------- /ext/glfw/deps/nuklear_glfw_gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/deps/nuklear_glfw_gl2.h -------------------------------------------------------------------------------- /ext/glfw/deps/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/deps/stb_image_write.h -------------------------------------------------------------------------------- /ext/glfw/deps/tinycthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/deps/tinycthread.c -------------------------------------------------------------------------------- /ext/glfw/deps/tinycthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/deps/tinycthread.h -------------------------------------------------------------------------------- /ext/glfw/deps/vs2008/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/deps/vs2008/stdint.h -------------------------------------------------------------------------------- /ext/glfw/docs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/docs/CMakeLists.txt -------------------------------------------------------------------------------- /ext/glfw/docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /ext/glfw/docs/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/docs/Doxyfile.in -------------------------------------------------------------------------------- /ext/glfw/docs/DoxygenLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/docs/DoxygenLayout.xml -------------------------------------------------------------------------------- /ext/glfw/docs/build.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/docs/build.dox -------------------------------------------------------------------------------- /ext/glfw/docs/compat.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/docs/compat.dox -------------------------------------------------------------------------------- /ext/glfw/docs/compile.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/docs/compile.dox -------------------------------------------------------------------------------- /ext/glfw/docs/context.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/docs/context.dox -------------------------------------------------------------------------------- /ext/glfw/docs/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/docs/extra.css -------------------------------------------------------------------------------- /ext/glfw/docs/extra.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/docs/extra.less -------------------------------------------------------------------------------- /ext/glfw/docs/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/docs/footer.html -------------------------------------------------------------------------------- /ext/glfw/docs/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/docs/header.html -------------------------------------------------------------------------------- /ext/glfw/docs/input.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/docs/input.dox -------------------------------------------------------------------------------- /ext/glfw/docs/internal.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/docs/internal.dox -------------------------------------------------------------------------------- /ext/glfw/docs/intro.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/docs/intro.dox -------------------------------------------------------------------------------- /ext/glfw/docs/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/docs/main.dox -------------------------------------------------------------------------------- /ext/glfw/docs/monitor.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/docs/monitor.dox -------------------------------------------------------------------------------- /ext/glfw/docs/moving.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/docs/moving.dox -------------------------------------------------------------------------------- /ext/glfw/docs/news.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/docs/news.dox -------------------------------------------------------------------------------- /ext/glfw/docs/quick.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/docs/quick.dox -------------------------------------------------------------------------------- /ext/glfw/docs/spaces.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/docs/spaces.svg -------------------------------------------------------------------------------- /ext/glfw/docs/vulkan.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/docs/vulkan.dox -------------------------------------------------------------------------------- /ext/glfw/docs/window.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/docs/window.dox -------------------------------------------------------------------------------- /ext/glfw/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/examples/CMakeLists.txt -------------------------------------------------------------------------------- /ext/glfw/examples/boing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/examples/boing.c -------------------------------------------------------------------------------- /ext/glfw/examples/gears.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/examples/gears.c -------------------------------------------------------------------------------- /ext/glfw/examples/glfw.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/examples/glfw.icns -------------------------------------------------------------------------------- /ext/glfw/examples/glfw.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/examples/glfw.ico -------------------------------------------------------------------------------- /ext/glfw/examples/glfw.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/examples/glfw.rc -------------------------------------------------------------------------------- /ext/glfw/examples/heightmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/examples/heightmap.c -------------------------------------------------------------------------------- /ext/glfw/examples/offscreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/examples/offscreen.c -------------------------------------------------------------------------------- /ext/glfw/examples/particles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/examples/particles.c -------------------------------------------------------------------------------- /ext/glfw/examples/sharing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/examples/sharing.c -------------------------------------------------------------------------------- /ext/glfw/examples/splitview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/examples/splitview.c -------------------------------------------------------------------------------- /ext/glfw/examples/triangle-opengl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/examples/triangle-opengl.c -------------------------------------------------------------------------------- /ext/glfw/examples/wave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/examples/wave.c -------------------------------------------------------------------------------- /ext/glfw/include/GLFW/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/include/GLFW/glfw3.h -------------------------------------------------------------------------------- /ext/glfw/include/GLFW/glfw3native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/include/GLFW/glfw3native.h -------------------------------------------------------------------------------- /ext/glfw/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/CMakeLists.txt -------------------------------------------------------------------------------- /ext/glfw/src/cocoa_init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/cocoa_init.m -------------------------------------------------------------------------------- /ext/glfw/src/cocoa_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/cocoa_joystick.h -------------------------------------------------------------------------------- /ext/glfw/src/cocoa_joystick.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/cocoa_joystick.m -------------------------------------------------------------------------------- /ext/glfw/src/cocoa_monitor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/cocoa_monitor.m -------------------------------------------------------------------------------- /ext/glfw/src/cocoa_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/cocoa_platform.h -------------------------------------------------------------------------------- /ext/glfw/src/cocoa_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/cocoa_time.c -------------------------------------------------------------------------------- /ext/glfw/src/cocoa_window.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/cocoa_window.m -------------------------------------------------------------------------------- /ext/glfw/src/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/context.c -------------------------------------------------------------------------------- /ext/glfw/src/egl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/egl_context.c -------------------------------------------------------------------------------- /ext/glfw/src/egl_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/egl_context.h -------------------------------------------------------------------------------- /ext/glfw/src/glfw3.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/glfw3.pc.in -------------------------------------------------------------------------------- /ext/glfw/src/glfw3Config.cmake.in: -------------------------------------------------------------------------------- 1 | include("${CMAKE_CURRENT_LIST_DIR}/glfw3Targets.cmake") 2 | -------------------------------------------------------------------------------- /ext/glfw/src/glfw_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/glfw_config.h.in -------------------------------------------------------------------------------- /ext/glfw/src/glx_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/glx_context.c -------------------------------------------------------------------------------- /ext/glfw/src/glx_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/glx_context.h -------------------------------------------------------------------------------- /ext/glfw/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/init.c -------------------------------------------------------------------------------- /ext/glfw/src/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/input.c -------------------------------------------------------------------------------- /ext/glfw/src/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/internal.h -------------------------------------------------------------------------------- /ext/glfw/src/linux_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/linux_joystick.c -------------------------------------------------------------------------------- /ext/glfw/src/linux_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/linux_joystick.h -------------------------------------------------------------------------------- /ext/glfw/src/mappings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/mappings.h -------------------------------------------------------------------------------- /ext/glfw/src/mappings.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/mappings.h.in -------------------------------------------------------------------------------- /ext/glfw/src/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/monitor.c -------------------------------------------------------------------------------- /ext/glfw/src/nsgl_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/nsgl_context.h -------------------------------------------------------------------------------- /ext/glfw/src/nsgl_context.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/nsgl_context.m -------------------------------------------------------------------------------- /ext/glfw/src/null_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/null_init.c -------------------------------------------------------------------------------- /ext/glfw/src/null_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/null_joystick.c -------------------------------------------------------------------------------- /ext/glfw/src/null_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/null_joystick.h -------------------------------------------------------------------------------- /ext/glfw/src/null_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/null_monitor.c -------------------------------------------------------------------------------- /ext/glfw/src/null_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/null_platform.h -------------------------------------------------------------------------------- /ext/glfw/src/null_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/null_window.c -------------------------------------------------------------------------------- /ext/glfw/src/osmesa_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/osmesa_context.c -------------------------------------------------------------------------------- /ext/glfw/src/osmesa_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/osmesa_context.h -------------------------------------------------------------------------------- /ext/glfw/src/posix_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/posix_thread.c -------------------------------------------------------------------------------- /ext/glfw/src/posix_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/posix_thread.h -------------------------------------------------------------------------------- /ext/glfw/src/posix_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/posix_time.c -------------------------------------------------------------------------------- /ext/glfw/src/posix_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/posix_time.h -------------------------------------------------------------------------------- /ext/glfw/src/vulkan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/vulkan.c -------------------------------------------------------------------------------- /ext/glfw/src/wgl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/wgl_context.c -------------------------------------------------------------------------------- /ext/glfw/src/wgl_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/wgl_context.h -------------------------------------------------------------------------------- /ext/glfw/src/win32_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/win32_init.c -------------------------------------------------------------------------------- /ext/glfw/src/win32_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/win32_joystick.c -------------------------------------------------------------------------------- /ext/glfw/src/win32_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/win32_joystick.h -------------------------------------------------------------------------------- /ext/glfw/src/win32_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/win32_monitor.c -------------------------------------------------------------------------------- /ext/glfw/src/win32_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/win32_platform.h -------------------------------------------------------------------------------- /ext/glfw/src/win32_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/win32_thread.c -------------------------------------------------------------------------------- /ext/glfw/src/win32_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/win32_time.c -------------------------------------------------------------------------------- /ext/glfw/src/win32_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/win32_window.c -------------------------------------------------------------------------------- /ext/glfw/src/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/window.c -------------------------------------------------------------------------------- /ext/glfw/src/wl_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/wl_init.c -------------------------------------------------------------------------------- /ext/glfw/src/wl_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/wl_monitor.c -------------------------------------------------------------------------------- /ext/glfw/src/wl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/wl_platform.h -------------------------------------------------------------------------------- /ext/glfw/src/wl_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/wl_window.c -------------------------------------------------------------------------------- /ext/glfw/src/x11_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/x11_init.c -------------------------------------------------------------------------------- /ext/glfw/src/x11_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/x11_monitor.c -------------------------------------------------------------------------------- /ext/glfw/src/x11_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/x11_platform.h -------------------------------------------------------------------------------- /ext/glfw/src/x11_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/x11_window.c -------------------------------------------------------------------------------- /ext/glfw/src/xkb_unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/xkb_unicode.c -------------------------------------------------------------------------------- /ext/glfw/src/xkb_unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/src/xkb_unicode.h -------------------------------------------------------------------------------- /ext/glfw/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/tests/CMakeLists.txt -------------------------------------------------------------------------------- /ext/glfw/tests/clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/tests/clipboard.c -------------------------------------------------------------------------------- /ext/glfw/tests/cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/tests/cursor.c -------------------------------------------------------------------------------- /ext/glfw/tests/empty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/tests/empty.c -------------------------------------------------------------------------------- /ext/glfw/tests/events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/tests/events.c -------------------------------------------------------------------------------- /ext/glfw/tests/gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/tests/gamma.c -------------------------------------------------------------------------------- /ext/glfw/tests/glfwinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/tests/glfwinfo.c -------------------------------------------------------------------------------- /ext/glfw/tests/icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/tests/icon.c -------------------------------------------------------------------------------- /ext/glfw/tests/iconify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/tests/iconify.c -------------------------------------------------------------------------------- /ext/glfw/tests/inputlag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/tests/inputlag.c -------------------------------------------------------------------------------- /ext/glfw/tests/joysticks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/tests/joysticks.c -------------------------------------------------------------------------------- /ext/glfw/tests/monitors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/tests/monitors.c -------------------------------------------------------------------------------- /ext/glfw/tests/msaa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/tests/msaa.c -------------------------------------------------------------------------------- /ext/glfw/tests/opacity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/tests/opacity.c -------------------------------------------------------------------------------- /ext/glfw/tests/reopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/tests/reopen.c -------------------------------------------------------------------------------- /ext/glfw/tests/tearing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/tests/tearing.c -------------------------------------------------------------------------------- /ext/glfw/tests/threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/tests/threads.c -------------------------------------------------------------------------------- /ext/glfw/tests/timeout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/tests/timeout.c -------------------------------------------------------------------------------- /ext/glfw/tests/title.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/tests/title.c -------------------------------------------------------------------------------- /ext/glfw/tests/triangle-vulkan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/tests/triangle-vulkan.c -------------------------------------------------------------------------------- /ext/glfw/tests/windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/ext/glfw/tests/windows.c -------------------------------------------------------------------------------- /images/depth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/images/depth.gif -------------------------------------------------------------------------------- /images/normal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/images/normal.gif -------------------------------------------------------------------------------- /images/sketch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/images/sketch.gif -------------------------------------------------------------------------------- /py_src/edge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/py_src/edge.py -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/run.sh -------------------------------------------------------------------------------- /src/Helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/src/Helpers.cpp -------------------------------------------------------------------------------- /src/Helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/src/Helpers.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/src/stb_image_write.h -------------------------------------------------------------------------------- /tools/cpk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/tools/cpk.txt -------------------------------------------------------------------------------- /tools/shapenet.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yi-Shi94/NPR_sketch/HEAD/tools/shapenet.ipynb --------------------------------------------------------------------------------