├── CMakeLists.txt ├── LICENSE ├── README.md ├── _config.yml ├── binaries ├── linux-x86_64 │ └── ReweightedARAP ├── macos-x86_64 │ └── ReweightedARAP └── windows-x86_64 │ └── ReweightedARAP.exe ├── camelhead.obj ├── ext ├── eigen │ ├── CMakeLists.txt │ ├── COPYING.BSD │ ├── COPYING.GPL │ ├── COPYING.LGPL │ ├── COPYING.MINPACK │ ├── COPYING.MPL2 │ ├── COPYING.README │ ├── CTestConfig.cmake │ ├── CTestCustom.cmake.in │ ├── Eigen │ │ ├── Array │ │ ├── CMakeLists.txt │ │ ├── Cholesky │ │ ├── CholmodSupport │ │ ├── Core │ │ ├── Dense │ │ ├── Eigen │ │ ├── Eigen2Support │ │ ├── Eigenvalues │ │ ├── Geometry │ │ ├── Householder │ │ ├── IterativeLinearSolvers │ │ ├── Jacobi │ │ ├── LU │ │ ├── LeastSquares │ │ ├── MetisSupport │ │ ├── OrderingMethods │ │ ├── PaStiXSupport │ │ ├── PardisoSupport │ │ ├── QR │ │ ├── QtAlignedMalloc │ │ ├── SPQRSupport │ │ ├── SVD │ │ ├── Sparse │ │ ├── SparseCholesky │ │ ├── SparseCore │ │ ├── SparseLU │ │ ├── SparseQR │ │ ├── StdDeque │ │ ├── StdList │ │ ├── StdVector │ │ ├── SuperLUSupport │ │ ├── UmfPackSupport │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ ├── Cholesky │ │ │ ├── CMakeLists.txt │ │ │ ├── LDLT.h │ │ │ ├── LLT.h │ │ │ └── LLT_MKL.h │ │ │ ├── CholmodSupport │ │ │ ├── CMakeLists.txt │ │ │ └── CholmodSupport.h │ │ │ ├── Core │ │ │ ├── Array.h │ │ │ ├── ArrayBase.h │ │ │ ├── ArrayWrapper.h │ │ │ ├── Assign.h │ │ │ ├── Assign_MKL.h │ │ │ ├── BandMatrix.h │ │ │ ├── Block.h │ │ │ ├── BooleanRedux.h │ │ │ ├── CMakeLists.txt │ │ │ ├── CommaInitializer.h │ │ │ ├── CoreIterators.h │ │ │ ├── CwiseBinaryOp.h │ │ │ ├── CwiseNullaryOp.h │ │ │ ├── CwiseUnaryOp.h │ │ │ ├── CwiseUnaryView.h │ │ │ ├── DenseBase.h │ │ │ ├── DenseCoeffsBase.h │ │ │ ├── DenseStorage.h │ │ │ ├── Diagonal.h │ │ │ ├── DiagonalMatrix.h │ │ │ ├── DiagonalProduct.h │ │ │ ├── Dot.h │ │ │ ├── EigenBase.h │ │ │ ├── Flagged.h │ │ │ ├── ForceAlignedAccess.h │ │ │ ├── Functors.h │ │ │ ├── Fuzzy.h │ │ │ ├── GeneralProduct.h │ │ │ ├── GenericPacketMath.h │ │ │ ├── GlobalFunctions.h │ │ │ ├── IO.h │ │ │ ├── Map.h │ │ │ ├── MapBase.h │ │ │ ├── MathFunctions.h │ │ │ ├── Matrix.h │ │ │ ├── MatrixBase.h │ │ │ ├── NestByValue.h │ │ │ ├── NoAlias.h │ │ │ ├── NumTraits.h │ │ │ ├── PermutationMatrix.h │ │ │ ├── PlainObjectBase.h │ │ │ ├── ProductBase.h │ │ │ ├── Random.h │ │ │ ├── Redux.h │ │ │ ├── Ref.h │ │ │ ├── Replicate.h │ │ │ ├── ReturnByValue.h │ │ │ ├── Reverse.h │ │ │ ├── Select.h │ │ │ ├── SelfAdjointView.h │ │ │ ├── SelfCwiseBinaryOp.h │ │ │ ├── SolveTriangular.h │ │ │ ├── StableNorm.h │ │ │ ├── Stride.h │ │ │ ├── Swap.h │ │ │ ├── Transpose.h │ │ │ ├── Transpositions.h │ │ │ ├── TriangularMatrix.h │ │ │ ├── VectorBlock.h │ │ │ ├── VectorwiseOp.h │ │ │ ├── Visitor.h │ │ │ ├── arch │ │ │ │ ├── AltiVec │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Complex.h │ │ │ │ │ └── PacketMath.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Default │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── Settings.h │ │ │ │ ├── NEON │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Complex.h │ │ │ │ │ └── PacketMath.h │ │ │ │ └── SSE │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ └── PacketMath.h │ │ │ ├── products │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CoeffBasedProduct.h │ │ │ │ ├── GeneralBlockPanelKernel.h │ │ │ │ ├── GeneralMatrixMatrix.h │ │ │ │ ├── GeneralMatrixMatrixTriangular.h │ │ │ │ ├── GeneralMatrixMatrixTriangular_MKL.h │ │ │ │ ├── GeneralMatrixMatrix_MKL.h │ │ │ │ ├── GeneralMatrixVector.h │ │ │ │ ├── GeneralMatrixVector_MKL.h │ │ │ │ ├── Parallelizer.h │ │ │ │ ├── SelfadjointMatrixMatrix.h │ │ │ │ ├── SelfadjointMatrixMatrix_MKL.h │ │ │ │ ├── SelfadjointMatrixVector.h │ │ │ │ ├── SelfadjointMatrixVector_MKL.h │ │ │ │ ├── SelfadjointProduct.h │ │ │ │ ├── SelfadjointRank2Update.h │ │ │ │ ├── TriangularMatrixMatrix.h │ │ │ │ ├── TriangularMatrixMatrix_MKL.h │ │ │ │ ├── TriangularMatrixVector.h │ │ │ │ ├── TriangularMatrixVector_MKL.h │ │ │ │ ├── TriangularSolverMatrix.h │ │ │ │ ├── TriangularSolverMatrix_MKL.h │ │ │ │ └── TriangularSolverVector.h │ │ │ └── util │ │ │ │ ├── BlasUtil.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Constants.h │ │ │ │ ├── DisableStupidWarnings.h │ │ │ │ ├── ForwardDeclarations.h │ │ │ │ ├── MKL_support.h │ │ │ │ ├── Macros.h │ │ │ │ ├── Memory.h │ │ │ │ ├── Meta.h │ │ │ │ ├── NonMPL2.h │ │ │ │ ├── ReenableStupidWarnings.h │ │ │ │ ├── StaticAssert.h │ │ │ │ └── XprHelper.h │ │ │ ├── Eigen2Support │ │ │ ├── Block.h │ │ │ ├── CMakeLists.txt │ │ │ ├── Cwise.h │ │ │ ├── CwiseOperators.h │ │ │ ├── Geometry │ │ │ │ ├── AlignedBox.h │ │ │ │ ├── All.h │ │ │ │ ├── AngleAxis.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Hyperplane.h │ │ │ │ ├── ParametrizedLine.h │ │ │ │ ├── Quaternion.h │ │ │ │ ├── Rotation2D.h │ │ │ │ ├── RotationBase.h │ │ │ │ ├── Scaling.h │ │ │ │ ├── Transform.h │ │ │ │ └── Translation.h │ │ │ ├── LU.h │ │ │ ├── Lazy.h │ │ │ ├── LeastSquares.h │ │ │ ├── Macros.h │ │ │ ├── MathFunctions.h │ │ │ ├── Memory.h │ │ │ ├── Meta.h │ │ │ ├── Minor.h │ │ │ ├── QR.h │ │ │ ├── SVD.h │ │ │ ├── TriangularSolver.h │ │ │ └── VectorBlock.h │ │ │ ├── Eigenvalues │ │ │ ├── CMakeLists.txt │ │ │ ├── ComplexEigenSolver.h │ │ │ ├── ComplexSchur.h │ │ │ ├── ComplexSchur_MKL.h │ │ │ ├── EigenSolver.h │ │ │ ├── GeneralizedEigenSolver.h │ │ │ ├── GeneralizedSelfAdjointEigenSolver.h │ │ │ ├── HessenbergDecomposition.h │ │ │ ├── MatrixBaseEigenvalues.h │ │ │ ├── RealQZ.h │ │ │ ├── RealSchur.h │ │ │ ├── RealSchur_MKL.h │ │ │ ├── SelfAdjointEigenSolver.h │ │ │ ├── SelfAdjointEigenSolver_MKL.h │ │ │ └── Tridiagonalization.h │ │ │ ├── Geometry │ │ │ ├── AlignedBox.h │ │ │ ├── AngleAxis.h │ │ │ ├── CMakeLists.txt │ │ │ ├── EulerAngles.h │ │ │ ├── Homogeneous.h │ │ │ ├── Hyperplane.h │ │ │ ├── OrthoMethods.h │ │ │ ├── ParametrizedLine.h │ │ │ ├── Quaternion.h │ │ │ ├── Rotation2D.h │ │ │ ├── RotationBase.h │ │ │ ├── Scaling.h │ │ │ ├── Transform.h │ │ │ ├── Translation.h │ │ │ ├── Umeyama.h │ │ │ └── arch │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── Geometry_SSE.h │ │ │ ├── Householder │ │ │ ├── BlockHouseholder.h │ │ │ ├── CMakeLists.txt │ │ │ ├── Householder.h │ │ │ └── HouseholderSequence.h │ │ │ ├── IterativeLinearSolvers │ │ │ ├── BasicPreconditioners.h │ │ │ ├── BiCGSTAB.h │ │ │ ├── CMakeLists.txt │ │ │ ├── ConjugateGradient.h │ │ │ ├── IncompleteLUT.h │ │ │ └── IterativeSolverBase.h │ │ │ ├── Jacobi │ │ │ ├── CMakeLists.txt │ │ │ └── Jacobi.h │ │ │ ├── LU │ │ │ ├── CMakeLists.txt │ │ │ ├── Determinant.h │ │ │ ├── FullPivLU.h │ │ │ ├── Inverse.h │ │ │ ├── PartialPivLU.h │ │ │ ├── PartialPivLU_MKL.h │ │ │ └── arch │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── Inverse_SSE.h │ │ │ ├── MetisSupport │ │ │ ├── CMakeLists.txt │ │ │ └── MetisSupport.h │ │ │ ├── OrderingMethods │ │ │ ├── Amd.h │ │ │ ├── CMakeLists.txt │ │ │ ├── Eigen_Colamd.h │ │ │ └── Ordering.h │ │ │ ├── PaStiXSupport │ │ │ ├── CMakeLists.txt │ │ │ └── PaStiXSupport.h │ │ │ ├── PardisoSupport │ │ │ ├── CMakeLists.txt │ │ │ └── PardisoSupport.h │ │ │ ├── QR │ │ │ ├── CMakeLists.txt │ │ │ ├── ColPivHouseholderQR.h │ │ │ ├── ColPivHouseholderQR_MKL.h │ │ │ ├── FullPivHouseholderQR.h │ │ │ ├── HouseholderQR.h │ │ │ └── HouseholderQR_MKL.h │ │ │ ├── SPQRSupport │ │ │ ├── CMakeLists.txt │ │ │ └── SuiteSparseQRSupport.h │ │ │ ├── SVD │ │ │ ├── CMakeLists.txt │ │ │ ├── JacobiSVD.h │ │ │ ├── JacobiSVD_MKL.h │ │ │ └── UpperBidiagonalization.h │ │ │ ├── SparseCholesky │ │ │ ├── CMakeLists.txt │ │ │ ├── SimplicialCholesky.h │ │ │ └── SimplicialCholesky_impl.h │ │ │ ├── SparseCore │ │ │ ├── AmbiVector.h │ │ │ ├── CMakeLists.txt │ │ │ ├── CompressedStorage.h │ │ │ ├── ConservativeSparseSparseProduct.h │ │ │ ├── MappedSparseMatrix.h │ │ │ ├── SparseBlock.h │ │ │ ├── SparseColEtree.h │ │ │ ├── SparseCwiseBinaryOp.h │ │ │ ├── SparseCwiseUnaryOp.h │ │ │ ├── SparseDenseProduct.h │ │ │ ├── SparseDiagonalProduct.h │ │ │ ├── SparseDot.h │ │ │ ├── SparseFuzzy.h │ │ │ ├── SparseMatrix.h │ │ │ ├── SparseMatrixBase.h │ │ │ ├── SparsePermutation.h │ │ │ ├── SparseProduct.h │ │ │ ├── SparseRedux.h │ │ │ ├── SparseSelfAdjointView.h │ │ │ ├── SparseSparseProductWithPruning.h │ │ │ ├── SparseTranspose.h │ │ │ ├── SparseTriangularView.h │ │ │ ├── SparseUtil.h │ │ │ ├── SparseVector.h │ │ │ ├── SparseView.h │ │ │ └── TriangularSolver.h │ │ │ ├── SparseLU │ │ │ ├── CMakeLists.txt │ │ │ ├── SparseLU.h │ │ │ ├── SparseLUImpl.h │ │ │ ├── SparseLU_Memory.h │ │ │ ├── SparseLU_Structs.h │ │ │ ├── SparseLU_SupernodalMatrix.h │ │ │ ├── SparseLU_Utils.h │ │ │ ├── SparseLU_column_bmod.h │ │ │ ├── SparseLU_column_dfs.h │ │ │ ├── SparseLU_copy_to_ucol.h │ │ │ ├── SparseLU_gemm_kernel.h │ │ │ ├── SparseLU_heap_relax_snode.h │ │ │ ├── SparseLU_kernel_bmod.h │ │ │ ├── SparseLU_panel_bmod.h │ │ │ ├── SparseLU_panel_dfs.h │ │ │ ├── SparseLU_pivotL.h │ │ │ ├── SparseLU_pruneL.h │ │ │ └── SparseLU_relax_snode.h │ │ │ ├── SparseQR │ │ │ ├── CMakeLists.txt │ │ │ └── SparseQR.h │ │ │ ├── StlSupport │ │ │ ├── CMakeLists.txt │ │ │ ├── StdDeque.h │ │ │ ├── StdList.h │ │ │ ├── StdVector.h │ │ │ └── details.h │ │ │ ├── SuperLUSupport │ │ │ ├── CMakeLists.txt │ │ │ └── SuperLUSupport.h │ │ │ ├── UmfPackSupport │ │ │ ├── CMakeLists.txt │ │ │ └── UmfPackSupport.h │ │ │ ├── misc │ │ │ ├── CMakeLists.txt │ │ │ ├── Image.h │ │ │ ├── Kernel.h │ │ │ ├── Solve.h │ │ │ ├── SparseSolve.h │ │ │ └── blas.h │ │ │ └── plugins │ │ │ ├── ArrayCwiseBinaryOps.h │ │ │ ├── ArrayCwiseUnaryOps.h │ │ │ ├── BlockMethods.h │ │ │ ├── CMakeLists.txt │ │ │ ├── CommonCwiseBinaryOps.h │ │ │ ├── CommonCwiseUnaryOps.h │ │ │ ├── MatrixCwiseBinaryOps.h │ │ │ └── MatrixCwiseUnaryOps.h │ ├── INSTALL │ ├── bench │ │ ├── BenchSparseUtil.h │ │ ├── BenchTimer.h │ │ ├── BenchUtil.h │ │ ├── README.txt │ │ ├── basicbench.cxxlist │ │ ├── basicbenchmark.cpp │ │ ├── basicbenchmark.h │ │ ├── benchBlasGemm.cpp │ │ ├── benchCholesky.cpp │ │ ├── benchEigenSolver.cpp │ │ ├── benchFFT.cpp │ │ ├── benchGeometry.cpp │ │ ├── benchVecAdd.cpp │ │ ├── bench_gemm.cpp │ │ ├── bench_multi_compilers.sh │ │ ├── bench_norm.cpp │ │ ├── bench_reverse.cpp │ │ ├── bench_sum.cpp │ │ ├── bench_unrolling │ │ ├── benchmark.cpp │ │ ├── benchmarkSlice.cpp │ │ ├── benchmarkX.cpp │ │ ├── benchmarkXcwise.cpp │ │ ├── benchmark_suite │ │ ├── btl │ │ │ ├── CMakeLists.txt │ │ │ ├── COPYING │ │ │ ├── README │ │ │ ├── actions │ │ │ │ ├── action_aat_product.hh │ │ │ │ ├── action_ata_product.hh │ │ │ │ ├── action_atv_product.hh │ │ │ │ ├── action_axpby.hh │ │ │ │ ├── action_axpy.hh │ │ │ │ ├── action_cholesky.hh │ │ │ │ ├── action_ger.hh │ │ │ │ ├── action_hessenberg.hh │ │ │ │ ├── action_lu_decomp.hh │ │ │ │ ├── action_lu_solve.hh │ │ │ │ ├── action_matrix_matrix_product.hh │ │ │ │ ├── action_matrix_matrix_product_bis.hh │ │ │ │ ├── action_matrix_vector_product.hh │ │ │ │ ├── action_partial_lu.hh │ │ │ │ ├── action_rot.hh │ │ │ │ ├── action_symv.hh │ │ │ │ ├── action_syr2.hh │ │ │ │ ├── action_trisolve.hh │ │ │ │ ├── action_trisolve_matrix.hh │ │ │ │ ├── action_trmm.hh │ │ │ │ └── basic_actions.hh │ │ │ ├── cmake │ │ │ │ ├── FindACML.cmake │ │ │ │ ├── FindATLAS.cmake │ │ │ │ ├── FindBlitz.cmake │ │ │ │ ├── FindCBLAS.cmake │ │ │ │ ├── FindGMM.cmake │ │ │ │ ├── FindGOTO.cmake │ │ │ │ ├── FindGOTO2.cmake │ │ │ │ ├── FindMKL.cmake │ │ │ │ ├── FindMTL4.cmake │ │ │ │ ├── FindPackageHandleStandardArgs.cmake │ │ │ │ ├── FindTvmet.cmake │ │ │ │ └── MacroOptionalAddSubdirectory.cmake │ │ │ ├── data │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── action_settings.txt │ │ │ │ ├── gnuplot_common_settings.hh │ │ │ │ ├── go_mean │ │ │ │ ├── mean.cxx │ │ │ │ ├── mk_gnuplot_script.sh │ │ │ │ ├── mk_mean_script.sh │ │ │ │ ├── mk_new_gnuplot.sh │ │ │ │ ├── perlib_plot_settings.txt │ │ │ │ ├── regularize.cxx │ │ │ │ ├── smooth.cxx │ │ │ │ └── smooth_all.sh │ │ │ ├── generic_bench │ │ │ │ ├── bench.hh │ │ │ │ ├── bench_parameter.hh │ │ │ │ ├── btl.hh │ │ │ │ ├── init │ │ │ │ │ ├── init_function.hh │ │ │ │ │ ├── init_matrix.hh │ │ │ │ │ └── init_vector.hh │ │ │ │ ├── static │ │ │ │ │ ├── bench_static.hh │ │ │ │ │ ├── intel_bench_fixed_size.hh │ │ │ │ │ └── static_size_generator.hh │ │ │ │ ├── timers │ │ │ │ │ ├── STL_perf_analyzer.hh │ │ │ │ │ ├── STL_timer.hh │ │ │ │ │ ├── mixed_perf_analyzer.hh │ │ │ │ │ ├── portable_perf_analyzer.hh │ │ │ │ │ ├── portable_perf_analyzer_old.hh │ │ │ │ │ ├── portable_timer.hh │ │ │ │ │ ├── x86_perf_analyzer.hh │ │ │ │ │ └── x86_timer.hh │ │ │ │ └── utils │ │ │ │ │ ├── size_lin_log.hh │ │ │ │ │ ├── size_log.hh │ │ │ │ │ ├── utilities.h │ │ │ │ │ └── xy_file.hh │ │ │ └── libs │ │ │ │ ├── BLAS │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── blas.h │ │ │ │ ├── blas_interface.hh │ │ │ │ ├── blas_interface_impl.hh │ │ │ │ ├── c_interface_base.h │ │ │ │ └── main.cpp │ │ │ │ ├── STL │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── STL_interface.hh │ │ │ │ └── main.cpp │ │ │ │ ├── blitz │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── blitz_LU_solve_interface.hh │ │ │ │ ├── blitz_interface.hh │ │ │ │ ├── btl_blitz.cpp │ │ │ │ ├── btl_tiny_blitz.cpp │ │ │ │ └── tiny_blitz_interface.hh │ │ │ │ ├── eigen2 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── btl_tiny_eigen2.cpp │ │ │ │ ├── eigen2_interface.hh │ │ │ │ ├── main_adv.cpp │ │ │ │ ├── main_linear.cpp │ │ │ │ ├── main_matmat.cpp │ │ │ │ └── main_vecmat.cpp │ │ │ │ ├── eigen3 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── btl_tiny_eigen3.cpp │ │ │ │ ├── eigen3_interface.hh │ │ │ │ ├── main_adv.cpp │ │ │ │ ├── main_linear.cpp │ │ │ │ ├── main_matmat.cpp │ │ │ │ └── main_vecmat.cpp │ │ │ │ ├── gmm │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── gmm_LU_solve_interface.hh │ │ │ │ ├── gmm_interface.hh │ │ │ │ └── main.cpp │ │ │ │ ├── mtl4 │ │ │ │ ├── .kdbgrc.main │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── main.cpp │ │ │ │ ├── mtl4_LU_solve_interface.hh │ │ │ │ └── mtl4_interface.hh │ │ │ │ ├── tvmet │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── main.cpp │ │ │ │ └── tvmet_interface.hh │ │ │ │ └── ublas │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── main.cpp │ │ │ │ └── ublas_interface.hh │ │ ├── check_cache_queries.cpp │ │ ├── eig33.cpp │ │ ├── geometry.cpp │ │ ├── product_threshold.cpp │ │ ├── quat_slerp.cpp │ │ ├── quatmul.cpp │ │ ├── sparse_cholesky.cpp │ │ ├── sparse_dense_product.cpp │ │ ├── sparse_lu.cpp │ │ ├── sparse_product.cpp │ │ ├── sparse_randomsetter.cpp │ │ ├── sparse_setter.cpp │ │ ├── sparse_transpose.cpp │ │ ├── sparse_trisolver.cpp │ │ ├── spbench │ │ │ ├── CMakeLists.txt │ │ │ ├── sp_solver.cpp │ │ │ ├── spbench.dtd │ │ │ ├── spbenchsolver.cpp │ │ │ ├── spbenchsolver.h │ │ │ ├── spbenchstyle.h │ │ │ └── test_sparseLU.cpp │ │ ├── spmv.cpp │ │ └── vdw_new.cpp │ ├── blas │ │ ├── BandTriangularSolver.h │ │ ├── CMakeLists.txt │ │ ├── GeneralRank1Update.h │ │ ├── PackedSelfadjointProduct.h │ │ ├── PackedTriangularMatrixVector.h │ │ ├── PackedTriangularSolverVector.h │ │ ├── README.txt │ │ ├── Rank2Update.h │ │ ├── chbmv.f │ │ ├── chpmv.f │ │ ├── common.h │ │ ├── complex_double.cpp │ │ ├── complex_single.cpp │ │ ├── complexdots.f │ │ ├── ctbmv.f │ │ ├── double.cpp │ │ ├── drotm.f │ │ ├── drotmg.f │ │ ├── dsbmv.f │ │ ├── dspmv.f │ │ ├── dtbmv.f │ │ ├── level1_cplx_impl.h │ │ ├── level1_impl.h │ │ ├── level1_real_impl.h │ │ ├── level2_cplx_impl.h │ │ ├── level2_impl.h │ │ ├── level2_real_impl.h │ │ ├── level3_impl.h │ │ ├── lsame.f │ │ ├── single.cpp │ │ ├── srotm.f │ │ ├── srotmg.f │ │ ├── ssbmv.f │ │ ├── sspmv.f │ │ ├── stbmv.f │ │ ├── testing │ │ │ ├── CMakeLists.txt │ │ │ ├── cblat1.f │ │ │ ├── cblat2.dat │ │ │ ├── cblat2.f │ │ │ ├── cblat3.dat │ │ │ ├── cblat3.f │ │ │ ├── dblat1.f │ │ │ ├── dblat2.dat │ │ │ ├── dblat2.f │ │ │ ├── dblat3.dat │ │ │ ├── dblat3.f │ │ │ ├── runblastest.sh │ │ │ ├── sblat1.f │ │ │ ├── sblat2.dat │ │ │ ├── sblat2.f │ │ │ ├── sblat3.dat │ │ │ ├── sblat3.f │ │ │ ├── zblat1.f │ │ │ ├── zblat2.dat │ │ │ ├── zblat2.f │ │ │ ├── zblat3.dat │ │ │ └── zblat3.f │ │ ├── xerbla.cpp │ │ ├── zhbmv.f │ │ ├── zhpmv.f │ │ └── ztbmv.f │ ├── cmake │ │ ├── EigenConfigureTesting.cmake │ │ ├── EigenDetermineOSVersion.cmake │ │ ├── EigenDetermineVSServicePack.cmake │ │ ├── EigenTesting.cmake │ │ ├── FindAdolc.cmake │ │ ├── FindBLAS.cmake │ │ ├── FindCholmod.cmake │ │ ├── FindEigen2.cmake │ │ ├── FindEigen3.cmake │ │ ├── FindFFTW.cmake │ │ ├── FindGLEW.cmake │ │ ├── FindGMP.cmake │ │ ├── FindGSL.cmake │ │ ├── FindGoogleHash.cmake │ │ ├── FindLAPACK.cmake │ │ ├── FindMPFR.cmake │ │ ├── FindMetis.cmake │ │ ├── FindPastix.cmake │ │ ├── FindSPQR.cmake │ │ ├── FindScotch.cmake │ │ ├── FindStandardMathLibrary.cmake │ │ ├── FindSuperLU.cmake │ │ ├── FindUmfpack.cmake │ │ ├── RegexUtils.cmake │ │ └── language_support.cmake │ ├── debug │ │ ├── gdb │ │ │ ├── __init__.py │ │ │ └── printers.py │ │ └── msvc │ │ │ ├── eigen.natvis │ │ │ └── eigen_autoexp_part.dat │ ├── demos │ │ ├── CMakeLists.txt │ │ ├── mandelbrot │ │ │ ├── CMakeLists.txt │ │ │ ├── README │ │ │ ├── mandelbrot.cpp │ │ │ └── mandelbrot.h │ │ ├── mix_eigen_and_c │ │ │ ├── README │ │ │ ├── binary_library.cpp │ │ │ ├── binary_library.h │ │ │ └── example.c │ │ └── opengl │ │ │ ├── CMakeLists.txt │ │ │ ├── README │ │ │ ├── camera.cpp │ │ │ ├── camera.h │ │ │ ├── gpuhelper.cpp │ │ │ ├── gpuhelper.h │ │ │ ├── icosphere.cpp │ │ │ ├── icosphere.h │ │ │ ├── quaternion_demo.cpp │ │ │ ├── quaternion_demo.h │ │ │ ├── trackball.cpp │ │ │ └── trackball.h │ ├── doc │ │ ├── A05_PortingFrom2To3.dox │ │ ├── A10_Eigen2SupportModes.dox │ │ ├── AsciiQuickReference.txt │ │ ├── B01_Experimental.dox │ │ ├── CMakeLists.txt │ │ ├── ClassHierarchy.dox │ │ ├── CustomizingEigen.dox │ │ ├── Doxyfile.in │ │ ├── Eigen_Silly_Professor_64x64.png │ │ ├── FixedSizeVectorizable.dox │ │ ├── FunctionsTakingEigenTypes.dox │ │ ├── HiPerformance.dox │ │ ├── InsideEigenExample.dox │ │ ├── Manual.dox │ │ ├── Overview.dox │ │ ├── PassingByValue.dox │ │ ├── Pitfalls.dox │ │ ├── PreprocessorDirectives.dox │ │ ├── QuickReference.dox │ │ ├── QuickStartGuide.dox │ │ ├── SparseLinearSystems.dox │ │ ├── SparseQuickReference.dox │ │ ├── StlContainers.dox │ │ ├── StorageOrders.dox │ │ ├── StructHavingEigenMembers.dox │ │ ├── TemplateKeyword.dox │ │ ├── TopicAliasing.dox │ │ ├── TopicAssertions.dox │ │ ├── TopicEigenExpressionTemplates.dox │ │ ├── TopicLazyEvaluation.dox │ │ ├── TopicLinearAlgebraDecompositions.dox │ │ ├── TopicMultithreading.dox │ │ ├── TopicResizing.dox │ │ ├── TopicScalarTypes.dox │ │ ├── TopicVectorization.dox │ │ ├── TutorialAdvancedInitialization.dox │ │ ├── TutorialArrayClass.dox │ │ ├── TutorialBlockOperations.dox │ │ ├── TutorialGeometry.dox │ │ ├── TutorialLinearAlgebra.dox │ │ ├── TutorialMapClass.dox │ │ ├── TutorialMatrixArithmetic.dox │ │ ├── TutorialMatrixClass.dox │ │ ├── TutorialReductionsVisitorsBroadcasting.dox │ │ ├── TutorialSparse.dox │ │ ├── TutorialSparse_example_details.dox │ │ ├── UnalignedArrayAssert.dox │ │ ├── UsingIntelMKL.dox │ │ ├── WrongStackAlignment.dox │ │ ├── eigen_navtree_hacks.js │ │ ├── eigendoxy.css │ │ ├── eigendoxy_footer.html.in │ │ ├── eigendoxy_header.html.in │ │ ├── eigendoxy_layout.xml.in │ │ ├── eigendoxy_tabs.css │ │ ├── examples │ │ │ ├── .krazy │ │ │ ├── CMakeLists.txt │ │ │ ├── DenseBase_middleCols_int.cpp │ │ │ ├── DenseBase_middleRows_int.cpp │ │ │ ├── DenseBase_template_int_middleCols.cpp │ │ │ ├── DenseBase_template_int_middleRows.cpp │ │ │ ├── MatrixBase_cwise_const.cpp │ │ │ ├── QuickStart_example.cpp │ │ │ ├── QuickStart_example2_dynamic.cpp │ │ │ ├── QuickStart_example2_fixed.cpp │ │ │ ├── TemplateKeyword_flexible.cpp │ │ │ ├── TemplateKeyword_simple.cpp │ │ │ ├── TutorialLinAlgComputeTwice.cpp │ │ │ ├── TutorialLinAlgExComputeSolveError.cpp │ │ │ ├── TutorialLinAlgExSolveColPivHouseholderQR.cpp │ │ │ ├── TutorialLinAlgExSolveLDLT.cpp │ │ │ ├── TutorialLinAlgInverseDeterminant.cpp │ │ │ ├── TutorialLinAlgRankRevealing.cpp │ │ │ ├── TutorialLinAlgSVDSolve.cpp │ │ │ ├── TutorialLinAlgSelfAdjointEigenSolver.cpp │ │ │ ├── TutorialLinAlgSetThreshold.cpp │ │ │ ├── Tutorial_ArrayClass_accessors.cpp │ │ │ ├── Tutorial_ArrayClass_addition.cpp │ │ │ ├── Tutorial_ArrayClass_cwise_other.cpp │ │ │ ├── Tutorial_ArrayClass_interop.cpp │ │ │ ├── Tutorial_ArrayClass_interop_matrix.cpp │ │ │ ├── Tutorial_ArrayClass_mult.cpp │ │ │ ├── Tutorial_BlockOperations_block_assignment.cpp │ │ │ ├── Tutorial_BlockOperations_colrow.cpp │ │ │ ├── Tutorial_BlockOperations_corner.cpp │ │ │ ├── Tutorial_BlockOperations_print_block.cpp │ │ │ ├── Tutorial_BlockOperations_vector.cpp │ │ │ ├── Tutorial_PartialLU_solve.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_broadcast_1nn.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_broadcast_simple.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_broadcast_simple_rowwise.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_colwise.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_maxnorm.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_reductions_bool.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_reductions_norm.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_rowwise.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_visitors.cpp │ │ │ ├── Tutorial_simple_example_dynamic_size.cpp │ │ │ ├── Tutorial_simple_example_fixed_size.cpp │ │ │ ├── class_Block.cpp │ │ │ ├── class_CwiseBinaryOp.cpp │ │ │ ├── class_CwiseUnaryOp.cpp │ │ │ ├── class_CwiseUnaryOp_ptrfun.cpp │ │ │ ├── class_FixedBlock.cpp │ │ │ ├── class_FixedVectorBlock.cpp │ │ │ ├── class_VectorBlock.cpp │ │ │ ├── function_taking_eigenbase.cpp │ │ │ ├── function_taking_ref.cpp │ │ │ ├── tut_arithmetic_add_sub.cpp │ │ │ ├── tut_arithmetic_dot_cross.cpp │ │ │ ├── tut_arithmetic_matrix_mul.cpp │ │ │ ├── tut_arithmetic_redux_basic.cpp │ │ │ ├── tut_arithmetic_scalar_mul_div.cpp │ │ │ ├── tut_matrix_coefficient_accessors.cpp │ │ │ ├── tut_matrix_resize.cpp │ │ │ └── tut_matrix_resize_fixed_size.cpp │ │ ├── snippets │ │ │ ├── .krazy │ │ │ ├── AngleAxis_mimic_euler.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── ColPivHouseholderQR_solve.cpp │ │ │ ├── ComplexEigenSolver_compute.cpp │ │ │ ├── ComplexEigenSolver_eigenvalues.cpp │ │ │ ├── ComplexEigenSolver_eigenvectors.cpp │ │ │ ├── ComplexSchur_compute.cpp │ │ │ ├── ComplexSchur_matrixT.cpp │ │ │ ├── ComplexSchur_matrixU.cpp │ │ │ ├── Cwise_abs.cpp │ │ │ ├── Cwise_abs2.cpp │ │ │ ├── Cwise_acos.cpp │ │ │ ├── Cwise_asin.cpp │ │ │ ├── Cwise_boolean_and.cpp │ │ │ ├── Cwise_boolean_or.cpp │ │ │ ├── Cwise_cos.cpp │ │ │ ├── Cwise_cube.cpp │ │ │ ├── Cwise_equal_equal.cpp │ │ │ ├── Cwise_exp.cpp │ │ │ ├── Cwise_greater.cpp │ │ │ ├── Cwise_greater_equal.cpp │ │ │ ├── Cwise_inverse.cpp │ │ │ ├── Cwise_less.cpp │ │ │ ├── Cwise_less_equal.cpp │ │ │ ├── Cwise_log.cpp │ │ │ ├── Cwise_max.cpp │ │ │ ├── Cwise_min.cpp │ │ │ ├── Cwise_minus.cpp │ │ │ ├── Cwise_minus_equal.cpp │ │ │ ├── Cwise_not_equal.cpp │ │ │ ├── Cwise_plus.cpp │ │ │ ├── Cwise_plus_equal.cpp │ │ │ ├── Cwise_pow.cpp │ │ │ ├── Cwise_product.cpp │ │ │ ├── Cwise_quotient.cpp │ │ │ ├── Cwise_sin.cpp │ │ │ ├── Cwise_slash_equal.cpp │ │ │ ├── Cwise_sqrt.cpp │ │ │ ├── Cwise_square.cpp │ │ │ ├── Cwise_tan.cpp │ │ │ ├── Cwise_times_equal.cpp │ │ │ ├── DenseBase_LinSpaced.cpp │ │ │ ├── DenseBase_LinSpaced_seq.cpp │ │ │ ├── DenseBase_setLinSpaced.cpp │ │ │ ├── DirectionWise_replicate.cpp │ │ │ ├── DirectionWise_replicate_int.cpp │ │ │ ├── EigenSolver_EigenSolver_MatrixType.cpp │ │ │ ├── EigenSolver_compute.cpp │ │ │ ├── EigenSolver_eigenvalues.cpp │ │ │ ├── EigenSolver_eigenvectors.cpp │ │ │ ├── EigenSolver_pseudoEigenvectors.cpp │ │ │ ├── FullPivHouseholderQR_solve.cpp │ │ │ ├── FullPivLU_image.cpp │ │ │ ├── FullPivLU_kernel.cpp │ │ │ ├── FullPivLU_solve.cpp │ │ │ ├── GeneralizedEigenSolver.cpp │ │ │ ├── HessenbergDecomposition_compute.cpp │ │ │ ├── HessenbergDecomposition_matrixH.cpp │ │ │ ├── HessenbergDecomposition_packedMatrix.cpp │ │ │ ├── HouseholderQR_householderQ.cpp │ │ │ ├── HouseholderQR_solve.cpp │ │ │ ├── HouseholderSequence_HouseholderSequence.cpp │ │ │ ├── IOFormat.cpp │ │ │ ├── JacobiSVD_basic.cpp │ │ │ ├── Jacobi_makeGivens.cpp │ │ │ ├── Jacobi_makeJacobi.cpp │ │ │ ├── LLT_example.cpp │ │ │ ├── LLT_solve.cpp │ │ │ ├── Map_general_stride.cpp │ │ │ ├── Map_inner_stride.cpp │ │ │ ├── Map_outer_stride.cpp │ │ │ ├── Map_placement_new.cpp │ │ │ ├── Map_simple.cpp │ │ │ ├── MatrixBase_adjoint.cpp │ │ │ ├── MatrixBase_all.cpp │ │ │ ├── MatrixBase_applyOnTheLeft.cpp │ │ │ ├── MatrixBase_applyOnTheRight.cpp │ │ │ ├── MatrixBase_array.cpp │ │ │ ├── MatrixBase_array_const.cpp │ │ │ ├── MatrixBase_asDiagonal.cpp │ │ │ ├── MatrixBase_block_int_int.cpp │ │ │ ├── MatrixBase_block_int_int_int_int.cpp │ │ │ ├── MatrixBase_bottomLeftCorner_int_int.cpp │ │ │ ├── MatrixBase_bottomRightCorner_int_int.cpp │ │ │ ├── MatrixBase_bottomRows_int.cpp │ │ │ ├── MatrixBase_cast.cpp │ │ │ ├── MatrixBase_col.cpp │ │ │ ├── MatrixBase_colwise.cpp │ │ │ ├── MatrixBase_computeInverseAndDetWithCheck.cpp │ │ │ ├── MatrixBase_computeInverseWithCheck.cpp │ │ │ ├── MatrixBase_cwiseAbs.cpp │ │ │ ├── MatrixBase_cwiseAbs2.cpp │ │ │ ├── MatrixBase_cwiseEqual.cpp │ │ │ ├── MatrixBase_cwiseInverse.cpp │ │ │ ├── MatrixBase_cwiseMax.cpp │ │ │ ├── MatrixBase_cwiseMin.cpp │ │ │ ├── MatrixBase_cwiseNotEqual.cpp │ │ │ ├── MatrixBase_cwiseProduct.cpp │ │ │ ├── MatrixBase_cwiseQuotient.cpp │ │ │ ├── MatrixBase_cwiseSqrt.cpp │ │ │ ├── MatrixBase_diagonal.cpp │ │ │ ├── MatrixBase_diagonal_int.cpp │ │ │ ├── MatrixBase_diagonal_template_int.cpp │ │ │ ├── MatrixBase_eigenvalues.cpp │ │ │ ├── MatrixBase_end_int.cpp │ │ │ ├── MatrixBase_eval.cpp │ │ │ ├── MatrixBase_extract.cpp │ │ │ ├── MatrixBase_fixedBlock_int_int.cpp │ │ │ ├── MatrixBase_identity.cpp │ │ │ ├── MatrixBase_identity_int_int.cpp │ │ │ ├── MatrixBase_inverse.cpp │ │ │ ├── MatrixBase_isDiagonal.cpp │ │ │ ├── MatrixBase_isIdentity.cpp │ │ │ ├── MatrixBase_isOnes.cpp │ │ │ ├── MatrixBase_isOrthogonal.cpp │ │ │ ├── MatrixBase_isUnitary.cpp │ │ │ ├── MatrixBase_isZero.cpp │ │ │ ├── MatrixBase_leftCols_int.cpp │ │ │ ├── MatrixBase_marked.cpp │ │ │ ├── MatrixBase_noalias.cpp │ │ │ ├── MatrixBase_ones.cpp │ │ │ ├── MatrixBase_ones_int.cpp │ │ │ ├── MatrixBase_ones_int_int.cpp │ │ │ ├── MatrixBase_operatorNorm.cpp │ │ │ ├── MatrixBase_part.cpp │ │ │ ├── MatrixBase_prod.cpp │ │ │ ├── MatrixBase_random.cpp │ │ │ ├── MatrixBase_random_int.cpp │ │ │ ├── MatrixBase_random_int_int.cpp │ │ │ ├── MatrixBase_replicate.cpp │ │ │ ├── MatrixBase_replicate_int_int.cpp │ │ │ ├── MatrixBase_reverse.cpp │ │ │ ├── MatrixBase_rightCols_int.cpp │ │ │ ├── MatrixBase_row.cpp │ │ │ ├── MatrixBase_rowwise.cpp │ │ │ ├── MatrixBase_segment_int_int.cpp │ │ │ ├── MatrixBase_select.cpp │ │ │ ├── MatrixBase_set.cpp │ │ │ ├── MatrixBase_setIdentity.cpp │ │ │ ├── MatrixBase_setOnes.cpp │ │ │ ├── MatrixBase_setRandom.cpp │ │ │ ├── MatrixBase_setZero.cpp │ │ │ ├── MatrixBase_start_int.cpp │ │ │ ├── MatrixBase_template_int_bottomRows.cpp │ │ │ ├── MatrixBase_template_int_end.cpp │ │ │ ├── MatrixBase_template_int_int_block_int_int_int_int.cpp │ │ │ ├── MatrixBase_template_int_int_bottomLeftCorner.cpp │ │ │ ├── MatrixBase_template_int_int_bottomLeftCorner_int_int.cpp │ │ │ ├── MatrixBase_template_int_int_bottomRightCorner.cpp │ │ │ ├── MatrixBase_template_int_int_bottomRightCorner_int_int.cpp │ │ │ ├── MatrixBase_template_int_int_topLeftCorner.cpp │ │ │ ├── MatrixBase_template_int_int_topLeftCorner_int_int.cpp │ │ │ ├── MatrixBase_template_int_int_topRightCorner.cpp │ │ │ ├── MatrixBase_template_int_int_topRightCorner_int_int.cpp │ │ │ ├── MatrixBase_template_int_leftCols.cpp │ │ │ ├── MatrixBase_template_int_rightCols.cpp │ │ │ ├── MatrixBase_template_int_segment.cpp │ │ │ ├── MatrixBase_template_int_start.cpp │ │ │ ├── MatrixBase_template_int_topRows.cpp │ │ │ ├── MatrixBase_topLeftCorner_int_int.cpp │ │ │ ├── MatrixBase_topRightCorner_int_int.cpp │ │ │ ├── MatrixBase_topRows_int.cpp │ │ │ ├── MatrixBase_transpose.cpp │ │ │ ├── MatrixBase_zero.cpp │ │ │ ├── MatrixBase_zero_int.cpp │ │ │ ├── MatrixBase_zero_int_int.cpp │ │ │ ├── Matrix_resize_NoChange_int.cpp │ │ │ ├── Matrix_resize_int.cpp │ │ │ ├── Matrix_resize_int_NoChange.cpp │ │ │ ├── Matrix_resize_int_int.cpp │ │ │ ├── Matrix_setConstant_int.cpp │ │ │ ├── Matrix_setConstant_int_int.cpp │ │ │ ├── Matrix_setIdentity_int_int.cpp │ │ │ ├── Matrix_setOnes_int.cpp │ │ │ ├── Matrix_setOnes_int_int.cpp │ │ │ ├── Matrix_setRandom_int.cpp │ │ │ ├── Matrix_setRandom_int_int.cpp │ │ │ ├── Matrix_setZero_int.cpp │ │ │ ├── Matrix_setZero_int_int.cpp │ │ │ ├── PartialPivLU_solve.cpp │ │ │ ├── PartialRedux_count.cpp │ │ │ ├── PartialRedux_maxCoeff.cpp │ │ │ ├── PartialRedux_minCoeff.cpp │ │ │ ├── PartialRedux_norm.cpp │ │ │ ├── PartialRedux_prod.cpp │ │ │ ├── PartialRedux_squaredNorm.cpp │ │ │ ├── PartialRedux_sum.cpp │ │ │ ├── RealQZ_compute.cpp │ │ │ ├── RealSchur_RealSchur_MatrixType.cpp │ │ │ ├── RealSchur_compute.cpp │ │ │ ├── SelfAdjointEigenSolver_SelfAdjointEigenSolver.cpp │ │ │ ├── SelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType.cpp │ │ │ ├── SelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType2.cpp │ │ │ ├── SelfAdjointEigenSolver_compute_MatrixType.cpp │ │ │ ├── SelfAdjointEigenSolver_compute_MatrixType2.cpp │ │ │ ├── SelfAdjointEigenSolver_eigenvalues.cpp │ │ │ ├── SelfAdjointEigenSolver_eigenvectors.cpp │ │ │ ├── SelfAdjointEigenSolver_operatorInverseSqrt.cpp │ │ │ ├── SelfAdjointEigenSolver_operatorSqrt.cpp │ │ │ ├── SelfAdjointView_eigenvalues.cpp │ │ │ ├── SelfAdjointView_operatorNorm.cpp │ │ │ ├── TopicAliasing_block.cpp │ │ │ ├── TopicAliasing_block_correct.cpp │ │ │ ├── TopicAliasing_cwise.cpp │ │ │ ├── TopicAliasing_mult1.cpp │ │ │ ├── TopicAliasing_mult2.cpp │ │ │ ├── TopicAliasing_mult3.cpp │ │ │ ├── TopicStorageOrders_example.cpp │ │ │ ├── Tridiagonalization_Tridiagonalization_MatrixType.cpp │ │ │ ├── Tridiagonalization_compute.cpp │ │ │ ├── Tridiagonalization_decomposeInPlace.cpp │ │ │ ├── Tridiagonalization_diagonal.cpp │ │ │ ├── Tridiagonalization_householderCoefficients.cpp │ │ │ ├── Tridiagonalization_packedMatrix.cpp │ │ │ ├── Tutorial_AdvancedInitialization_Block.cpp │ │ │ ├── Tutorial_AdvancedInitialization_CommaTemporary.cpp │ │ │ ├── Tutorial_AdvancedInitialization_Join.cpp │ │ │ ├── Tutorial_AdvancedInitialization_LinSpaced.cpp │ │ │ ├── Tutorial_AdvancedInitialization_ThreeWays.cpp │ │ │ ├── Tutorial_AdvancedInitialization_Zero.cpp │ │ │ ├── Tutorial_Map_rowmajor.cpp │ │ │ ├── Tutorial_Map_using.cpp │ │ │ ├── Tutorial_commainit_01.cpp │ │ │ ├── Tutorial_commainit_01b.cpp │ │ │ ├── Tutorial_commainit_02.cpp │ │ │ ├── Tutorial_solve_matrix_inverse.cpp │ │ │ ├── Tutorial_solve_multiple_rhs.cpp │ │ │ ├── Tutorial_solve_reuse_decomposition.cpp │ │ │ ├── Tutorial_solve_singular.cpp │ │ │ ├── Tutorial_solve_triangular.cpp │ │ │ ├── Tutorial_solve_triangular_inplace.cpp │ │ │ ├── Vectorwise_reverse.cpp │ │ │ ├── class_FullPivLU.cpp │ │ │ ├── compile_snippet.cpp.in │ │ │ ├── tut_arithmetic_redux_minmax.cpp │ │ │ ├── tut_arithmetic_transpose_aliasing.cpp │ │ │ ├── tut_arithmetic_transpose_conjugate.cpp │ │ │ ├── tut_arithmetic_transpose_inplace.cpp │ │ │ └── tut_matrix_assignment_resizing.cpp │ │ ├── special_examples │ │ │ ├── CMakeLists.txt │ │ │ ├── Tutorial_sparse_example.cpp │ │ │ └── Tutorial_sparse_example_details.cpp │ │ └── tutorial.cpp │ ├── eigen3.pc.in │ ├── failtest │ │ ├── CMakeLists.txt │ │ ├── block_nonconst_ctor_on_const_xpr_0.cpp │ │ ├── block_nonconst_ctor_on_const_xpr_1.cpp │ │ ├── block_nonconst_ctor_on_const_xpr_2.cpp │ │ ├── block_on_const_type_actually_const_0.cpp │ │ ├── block_on_const_type_actually_const_1.cpp │ │ ├── colpivqr_int.cpp │ │ ├── const_qualified_block_method_retval_0.cpp │ │ ├── const_qualified_block_method_retval_1.cpp │ │ ├── const_qualified_diagonal_method_retval.cpp │ │ ├── const_qualified_transpose_method_retval.cpp │ │ ├── diagonal_nonconst_ctor_on_const_xpr.cpp │ │ ├── diagonal_on_const_type_actually_const.cpp │ │ ├── eigensolver_cplx.cpp │ │ ├── eigensolver_int.cpp │ │ ├── failtest_sanity_check.cpp │ │ ├── fullpivlu_int.cpp │ │ ├── fullpivqr_int.cpp │ │ ├── jacobisvd_int.cpp │ │ ├── ldlt_int.cpp │ │ ├── llt_int.cpp │ │ ├── map_nonconst_ctor_on_const_ptr_0.cpp │ │ ├── map_nonconst_ctor_on_const_ptr_1.cpp │ │ ├── map_nonconst_ctor_on_const_ptr_2.cpp │ │ ├── map_nonconst_ctor_on_const_ptr_3.cpp │ │ ├── map_nonconst_ctor_on_const_ptr_4.cpp │ │ ├── map_on_const_type_actually_const_0.cpp │ │ ├── map_on_const_type_actually_const_1.cpp │ │ ├── partialpivlu_int.cpp │ │ ├── qr_int.cpp │ │ ├── ref_1.cpp │ │ ├── ref_2.cpp │ │ ├── ref_3.cpp │ │ ├── ref_4.cpp │ │ ├── ref_5.cpp │ │ ├── transpose_nonconst_ctor_on_const_xpr.cpp │ │ └── transpose_on_const_type_actually_const.cpp │ ├── lapack │ │ ├── CMakeLists.txt │ │ ├── cholesky.cpp │ │ ├── clacgv.f │ │ ├── cladiv.f │ │ ├── clarf.f │ │ ├── clarfb.f │ │ ├── clarfg.f │ │ ├── clarft.f │ │ ├── complex_double.cpp │ │ ├── complex_single.cpp │ │ ├── dladiv.f │ │ ├── dlamch.f │ │ ├── dlapy2.f │ │ ├── dlapy3.f │ │ ├── dlarf.f │ │ ├── dlarfb.f │ │ ├── dlarfg.f │ │ ├── dlarft.f │ │ ├── double.cpp │ │ ├── dsecnd_NONE.f │ │ ├── eigenvalues.cpp │ │ ├── ilaclc.f │ │ ├── ilaclr.f │ │ ├── iladlc.f │ │ ├── iladlr.f │ │ ├── ilaslc.f │ │ ├── ilaslr.f │ │ ├── ilazlc.f │ │ ├── ilazlr.f │ │ ├── lapack_common.h │ │ ├── lu.cpp │ │ ├── second_NONE.f │ │ ├── single.cpp │ │ ├── sladiv.f │ │ ├── slamch.f │ │ ├── slapy2.f │ │ ├── slapy3.f │ │ ├── slarf.f │ │ ├── slarfb.f │ │ ├── slarfg.f │ │ ├── slarft.f │ │ ├── zlacgv.f │ │ ├── zladiv.f │ │ ├── zlarf.f │ │ ├── zlarfb.f │ │ ├── zlarfg.f │ │ └── zlarft.f │ ├── scripts │ │ ├── CMakeLists.txt │ │ ├── buildtests.in │ │ ├── cdashtesting.cmake.in │ │ ├── check.in │ │ ├── debug.in │ │ ├── eigen_gen_credits.cpp │ │ ├── eigen_gen_docs │ │ ├── release.in │ │ └── relicense.py │ ├── signature_of_eigen3_matrix_library │ ├── test │ │ ├── CMakeLists.txt │ │ ├── adjoint.cpp │ │ ├── array.cpp │ │ ├── array_for_matrix.cpp │ │ ├── array_replicate.cpp │ │ ├── array_reverse.cpp │ │ ├── bandmatrix.cpp │ │ ├── basicstuff.cpp │ │ ├── bicgstab.cpp │ │ ├── block.cpp │ │ ├── cholesky.cpp │ │ ├── cholmod_support.cpp │ │ ├── commainitializer.cpp │ │ ├── conjugate_gradient.cpp │ │ ├── conservative_resize.cpp │ │ ├── corners.cpp │ │ ├── cwiseop.cpp │ │ ├── denseLM.cpp │ │ ├── determinant.cpp │ │ ├── diagonal.cpp │ │ ├── diagonalmatrices.cpp │ │ ├── dontalign.cpp │ │ ├── dynalloc.cpp │ │ ├── eigen2 │ │ │ ├── CMakeLists.txt │ │ │ ├── eigen2_adjoint.cpp │ │ │ ├── eigen2_alignedbox.cpp │ │ │ ├── eigen2_array.cpp │ │ │ ├── eigen2_basicstuff.cpp │ │ │ ├── eigen2_bug_132.cpp │ │ │ ├── eigen2_cholesky.cpp │ │ │ ├── eigen2_commainitializer.cpp │ │ │ ├── eigen2_cwiseop.cpp │ │ │ ├── eigen2_determinant.cpp │ │ │ ├── eigen2_dynalloc.cpp │ │ │ ├── eigen2_eigensolver.cpp │ │ │ ├── eigen2_first_aligned.cpp │ │ │ ├── eigen2_geometry.cpp │ │ │ ├── eigen2_geometry_with_eigen2_prefix.cpp │ │ │ ├── eigen2_hyperplane.cpp │ │ │ ├── eigen2_inverse.cpp │ │ │ ├── eigen2_linearstructure.cpp │ │ │ ├── eigen2_lu.cpp │ │ │ ├── eigen2_map.cpp │ │ │ ├── eigen2_meta.cpp │ │ │ ├── eigen2_miscmatrices.cpp │ │ │ ├── eigen2_mixingtypes.cpp │ │ │ ├── eigen2_newstdvector.cpp │ │ │ ├── eigen2_nomalloc.cpp │ │ │ ├── eigen2_packetmath.cpp │ │ │ ├── eigen2_parametrizedline.cpp │ │ │ ├── eigen2_prec_inverse_4x4.cpp │ │ │ ├── eigen2_product_large.cpp │ │ │ ├── eigen2_product_small.cpp │ │ │ ├── eigen2_qr.cpp │ │ │ ├── eigen2_qtvector.cpp │ │ │ ├── eigen2_regression.cpp │ │ │ ├── eigen2_sizeof.cpp │ │ │ ├── eigen2_smallvectors.cpp │ │ │ ├── eigen2_sparse_basic.cpp │ │ │ ├── eigen2_sparse_product.cpp │ │ │ ├── eigen2_sparse_solvers.cpp │ │ │ ├── eigen2_sparse_vector.cpp │ │ │ ├── eigen2_stdvector.cpp │ │ │ ├── eigen2_submatrices.cpp │ │ │ ├── eigen2_sum.cpp │ │ │ ├── eigen2_svd.cpp │ │ │ ├── eigen2_swap.cpp │ │ │ ├── eigen2_triangular.cpp │ │ │ ├── eigen2_unalignedassert.cpp │ │ │ ├── eigen2_visitor.cpp │ │ │ ├── gsl_helper.h │ │ │ ├── main.h │ │ │ ├── product.h │ │ │ ├── runtest.sh │ │ │ ├── sparse.h │ │ │ └── testsuite.cmake │ │ ├── eigen2support.cpp │ │ ├── eigensolver_complex.cpp │ │ ├── eigensolver_generalized_real.cpp │ │ ├── eigensolver_generic.cpp │ │ ├── eigensolver_selfadjoint.cpp │ │ ├── exceptions.cpp │ │ ├── first_aligned.cpp │ │ ├── geo_alignedbox.cpp │ │ ├── geo_eulerangles.cpp │ │ ├── geo_homogeneous.cpp │ │ ├── geo_hyperplane.cpp │ │ ├── geo_orthomethods.cpp │ │ ├── geo_parametrizedline.cpp │ │ ├── geo_quaternion.cpp │ │ ├── geo_transformations.cpp │ │ ├── hessenberg.cpp │ │ ├── householder.cpp │ │ ├── integer_types.cpp │ │ ├── inverse.cpp │ │ ├── jacobi.cpp │ │ ├── jacobisvd.cpp │ │ ├── linearstructure.cpp │ │ ├── lu.cpp │ │ ├── main.h │ │ ├── mapped_matrix.cpp │ │ ├── mapstaticmethods.cpp │ │ ├── mapstride.cpp │ │ ├── meta.cpp │ │ ├── metis_support.cpp │ │ ├── miscmatrices.cpp │ │ ├── mixingtypes.cpp │ │ ├── mpl2only.cpp │ │ ├── nesting_ops.cpp │ │ ├── nomalloc.cpp │ │ ├── nullary.cpp │ │ ├── packetmath.cpp │ │ ├── pardiso_support.cpp │ │ ├── pastix_support.cpp │ │ ├── permutationmatrices.cpp │ │ ├── prec_inverse_4x4.cpp │ │ ├── product.h │ │ ├── product_extra.cpp │ │ ├── product_large.cpp │ │ ├── product_mmtr.cpp │ │ ├── product_notemporary.cpp │ │ ├── product_selfadjoint.cpp │ │ ├── product_small.cpp │ │ ├── product_symm.cpp │ │ ├── product_syrk.cpp │ │ ├── product_trmm.cpp │ │ ├── product_trmv.cpp │ │ ├── product_trsolve.cpp │ │ ├── qr.cpp │ │ ├── qr_colpivoting.cpp │ │ ├── qr_fullpivoting.cpp │ │ ├── qtvector.cpp │ │ ├── real_qz.cpp │ │ ├── redux.cpp │ │ ├── ref.cpp │ │ ├── resize.cpp │ │ ├── runtest.sh │ │ ├── rvalue_types.cpp │ │ ├── schur_complex.cpp │ │ ├── schur_real.cpp │ │ ├── selfadjoint.cpp │ │ ├── simplicial_cholesky.cpp │ │ ├── sizeof.cpp │ │ ├── sizeoverflow.cpp │ │ ├── smallvectors.cpp │ │ ├── sparse.h │ │ ├── sparseLM.cpp │ │ ├── sparse_basic.cpp │ │ ├── sparse_permutations.cpp │ │ ├── sparse_product.cpp │ │ ├── sparse_solver.h │ │ ├── sparse_solvers.cpp │ │ ├── sparse_vector.cpp │ │ ├── sparselu.cpp │ │ ├── sparseqr.cpp │ │ ├── special_numbers.cpp │ │ ├── spqr_support.cpp │ │ ├── stable_norm.cpp │ │ ├── stddeque.cpp │ │ ├── stdlist.cpp │ │ ├── stdvector.cpp │ │ ├── stdvector_overload.cpp │ │ ├── superlu_support.cpp │ │ ├── swap.cpp │ │ ├── testsuite.cmake │ │ ├── triangular.cpp │ │ ├── umeyama.cpp │ │ ├── umfpack_support.cpp │ │ ├── unalignedassert.cpp │ │ ├── unalignedcount.cpp │ │ ├── upperbidiagonalization.cpp │ │ ├── vectorization_logic.cpp │ │ ├── vectorwiseop.cpp │ │ ├── visitor.cpp │ │ └── zerosized.cpp │ └── unsupported │ │ ├── CMakeLists.txt │ │ ├── Eigen │ │ ├── AdolcForward │ │ ├── AlignedVector3 │ │ ├── ArpackSupport │ │ ├── AutoDiff │ │ ├── BVH │ │ ├── CMakeLists.txt │ │ ├── FFT │ │ ├── IterativeSolvers │ │ ├── KroneckerProduct │ │ ├── LevenbergMarquardt │ │ ├── MPRealSupport │ │ ├── MatrixFunctions │ │ ├── MoreVectorization │ │ ├── NonLinearOptimization │ │ ├── NumericalDiff │ │ ├── OpenGLSupport │ │ ├── Polynomials │ │ ├── SVD │ │ ├── Skyline │ │ ├── SparseExtra │ │ ├── Splines │ │ └── src │ │ │ ├── AutoDiff │ │ │ ├── AutoDiffJacobian.h │ │ │ ├── AutoDiffScalar.h │ │ │ ├── AutoDiffVector.h │ │ │ └── CMakeLists.txt │ │ │ ├── BVH │ │ │ ├── BVAlgorithms.h │ │ │ ├── CMakeLists.txt │ │ │ └── KdBVH.h │ │ │ ├── CMakeLists.txt │ │ │ ├── Eigenvalues │ │ │ ├── ArpackSelfAdjointEigenSolver.h │ │ │ └── CMakeLists.txt │ │ │ ├── FFT │ │ │ ├── CMakeLists.txt │ │ │ ├── ei_fftw_impl.h │ │ │ └── ei_kissfft_impl.h │ │ │ ├── IterativeSolvers │ │ │ ├── CMakeLists.txt │ │ │ ├── ConstrainedConjGrad.h │ │ │ ├── DGMRES.h │ │ │ ├── GMRES.h │ │ │ ├── IncompleteCholesky.h │ │ │ ├── IncompleteLU.h │ │ │ ├── IterationController.h │ │ │ ├── MINRES.h │ │ │ └── Scaling.h │ │ │ ├── KroneckerProduct │ │ │ ├── CMakeLists.txt │ │ │ └── KroneckerTensorProduct.h │ │ │ ├── LevenbergMarquardt │ │ │ ├── CMakeLists.txt │ │ │ ├── CopyrightMINPACK.txt │ │ │ ├── LMcovar.h │ │ │ ├── LMonestep.h │ │ │ ├── LMpar.h │ │ │ ├── LMqrsolv.h │ │ │ └── LevenbergMarquardt.h │ │ │ ├── MatrixFunctions │ │ │ ├── CMakeLists.txt │ │ │ ├── MatrixExponential.h │ │ │ ├── MatrixFunction.h │ │ │ ├── MatrixFunctionAtomic.h │ │ │ ├── MatrixLogarithm.h │ │ │ ├── MatrixPower.h │ │ │ ├── MatrixSquareRoot.h │ │ │ └── StemFunction.h │ │ │ ├── MoreVectorization │ │ │ ├── CMakeLists.txt │ │ │ └── MathFunctions.h │ │ │ ├── NonLinearOptimization │ │ │ ├── CMakeLists.txt │ │ │ ├── HybridNonLinearSolver.h │ │ │ ├── LevenbergMarquardt.h │ │ │ ├── chkder.h │ │ │ ├── covar.h │ │ │ ├── dogleg.h │ │ │ ├── fdjac1.h │ │ │ ├── lmpar.h │ │ │ ├── qrsolv.h │ │ │ ├── r1mpyq.h │ │ │ ├── r1updt.h │ │ │ └── rwupdt.h │ │ │ ├── NumericalDiff │ │ │ ├── CMakeLists.txt │ │ │ └── NumericalDiff.h │ │ │ ├── Polynomials │ │ │ ├── CMakeLists.txt │ │ │ ├── Companion.h │ │ │ ├── PolynomialSolver.h │ │ │ └── PolynomialUtils.h │ │ │ ├── SVD │ │ │ ├── BDCSVD.h │ │ │ ├── CMakeLists.txt │ │ │ ├── JacobiSVD.h │ │ │ ├── SVDBase.h │ │ │ ├── TODOBdcsvd.txt │ │ │ └── doneInBDCSVD.txt │ │ │ ├── Skyline │ │ │ ├── CMakeLists.txt │ │ │ ├── SkylineInplaceLU.h │ │ │ ├── SkylineMatrix.h │ │ │ ├── SkylineMatrixBase.h │ │ │ ├── SkylineProduct.h │ │ │ ├── SkylineStorage.h │ │ │ └── SkylineUtil.h │ │ │ ├── SparseExtra │ │ │ ├── BlockOfDynamicSparseMatrix.h │ │ │ ├── CMakeLists.txt │ │ │ ├── DynamicSparseMatrix.h │ │ │ ├── MarketIO.h │ │ │ ├── MatrixMarketIterator.h │ │ │ └── RandomSetter.h │ │ │ └── Splines │ │ │ ├── CMakeLists.txt │ │ │ ├── Spline.h │ │ │ ├── SplineFitting.h │ │ │ └── SplineFwd.h │ │ ├── README.txt │ │ ├── bench │ │ └── bench_svd.cpp │ │ ├── doc │ │ ├── CMakeLists.txt │ │ ├── Overview.dox │ │ ├── eigendoxy_layout.xml.in │ │ ├── examples │ │ │ ├── BVH_Example.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── FFT.cpp │ │ │ ├── MatrixExponential.cpp │ │ │ ├── MatrixFunction.cpp │ │ │ ├── MatrixLogarithm.cpp │ │ │ ├── MatrixPower.cpp │ │ │ ├── MatrixPower_optimal.cpp │ │ │ ├── MatrixSine.cpp │ │ │ ├── MatrixSinh.cpp │ │ │ ├── MatrixSquareRoot.cpp │ │ │ ├── PolynomialSolver1.cpp │ │ │ └── PolynomialUtils1.cpp │ │ └── snippets │ │ │ └── CMakeLists.txt │ │ └── test │ │ ├── BVH.cpp │ │ ├── CMakeLists.txt │ │ ├── FFT.cpp │ │ ├── FFTW.cpp │ │ ├── NonLinearOptimization.cpp │ │ ├── NumericalDiff.cpp │ │ ├── alignedvector3.cpp │ │ ├── autodiff.cpp │ │ ├── bdcsvd.cpp │ │ ├── dgmres.cpp │ │ ├── forward_adolc.cpp │ │ ├── gmres.cpp │ │ ├── jacobisvd.cpp │ │ ├── kronecker_product.cpp │ │ ├── levenberg_marquardt.cpp │ │ ├── matrix_exponential.cpp │ │ ├── matrix_function.cpp │ │ ├── matrix_functions.h │ │ ├── matrix_power.cpp │ │ ├── matrix_square_root.cpp │ │ ├── minres.cpp │ │ ├── mpreal │ │ └── mpreal.h │ │ ├── mpreal_support.cpp │ │ ├── openglsupport.cpp │ │ ├── polynomialsolver.cpp │ │ ├── polynomialutils.cpp │ │ ├── sparse_extra.cpp │ │ ├── splines.cpp │ │ └── svd_common.h ├── libigl │ ├── .gitignore │ ├── .gitmodules │ ├── .mailmap │ ├── ACKNOWLEDGEMENTS │ ├── LICENSE │ ├── LICENSE.GPL │ ├── LICENSE.MPL2 │ ├── README.md │ ├── RELEASE_HISTORY.md │ ├── VERSION.txt │ ├── before-submitting-pull-request.md │ ├── exclude.lst │ ├── external │ │ ├── AntTweakBar │ │ │ ├── AntTweakBar_Doc.url │ │ │ ├── ChangeLog.txt │ │ │ ├── Clean.bat │ │ │ ├── License.txt │ │ │ ├── Readme.txt │ │ │ ├── examples │ │ │ │ ├── Examples_VS2008.sln │ │ │ │ ├── Examples_VS2012.sln │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.osx │ │ │ │ ├── Readme.txt │ │ │ │ ├── SDL-1.3.lib │ │ │ │ ├── SDL.lib │ │ │ │ ├── TwAdvanced1.cpp │ │ │ │ ├── TwAdvanced1.vcproj │ │ │ │ ├── TwAdvanced1.vcxproj │ │ │ │ ├── TwCopyDLL.vcproj │ │ │ │ ├── TwCopyDLL.vcxproj │ │ │ │ ├── TwDualGLUT.c │ │ │ │ ├── TwDualGLUT.vcproj │ │ │ │ ├── TwDualGLUT.vcxproj │ │ │ │ ├── TwGLCoreSDL.c │ │ │ │ ├── TwGLCoreSDL.vcproj │ │ │ │ ├── TwGLCoreSDL.vcxproj │ │ │ │ ├── TwSimpleDX10.cpp │ │ │ │ ├── TwSimpleDX10.vcproj │ │ │ │ ├── TwSimpleDX10.vcxproj │ │ │ │ ├── TwSimpleDX11.cpp │ │ │ │ ├── TwSimpleDX11.hlsl │ │ │ │ ├── TwSimpleDX11.vcproj │ │ │ │ ├── TwSimpleDX11.vcxproj │ │ │ │ ├── TwSimpleDX9.cpp │ │ │ │ ├── TwSimpleDX9.vcproj │ │ │ │ ├── TwSimpleDX9.vcxproj │ │ │ │ ├── TwSimpleGLFW.c │ │ │ │ ├── TwSimpleGLFW.vcproj │ │ │ │ ├── TwSimpleGLFW.vcxproj │ │ │ │ ├── TwSimpleGLUT.c │ │ │ │ ├── TwSimpleGLUT.vcproj │ │ │ │ ├── TwSimpleGLUT.vcxproj │ │ │ │ ├── TwSimpleSDL.c │ │ │ │ ├── TwSimpleSDL.vcproj │ │ │ │ ├── TwSimpleSDL.vcxproj │ │ │ │ ├── TwSimpleSFML.cpp │ │ │ │ ├── TwSimpleSFML.vcproj │ │ │ │ ├── TwString.cpp │ │ │ │ ├── TwString.vcproj │ │ │ │ ├── TwString.vcxproj │ │ │ │ ├── bin32 │ │ │ │ │ ├── AntTweakBar.dll │ │ │ │ │ ├── GLFW.dll │ │ │ │ │ ├── Readme.txt │ │ │ │ │ ├── SDL-1.3.dll │ │ │ │ │ ├── SDL.dll │ │ │ │ │ └── glut32.dll │ │ │ │ ├── bin64 │ │ │ │ │ ├── AntTweakBar64.dll │ │ │ │ │ ├── Readme.txt │ │ │ │ │ └── glut64.dll │ │ │ │ ├── d3d10vs2003.h │ │ │ │ ├── glfw.h │ │ │ │ ├── glfwdll.lib │ │ │ │ ├── glut32.lib │ │ │ │ ├── glut64.lib │ │ │ │ ├── sfml-graphics-s.lib │ │ │ │ ├── sfml-system-s.lib │ │ │ │ └── sfml-window-s.lib │ │ │ ├── include │ │ │ │ └── AntTweakBar.h │ │ │ └── src │ │ │ │ ├── AntPerfTimer.h │ │ │ │ ├── AntTweakBar.rc │ │ │ │ ├── AntTweakBar.vcproj │ │ │ │ ├── AntTweakBar.vcxproj │ │ │ │ ├── AntTweakBar.vcxproj.filters │ │ │ │ ├── AntTweakBar_VS2008.sln │ │ │ │ ├── AntTweakBar_VS2012.sln │ │ │ │ ├── LoadOGL.cpp │ │ │ │ ├── LoadOGL.h │ │ │ │ ├── LoadOGLCore.cpp │ │ │ │ ├── LoadOGLCore.h │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.mesa.igl │ │ │ │ ├── Makefile.osx │ │ │ │ ├── Makefile.osx.igl │ │ │ │ ├── MiniGLFW.h │ │ │ │ ├── MiniGLUT.h │ │ │ │ ├── MiniSDL12.h │ │ │ │ ├── MiniSDL13.h │ │ │ │ ├── MiniSFML16.h │ │ │ │ ├── Readme.txt │ │ │ │ ├── TwBar.cpp │ │ │ │ ├── TwBar.h │ │ │ │ ├── TwColors.cpp │ │ │ │ ├── TwColors.h │ │ │ │ ├── TwDirect3D10.cpp │ │ │ │ ├── TwDirect3D10.h │ │ │ │ ├── TwDirect3D11.cpp │ │ │ │ ├── TwDirect3D11.h │ │ │ │ ├── TwDirect3D11.hlsl │ │ │ │ ├── TwDirect3D9.cpp │ │ │ │ ├── TwDirect3D9.h │ │ │ │ ├── TwEventGLFW.c │ │ │ │ ├── TwEventGLUT.c │ │ │ │ ├── TwEventSDL.c │ │ │ │ ├── TwEventSDL12.c │ │ │ │ ├── TwEventSDL13.c │ │ │ │ ├── TwEventSFML.cpp │ │ │ │ ├── TwEventWin.c │ │ │ │ ├── TwEventX11.c │ │ │ │ ├── TwFonts.cpp │ │ │ │ ├── TwFonts.h │ │ │ │ ├── TwGraph.h │ │ │ │ ├── TwMgr.cpp │ │ │ │ ├── TwMgr.h │ │ │ │ ├── TwOpenGL.cpp │ │ │ │ ├── TwOpenGL.h │ │ │ │ ├── TwOpenGLCore.cpp │ │ │ │ ├── TwOpenGLCore.h │ │ │ │ ├── TwPrecomp.cpp │ │ │ │ ├── TwPrecomp.h │ │ │ │ ├── d3d10vs2003.h │ │ │ │ ├── res │ │ │ │ ├── FontChars.txt │ │ │ │ ├── FontFixed1.pgm │ │ │ │ ├── FontLargeAA.pgm │ │ │ │ ├── FontNormal.pgm │ │ │ │ ├── FontNormalAA.pgm │ │ │ │ ├── FontSmall.pgm │ │ │ │ ├── RuFont.txt │ │ │ │ ├── TwXCursors.h │ │ │ │ ├── cur00000.cur │ │ │ │ ├── cur00001.cur │ │ │ │ ├── cur00002.cur │ │ │ │ ├── cur00003.cur │ │ │ │ ├── cur00004.cur │ │ │ │ ├── cur00005.cur │ │ │ │ ├── cur00006.cur │ │ │ │ ├── cur00007.cur │ │ │ │ ├── cur00008.cur │ │ │ │ ├── cur00009.cur │ │ │ │ ├── cur00010.cur │ │ │ │ ├── cur00011.cur │ │ │ │ ├── cur00012.cur │ │ │ │ ├── cur00013.cur │ │ │ │ ├── curs00.pbm │ │ │ │ ├── curs01.pbm │ │ │ │ ├── curs02.pbm │ │ │ │ ├── curs03.pbm │ │ │ │ ├── curs04.pbm │ │ │ │ ├── curs05.pbm │ │ │ │ ├── curs06.pbm │ │ │ │ ├── curs07.pbm │ │ │ │ ├── curs08.pbm │ │ │ │ ├── curs09.pbm │ │ │ │ ├── curs10.pbm │ │ │ │ ├── curs11.pbm │ │ │ │ ├── curs12.pbm │ │ │ │ ├── curs13.pbm │ │ │ │ ├── mask00.pbm │ │ │ │ ├── mask01.pbm │ │ │ │ ├── mask02.pbm │ │ │ │ ├── mask03.pbm │ │ │ │ ├── mask04.pbm │ │ │ │ ├── mask05.pbm │ │ │ │ ├── mask06.pbm │ │ │ │ ├── mask07.pbm │ │ │ │ ├── mask08.pbm │ │ │ │ ├── mask09.pbm │ │ │ │ ├── mask10.pbm │ │ │ │ ├── mask11.pbm │ │ │ │ ├── mask12.pbm │ │ │ │ └── mask13.pbm │ │ │ │ └── resource.h │ │ ├── README.md │ │ ├── cork │ │ │ ├── .gitignore │ │ │ ├── COPYRIGHT │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── makeConstants │ │ │ ├── samples │ │ │ │ ├── ballA.off │ │ │ │ └── ballB.off │ │ │ ├── src │ │ │ │ ├── accel │ │ │ │ │ └── aabvh.h │ │ │ │ ├── cork.cpp │ │ │ │ ├── cork.h │ │ │ │ ├── file_formats │ │ │ │ │ ├── files.cpp │ │ │ │ │ ├── files.h │ │ │ │ │ ├── ifs.cpp │ │ │ │ │ └── off.cpp │ │ │ │ ├── isct │ │ │ │ │ ├── absext4.h │ │ │ │ │ ├── empty3d.cpp │ │ │ │ │ ├── empty3d.h │ │ │ │ │ ├── ext4.h │ │ │ │ │ ├── fixext4.h │ │ │ │ │ ├── fixint.h │ │ │ │ │ ├── gmpext4.h │ │ │ │ │ ├── quantization.cpp │ │ │ │ │ ├── quantization.h │ │ │ │ │ ├── triangle.c │ │ │ │ │ ├── triangle.h │ │ │ │ │ └── unsafeRayTriIsct.h │ │ │ │ ├── main.cpp │ │ │ │ ├── math │ │ │ │ │ ├── bbox.h │ │ │ │ │ ├── ray.h │ │ │ │ │ └── vec.h │ │ │ │ ├── mesh │ │ │ │ │ ├── mesh.bool.tpp │ │ │ │ │ ├── mesh.decl.h │ │ │ │ │ ├── mesh.h │ │ │ │ │ ├── mesh.isct.tpp │ │ │ │ │ ├── mesh.remesh.tpp │ │ │ │ │ ├── mesh.topoCache.tpp │ │ │ │ │ └── mesh.tpp │ │ │ │ ├── off2obj.cpp │ │ │ │ ├── rawmesh │ │ │ │ │ ├── rawMesh.h │ │ │ │ │ └── rawMesh.tpp │ │ │ │ └── util │ │ │ │ │ ├── iterPool.h │ │ │ │ │ ├── log.cpp │ │ │ │ │ ├── memPool.h │ │ │ │ │ ├── prelude.h │ │ │ │ │ ├── shortVec.h │ │ │ │ │ ├── timer.cpp │ │ │ │ │ └── unionFind.h │ │ │ └── win │ │ │ │ └── wincork │ │ │ │ ├── wincork.sln │ │ │ │ ├── wincork.vcxproj │ │ │ │ └── wincork.vcxproj.filters │ │ ├── libpng │ │ │ ├── .deps │ │ │ │ ├── png.Plo │ │ │ │ ├── pngerror.Plo │ │ │ │ ├── pngget.Plo │ │ │ │ ├── pngmem.Plo │ │ │ │ ├── pngpread.Plo │ │ │ │ ├── pngread.Plo │ │ │ │ ├── pngrio.Plo │ │ │ │ ├── pngrtran.Plo │ │ │ │ ├── pngrutil.Plo │ │ │ │ ├── pngset.Plo │ │ │ │ ├── pngtest.Po │ │ │ │ ├── pngtrans.Plo │ │ │ │ ├── pngwio.Plo │ │ │ │ ├── pngwrite.Plo │ │ │ │ ├── pngwtran.Plo │ │ │ │ └── pngwutil.Plo │ │ │ ├── ANNOUNCE │ │ │ ├── CHANGES │ │ │ ├── CMakeLists.txt │ │ │ ├── INSTALL │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── TODO │ │ │ ├── aclocal.m4 │ │ │ ├── arm │ │ │ │ ├── .deps │ │ │ │ │ ├── arm_init.Plo │ │ │ │ │ ├── filter_neon.Plo │ │ │ │ │ └── filter_neon_intrinsics.Plo │ │ │ │ ├── arm_init.c │ │ │ │ ├── filter_neon.S │ │ │ │ └── filter_neon_intrinsics.c │ │ │ ├── autogen.sh │ │ │ ├── compile │ │ │ ├── config.guess │ │ │ ├── config.h │ │ │ ├── config.h.in │ │ │ ├── config.status │ │ │ ├── config.sub │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── contrib │ │ │ │ ├── README.txt │ │ │ │ ├── arm-neon │ │ │ │ │ ├── README │ │ │ │ │ ├── android-ndk.c │ │ │ │ │ ├── linux-auxv.c │ │ │ │ │ └── linux.c │ │ │ │ ├── conftest │ │ │ │ │ ├── README │ │ │ │ │ ├── read.dfa │ │ │ │ │ ├── s_read.dfa │ │ │ │ │ ├── s_write.dfa │ │ │ │ │ ├── simple.dfa │ │ │ │ │ └── write.dfa │ │ │ │ ├── examples │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── iccfrompng.c │ │ │ │ │ ├── pngpixel.c │ │ │ │ │ └── pngtopng.c │ │ │ │ ├── gregbook │ │ │ │ │ ├── COPYING │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile.mingw32 │ │ │ │ │ ├── Makefile.sgi │ │ │ │ │ ├── Makefile.unx │ │ │ │ │ ├── Makefile.w32 │ │ │ │ │ ├── README │ │ │ │ │ ├── makevms.com │ │ │ │ │ ├── readpng.c │ │ │ │ │ ├── readpng.h │ │ │ │ │ ├── readpng2.c │ │ │ │ │ ├── readpng2.h │ │ │ │ │ ├── readppm.c │ │ │ │ │ ├── rpng-win.c │ │ │ │ │ ├── rpng-x.c │ │ │ │ │ ├── rpng2-win.c │ │ │ │ │ ├── rpng2-x.c │ │ │ │ │ ├── toucan.png │ │ │ │ │ ├── wpng.c │ │ │ │ │ ├── writepng.c │ │ │ │ │ └── writepng.h │ │ │ │ ├── libtests │ │ │ │ │ ├── .deps │ │ │ │ │ │ ├── .dirstamp │ │ │ │ │ │ ├── pngimage.Po │ │ │ │ │ │ ├── pngstest.Po │ │ │ │ │ │ ├── pngunknown.Po │ │ │ │ │ │ └── pngvalid.Po │ │ │ │ │ ├── .dirstamp │ │ │ │ │ ├── fakepng.c │ │ │ │ │ ├── gentests.sh │ │ │ │ │ ├── makepng.c │ │ │ │ │ ├── pngimage.c │ │ │ │ │ ├── pngstest.c │ │ │ │ │ ├── pngunknown.c │ │ │ │ │ ├── pngvalid.c │ │ │ │ │ ├── readpng.c │ │ │ │ │ ├── tarith.c │ │ │ │ │ └── timepng.c │ │ │ │ ├── pngminim │ │ │ │ │ ├── README │ │ │ │ │ ├── decoder │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ ├── pngusr.dfa │ │ │ │ │ │ └── pngusr.h │ │ │ │ │ ├── encoder │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ ├── pngusr.dfa │ │ │ │ │ │ └── pngusr.h │ │ │ │ │ └── preader │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ ├── pngusr.dfa │ │ │ │ │ │ └── pngusr.h │ │ │ │ ├── pngminus │ │ │ │ │ ├── README │ │ │ │ │ ├── makefile.std │ │ │ │ │ ├── makefile.tc3 │ │ │ │ │ ├── makevms.com │ │ │ │ │ ├── png2pnm.bat │ │ │ │ │ ├── png2pnm.c │ │ │ │ │ ├── png2pnm.sh │ │ │ │ │ ├── pngminus.bat │ │ │ │ │ ├── pngminus.sh │ │ │ │ │ ├── pnm2png.bat │ │ │ │ │ ├── pnm2png.c │ │ │ │ │ └── pnm2png.sh │ │ │ │ ├── pngsuite │ │ │ │ │ ├── README │ │ │ │ │ ├── basn0g01.png │ │ │ │ │ ├── basn0g02.png │ │ │ │ │ ├── basn0g04.png │ │ │ │ │ ├── basn0g08.png │ │ │ │ │ ├── basn0g16.png │ │ │ │ │ ├── basn2c08.png │ │ │ │ │ ├── basn2c16.png │ │ │ │ │ ├── basn3p01.png │ │ │ │ │ ├── basn3p02.png │ │ │ │ │ ├── basn3p04.png │ │ │ │ │ ├── basn3p08.png │ │ │ │ │ ├── basn4a08.png │ │ │ │ │ ├── basn4a16.png │ │ │ │ │ ├── basn6a08.png │ │ │ │ │ ├── basn6a16.png │ │ │ │ │ ├── ftbbn0g01.png │ │ │ │ │ ├── ftbbn0g02.png │ │ │ │ │ ├── ftbbn0g04.png │ │ │ │ │ ├── ftbbn2c16.png │ │ │ │ │ ├── ftbbn3p08.png │ │ │ │ │ ├── ftbgn2c16.png │ │ │ │ │ ├── ftbgn3p08.png │ │ │ │ │ ├── ftbrn2c08.png │ │ │ │ │ ├── ftbwn0g16.png │ │ │ │ │ ├── ftbwn3p08.png │ │ │ │ │ ├── ftbyn3p08.png │ │ │ │ │ ├── ftp0n0g08.png │ │ │ │ │ ├── ftp0n2c08.png │ │ │ │ │ ├── ftp0n3p08.png │ │ │ │ │ └── ftp1n3p08.png │ │ │ │ ├── tools │ │ │ │ │ ├── .deps │ │ │ │ │ │ ├── .dirstamp │ │ │ │ │ │ ├── png-fix-itxt.Po │ │ │ │ │ │ └── pngfix.Po │ │ │ │ │ ├── .dirstamp │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── checksum-icc.c │ │ │ │ │ ├── chkfmt │ │ │ │ │ ├── cvtcolor.c │ │ │ │ │ ├── intgamma.sh │ │ │ │ │ ├── makesRGB.c │ │ │ │ │ ├── png-fix-itxt.c │ │ │ │ │ ├── pngfix.c │ │ │ │ │ └── sRGB.h │ │ │ │ └── visupng │ │ │ │ │ ├── PngFile.c │ │ │ │ │ ├── PngFile.h │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── VisualPng.c │ │ │ │ │ ├── VisualPng.dsp │ │ │ │ │ ├── VisualPng.dsw │ │ │ │ │ ├── VisualPng.ico │ │ │ │ │ ├── VisualPng.png │ │ │ │ │ ├── VisualPng.rc │ │ │ │ │ ├── cexcept.h │ │ │ │ │ └── resource.h │ │ │ ├── depcomp │ │ │ ├── example.c │ │ │ ├── install-sh │ │ │ ├── libpng-config │ │ │ ├── libpng-config.in │ │ │ ├── libpng-manual.txt │ │ │ ├── libpng.3 │ │ │ ├── libpng.pc │ │ │ ├── libpng.pc.in │ │ │ ├── libpngpf.3 │ │ │ ├── libtool │ │ │ ├── ltmain.sh │ │ │ ├── missing │ │ │ ├── png.5 │ │ │ ├── png.c │ │ │ ├── png.h │ │ │ ├── pngbar.jpg │ │ │ ├── pngbar.png │ │ │ ├── pngconf.h │ │ │ ├── pngdebug.h │ │ │ ├── pngerror.c │ │ │ ├── pngget.c │ │ │ ├── pnginfo.h │ │ │ ├── pnglibconf.h │ │ │ ├── pngmem.c │ │ │ ├── pngnow.png │ │ │ ├── pngpread.c │ │ │ ├── pngpriv.h │ │ │ ├── pngread.c │ │ │ ├── pngrio.c │ │ │ ├── pngrtran.c │ │ │ ├── pngrutil.c │ │ │ ├── pngset.c │ │ │ ├── pngstruct.h │ │ │ ├── pngtest.c │ │ │ ├── pngtest.png │ │ │ ├── pngtrans.c │ │ │ ├── pngusr.dfa │ │ │ ├── pngwio.c │ │ │ ├── pngwrite.c │ │ │ ├── pngwtran.c │ │ │ ├── pngwutil.c │ │ │ ├── projects │ │ │ │ ├── owatcom │ │ │ │ │ ├── libpng.tgt │ │ │ │ │ ├── libpng.wpj │ │ │ │ │ ├── pngconfig.mak │ │ │ │ │ ├── pngstest.tgt │ │ │ │ │ ├── pngtest.tgt │ │ │ │ │ └── pngvalid.tgt │ │ │ │ ├── visualc71 │ │ │ │ │ ├── PRJ0041.mak │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── README_zlib.txt │ │ │ │ │ ├── libpng.sln │ │ │ │ │ ├── libpng.vcproj │ │ │ │ │ ├── pngtest.vcproj │ │ │ │ │ └── zlib.vcproj │ │ │ │ └── vstudio │ │ │ │ │ ├── WARNING │ │ │ │ │ ├── libpng │ │ │ │ │ └── libpng.vcxproj │ │ │ │ │ ├── pnglibconf │ │ │ │ │ └── pnglibconf.vcxproj │ │ │ │ │ ├── pngstest │ │ │ │ │ └── pngstest.vcxproj │ │ │ │ │ ├── pngtest │ │ │ │ │ └── pngtest.vcxproj │ │ │ │ │ ├── pngunknown │ │ │ │ │ └── pngunknown.vcxproj │ │ │ │ │ ├── pngvalid │ │ │ │ │ └── pngvalid.vcxproj │ │ │ │ │ ├── readme.txt │ │ │ │ │ ├── vstudio.sln │ │ │ │ │ ├── zlib.props │ │ │ │ │ └── zlib │ │ │ │ │ └── zlib.vcxproj │ │ │ ├── scripts │ │ │ │ ├── README.txt │ │ │ │ ├── SCOPTIONS.ppc │ │ │ │ ├── checksym.awk │ │ │ │ ├── def.c │ │ │ │ ├── descrip.mms │ │ │ │ ├── dfn.awk │ │ │ │ ├── intprefix.c │ │ │ │ ├── libpng-config-body.in │ │ │ │ ├── libpng-config-head.in │ │ │ │ ├── libpng.pc.in │ │ │ │ ├── libtool.m4 │ │ │ │ ├── ltoptions.m4 │ │ │ │ ├── ltsugar.m4 │ │ │ │ ├── ltversion.m4 │ │ │ │ ├── lt~obsolete.m4 │ │ │ │ ├── macro.lst │ │ │ │ ├── makefile.32sunu │ │ │ │ ├── makefile.64sunu │ │ │ │ ├── makefile.acorn │ │ │ │ ├── makefile.aix │ │ │ │ ├── makefile.amiga │ │ │ │ ├── makefile.atari │ │ │ │ ├── makefile.bc32 │ │ │ │ ├── makefile.beos │ │ │ │ ├── makefile.bor │ │ │ │ ├── makefile.cegcc │ │ │ │ ├── makefile.darwin │ │ │ │ ├── makefile.dec │ │ │ │ ├── makefile.dj2 │ │ │ │ ├── makefile.freebsd │ │ │ │ ├── makefile.gcc │ │ │ │ ├── makefile.hp64 │ │ │ │ ├── makefile.hpgcc │ │ │ │ ├── makefile.hpux │ │ │ │ ├── makefile.ibmc │ │ │ │ ├── makefile.intel │ │ │ │ ├── makefile.knr │ │ │ │ ├── makefile.linux │ │ │ │ ├── makefile.mips │ │ │ │ ├── makefile.msc │ │ │ │ ├── makefile.msys │ │ │ │ ├── makefile.ne12bsd │ │ │ │ ├── makefile.netbsd │ │ │ │ ├── makefile.openbsd │ │ │ │ ├── makefile.sco │ │ │ │ ├── makefile.sggcc │ │ │ │ ├── makefile.sgi │ │ │ │ ├── makefile.so9 │ │ │ │ ├── makefile.solaris │ │ │ │ ├── makefile.solaris-x86 │ │ │ │ ├── makefile.std │ │ │ │ ├── makefile.sunos │ │ │ │ ├── makefile.tc3 │ │ │ │ ├── makefile.vcwin32 │ │ │ │ ├── makevms.com │ │ │ │ ├── options.awk │ │ │ │ ├── pnglibconf.dfa │ │ │ │ ├── pnglibconf.h.prebuilt │ │ │ │ ├── pnglibconf.mak │ │ │ │ ├── pngwin.rc │ │ │ │ ├── prefix.c │ │ │ │ ├── smakefile.ppc │ │ │ │ ├── sym.c │ │ │ │ ├── symbols.c │ │ │ │ ├── symbols.def │ │ │ │ └── vers.c │ │ │ ├── stamp-h1 │ │ │ ├── test-driver │ │ │ └── tests │ │ │ │ ├── pngimage-full │ │ │ │ ├── pngimage-quick │ │ │ │ ├── pngstest │ │ │ │ ├── pngstest-0g01 │ │ │ │ ├── pngstest-0g02 │ │ │ │ ├── pngstest-0g04 │ │ │ │ ├── pngstest-0g08 │ │ │ │ ├── pngstest-0g16 │ │ │ │ ├── pngstest-2c08 │ │ │ │ ├── pngstest-2c16 │ │ │ │ ├── pngstest-3p01 │ │ │ │ ├── pngstest-3p02 │ │ │ │ ├── pngstest-3p04 │ │ │ │ ├── pngstest-3p08 │ │ │ │ ├── pngstest-4a08 │ │ │ │ ├── pngstest-4a16 │ │ │ │ ├── pngstest-6a08 │ │ │ │ ├── pngstest-6a16 │ │ │ │ ├── pngstest-error │ │ │ │ ├── pngtest │ │ │ │ ├── pngunknown-IDAT │ │ │ │ ├── pngunknown-discard │ │ │ │ ├── pngunknown-if-safe │ │ │ │ ├── pngunknown-sAPI │ │ │ │ ├── pngunknown-sTER │ │ │ │ ├── pngunknown-save │ │ │ │ ├── pngunknown-vpAg │ │ │ │ ├── pngvalid-gamma-16-to-8 │ │ │ │ ├── pngvalid-gamma-alpha-mode │ │ │ │ ├── pngvalid-gamma-background │ │ │ │ ├── pngvalid-gamma-expand16-alpha-mode │ │ │ │ ├── pngvalid-gamma-expand16-background │ │ │ │ ├── pngvalid-gamma-expand16-transform │ │ │ │ ├── pngvalid-gamma-sbit │ │ │ │ ├── pngvalid-gamma-threshold │ │ │ │ ├── pngvalid-gamma-transform │ │ │ │ ├── pngvalid-progressive-interlace-size │ │ │ │ ├── pngvalid-progressive-interlace-standard │ │ │ │ ├── pngvalid-progressive-interlace-transform │ │ │ │ ├── pngvalid-progressive-standard │ │ │ │ └── pngvalid-standard │ │ ├── lim │ │ │ ├── DeformableMesh.h │ │ │ ├── Dirichlet_LIMSolver2D.cpp │ │ │ ├── Dirichlet_LIMSolver2D.h │ │ │ ├── Dirichlet_LIMSolver3D.cpp │ │ │ ├── Dirichlet_LIMSolver3D.h │ │ │ ├── GreenStrain_LIMSolver2D.cpp │ │ │ ├── GreenStrain_LIMSolver2D.h │ │ │ ├── GreenStrain_LIMSolver3D.cpp │ │ │ ├── GreenStrain_LIMSolver3D.h │ │ │ ├── Identity_LIMSolver2D.cpp │ │ │ ├── Identity_LIMSolver2D.h │ │ │ ├── Identity_LIMSolver3D.cpp │ │ │ ├── Identity_LIMSolver3D.h │ │ │ ├── LGARAP_LIMSolver2D.cpp │ │ │ ├── LGARAP_LIMSolver2D.h │ │ │ ├── LGARAP_LIMSolver3D.cpp │ │ │ ├── LGARAP_LIMSolver3D.h │ │ │ ├── LIMSolver.cpp │ │ │ ├── LIMSolver.h │ │ │ ├── LIMSolver2D.cpp │ │ │ ├── LIMSolver2D.h │ │ │ ├── LIMSolver3D.cpp │ │ │ ├── LIMSolver3D.h │ │ │ ├── LIMSolverInterface.h │ │ │ ├── LSConformal_LIMSolver2D.cpp │ │ │ ├── LSConformal_LIMSolver2D.h │ │ │ ├── Laplacian_LIMSolver2D.cpp │ │ │ ├── Laplacian_LIMSolver2D.h │ │ │ ├── Laplacian_LIMSolver3D.cpp │ │ │ ├── Laplacian_LIMSolver3D.h │ │ │ ├── NMSolver.cpp │ │ │ ├── NMSolver.h │ │ │ ├── Poisson_LIMSolver2D.cpp │ │ │ ├── Poisson_LIMSolver2D.h │ │ │ ├── TetrahedronMesh.cpp │ │ │ ├── TetrahedronMesh.h │ │ │ ├── TriangleMesh.cpp │ │ │ ├── TriangleMesh.h │ │ │ ├── UniformLaplacian_LIMSolver2D.cpp │ │ │ ├── UniformLaplacian_LIMSolver2D.h │ │ │ ├── UniformLaplacian_LIMSolver3D.cpp │ │ │ ├── UniformLaplacian_LIMSolver3D.h │ │ │ └── readme.txt │ │ ├── tetgen │ │ │ ├── LICENSE │ │ │ ├── Makefile.igl │ │ │ ├── README │ │ │ ├── example.poly │ │ │ ├── header.txt │ │ │ ├── makefile │ │ │ ├── predicates.cxx │ │ │ ├── split.rb │ │ │ ├── src │ │ │ │ ├── behavior.cxx │ │ │ │ ├── constrained.cxx │ │ │ │ ├── delaunay.cxx │ │ │ │ ├── flip.cxx │ │ │ │ ├── geom.cxx │ │ │ │ ├── io.cxx │ │ │ │ ├── main.cxx │ │ │ │ ├── mempool.cxx │ │ │ │ ├── meshstat.cxx │ │ │ │ ├── optimize.cxx │ │ │ │ ├── output.cxx │ │ │ │ ├── reconstruct.cxx │ │ │ │ ├── refine.cxx │ │ │ │ ├── steiner.cxx │ │ │ │ └── surface.cxx │ │ │ ├── tetgen.cxx │ │ │ └── tetgen.h │ │ ├── tinyxml2 │ │ │ ├── CMakeLists.txt │ │ │ ├── dox │ │ │ ├── readme.md │ │ │ ├── resources │ │ │ │ ├── dream.xml │ │ │ │ ├── empty.xml │ │ │ │ ├── utf8test.xml │ │ │ │ └── utf8testverify.xml │ │ │ ├── setversion.py │ │ │ ├── tinyxml2.cpp │ │ │ ├── tinyxml2.h │ │ │ ├── tinyxml2.pc.in │ │ │ ├── tinyxml2 │ │ │ │ ├── tinyxml2-cbp │ │ │ │ │ ├── README │ │ │ │ │ └── tinyxml2-cbp.cbp │ │ │ │ ├── tinyxml2.sln │ │ │ │ ├── tinyxml2.vcxproj │ │ │ │ ├── tinyxml2.vcxproj.filters │ │ │ │ └── tinyxml2.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ └── xmltest.cpp │ │ ├── triangle │ │ │ ├── A.poly │ │ │ ├── README │ │ │ ├── makefile │ │ │ ├── showme.c │ │ │ ├── triangle.c │ │ │ ├── triangle.h │ │ │ └── tricall.c │ │ └── yimg │ │ │ ├── Makefile │ │ │ ├── Makefile.Darwin │ │ │ ├── Makefile.Linux │ │ │ ├── Makefile.depend │ │ │ ├── README │ │ │ ├── YImage.cpp │ │ │ ├── YImage.hpp │ │ │ ├── sakura.png │ │ │ ├── showpng.cpp │ │ │ └── transparent.html │ ├── file-formats │ │ ├── bf.html │ │ ├── dmat.html │ │ ├── index.html │ │ ├── rbr.html │ │ ├── tgf.html │ │ └── xml.html │ ├── include │ │ └── igl │ │ │ ├── AABB.h │ │ │ ├── ARAPEnergyType.h │ │ │ ├── C_STR.h │ │ │ ├── Camera.h │ │ │ ├── ConjugateFFSolverData.h │ │ │ ├── EPS.cpp │ │ │ ├── EPS.h │ │ │ ├── HalfEdgeIterator.h │ │ │ ├── Hit.h │ │ │ ├── IO │ │ │ ├── IndexComparison.h │ │ │ ├── NormalType.h │ │ │ ├── ONE.h │ │ │ ├── PI.h │ │ │ ├── REDRUM.h │ │ │ ├── STR.h │ │ │ ├── Singular_Value_Decomposition_Givens_QR_Factorization_Kernel.hpp │ │ │ ├── Singular_Value_Decomposition_Jacobi_Conjugation_Kernel.hpp │ │ │ ├── Singular_Value_Decomposition_Kernel_Declarations.hpp │ │ │ ├── Singular_Value_Decomposition_Main_Kernel_Body.hpp │ │ │ ├── Singular_Value_Decomposition_Preamble.hpp │ │ │ ├── SolverStatus.h │ │ │ ├── SortableRow.h │ │ │ ├── Timer.h │ │ │ ├── Viewport.h │ │ │ ├── WindingNumberAABB.h │ │ │ ├── WindingNumberMethod.h │ │ │ ├── WindingNumberTree.h │ │ │ ├── ZERO.h │ │ │ ├── active_set.cpp │ │ │ ├── active_set.h │ │ │ ├── adjacency_list.cpp │ │ │ ├── adjacency_list.h │ │ │ ├── adjacency_matrix.cpp │ │ │ ├── adjacency_matrix.h │ │ │ ├── all_edges.cpp │ │ │ ├── all_edges.h │ │ │ ├── all_pairs_distances.cpp │ │ │ ├── all_pairs_distances.h │ │ │ ├── ambient_occlusion.cpp │ │ │ ├── ambient_occlusion.h │ │ │ ├── angle_bound_frame_fields.cpp │ │ │ ├── angle_bound_frame_fields.h │ │ │ ├── angular_distance.cpp │ │ │ ├── angular_distance.h │ │ │ ├── anttweakbar │ │ │ ├── ReAntTweakBar.cpp │ │ │ ├── ReAntTweakBar.h │ │ │ ├── cocoa_key_to_anttweakbar_key.cpp │ │ │ └── cocoa_key_to_anttweakbar_key.h │ │ │ ├── any_of.cpp │ │ │ ├── any_of.h │ │ │ ├── arap.cpp │ │ │ ├── arap.h │ │ │ ├── arap_dof.cpp │ │ │ ├── arap_dof.h │ │ │ ├── arap_linear_block.cpp │ │ │ ├── arap_linear_block.h │ │ │ ├── arap_rhs.cpp │ │ │ ├── arap_rhs.h │ │ │ ├── average_onto_faces.cpp │ │ │ ├── average_onto_faces.h │ │ │ ├── average_onto_vertices.cpp │ │ │ ├── average_onto_vertices.h │ │ │ ├── avg_edge_length.cpp │ │ │ ├── avg_edge_length.h │ │ │ ├── axis_angle_to_quat.cpp │ │ │ ├── axis_angle_to_quat.h │ │ │ ├── barycenter.cpp │ │ │ ├── barycenter.h │ │ │ ├── barycentric_coordinates.cpp │ │ │ ├── barycentric_coordinates.h │ │ │ ├── barycentric_to_global.cpp │ │ │ ├── barycentric_to_global.h │ │ │ ├── basename.cpp │ │ │ ├── basename.h │ │ │ ├── bbw │ │ │ ├── bbw.cpp │ │ │ └── bbw.h │ │ │ ├── bfs_orient.cpp │ │ │ ├── bfs_orient.h │ │ │ ├── biharmonic_coordinates.cpp │ │ │ ├── biharmonic_coordinates.h │ │ │ ├── bone_parents.cpp │ │ │ ├── bone_parents.h │ │ │ ├── boundary_conditions.cpp │ │ │ ├── boundary_conditions.h │ │ │ ├── boundary_facets.cpp │ │ │ ├── boundary_facets.h │ │ │ ├── boundary_loop.cpp │ │ │ ├── boundary_loop.h │ │ │ ├── bounding_box.cpp │ │ │ ├── bounding_box.h │ │ │ ├── bounding_box_diagonal.cpp │ │ │ ├── bounding_box_diagonal.h │ │ │ ├── canonical_quaternions.cpp │ │ │ ├── canonical_quaternions.h │ │ │ ├── cat.cpp │ │ │ ├── cat.h │ │ │ ├── ceil.cpp │ │ │ ├── ceil.h │ │ │ ├── centroid.cpp │ │ │ ├── centroid.h │ │ │ ├── circulation.cpp │ │ │ ├── circulation.h │ │ │ ├── collapse_edge.cpp │ │ │ ├── collapse_edge.h │ │ │ ├── collapse_small_triangles.cpp │ │ │ ├── collapse_small_triangles.h │ │ │ ├── colon.cpp │ │ │ ├── colon.h │ │ │ ├── column_to_quats.cpp │ │ │ ├── column_to_quats.h │ │ │ ├── columnize.cpp │ │ │ ├── columnize.h │ │ │ ├── comb_cross_field.cpp │ │ │ ├── comb_cross_field.h │ │ │ ├── comb_frame_field.cpp │ │ │ ├── comb_frame_field.h │ │ │ ├── comb_line_field.cpp │ │ │ ├── comb_line_field.h │ │ │ ├── comiso │ │ │ ├── frame_field.cpp │ │ │ ├── frame_field.h │ │ │ ├── miq.cpp │ │ │ ├── miq.h │ │ │ ├── nrosy.cpp │ │ │ └── nrosy.h │ │ │ ├── components.cpp │ │ │ ├── components.h │ │ │ ├── compute_frame_field_bisectors.cpp │ │ │ ├── compute_frame_field_bisectors.h │ │ │ ├── conjugate_frame_fields.cpp │ │ │ ├── conjugate_frame_fields.h │ │ │ ├── copyleft │ │ │ ├── README.md │ │ │ ├── boolean │ │ │ │ ├── BinaryWindingNumberOperations.h │ │ │ │ ├── CSGTree.h │ │ │ │ ├── MeshBooleanType.h │ │ │ │ ├── from_cork_mesh.cpp │ │ │ │ ├── from_cork_mesh.h │ │ │ │ ├── mesh_boolean.cpp │ │ │ │ ├── mesh_boolean.h │ │ │ │ ├── mesh_boolean_cork.cpp │ │ │ │ ├── mesh_boolean_cork.h │ │ │ │ ├── minkowski_sum.cpp │ │ │ │ ├── minkowski_sum.h │ │ │ │ ├── string_to_mesh_boolean_type.cpp │ │ │ │ ├── string_to_mesh_boolean_type.h │ │ │ │ ├── to_cork_mesh.cpp │ │ │ │ └── to_cork_mesh.h │ │ │ ├── cgal │ │ │ │ ├── CGAL_includes.hpp │ │ │ │ ├── RemeshSelfIntersectionsParam.h │ │ │ │ ├── SelfIntersectMesh.h │ │ │ │ ├── assign_scalar.cpp │ │ │ │ ├── assign_scalar.h │ │ │ │ ├── closest_facet.cpp │ │ │ │ ├── closest_facet.h │ │ │ │ ├── complex_to_mesh.cpp │ │ │ │ ├── complex_to_mesh.h │ │ │ │ ├── component_inside_component.cpp │ │ │ │ ├── component_inside_component.h │ │ │ │ ├── extract_cells.cpp │ │ │ │ ├── extract_cells.h │ │ │ │ ├── intersect_other.cpp │ │ │ │ ├── intersect_other.h │ │ │ │ ├── mesh_to_cgal_triangle_list.cpp │ │ │ │ ├── mesh_to_cgal_triangle_list.h │ │ │ │ ├── mesh_to_polyhedron.cpp │ │ │ │ ├── mesh_to_polyhedron.h │ │ │ │ ├── order_facets_around_edge.cpp │ │ │ │ ├── order_facets_around_edge.h │ │ │ │ ├── order_facets_around_edges.cpp │ │ │ │ ├── order_facets_around_edges.h │ │ │ │ ├── outer_element.cpp │ │ │ │ ├── outer_element.h │ │ │ │ ├── outer_facet.cpp │ │ │ │ ├── outer_facet.h │ │ │ │ ├── outer_hull.cpp │ │ │ │ ├── outer_hull.h │ │ │ │ ├── peel_outer_hull_layers.cpp │ │ │ │ ├── peel_outer_hull_layers.h │ │ │ │ ├── peel_winding_number_layers.cpp │ │ │ │ ├── peel_winding_number_layers.h │ │ │ │ ├── piecewise_constant_winding_number.cpp │ │ │ │ ├── piecewise_constant_winding_number.h │ │ │ │ ├── point_mesh_squared_distance.cpp │ │ │ │ ├── point_mesh_squared_distance.h │ │ │ │ ├── points_inside_component.cpp │ │ │ │ ├── points_inside_component.h │ │ │ │ ├── polyhedron_to_mesh.cpp │ │ │ │ ├── polyhedron_to_mesh.h │ │ │ │ ├── projected_delaunay.cpp │ │ │ │ ├── projected_delaunay.h │ │ │ │ ├── propagate_winding_numbers.cpp │ │ │ │ ├── propagate_winding_numbers.h │ │ │ │ ├── remesh_intersections.cpp │ │ │ │ ├── remesh_intersections.h │ │ │ │ ├── remesh_self_intersections.cpp │ │ │ │ ├── remesh_self_intersections.h │ │ │ │ ├── signed_distance_isosurface.cpp │ │ │ │ ├── signed_distance_isosurface.h │ │ │ │ ├── submesh_aabb_tree.cpp │ │ │ │ └── submesh_aabb_tree.h │ │ │ ├── marching_cubes.cpp │ │ │ ├── marching_cubes.h │ │ │ ├── marching_cubes_tables.h │ │ │ ├── progressive_hulls.cpp │ │ │ ├── progressive_hulls.h │ │ │ ├── progressive_hulls_cost_and_placement.cpp │ │ │ ├── progressive_hulls_cost_and_placement.h │ │ │ ├── quadprog.cpp │ │ │ ├── quadprog.h │ │ │ └── tetgen │ │ │ │ ├── README │ │ │ │ ├── cdt.cpp │ │ │ │ ├── cdt.h │ │ │ │ ├── mesh_to_tetgenio.cpp │ │ │ │ ├── mesh_to_tetgenio.h │ │ │ │ ├── mesh_with_skeleton.cpp │ │ │ │ ├── mesh_with_skeleton.h │ │ │ │ ├── read_into_tetgenio.cpp │ │ │ │ ├── read_into_tetgenio.h │ │ │ │ ├── tetgenio_to_tetmesh.cpp │ │ │ │ ├── tetgenio_to_tetmesh.h │ │ │ │ ├── tetrahedralize.cpp │ │ │ │ └── tetrahedralize.h │ │ │ ├── cotmatrix.cpp │ │ │ ├── cotmatrix.h │ │ │ ├── cotmatrix_entries.cpp │ │ │ ├── cotmatrix_entries.h │ │ │ ├── covariance_scatter_matrix.cpp │ │ │ ├── covariance_scatter_matrix.h │ │ │ ├── cross.cpp │ │ │ ├── cross.h │ │ │ ├── cross_field_missmatch.cpp │ │ │ ├── cross_field_missmatch.h │ │ │ ├── crouzeix_raviart_massmatrix.cpp │ │ │ ├── crouzeix_raviart_massmatrix.h │ │ │ ├── cumsum.cpp │ │ │ ├── cumsum.h │ │ │ ├── cut_mesh.cpp │ │ │ ├── cut_mesh.h │ │ │ ├── cut_mesh_from_singularities.cpp │ │ │ ├── cut_mesh_from_singularities.h │ │ │ ├── dated_copy.cpp │ │ │ ├── dated_copy.h │ │ │ ├── decimate.cpp │ │ │ ├── decimate.h │ │ │ ├── deform_skeleton.cpp │ │ │ ├── deform_skeleton.h │ │ │ ├── deprecated.h │ │ │ ├── diag.cpp │ │ │ ├── diag.h │ │ │ ├── dihedral_angles.cpp │ │ │ ├── dihedral_angles.h │ │ │ ├── dijkstra.cpp │ │ │ ├── dijkstra.h │ │ │ ├── directed_edge_orientations.cpp │ │ │ ├── directed_edge_orientations.h │ │ │ ├── directed_edge_parents.cpp │ │ │ ├── directed_edge_parents.h │ │ │ ├── dirname.cpp │ │ │ ├── dirname.h │ │ │ ├── dot.cpp │ │ │ ├── dot.h │ │ │ ├── dot_row.cpp │ │ │ ├── dot_row.h │ │ │ ├── doublearea.cpp │ │ │ ├── doublearea.h │ │ │ ├── dqs.cpp │ │ │ ├── dqs.h │ │ │ ├── edge_collapse_is_valid.cpp │ │ │ ├── edge_collapse_is_valid.h │ │ │ ├── edge_flaps.cpp │ │ │ ├── edge_flaps.h │ │ │ ├── edge_lengths.cpp │ │ │ ├── edge_lengths.h │ │ │ ├── edge_topology.cpp │ │ │ ├── edge_topology.h │ │ │ ├── edges.cpp │ │ │ ├── edges.h │ │ │ ├── eigs.cpp │ │ │ ├── eigs.h │ │ │ ├── embree │ │ │ ├── EmbreeIntersector.h │ │ │ ├── Embree_convenience.h │ │ │ ├── ambient_occlusion.cpp │ │ │ ├── ambient_occlusion.h │ │ │ ├── bone_heat.cpp │ │ │ ├── bone_heat.h │ │ │ ├── bone_visible.cpp │ │ │ ├── bone_visible.h │ │ │ ├── line_mesh_intersection.cpp │ │ │ ├── line_mesh_intersection.h │ │ │ ├── reorient_facets_raycast.cpp │ │ │ ├── reorient_facets_raycast.h │ │ │ ├── unproject_in_mesh.cpp │ │ │ ├── unproject_in_mesh.h │ │ │ ├── unproject_onto_mesh.cpp │ │ │ └── unproject_onto_mesh.h │ │ │ ├── example_fun.cpp │ │ │ ├── example_fun.h │ │ │ ├── exterior_edges.cpp │ │ │ ├── exterior_edges.h │ │ │ ├── extract_manifold_patches.cpp │ │ │ ├── extract_manifold_patches.h │ │ │ ├── extract_non_manifold_edge_curves.cpp │ │ │ ├── extract_non_manifold_edge_curves.h │ │ │ ├── face_areas.cpp │ │ │ ├── face_areas.h │ │ │ ├── face_occurrences.cpp │ │ │ ├── face_occurrences.h │ │ │ ├── faces_first.cpp │ │ │ ├── faces_first.h │ │ │ ├── facet_components.cpp │ │ │ ├── facet_components.h │ │ │ ├── false_barycentric_subdivision.cpp │ │ │ ├── false_barycentric_subdivision.h │ │ │ ├── field_local_global_conversions.cpp │ │ │ ├── field_local_global_conversions.h │ │ │ ├── file_contents_as_string.cpp │ │ │ ├── file_contents_as_string.h │ │ │ ├── file_dialog_open.cpp │ │ │ ├── file_dialog_open.h │ │ │ ├── file_dialog_save.cpp │ │ │ ├── file_dialog_save.h │ │ │ ├── file_exists.cpp │ │ │ ├── file_exists.h │ │ │ ├── find.cpp │ │ │ ├── find.h │ │ │ ├── find_cross_field_singularities.cpp │ │ │ ├── find_cross_field_singularities.h │ │ │ ├── fit_plane.cpp │ │ │ ├── fit_plane.h │ │ │ ├── fit_rotations.cpp │ │ │ ├── fit_rotations.h │ │ │ ├── floor.cpp │ │ │ ├── floor.h │ │ │ ├── forward_kinematics.cpp │ │ │ ├── forward_kinematics.h │ │ │ ├── frame_field_deformer.cpp │ │ │ ├── frame_field_deformer.h │ │ │ ├── frame_to_cross_field.cpp │ │ │ ├── frame_to_cross_field.h │ │ │ ├── frustum.cpp │ │ │ ├── frustum.h │ │ │ ├── gaussian_curvature.cpp │ │ │ ├── gaussian_curvature.h │ │ │ ├── get_seconds.cpp │ │ │ ├── get_seconds.h │ │ │ ├── get_seconds_hires.cpp │ │ │ ├── get_seconds_hires.h │ │ │ ├── grad.cpp │ │ │ ├── grad.h │ │ │ ├── group_sum_matrix.cpp │ │ │ ├── group_sum_matrix.h │ │ │ ├── harmonic.cpp │ │ │ ├── harmonic.h │ │ │ ├── harwell_boeing.cpp │ │ │ ├── harwell_boeing.h │ │ │ ├── hausdorff.cpp │ │ │ ├── hausdorff.h │ │ │ ├── histc.cpp │ │ │ ├── histc.h │ │ │ ├── hsv_to_rgb.cpp │ │ │ ├── hsv_to_rgb.h │ │ │ ├── igl_inline.h │ │ │ ├── in_element.cpp │ │ │ ├── in_element.h │ │ │ ├── integrable_polyvector_fields.cpp │ │ │ ├── integrable_polyvector_fields.h │ │ │ ├── internal_angles.cpp │ │ │ ├── internal_angles.h │ │ │ ├── intersect.cpp │ │ │ ├── intersect.h │ │ │ ├── invert_diag.cpp │ │ │ ├── invert_diag.h │ │ │ ├── is_border_vertex.cpp │ │ │ ├── is_border_vertex.h │ │ │ ├── is_boundary_edge.cpp │ │ │ ├── is_boundary_edge.h │ │ │ ├── is_dir.cpp │ │ │ ├── is_dir.h │ │ │ ├── is_edge_manifold.cpp │ │ │ ├── is_edge_manifold.h │ │ │ ├── is_file.cpp │ │ │ ├── is_file.h │ │ │ ├── is_irregular_vertex.cpp │ │ │ ├── is_irregular_vertex.h │ │ │ ├── is_planar.cpp │ │ │ ├── is_planar.h │ │ │ ├── is_readable.cpp │ │ │ ├── is_readable.h │ │ │ ├── is_sparse.cpp │ │ │ ├── is_sparse.h │ │ │ ├── is_symmetric.cpp │ │ │ ├── is_symmetric.h │ │ │ ├── is_vertex_manifold.cpp │ │ │ ├── is_vertex_manifold.h │ │ │ ├── is_writable.cpp │ │ │ ├── is_writable.h │ │ │ ├── jet.cpp │ │ │ ├── jet.h │ │ │ ├── launch_medit.cpp │ │ │ ├── launch_medit.h │ │ │ ├── lbs_matrix.cpp │ │ │ ├── lbs_matrix.h │ │ │ ├── lim │ │ │ ├── lim.cpp │ │ │ └── lim.h │ │ │ ├── limit_faces.cpp │ │ │ ├── limit_faces.h │ │ │ ├── line_field_missmatch.cpp │ │ │ ├── line_field_missmatch.h │ │ │ ├── line_segment_in_rectangle.cpp │ │ │ ├── line_segment_in_rectangle.h │ │ │ ├── linprog.cpp │ │ │ ├── linprog.h │ │ │ ├── list_to_matrix.cpp │ │ │ ├── list_to_matrix.h │ │ │ ├── local_basis.cpp │ │ │ ├── local_basis.h │ │ │ ├── look_at.cpp │ │ │ ├── look_at.h │ │ │ ├── lscm.cpp │ │ │ ├── lscm.h │ │ │ ├── map_vertices_to_circle.cpp │ │ │ ├── map_vertices_to_circle.h │ │ │ ├── massmatrix.cpp │ │ │ ├── massmatrix.h │ │ │ ├── mat_max.cpp │ │ │ ├── mat_max.h │ │ │ ├── mat_min.cpp │ │ │ ├── mat_min.h │ │ │ ├── mat_to_quat.cpp │ │ │ ├── mat_to_quat.h │ │ │ ├── material_colors.h │ │ │ ├── matlab │ │ │ ├── MatlabWorkspace.h │ │ │ ├── MexStream.h │ │ │ ├── matlabinterface.cpp │ │ │ ├── matlabinterface.h │ │ │ ├── mexErrMsgTxt.cpp │ │ │ ├── mexErrMsgTxt.h │ │ │ ├── parse_rhs.cpp │ │ │ ├── parse_rhs.h │ │ │ ├── prepare_lhs.cpp │ │ │ ├── prepare_lhs.h │ │ │ ├── requires_arg.cpp │ │ │ ├── requires_arg.h │ │ │ ├── validate_arg.cpp │ │ │ └── validate_arg.h │ │ │ ├── matlab_format.cpp │ │ │ ├── matlab_format.h │ │ │ ├── matrix_to_list.cpp │ │ │ ├── matrix_to_list.h │ │ │ ├── max_faces_stopping_condition.cpp │ │ │ ├── max_faces_stopping_condition.h │ │ │ ├── max_size.cpp │ │ │ ├── max_size.h │ │ │ ├── median.cpp │ │ │ ├── median.h │ │ │ ├── min_quad_dense.cpp │ │ │ ├── min_quad_dense.h │ │ │ ├── min_quad_with_fixed.cpp │ │ │ ├── min_quad_with_fixed.h │ │ │ ├── min_size.cpp │ │ │ ├── min_size.h │ │ │ ├── mod.cpp │ │ │ ├── mod.h │ │ │ ├── mode.cpp │ │ │ ├── mode.h │ │ │ ├── mosek │ │ │ ├── mosek_guarded.cpp │ │ │ ├── mosek_guarded.h │ │ │ ├── mosek_linprog.cpp │ │ │ ├── mosek_linprog.h │ │ │ ├── mosek_quadprog.cpp │ │ │ └── mosek_quadprog.h │ │ │ ├── mvc.cpp │ │ │ ├── mvc.h │ │ │ ├── n_polyvector.cpp │ │ │ ├── n_polyvector.h │ │ │ ├── n_polyvector_general.cpp │ │ │ ├── n_polyvector_general.h │ │ │ ├── nchoosek.cpp │ │ │ ├── nchoosek.h │ │ │ ├── next_filename.cpp │ │ │ ├── next_filename.h │ │ │ ├── normal_derivative.cpp │ │ │ ├── normal_derivative.h │ │ │ ├── normalize_quat.cpp │ │ │ ├── normalize_quat.h │ │ │ ├── normalize_row_lengths.cpp │ │ │ ├── normalize_row_lengths.h │ │ │ ├── normalize_row_sums.cpp │ │ │ ├── normalize_row_sums.h │ │ │ ├── null.cpp │ │ │ ├── null.h │ │ │ ├── on_boundary.cpp │ │ │ ├── on_boundary.h │ │ │ ├── opengl │ │ │ ├── OpenGL_convenience.h │ │ │ ├── compile_and_link_program.cpp │ │ │ ├── compile_and_link_program.h │ │ │ ├── compile_shader.cpp │ │ │ ├── compile_shader.h │ │ │ ├── create_index_vbo.cpp │ │ │ ├── create_index_vbo.h │ │ │ ├── create_mesh_vbo.cpp │ │ │ ├── create_mesh_vbo.h │ │ │ ├── create_shader_program.cpp │ │ │ ├── create_shader_program.h │ │ │ ├── create_vector_vbo.cpp │ │ │ ├── create_vector_vbo.h │ │ │ ├── destroy_shader_program.cpp │ │ │ ├── destroy_shader_program.h │ │ │ ├── gl_type_size.cpp │ │ │ ├── gl_type_size.h │ │ │ ├── init_render_to_texture.cpp │ │ │ ├── init_render_to_texture.h │ │ │ ├── load_shader.cpp │ │ │ ├── load_shader.h │ │ │ ├── print_program_info_log.cpp │ │ │ ├── print_program_info_log.h │ │ │ ├── print_shader_info_log.cpp │ │ │ ├── print_shader_info_log.h │ │ │ ├── render_to_tga.cpp │ │ │ ├── render_to_tga.h │ │ │ ├── report_gl_error.cpp │ │ │ ├── report_gl_error.h │ │ │ ├── texture_from_tga.cpp │ │ │ ├── texture_from_tga.h │ │ │ ├── tga.cpp │ │ │ ├── tga.h │ │ │ ├── uniform_type_to_string.cpp │ │ │ └── uniform_type_to_string.h │ │ │ ├── opengl2 │ │ │ ├── MouseController.h │ │ │ ├── RotateWidget.h │ │ │ ├── draw_beach_ball.cpp │ │ │ ├── draw_beach_ball.h │ │ │ ├── draw_floor.cpp │ │ │ ├── draw_floor.h │ │ │ ├── draw_mesh.cpp │ │ │ ├── draw_mesh.h │ │ │ ├── draw_point.cpp │ │ │ ├── draw_point.h │ │ │ ├── draw_rectangular_marquee.cpp │ │ │ ├── draw_rectangular_marquee.h │ │ │ ├── draw_skeleton_3d.cpp │ │ │ ├── draw_skeleton_3d.h │ │ │ ├── draw_skeleton_vector_graphics.cpp │ │ │ ├── draw_skeleton_vector_graphics.h │ │ │ ├── flare_textures.h │ │ │ ├── lens_flare.cpp │ │ │ ├── lens_flare.h │ │ │ ├── model_proj_viewport.cpp │ │ │ ├── model_proj_viewport.h │ │ │ ├── print_gl_get.cpp │ │ │ ├── print_gl_get.h │ │ │ ├── project.cpp │ │ │ ├── project.h │ │ │ ├── right_axis.cpp │ │ │ ├── right_axis.h │ │ │ ├── shine_textures.h │ │ │ ├── sort_triangles.cpp │ │ │ ├── sort_triangles.h │ │ │ ├── unproject.cpp │ │ │ ├── unproject.h │ │ │ ├── unproject_to_zero_plane.cpp │ │ │ ├── unproject_to_zero_plane.h │ │ │ ├── up_axis.cpp │ │ │ ├── up_axis.h │ │ │ ├── view_axis.cpp │ │ │ └── view_axis.h │ │ │ ├── orient_outward.cpp │ │ │ ├── orient_outward.h │ │ │ ├── orientable_patches.cpp │ │ │ ├── orientable_patches.h │ │ │ ├── orth.cpp │ │ │ ├── orth.h │ │ │ ├── ortho.cpp │ │ │ ├── ortho.h │ │ │ ├── outer_element.cpp │ │ │ ├── outer_element.h │ │ │ ├── parallel_transport_angles.cpp │ │ │ ├── parallel_transport_angles.h │ │ │ ├── partition.cpp │ │ │ ├── partition.h │ │ │ ├── parula.cpp │ │ │ ├── parula.h │ │ │ ├── path_to_executable.cpp │ │ │ ├── path_to_executable.h │ │ │ ├── pathinfo.cpp │ │ │ ├── pathinfo.h │ │ │ ├── per_corner_normals.cpp │ │ │ ├── per_corner_normals.h │ │ │ ├── per_edge_normals.cpp │ │ │ ├── per_edge_normals.h │ │ │ ├── per_face_normals.cpp │ │ │ ├── per_face_normals.h │ │ │ ├── per_vertex_attribute_smoothing.cpp │ │ │ ├── per_vertex_attribute_smoothing.h │ │ │ ├── per_vertex_normals.cpp │ │ │ ├── per_vertex_normals.h │ │ │ ├── piecewise_constant_winding_number.cpp │ │ │ ├── piecewise_constant_winding_number.h │ │ │ ├── planarize_quad_mesh.cpp │ │ │ ├── planarize_quad_mesh.h │ │ │ ├── ply.h │ │ │ ├── png │ │ │ ├── render_to_png.cpp │ │ │ ├── render_to_png.h │ │ │ ├── render_to_png_async.cpp │ │ │ ├── render_to_png_async.h │ │ │ ├── texture_from_file.cpp │ │ │ ├── texture_from_file.h │ │ │ ├── texture_from_png.cpp │ │ │ └── texture_from_png.h │ │ │ ├── point_in_circle.cpp │ │ │ ├── point_in_circle.h │ │ │ ├── point_in_poly.cpp │ │ │ ├── point_in_poly.h │ │ │ ├── point_mesh_squared_distance.cpp │ │ │ ├── point_mesh_squared_distance.h │ │ │ ├── polar_dec.cpp │ │ │ ├── polar_dec.h │ │ │ ├── polar_svd.cpp │ │ │ ├── polar_svd.h │ │ │ ├── polar_svd3x3.cpp │ │ │ ├── polar_svd3x3.h │ │ │ ├── polygon_mesh_to_triangle_mesh.cpp │ │ │ ├── polygon_mesh_to_triangle_mesh.h │ │ │ ├── polyroots.cpp │ │ │ ├── polyroots.h │ │ │ ├── polyvector_field_comb_from_matchings_and_cuts.cpp │ │ │ ├── polyvector_field_comb_from_matchings_and_cuts.h │ │ │ ├── polyvector_field_cut_mesh_with_singularities.cpp │ │ │ ├── polyvector_field_cut_mesh_with_singularities.h │ │ │ ├── polyvector_field_matchings.cpp │ │ │ ├── polyvector_field_matchings.h │ │ │ ├── polyvector_field_poisson_reconstruction.cpp │ │ │ ├── polyvector_field_poisson_reconstruction.h │ │ │ ├── polyvector_field_singularities_from_matchings.cpp │ │ │ ├── polyvector_field_singularities_from_matchings.h │ │ │ ├── principal_curvature.cpp │ │ │ ├── principal_curvature.h │ │ │ ├── print_ijv.cpp │ │ │ ├── print_ijv.h │ │ │ ├── print_vector.cpp │ │ │ ├── print_vector.h │ │ │ ├── procrustes.cpp │ │ │ ├── procrustes.h │ │ │ ├── project.cpp │ │ │ ├── project.h │ │ │ ├── project_isometrically_to_plane.cpp │ │ │ ├── project_isometrically_to_plane.h │ │ │ ├── project_to_line.cpp │ │ │ ├── project_to_line.h │ │ │ ├── project_to_line_segment.cpp │ │ │ ├── project_to_line_segment.h │ │ │ ├── pseudonormal_test.cpp │ │ │ ├── pseudonormal_test.h │ │ │ ├── quad_planarity.cpp │ │ │ ├── quad_planarity.h │ │ │ ├── quat_conjugate.cpp │ │ │ ├── quat_conjugate.h │ │ │ ├── quat_mult.cpp │ │ │ ├── quat_mult.h │ │ │ ├── quat_to_axis_angle.cpp │ │ │ ├── quat_to_axis_angle.h │ │ │ ├── quat_to_mat.cpp │ │ │ ├── quat_to_mat.h │ │ │ ├── quats_to_column.cpp │ │ │ ├── quats_to_column.h │ │ │ ├── random_dir.cpp │ │ │ ├── random_dir.h │ │ │ ├── random_points_on_mesh.cpp │ │ │ ├── random_points_on_mesh.h │ │ │ ├── random_quaternion.cpp │ │ │ ├── random_quaternion.h │ │ │ ├── randperm.cpp │ │ │ ├── randperm.h │ │ │ ├── ray_box_intersect.cpp │ │ │ ├── ray_box_intersect.h │ │ │ ├── ray_mesh_intersect.cpp │ │ │ ├── ray_mesh_intersect.h │ │ │ ├── ray_sphere_intersect.cpp │ │ │ ├── ray_sphere_intersect.h │ │ │ ├── raytri.c │ │ │ ├── readCSV.cpp │ │ │ ├── readCSV.h │ │ │ ├── readDMAT.cpp │ │ │ ├── readDMAT.h │ │ │ ├── readMESH.cpp │ │ │ ├── readMESH.h │ │ │ ├── readNODE.cpp │ │ │ ├── readNODE.h │ │ │ ├── readOBJ.cpp │ │ │ ├── readOBJ.h │ │ │ ├── readOFF.cpp │ │ │ ├── readOFF.h │ │ │ ├── readPLY.cpp │ │ │ ├── readPLY.h │ │ │ ├── readSTL.cpp │ │ │ ├── readSTL.h │ │ │ ├── readTGF.cpp │ │ │ ├── readTGF.h │ │ │ ├── readWRL.cpp │ │ │ ├── readWRL.h │ │ │ ├── read_triangle_mesh.cpp │ │ │ ├── read_triangle_mesh.h │ │ │ ├── remove_duplicate_vertices.cpp │ │ │ ├── remove_duplicate_vertices.h │ │ │ ├── remove_duplicates.cpp │ │ │ ├── remove_duplicates.h │ │ │ ├── remove_unreferenced.cpp │ │ │ ├── remove_unreferenced.h │ │ │ ├── reorder.cpp │ │ │ ├── reorder.h │ │ │ ├── repdiag.cpp │ │ │ ├── repdiag.h │ │ │ ├── repmat.cpp │ │ │ ├── repmat.h │ │ │ ├── resolve_duplicated_faces.cpp │ │ │ ├── resolve_duplicated_faces.h │ │ │ ├── rgb_to_hsv.cpp │ │ │ ├── rgb_to_hsv.h │ │ │ ├── rotate_by_quat.cpp │ │ │ ├── rotate_by_quat.h │ │ │ ├── rotate_vectors.cpp │ │ │ ├── rotate_vectors.h │ │ │ ├── rotation_matrix_from_directions.cpp │ │ │ ├── rotation_matrix_from_directions.h │ │ │ ├── round.cpp │ │ │ ├── round.h │ │ │ ├── rows_to_matrix.cpp │ │ │ ├── rows_to_matrix.h │ │ │ ├── sample_edges.cpp │ │ │ ├── sample_edges.h │ │ │ ├── serialize.h │ │ │ ├── setdiff.cpp │ │ │ ├── setdiff.h │ │ │ ├── signed_distance.cpp │ │ │ ├── signed_distance.h │ │ │ ├── slice.cpp │ │ │ ├── slice.h │ │ │ ├── slice_into.cpp │ │ │ ├── slice_into.h │ │ │ ├── slice_mask.cpp │ │ │ ├── slice_mask.h │ │ │ ├── slice_tets.cpp │ │ │ ├── slice_tets.h │ │ │ ├── snap_points.cpp │ │ │ ├── snap_points.h │ │ │ ├── snap_to_canonical_view_quat.cpp │ │ │ ├── snap_to_canonical_view_quat.h │ │ │ ├── snap_to_fixed_up.cpp │ │ │ ├── snap_to_fixed_up.h │ │ │ ├── sort.cpp │ │ │ ├── sort.h │ │ │ ├── sort_angles.cpp │ │ │ ├── sort_angles.h │ │ │ ├── sort_triangles.cpp │ │ │ ├── sort_triangles.h │ │ │ ├── sort_vectors_ccw.cpp │ │ │ ├── sort_vectors_ccw.h │ │ │ ├── sortrows.cpp │ │ │ ├── sortrows.h │ │ │ ├── sparse.cpp │ │ │ ├── sparse.h │ │ │ ├── speye.cpp │ │ │ ├── speye.h │ │ │ ├── stdin_to_temp.cpp │ │ │ ├── stdin_to_temp.h │ │ │ ├── sum.cpp │ │ │ ├── sum.h │ │ │ ├── svd3x3.cpp │ │ │ ├── svd3x3.h │ │ │ ├── svd3x3_avx.cpp │ │ │ ├── svd3x3_avx.h │ │ │ ├── svd3x3_sse.cpp │ │ │ ├── svd3x3_sse.h │ │ │ ├── trackball.cpp │ │ │ ├── trackball.h │ │ │ ├── transpose_blocks.cpp │ │ │ ├── transpose_blocks.h │ │ │ ├── triangle │ │ │ ├── triangulate.cpp │ │ │ └── triangulate.h │ │ │ ├── triangle_fan.cpp │ │ │ ├── triangle_fan.h │ │ │ ├── triangle_triangle_adjacency.cpp │ │ │ ├── triangle_triangle_adjacency.h │ │ │ ├── triangles_from_strip.cpp │ │ │ ├── triangles_from_strip.h │ │ │ ├── two_axis_valuator_fixed_up.cpp │ │ │ ├── two_axis_valuator_fixed_up.h │ │ │ ├── uniformly_sample_two_manifold.cpp │ │ │ ├── uniformly_sample_two_manifold.h │ │ │ ├── unique.cpp │ │ │ ├── unique.h │ │ │ ├── unique_edge_map.cpp │ │ │ ├── unique_edge_map.h │ │ │ ├── unique_simplices.cpp │ │ │ ├── unique_simplices.h │ │ │ ├── unproject.cpp │ │ │ ├── unproject.h │ │ │ ├── unproject_in_mesh.cpp │ │ │ ├── unproject_in_mesh.h │ │ │ ├── unproject_ray.cpp │ │ │ ├── unproject_ray.h │ │ │ ├── unzip_corners.cpp │ │ │ ├── unzip_corners.h │ │ │ ├── upsample.cpp │ │ │ ├── upsample.h │ │ │ ├── vector_area_matrix.cpp │ │ │ ├── vector_area_matrix.h │ │ │ ├── verbose.h │ │ │ ├── vertex_triangle_adjacency.cpp │ │ │ ├── vertex_triangle_adjacency.h │ │ │ ├── viewer │ │ │ ├── OpenGL_shader.cpp │ │ │ ├── OpenGL_shader.h │ │ │ ├── OpenGL_state.cpp │ │ │ ├── OpenGL_state.h │ │ │ ├── TODOs.txt │ │ │ ├── TextRenderer.cpp │ │ │ ├── TextRenderer.h │ │ │ ├── TextRenderer_fonts.cpp │ │ │ ├── TextRenderer_fonts.h │ │ │ ├── Viewer.cpp │ │ │ ├── Viewer.h │ │ │ ├── ViewerCore.cpp │ │ │ ├── ViewerCore.h │ │ │ ├── ViewerData.cpp │ │ │ ├── ViewerData.h │ │ │ └── ViewerPlugin.h │ │ │ ├── volume.cpp │ │ │ ├── volume.h │ │ │ ├── winding_number.cpp │ │ │ ├── winding_number.h │ │ │ ├── writeDMAT.cpp │ │ │ ├── writeDMAT.h │ │ │ ├── writeMESH.cpp │ │ │ ├── writeMESH.h │ │ │ ├── writeOBJ.cpp │ │ │ ├── writeOBJ.h │ │ │ ├── writeOFF.cpp │ │ │ ├── writeOFF.h │ │ │ ├── writePLY.cpp │ │ │ ├── writePLY.h │ │ │ ├── writeSTL.cpp │ │ │ ├── writeSTL.h │ │ │ ├── writeTGF.cpp │ │ │ ├── writeTGF.h │ │ │ ├── writeWRL.cpp │ │ │ ├── writeWRL.h │ │ │ ├── write_triangle_mesh.cpp │ │ │ ├── write_triangle_mesh.h │ │ │ └── xml │ │ │ ├── ReAntTweakBarXMLSerialization.h │ │ │ ├── XMLSerializable.h │ │ │ ├── serialization_test.cpp │ │ │ ├── serialize_xml.cpp │ │ │ └── serialize_xml.h │ ├── index.html │ ├── libigl-dependency-diagram.ai │ ├── libigl-logo.ai │ ├── libigl-teaser.png │ ├── matlab-to-eigen.html │ ├── optional │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ └── index.html │ ├── python │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── iglhelpers.py │ │ ├── matlab │ │ │ ├── example1.m │ │ │ ├── example2.m │ │ │ ├── launch_viewer.m │ │ │ ├── m2p.m │ │ │ └── p2m.m │ │ ├── py_doc.cpp │ │ ├── py_doc.h │ │ ├── py_igl.cpp │ │ ├── py_igl │ │ │ ├── comiso │ │ │ │ ├── py_miq.cpp │ │ │ │ └── py_nrosy.cpp │ │ │ ├── py_ARAPEnergyType.cpp │ │ │ ├── py_SolverStatus.cpp │ │ │ ├── py_active_set.cpp │ │ │ ├── py_arap.cpp │ │ │ ├── py_avg_edge_length.cpp │ │ │ ├── py_barycenter.cpp │ │ │ ├── py_boundary_facets.cpp │ │ │ ├── py_boundary_loop.cpp │ │ │ ├── py_colon.cpp │ │ │ ├── py_comb_cross_field.cpp │ │ │ ├── py_comb_frame_field.cpp │ │ │ ├── py_compute_frame_field_bisectors.cpp │ │ │ ├── py_cotmatrix.cpp │ │ │ ├── py_cross_field_missmatch.cpp │ │ │ ├── py_cut_mesh_from_singularities.cpp │ │ │ ├── py_doublearea.cpp │ │ │ ├── py_eigs.cpp │ │ │ ├── py_find_cross_field_singularities.cpp │ │ │ ├── py_floor.cpp │ │ │ ├── py_gaussian_curvature.cpp │ │ │ ├── py_grad.cpp │ │ │ ├── py_harmonic.cpp │ │ │ ├── py_invert_diag.cpp │ │ │ ├── py_jet.cpp │ │ │ ├── py_local_basis.cpp │ │ │ ├── py_lscm.cpp │ │ │ ├── py_map_vertices_to_circle.cpp │ │ │ ├── py_massmatrix.cpp │ │ │ ├── py_min_quad_with_fixed.cpp │ │ │ ├── py_n_polyvector.cpp │ │ │ ├── py_parula.cpp │ │ │ ├── py_per_corner_normals.cpp │ │ │ ├── py_per_face_normals.cpp │ │ │ ├── py_per_vertex_normals.cpp │ │ │ ├── py_principal_curvature.cpp │ │ │ ├── py_readDMAT.cpp │ │ │ ├── py_readOBJ.cpp │ │ │ ├── py_readOFF.cpp │ │ │ ├── py_read_triangle_mesh.cpp │ │ │ ├── py_rotate_vectors.cpp │ │ │ ├── py_setdiff.cpp │ │ │ ├── py_slice.cpp │ │ │ ├── py_slice_into.cpp │ │ │ ├── py_sortrows.cpp │ │ │ ├── py_unique.cpp │ │ │ └── py_writeOBJ.cpp │ │ ├── py_igl_comiso.cpp │ │ ├── py_igl_viewer.cpp │ │ ├── py_vector.cpp │ │ ├── python.cpp │ │ ├── python.h │ │ ├── scripts │ │ │ └── mk_py_doc.py │ │ ├── tcpviewer.py │ │ └── tutorial │ │ │ ├── 001_BasicTypes.py │ │ │ ├── 101_FileIO.py │ │ │ ├── 102_DrawMesh.py │ │ │ ├── 102_DrawMesh_TCP.py │ │ │ ├── 103_Events.py │ │ │ ├── 104_Colors.py │ │ │ ├── 105_Overlays.py │ │ │ ├── 201_Normals.py │ │ │ ├── 202_GaussianCurvature.py │ │ │ ├── 203_CurvatureDirections.py │ │ │ ├── 204_Gradient.py │ │ │ ├── 205_Laplacian.py │ │ │ ├── 301_Slice.py │ │ │ ├── 302_Sort.py │ │ │ ├── 303_LaplaceEquation.py │ │ │ ├── 304_LinearEqualityConstraints.py │ │ │ ├── 305_QuadraticProgramming.py │ │ │ ├── 306_EigenDecomposition.py │ │ │ ├── 401_BiharmonicDeformation.py │ │ │ ├── 402_PolyharmonicDeformation.py │ │ │ ├── 405_AsRigidAsPossible.py │ │ │ ├── 501_HarmonicParam.py │ │ │ ├── 502_LSCMParam.py │ │ │ ├── 503_ARAPParam.py │ │ │ ├── 504_NRosyDesign.py │ │ │ ├── 505_MIQ.py │ │ │ └── 507_PolyVectorField.py │ ├── scripts │ │ ├── append_source.sh │ │ ├── autoexplicit.sh │ │ ├── autoexplicit_linux.sh │ │ ├── clone-and-build.sh │ │ ├── compile_external.sh │ │ ├── compress.sh │ │ ├── doc.sh │ │ ├── h2pair.sh │ │ ├── header_adjacency.m │ │ ├── header_cluster_demo.m │ │ ├── license.sh │ │ ├── make_j.sh │ │ ├── update_gh-pages.sh │ │ └── upload.sh │ ├── style-guidelines.html │ ├── style-guidelines.md │ ├── style.css │ └── todos.txt └── tbb │ ├── CHANGES │ ├── CMakeLists.txt │ ├── COPYING │ ├── Makefile.old │ ├── README.md │ ├── build │ ├── AIX.gcc.inc │ ├── AIX.inc │ ├── FreeBSD.clang.inc │ ├── FreeBSD.gcc.inc │ ├── FreeBSD.inc │ ├── Makefile.rml │ ├── Makefile.tbb │ ├── Makefile.tbbmalloc │ ├── Makefile.tbbproxy │ ├── Makefile.test │ ├── SunOS.gcc.inc │ ├── SunOS.inc │ ├── SunOS.suncc.inc │ ├── android.gcc.inc │ ├── android.inc │ ├── android.linux.inc │ ├── android.linux.launcher.sh │ ├── android.macos.inc │ ├── android.windows.inc │ ├── ar_filter.sh │ ├── big_iron.inc │ ├── codecov.txt │ ├── common.inc │ ├── common_rules.inc │ ├── detect.js │ ├── generate_tbbvars.bat │ ├── generate_tbbvars.sh │ ├── index.html │ ├── linux.clang.inc │ ├── linux.gcc.inc │ ├── linux.icc.inc │ ├── linux.inc │ ├── linux.pathcc.inc │ ├── linux.xl.inc │ ├── macos.clang.inc │ ├── macos.gcc.inc │ ├── macos.icc.inc │ ├── macos.inc │ ├── mic.icc.inc │ ├── mic.linux.inc │ ├── mic.linux.launcher.sh │ ├── mic.offload.inc │ ├── ranlib_filter.sh │ ├── suncc.map.pause │ ├── test_launcher.bat │ ├── test_launcher.sh │ ├── version_info_aix.sh │ ├── version_info_android.sh │ ├── version_info_linux.sh │ ├── version_info_macos.sh │ ├── version_info_sunos.sh │ ├── version_info_windows.js │ ├── vs2010 │ │ ├── index.html │ │ ├── makefile.sln │ │ ├── tbb.vcxproj │ │ ├── tbbmalloc.vcxproj │ │ ├── tbbmalloc_proxy.vcxproj │ │ └── version_string.ver │ ├── windows.cl.inc │ ├── windows.gcc.inc │ ├── windows.icl.inc │ ├── windows.inc │ ├── xbox360.cl.inc │ └── xbox360.inc │ ├── doc │ ├── Release_Notes.txt │ └── html │ │ ├── a00001.html │ │ ├── a00002.html │ │ ├── a00003.html │ │ ├── a00004.html │ │ ├── a00005.html │ │ ├── a00006.html │ │ ├── a00007.html │ │ ├── a00008.html │ │ ├── a00009.html │ │ ├── a00010.html │ │ ├── a00010.png │ │ ├── a00011.html │ │ ├── a00012.html │ │ ├── a00012.png │ │ ├── a00013.html │ │ ├── a00013.png │ │ ├── a00014.html │ │ ├── a00014.png │ │ ├── a00015.html │ │ ├── a00016.html │ │ ├── a00016.png │ │ ├── a00017.html │ │ ├── a00017.png │ │ ├── a00018.html │ │ ├── a00018.png │ │ ├── a00019.html │ │ ├── a00019.png │ │ ├── a00020.html │ │ ├── a00020.png │ │ ├── a00021.html │ │ ├── a00022.html │ │ ├── a00022.png │ │ ├── a00023.html │ │ ├── a00023.png │ │ ├── a00024.html │ │ ├── a00025.html │ │ ├── a00026.html │ │ ├── a00027.html │ │ ├── a00028.html │ │ ├── a00028.png │ │ ├── a00029.html │ │ ├── a00029.png │ │ ├── a00030.html │ │ ├── a00030.png │ │ ├── a00031.html │ │ ├── a00031.png │ │ ├── a00032.html │ │ ├── a00033.html │ │ ├── a00034.html │ │ ├── a00035.html │ │ ├── a00035.png │ │ ├── a00036.html │ │ ├── a00037.html │ │ ├── a00038.html │ │ ├── a00038.png │ │ ├── a00039.html │ │ ├── a00039.png │ │ ├── a00040.html │ │ ├── a00040.png │ │ ├── a00041.html │ │ ├── a00042.html │ │ ├── a00042.png │ │ ├── a00043.html │ │ ├── a00043.png │ │ ├── a00044.html │ │ ├── a00044.png │ │ ├── a00045.html │ │ ├── a00046.html │ │ ├── a00046.png │ │ ├── a00047.html │ │ ├── a00047.png │ │ ├── a00048.html │ │ ├── a00049.html │ │ ├── a00049.png │ │ ├── a00050.html │ │ ├── a00050.png │ │ ├── a00051.html │ │ ├── a00051.png │ │ ├── a00052.html │ │ ├── a00053.html │ │ ├── a00053.png │ │ ├── a00054.html │ │ ├── a00054.png │ │ ├── a00055.html │ │ ├── a00056.html │ │ ├── a00056.png │ │ ├── a00057.html │ │ ├── a00057.png │ │ ├── a00058.html │ │ ├── a00058.png │ │ ├── a00059.html │ │ ├── a00060.html │ │ ├── a00060.png │ │ ├── a00061.html │ │ ├── a00061.png │ │ ├── a00062.html │ │ ├── a00062.png │ │ ├── a00063.html │ │ ├── a00064.html │ │ ├── a00065.html │ │ ├── a00065.png │ │ ├── a00066.html │ │ ├── a00067.html │ │ ├── a00068.html │ │ ├── a00068.png │ │ ├── a00069.html │ │ ├── a00070.html │ │ ├── a00070.png │ │ ├── a00071.html │ │ ├── a00072.html │ │ ├── a00072.png │ │ ├── a00073.html │ │ ├── a00074.html │ │ ├── a00074.png │ │ ├── a00075.html │ │ ├── a00075.png │ │ ├── a00076.html │ │ ├── a00076.png │ │ ├── a00077.html │ │ ├── a00077.png │ │ ├── a00078.html │ │ ├── a00078.png │ │ ├── a00079.html │ │ ├── a00079.png │ │ ├── a00080.html │ │ ├── a00080.png │ │ ├── a00081.html │ │ ├── a00081.png │ │ ├── a00082.html │ │ ├── a00082.png │ │ ├── a00083.html │ │ ├── a00083.png │ │ ├── a00084.html │ │ ├── a00084.png │ │ ├── a00085.html │ │ ├── a00086.html │ │ ├── a00086.png │ │ ├── a00087.html │ │ ├── a00088.html │ │ ├── a00088.png │ │ ├── a00089.html │ │ ├── a00089.png │ │ ├── a00090.html │ │ ├── a00090.png │ │ ├── a00091.html │ │ ├── a00091.png │ │ ├── a00092.html │ │ ├── a00092.png │ │ ├── a00093.html │ │ ├── a00094.html │ │ ├── a00095.html │ │ ├── a00096.html │ │ ├── a00096.png │ │ ├── a00097.html │ │ ├── a00097.png │ │ ├── a00098.html │ │ ├── a00098.png │ │ ├── a00099.html │ │ ├── a00099.png │ │ ├── a00100.html │ │ ├── a00100.png │ │ ├── a00101.html │ │ ├── a00101.png │ │ ├── a00102.html │ │ ├── a00102.png │ │ ├── a00103.html │ │ ├── a00104.html │ │ ├── a00104.png │ │ ├── a00105.html │ │ ├── a00105.png │ │ ├── a00106.html │ │ ├── a00106.png │ │ ├── a00107.html │ │ ├── a00108.html │ │ ├── a00109.html │ │ ├── a00109.png │ │ ├── a00110.html │ │ ├── a00110.png │ │ ├── a00111.html │ │ ├── a00111.png │ │ ├── a00112.html │ │ ├── a00112.png │ │ ├── a00113.html │ │ ├── a00113.png │ │ ├── a00114.html │ │ ├── a00115.html │ │ ├── a00116.html │ │ ├── a00117.html │ │ ├── a00118.html │ │ ├── a00119.html │ │ ├── a00120.html │ │ ├── a00121.html │ │ ├── a00122.html │ │ ├── a00123.html │ │ ├── a00124.html │ │ ├── a00124.png │ │ ├── a00125.html │ │ ├── a00125.png │ │ ├── a00126.html │ │ ├── a00127.html │ │ ├── a00128.html │ │ ├── a00128.png │ │ ├── a00129.html │ │ ├── a00130.html │ │ ├── a00131.html │ │ ├── a00131.png │ │ ├── a00132.html │ │ ├── a00132.png │ │ ├── a00133.html │ │ ├── a00133.png │ │ ├── a00134.html │ │ ├── a00134.png │ │ ├── a00135.html │ │ ├── a00135.png │ │ ├── a00136.html │ │ ├── a00136.png │ │ ├── a00137.html │ │ ├── a00137.png │ │ ├── a00138.html │ │ ├── a00138.png │ │ ├── a00139.html │ │ ├── a00139.png │ │ ├── a00140.html │ │ ├── a00140.png │ │ ├── a00141.html │ │ ├── a00141.png │ │ ├── a00142.html │ │ ├── a00142.png │ │ ├── a00143.html │ │ ├── a00143.png │ │ ├── a00144.html │ │ ├── a00144.png │ │ ├── a00145.html │ │ ├── a00145.png │ │ ├── a00146.html │ │ ├── a00146.png │ │ ├── a00147.html │ │ ├── a00147.png │ │ ├── a00148.html │ │ ├── a00148.png │ │ ├── a00149.html │ │ ├── a00150.html │ │ ├── a00150.png │ │ ├── a00151.html │ │ ├── a00151.png │ │ ├── a00152.html │ │ ├── a00152.png │ │ ├── a00153.html │ │ ├── a00154.html │ │ ├── a00154.png │ │ ├── a00155.html │ │ ├── a00155.png │ │ ├── a00156.html │ │ ├── a00156.png │ │ ├── a00157.html │ │ ├── a00157.png │ │ ├── a00158.html │ │ ├── a00158.png │ │ ├── a00159.html │ │ ├── a00160.html │ │ ├── a00161.html │ │ ├── a00161.png │ │ ├── a00162.html │ │ ├── a00163.html │ │ ├── a00164.html │ │ ├── a00165.html │ │ ├── a00165.png │ │ ├── a00166.html │ │ ├── a00166.png │ │ ├── a00167.html │ │ ├── a00167.png │ │ ├── a00168.html │ │ ├── a00168.png │ │ ├── a00169.html │ │ ├── a00169.png │ │ ├── a00170.html │ │ ├── a00171.html │ │ ├── a00172.html │ │ ├── a00173.html │ │ ├── a00173.png │ │ ├── a00174.html │ │ ├── a00174.png │ │ ├── a00175.html │ │ ├── a00176.html │ │ ├── a00176.png │ │ ├── a00177.html │ │ ├── a00177.png │ │ ├── a00178.html │ │ ├── a00178.png │ │ ├── a00196.html │ │ ├── a00198.html │ │ ├── a00217.html │ │ ├── a00237.html │ │ ├── a00240.html │ │ ├── a00255.html │ │ ├── a00256.html │ │ ├── a00257.html │ │ ├── a00258.html │ │ ├── a00259.html │ │ ├── a00260.html │ │ ├── a00262.html │ │ ├── a00263.html │ │ ├── a00264.html │ │ ├── a00265.html │ │ ├── a00266.html │ │ ├── a00267.html │ │ ├── a00268.html │ │ ├── a00269.html │ │ ├── a00270.html │ │ ├── a00271.html │ │ ├── a00272.html │ │ ├── a00273.html │ │ ├── a00274.html │ │ ├── a00275.html │ │ ├── a00276.html │ │ ├── a00277.html │ │ ├── a00278.html │ │ ├── a00279.html │ │ ├── a00280.html │ │ ├── a00281.html │ │ ├── a00282.html │ │ ├── a00283.html │ │ ├── a00284.html │ │ ├── a00285.html │ │ ├── a00286.html │ │ ├── a00287.html │ │ ├── a00288.html │ │ ├── a00289.html │ │ ├── a00290.html │ │ ├── a00291.html │ │ ├── a00292.html │ │ ├── a00293.html │ │ ├── a00294.html │ │ ├── a00295.html │ │ ├── a00296.html │ │ ├── a00297.html │ │ ├── a00298.html │ │ ├── a00299.html │ │ ├── a00300.html │ │ ├── a00301.html │ │ ├── a00302.html │ │ ├── a00303.html │ │ ├── a00304.html │ │ ├── a00305.html │ │ ├── a00306.html │ │ ├── a00307.html │ │ ├── a00308.html │ │ ├── a00309.html │ │ ├── a00310.html │ │ ├── a00311.html │ │ ├── a00312.html │ │ ├── a00313.html │ │ ├── a00314.html │ │ ├── a00315.html │ │ ├── a00316.html │ │ ├── a00317.html │ │ ├── a00318.html │ │ ├── a00319.html │ │ ├── a00320.html │ │ ├── a00321.html │ │ ├── a00322.html │ │ ├── a00323.html │ │ ├── a00324.html │ │ ├── a00325.html │ │ ├── a00326.html │ │ ├── a00327.html │ │ ├── a00328.html │ │ ├── a00329.html │ │ ├── a00330.html │ │ ├── a00331.html │ │ ├── a00332.html │ │ ├── a00333.html │ │ ├── a00334.html │ │ ├── a00335.html │ │ ├── a00336.html │ │ ├── a00337.html │ │ ├── a00338.html │ │ ├── a00339.html │ │ ├── a00340.html │ │ ├── a00341.html │ │ ├── a00342.html │ │ ├── a00343.html │ │ ├── a00344.html │ │ ├── a00346.html │ │ ├── a00347.html │ │ ├── a00348.html │ │ ├── a00349.html │ │ ├── a00350.html │ │ ├── a00351.html │ │ ├── a00352.html │ │ ├── a00353.html │ │ ├── a00354.html │ │ ├── a00355.html │ │ ├── a00356.html │ │ ├── a00357.html │ │ ├── a00358.html │ │ ├── a00359.html │ │ ├── a00360.html │ │ ├── a00361.html │ │ ├── a00362.html │ │ ├── a00363.html │ │ ├── a00364.html │ │ ├── a00365.html │ │ ├── a00366.html │ │ ├── a00367.html │ │ ├── a00368.html │ │ ├── a00369.html │ │ ├── a00370.html │ │ ├── a00371.html │ │ ├── a00372.html │ │ ├── a00373.html │ │ ├── a00374.html │ │ ├── a00375.html │ │ ├── a00376.html │ │ ├── a00377.html │ │ ├── a00378.html │ │ ├── a00379.html │ │ ├── a00380.html │ │ ├── a00381.html │ │ ├── a00382.html │ │ ├── a00383.html │ │ ├── a00384.html │ │ ├── a00385.html │ │ ├── a00386.html │ │ ├── a00387.html │ │ ├── a00388.html │ │ ├── a00389.html │ │ ├── a00390.html │ │ ├── a00391.html │ │ ├── a00392.html │ │ ├── a00393.html │ │ ├── a00394.html │ │ ├── a00395.html │ │ ├── a00396.html │ │ ├── a00397.html │ │ ├── a00398.html │ │ ├── a00399.html │ │ ├── a00400.html │ │ ├── a00401.html │ │ ├── a00402.html │ │ ├── a00403.html │ │ ├── a00404.html │ │ ├── a00405.html │ │ ├── a00406.html │ │ ├── a00407.html │ │ ├── a00408.html │ │ ├── a00409.html │ │ ├── a00410.html │ │ ├── a00411.html │ │ ├── a00412.html │ │ ├── a00413.html │ │ ├── a00414.html │ │ ├── a00415.html │ │ ├── a00416.html │ │ ├── a00417.html │ │ ├── a00418.html │ │ ├── a00419.html │ │ ├── a00420.html │ │ ├── a00421.html │ │ ├── annotated.html │ │ ├── bc_s.png │ │ ├── bdwn.png │ │ ├── classes.html │ │ ├── closed.png │ │ ├── dir_525f2cc589630bacbdc3bb450847427e.html │ │ ├── dir_63fb2cc293d133785b96e521fa051167.html │ │ ├── dir_87119f26c7695cbc270003e99bc7f49f.html │ │ ├── dir_b9976680b2be72d2d0b8fca1c31202a2.html │ │ ├── doxygen.css │ │ ├── doxygen.png │ │ ├── dynsections.js │ │ ├── files.html │ │ ├── ftv2blank.png │ │ ├── ftv2cl.png │ │ ├── ftv2doc.png │ │ ├── ftv2folderclosed.png │ │ ├── ftv2folderopen.png │ │ ├── ftv2lastnode.png │ │ ├── ftv2link.png │ │ ├── ftv2mlastnode.png │ │ ├── ftv2mnode.png │ │ ├── ftv2mo.png │ │ ├── ftv2node.png │ │ ├── ftv2ns.png │ │ ├── ftv2plastnode.png │ │ ├── ftv2pnode.png │ │ ├── ftv2splitbar.png │ │ ├── ftv2vertline.png │ │ ├── functions.html │ │ ├── functions_0x62.html │ │ ├── functions_0x63.html │ │ ├── functions_0x64.html │ │ ├── functions_0x65.html │ │ ├── functions_0x66.html │ │ ├── functions_0x67.html │ │ ├── functions_0x68.html │ │ ├── functions_0x69.html │ │ ├── functions_0x6a.html │ │ ├── functions_0x6c.html │ │ ├── functions_0x6d.html │ │ ├── functions_0x6e.html │ │ ├── functions_0x6f.html │ │ ├── functions_0x70.html │ │ ├── functions_0x71.html │ │ ├── functions_0x72.html │ │ ├── functions_0x73.html │ │ ├── functions_0x74.html │ │ ├── functions_0x75.html │ │ ├── functions_0x76.html │ │ ├── functions_0x77.html │ │ ├── functions_0x7e.html │ │ ├── functions_enum.html │ │ ├── functions_eval.html │ │ ├── functions_func.html │ │ ├── functions_func_0x62.html │ │ ├── functions_func_0x63.html │ │ ├── functions_func_0x64.html │ │ ├── functions_func_0x65.html │ │ ├── functions_func_0x66.html │ │ ├── functions_func_0x67.html │ │ ├── functions_func_0x68.html │ │ ├── functions_func_0x69.html │ │ ├── functions_func_0x6a.html │ │ ├── functions_func_0x6c.html │ │ ├── functions_func_0x6d.html │ │ ├── functions_func_0x6e.html │ │ ├── functions_func_0x6f.html │ │ ├── functions_func_0x70.html │ │ ├── functions_func_0x71.html │ │ ├── functions_func_0x72.html │ │ ├── functions_func_0x73.html │ │ ├── functions_func_0x74.html │ │ ├── functions_func_0x75.html │ │ ├── functions_func_0x77.html │ │ ├── functions_func_0x7e.html │ │ ├── functions_rela.html │ │ ├── functions_type.html │ │ ├── functions_vars.html │ │ ├── globals.html │ │ ├── globals_func.html │ │ ├── hierarchy.html │ │ ├── index.html │ │ ├── jquery.js │ │ ├── modules.html │ │ ├── namespacemembers.html │ │ ├── namespacemembers_enum.html │ │ ├── namespacemembers_eval.html │ │ ├── namespacemembers_func.html │ │ ├── namespacemembers_type.html │ │ ├── namespaces.html │ │ ├── nav_f.png │ │ ├── nav_g.png │ │ ├── nav_h.png │ │ ├── open.png │ │ ├── pages.html │ │ ├── sync_off.png │ │ ├── sync_on.png │ │ ├── tab_a.png │ │ ├── tab_b.png │ │ ├── tab_h.png │ │ ├── tab_s.png │ │ └── tabs.css │ ├── examples │ ├── GettingStarted │ │ ├── index.html │ │ └── sub_string_finder │ │ │ ├── Makefile │ │ │ ├── Makefile.windows │ │ │ ├── index.html │ │ │ ├── msvs │ │ │ ├── sub_string_finder.sln │ │ │ ├── sub_string_finder.vcxproj │ │ │ ├── sub_string_finder_extended.vcxproj │ │ │ └── sub_string_finder_pretty.vcxproj │ │ │ ├── sub_string_finder.cpp │ │ │ ├── sub_string_finder_extended.cpp │ │ │ ├── sub_string_finder_pretty.cpp │ │ │ └── xcode │ │ │ └── sub_string_finder.xcodeproj │ │ │ └── project.pbxproj │ ├── Makefile │ ├── common │ │ ├── copy_libraries.bat │ │ ├── gui │ │ │ ├── Makefile.gmake │ │ │ ├── Makefile.win │ │ │ ├── convideo.cpp │ │ │ ├── d2dvideo.cpp │ │ │ ├── dxcheck.bat │ │ │ ├── gdivideo.cpp │ │ │ ├── macvideo.cpp │ │ │ ├── video.h │ │ │ ├── winvideo.h │ │ │ ├── xcode │ │ │ │ └── tbbExample │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── OpenGLView.h │ │ │ │ │ ├── OpenGLView.m │ │ │ │ │ ├── PkgInfo │ │ │ │ │ ├── en.lproj │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ ├── MainMenu.nib │ │ │ │ │ └── MainMenu.xib │ │ │ │ │ ├── main.m │ │ │ │ │ ├── tbbAppDelegate.h │ │ │ │ │ ├── tbbAppDelegate.m │ │ │ │ │ ├── tbbExample-Info.plist │ │ │ │ │ └── tbbExample-Prefix.pch │ │ │ └── xvideo.cpp │ │ ├── index.html │ │ ├── toolset.props │ │ └── utility │ │ │ ├── fast_random.h │ │ │ └── utility.h │ ├── concurrent_hash_map │ │ ├── count_strings │ │ │ ├── Makefile │ │ │ ├── Makefile.windows │ │ │ ├── count_strings.cpp │ │ │ ├── index.html │ │ │ ├── msvs │ │ │ │ ├── count_strings.sln │ │ │ │ └── count_strings.vcxproj │ │ │ └── xcode │ │ │ │ └── count_strings.xcodeproj │ │ │ │ └── project.pbxproj │ │ └── index.html │ ├── concurrent_priority_queue │ │ └── shortpath │ │ │ ├── Makefile │ │ │ ├── Makefile.windows │ │ │ ├── index.html │ │ │ ├── msvs │ │ │ ├── shortpath.sln │ │ │ └── shortpath.vcxproj │ │ │ ├── shortpath.cpp │ │ │ └── xcode │ │ │ └── shortpath.xcodeproj │ │ │ └── project.pbxproj │ ├── graph │ │ ├── binpack │ │ │ ├── Makefile │ │ │ ├── Makefile.windows │ │ │ ├── binpack.cpp │ │ │ ├── index.html │ │ │ ├── msvs │ │ │ │ ├── binpack.sln │ │ │ │ └── binpack.vcxproj │ │ │ └── xcode │ │ │ │ └── binpack.xcodeproj │ │ │ │ └── project.pbxproj │ │ ├── dining_philosophers │ │ │ ├── Makefile │ │ │ ├── Makefile.windows │ │ │ ├── dining_philosophers.cpp │ │ │ ├── index.html │ │ │ ├── msvs │ │ │ │ ├── dining_philosophers.sln │ │ │ │ └── dining_philosophers.vcxproj │ │ │ └── xcode │ │ │ │ └── dining_philosophers.xcodeproj │ │ │ │ └── project.pbxproj │ │ ├── index.html │ │ ├── logic_sim │ │ │ ├── D_latch.h │ │ │ ├── Makefile │ │ │ ├── Makefile.windows │ │ │ ├── basics.h │ │ │ ├── four_bit_adder.h │ │ │ ├── index.html │ │ │ ├── msvs │ │ │ │ ├── logic_sim.sln │ │ │ │ └── logic_sim.vcxproj │ │ │ ├── one_bit_adder.h │ │ │ ├── test_all.cpp │ │ │ └── two_bit_adder.h │ │ └── som │ │ │ ├── Makefile │ │ │ ├── Makefile.windows.windows │ │ │ ├── index.html │ │ │ ├── msvs │ │ │ ├── som.sln │ │ │ └── som.vcxproj │ │ │ ├── som.cpp │ │ │ ├── som.h │ │ │ ├── som_graph.cpp │ │ │ └── xcode │ │ │ └── som.xcodeproj │ │ │ └── project.pbxproj │ ├── index.html │ ├── parallel_do │ │ ├── index.html │ │ └── parallel_preorder │ │ │ ├── Graph.cpp │ │ │ ├── Graph.h │ │ │ ├── Makefile │ │ │ ├── Makefile.windows │ │ │ ├── Matrix.h │ │ │ ├── index.html │ │ │ ├── main.cpp │ │ │ ├── msvs │ │ │ ├── parallel_preorder.sln │ │ │ └── parallel_preorder.vcxproj │ │ │ ├── parallel_preorder.cpp │ │ │ └── xcode │ │ │ └── parallel_preorder.xcodeproj │ │ │ └── project.pbxproj │ ├── parallel_for │ │ ├── game_of_life │ │ │ ├── Makefile │ │ │ ├── Makefile.windows │ │ │ ├── index.html │ │ │ ├── msvs │ │ │ │ ├── Game_of_life.sln │ │ │ │ ├── Game_of_life.vcxproj │ │ │ │ ├── app.ico │ │ │ │ ├── app.rc │ │ │ │ └── resource.h │ │ │ ├── src │ │ │ │ ├── AssemblyInfo.cpp │ │ │ │ ├── Board.h │ │ │ │ ├── Evolution.cpp │ │ │ │ ├── Evolution.h │ │ │ │ ├── Form1.h │ │ │ │ ├── Game_of_life.cpp │ │ │ │ └── Update_state.cpp │ │ │ └── xcode │ │ │ │ └── game_of_life.xcodeproj │ │ │ │ └── project.pbxproj │ │ ├── index.html │ │ ├── polygon_overlay │ │ │ ├── Makefile │ │ │ ├── Makefile.windows │ │ │ ├── index.html │ │ │ ├── msvs │ │ │ │ ├── pover.rc │ │ │ │ ├── pover.sln │ │ │ │ ├── pover.vcxproj │ │ │ │ └── resource.h │ │ │ ├── polymain.cpp │ │ │ ├── polymain.h │ │ │ ├── polyover.cpp │ │ │ ├── polyover.h │ │ │ ├── pover_global.h │ │ │ ├── pover_video.cpp │ │ │ ├── pover_video.h │ │ │ ├── rpolygon.h │ │ │ ├── speedup.gif │ │ │ └── xcode │ │ │ │ └── polygon_overlay.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── tbbExample.xcscheme │ │ ├── seismic │ │ │ ├── Makefile │ │ │ ├── Makefile.windows │ │ │ ├── index.html │ │ │ ├── main.cpp │ │ │ ├── msvs │ │ │ │ ├── SeismicSimulation.ico │ │ │ │ ├── SeismicSimulation.rc │ │ │ │ ├── SeismicSimulation.sln │ │ │ │ ├── SeismicSimulation.vcxproj │ │ │ │ ├── resource.h │ │ │ │ └── small.ico │ │ │ ├── seismic_video.cpp │ │ │ ├── seismic_video.h │ │ │ ├── universe.cpp │ │ │ ├── universe.h │ │ │ └── xcode │ │ │ │ └── seismic.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── tbbExample.xcscheme │ │ └── tachyon │ │ │ ├── Makefile │ │ │ ├── Makefile.windows │ │ │ ├── android │ │ │ ├── .classpath │ │ │ ├── .cproject │ │ │ ├── .project │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ │ └── data.dat │ │ │ ├── jni │ │ │ │ ├── Android.mk │ │ │ │ ├── Application.mk │ │ │ │ └── jni-engine.cpp │ │ │ ├── project.properties │ │ │ ├── res │ │ │ │ ├── menu │ │ │ │ │ └── main_screen_menu.xml │ │ │ │ └── values │ │ │ │ │ └── strings.xml │ │ │ └── src │ │ │ │ └── com │ │ │ │ └── intel │ │ │ │ └── tbb │ │ │ │ └── example │ │ │ │ └── tachyon │ │ │ │ └── tachyon.java │ │ │ ├── dat │ │ │ ├── 820spheres.dat │ │ │ ├── balls.dat │ │ │ ├── balls3.dat │ │ │ ├── lattice.dat │ │ │ ├── model2.dat │ │ │ ├── teapot.dat │ │ │ └── trypsin4pti.dat │ │ │ ├── index.html │ │ │ ├── msvs │ │ │ ├── gui.ico │ │ │ ├── gui.rc │ │ │ ├── resource.h │ │ │ ├── small.ico │ │ │ ├── tachyon.serial.vcxproj │ │ │ ├── tachyon.sln │ │ │ ├── tachyon.tbb.vcxproj │ │ │ ├── tachyon.tbb1d.vcxproj │ │ │ ├── tachyon.vcxproj │ │ │ └── win8ui │ │ │ │ ├── App.xaml │ │ │ │ ├── App.xaml.cpp │ │ │ │ ├── App.xaml.h │ │ │ │ ├── Assets │ │ │ │ ├── Logo.png │ │ │ │ ├── SmallLogo.png │ │ │ │ ├── SplashScreen.png │ │ │ │ └── StoreLogo.png │ │ │ │ ├── Common │ │ │ │ └── StandardStyles.xaml │ │ │ │ ├── DirectXBase.cpp │ │ │ │ ├── DirectXBase.h │ │ │ │ ├── DirectXPage.xaml │ │ │ │ ├── DirectXPage.xaml.cpp │ │ │ │ ├── DirectXPage.xaml.h │ │ │ │ ├── Package.appxmanifest │ │ │ │ ├── copy_libraries_and_assets.bat │ │ │ │ ├── pch.h │ │ │ │ ├── tbbTachyon.sln │ │ │ │ ├── tbbTachyon.vcxproj │ │ │ │ ├── tbbTachyon.vcxproj.filters │ │ │ │ ├── tbbTachyonRenderer.cpp │ │ │ │ └── tbbTachyonRenderer.h │ │ │ ├── src │ │ │ ├── api.cpp │ │ │ ├── api.h │ │ │ ├── apigeom.cpp │ │ │ ├── apitrigeom.cpp │ │ │ ├── apitrigeom.h │ │ │ ├── bndbox.cpp │ │ │ ├── bndbox.h │ │ │ ├── box.cpp │ │ │ ├── box.h │ │ │ ├── camera.cpp │ │ │ ├── camera.h │ │ │ ├── coordsys.cpp │ │ │ ├── coordsys.h │ │ │ ├── cylinder.cpp │ │ │ ├── cylinder.h │ │ │ ├── extvol.cpp │ │ │ ├── extvol.h │ │ │ ├── global.cpp │ │ │ ├── global.h │ │ │ ├── grid.cpp │ │ │ ├── grid.h │ │ │ ├── imageio.cpp │ │ │ ├── imageio.h │ │ │ ├── imap.cpp │ │ │ ├── imap.h │ │ │ ├── intersect.cpp │ │ │ ├── intersect.h │ │ │ ├── jpeg.cpp │ │ │ ├── jpeg.h │ │ │ ├── light.cpp │ │ │ ├── light.h │ │ │ ├── machine.h │ │ │ ├── macros.h │ │ │ ├── main.cpp │ │ │ ├── objbound.cpp │ │ │ ├── objbound.h │ │ │ ├── parse.cpp │ │ │ ├── parse.h │ │ │ ├── plane.cpp │ │ │ ├── plane.h │ │ │ ├── ppm.cpp │ │ │ ├── ppm.h │ │ │ ├── pthread.cpp │ │ │ ├── pthread_w.h │ │ │ ├── quadric.cpp │ │ │ ├── quadric.h │ │ │ ├── render.cpp │ │ │ ├── render.h │ │ │ ├── ring.cpp │ │ │ ├── ring.h │ │ │ ├── shade.cpp │ │ │ ├── shade.h │ │ │ ├── sphere.cpp │ │ │ ├── sphere.h │ │ │ ├── tachyon_video.cpp │ │ │ ├── tachyon_video.h │ │ │ ├── texture.cpp │ │ │ ├── texture.h │ │ │ ├── tgafile.cpp │ │ │ ├── tgafile.h │ │ │ ├── trace.h │ │ │ ├── trace.serial.cpp │ │ │ ├── trace.simple.cpp │ │ │ ├── trace.tbb.cpp │ │ │ ├── trace.tbb1d.cpp │ │ │ ├── trace_rest.cpp │ │ │ ├── triangle.cpp │ │ │ ├── triangle.h │ │ │ ├── types.h │ │ │ ├── ui.cpp │ │ │ ├── ui.h │ │ │ ├── util.cpp │ │ │ ├── util.h │ │ │ ├── vector.cpp │ │ │ ├── vector.h │ │ │ ├── vol.cpp │ │ │ └── vol.h │ │ │ └── xcode │ │ │ └── tachyon.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── tachyon.serial.xcscheme │ │ │ ├── tachyon.tbb.xcscheme │ │ │ └── tachyon.tbb1d.xcscheme │ ├── parallel_reduce │ │ ├── convex_hull │ │ │ ├── Makefile │ │ │ ├── Makefile.windows │ │ │ ├── convex_hull.h │ │ │ ├── convex_hull_bench.cpp │ │ │ ├── convex_hull_sample.cpp │ │ │ ├── index.html │ │ │ ├── msvs │ │ │ │ ├── convex_hull.sln │ │ │ │ ├── convex_hull_benchmark.vcxproj │ │ │ │ └── convex_hull_sample.vcxproj │ │ │ └── xcode │ │ │ │ └── convex_hull.xcodeproj │ │ │ │ └── project.pbxproj │ │ ├── index.html │ │ └── primes │ │ │ ├── Makefile │ │ │ ├── Makefile.windows │ │ │ ├── index.html │ │ │ ├── main.cpp │ │ │ ├── msvs │ │ │ ├── primes.sln │ │ │ └── primes.vcxproj │ │ │ ├── primes.cpp │ │ │ ├── primes.h │ │ │ └── xcode │ │ │ └── primes.xcodeproj │ │ │ └── project.pbxproj │ ├── pipeline │ │ ├── index.html │ │ └── square │ │ │ ├── Makefile │ │ │ ├── Makefile.windows │ │ │ ├── gen_input.cpp │ │ │ ├── index.html │ │ │ ├── msvs │ │ │ ├── square.sln │ │ │ └── square.vcxproj │ │ │ ├── square.cpp │ │ │ └── xcode │ │ │ └── square.xcodeproj │ │ │ └── project.pbxproj │ ├── task │ │ ├── index.html │ │ └── tree_sum │ │ │ ├── Makefile │ │ │ ├── Makefile.windows │ │ │ ├── OptimizedParallelSumTree.cpp │ │ │ ├── SerialSumTree.cpp │ │ │ ├── SimpleParallelSumTree.cpp │ │ │ ├── TreeMaker.h │ │ │ ├── common.h │ │ │ ├── index.html │ │ │ ├── main.cpp │ │ │ ├── msvs │ │ │ ├── tree_sum.sln │ │ │ └── tree_sum.vcxproj │ │ │ └── xcode │ │ │ └── tree_sum.xcodeproj │ │ │ └── project.pbxproj │ ├── task_group │ │ ├── index.html │ │ └── sudoku │ │ │ ├── Makefile │ │ │ ├── Makefile.windows │ │ │ ├── index.html │ │ │ ├── input1 │ │ │ ├── input2 │ │ │ ├── input3 │ │ │ ├── input4 │ │ │ ├── msvs │ │ │ ├── sudoku.sln │ │ │ └── sudoku.vcxproj │ │ │ ├── sudoku.cpp │ │ │ └── xcode │ │ │ └── sudoku.xcodeproj │ │ │ └── project.pbxproj │ ├── task_priority │ │ ├── fractal │ │ │ ├── Makefile │ │ │ ├── Makefile.windows │ │ │ ├── fractal.cpp │ │ │ ├── fractal.h │ │ │ ├── fractal_video.h │ │ │ ├── index.html │ │ │ ├── main.cpp │ │ │ ├── msvs │ │ │ │ ├── fractal.sln │ │ │ │ ├── fractal.vcxproj │ │ │ │ ├── gui.ico │ │ │ │ ├── gui.rc │ │ │ │ ├── resource.h │ │ │ │ └── small.ico │ │ │ └── xcode │ │ │ │ └── fractal.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── tbbExample.xcscheme │ │ └── index.html │ └── test_all │ │ ├── fibonacci │ │ ├── Fibonacci.cpp │ │ ├── Makefile │ │ ├── Makefile.windows │ │ ├── index.html │ │ ├── msvs │ │ │ ├── fibonacci.sln │ │ │ └── fibonacci.vcxproj │ │ └── xcode │ │ │ └── fibonacci.xcodeproj │ │ │ └── project.pbxproj │ │ └── index.html │ ├── include │ ├── index.html │ ├── serial │ │ └── tbb │ │ │ ├── parallel_for.h │ │ │ └── tbb_annotate.h │ └── tbb │ │ ├── aggregator.h │ │ ├── aligned_space.h │ │ ├── atomic.h │ │ ├── blocked_range.h │ │ ├── blocked_range2d.h │ │ ├── blocked_range3d.h │ │ ├── cache_aligned_allocator.h │ │ ├── combinable.h │ │ ├── compat │ │ ├── condition_variable │ │ ├── ppl.h │ │ ├── thread │ │ └── tuple │ │ ├── concurrent_hash_map.h │ │ ├── concurrent_lru_cache.h │ │ ├── concurrent_priority_queue.h │ │ ├── concurrent_queue.h │ │ ├── concurrent_unordered_map.h │ │ ├── concurrent_unordered_set.h │ │ ├── concurrent_vector.h │ │ ├── critical_section.h │ │ ├── enumerable_thread_specific.h │ │ ├── flow_graph.h │ │ ├── global_control.h │ │ ├── index.html │ │ ├── internal │ │ ├── _aggregator_impl.h │ │ ├── _concurrent_queue_impl.h │ │ ├── _concurrent_unordered_impl.h │ │ ├── _flow_graph_impl.h │ │ ├── _flow_graph_indexer_impl.h │ │ ├── _flow_graph_item_buffer_impl.h │ │ ├── _flow_graph_join_impl.h │ │ ├── _flow_graph_node_impl.h │ │ ├── _flow_graph_tagged_buffer_impl.h │ │ ├── _flow_graph_trace_impl.h │ │ ├── _flow_graph_types_impl.h │ │ ├── _mutex_padding.h │ │ ├── _range_iterator.h │ │ ├── _tbb_strings.h │ │ ├── _tbb_windef.h │ │ ├── _template_helpers.h │ │ ├── _x86_eliding_mutex_impl.h │ │ └── _x86_rtm_rw_mutex_impl.h │ │ ├── machine │ │ ├── gcc_armv7.h │ │ ├── gcc_generic.h │ │ ├── gcc_ia32_common.h │ │ ├── gcc_itsx.h │ │ ├── ibm_aix51.h │ │ ├── icc_generic.h │ │ ├── linux_common.h │ │ ├── linux_ia32.h │ │ ├── linux_ia64.h │ │ ├── linux_intel64.h │ │ ├── mac_ppc.h │ │ ├── macos_common.h │ │ ├── mic_common.h │ │ ├── msvc_armv7.h │ │ ├── msvc_ia32_common.h │ │ ├── sunos_sparc.h │ │ ├── windows_api.h │ │ ├── windows_ia32.h │ │ ├── windows_intel64.h │ │ └── xbox360_ppc.h │ │ ├── memory_pool.h │ │ ├── mutex.h │ │ ├── null_mutex.h │ │ ├── null_rw_mutex.h │ │ ├── parallel_do.h │ │ ├── parallel_for.h │ │ ├── parallel_for_each.h │ │ ├── parallel_invoke.h │ │ ├── parallel_reduce.h │ │ ├── parallel_scan.h │ │ ├── parallel_sort.h │ │ ├── parallel_while.h │ │ ├── partitioner.h │ │ ├── pipeline.h │ │ ├── queuing_mutex.h │ │ ├── queuing_rw_mutex.h │ │ ├── reader_writer_lock.h │ │ ├── recursive_mutex.h │ │ ├── runtime_loader.h │ │ ├── scalable_allocator.h │ │ ├── spin_mutex.h │ │ ├── spin_rw_mutex.h │ │ ├── task.h │ │ ├── task_arena.h │ │ ├── task_group.h │ │ ├── task_scheduler_init.h │ │ ├── task_scheduler_observer.h │ │ ├── tbb.h │ │ ├── tbb_allocator.h │ │ ├── tbb_config.h │ │ ├── tbb_exception.h │ │ ├── tbb_machine.h │ │ ├── tbb_profiling.h │ │ ├── tbb_stddef.h │ │ ├── tbb_thread.h │ │ ├── tbbmalloc_proxy.h │ │ └── tick_count.h │ ├── index.src.html │ ├── jni │ ├── Android.mk │ └── Application.mk │ └── src │ ├── Makefile │ ├── index.html │ ├── old │ ├── concurrent_queue_v2.cpp │ ├── concurrent_queue_v2.h │ ├── concurrent_vector_v2.cpp │ ├── concurrent_vector_v2.h │ ├── spin_rw_mutex_v2.cpp │ ├── spin_rw_mutex_v2.h │ ├── task_v2.cpp │ ├── test_concurrent_queue_v2.cpp │ ├── test_concurrent_vector_v2.cpp │ ├── test_mutex_v2.cpp │ └── test_task_scheduler_observer_v3.cpp │ ├── perf │ ├── coarse_grained_raii_lru_cache.h │ ├── cpq_pdes.cpp │ ├── fibonacci_impl_tbb.cpp │ ├── perf.cpp │ ├── perf.h │ ├── perf_sched.cpp │ ├── run_statistics.sh │ ├── statistics.cpp │ ├── statistics.h │ ├── statistics_xml.h │ ├── time_cpq_throughput_test.cpp │ ├── time_fibonacci_cutoff.cpp │ ├── time_framework.h │ ├── time_hash_map.cpp │ ├── time_hash_map_fill.cpp │ ├── time_hash_map_fill.html │ ├── time_locked_work.cpp │ ├── time_lru_cache_throughput.cpp │ ├── time_sandbox.h │ └── time_vector.cpp │ ├── rml │ ├── client │ │ ├── index.html │ │ ├── library_assert.h │ │ ├── omp_dynamic_link.cpp │ │ ├── omp_dynamic_link.h │ │ ├── rml_factory.h │ │ ├── rml_omp.cpp │ │ └── rml_tbb.cpp │ ├── include │ │ ├── index.html │ │ ├── rml_base.h │ │ ├── rml_omp.h │ │ └── rml_tbb.h │ ├── index.html │ ├── perfor │ │ ├── omp_nested.cpp │ │ ├── omp_simple.cpp │ │ ├── tbb_multi_omp.cpp │ │ ├── tbb_simple.cpp │ │ └── thread_level.h │ ├── server │ │ ├── index.html │ │ ├── irml.rc │ │ ├── job_automaton.h │ │ ├── lin-rml-export.def │ │ ├── rml_server.cpp │ │ ├── thread_monitor.h │ │ ├── wait_counter.h │ │ ├── win32-rml-export.def │ │ └── win64-rml-export.def │ └── test │ │ ├── rml_omp_stub.cpp │ │ ├── test_job_automaton.cpp │ │ ├── test_rml_mixed.cpp │ │ ├── test_rml_omp.cpp │ │ ├── test_rml_omp_c_linkage.c │ │ ├── test_rml_tbb.cpp │ │ ├── test_server.h │ │ └── test_thread_monitor.cpp │ ├── tbb │ ├── arena.cpp │ ├── arena.h │ ├── cache_aligned_allocator.cpp │ ├── cilk-tbb-interop.h │ ├── concurrent_hash_map.cpp │ ├── concurrent_monitor.cpp │ ├── concurrent_monitor.h │ ├── concurrent_queue.cpp │ ├── concurrent_vector.cpp │ ├── condition_variable.cpp │ ├── critical_section.cpp │ ├── custom_scheduler.h │ ├── dynamic_link.cpp │ ├── dynamic_link.h │ ├── governor.cpp │ ├── governor.h │ ├── ia32-masm │ │ ├── atomic_support.asm │ │ ├── itsx.asm │ │ └── lock_byte.asm │ ├── ia64-gas │ │ ├── atomic_support.s │ │ ├── ia64_misc.s │ │ ├── lock_byte.s │ │ ├── log2.s │ │ └── pause.s │ ├── ibm_aix51 │ │ └── atomic_support.c │ ├── index.html │ ├── intel64-masm │ │ ├── atomic_support.asm │ │ ├── intel64_misc.asm │ │ └── itsx.asm │ ├── intrusive_list.h │ ├── itt_notify.cpp │ ├── itt_notify.h │ ├── lin32-tbb-export.def │ ├── lin32-tbb-export.lst │ ├── lin64-tbb-export.def │ ├── lin64-tbb-export.lst │ ├── lin64ipf-tbb-export.def │ ├── lin64ipf-tbb-export.lst │ ├── mac32-tbb-export.def │ ├── mac32-tbb-export.lst │ ├── mac64-tbb-export.def │ ├── mac64-tbb-export.lst │ ├── mailbox.h │ ├── market.cpp │ ├── market.h │ ├── mutex.cpp │ ├── observer_proxy.cpp │ ├── observer_proxy.h │ ├── pipeline.cpp │ ├── private_server.cpp │ ├── queuing_mutex.cpp │ ├── queuing_rw_mutex.cpp │ ├── reader_writer_lock.cpp │ ├── recursive_mutex.cpp │ ├── scheduler.cpp │ ├── scheduler.h │ ├── scheduler_common.h │ ├── scheduler_utility.h │ ├── semaphore.cpp │ ├── semaphore.h │ ├── spin_mutex.cpp │ ├── spin_rw_mutex.cpp │ ├── task.cpp │ ├── task_group_context.cpp │ ├── task_stream.h │ ├── tbb_assert_impl.h │ ├── tbb_main.cpp │ ├── tbb_main.h │ ├── tbb_misc.cpp │ ├── tbb_misc.h │ ├── tbb_misc_ex.cpp │ ├── tbb_resource.rc │ ├── tbb_statistics.cpp │ ├── tbb_statistics.h │ ├── tbb_thread.cpp │ ├── tbb_version.h │ ├── tls.h │ ├── tools_api │ │ ├── disable_warnings.h │ │ ├── internal │ │ │ └── ittnotify.h │ │ ├── ittnotify.h │ │ ├── ittnotify_config.h │ │ ├── ittnotify_static.c │ │ ├── ittnotify_static.h │ │ ├── ittnotify_types.h │ │ ├── legacy │ │ │ └── ittnotify.h │ │ └── prototype │ │ │ └── ittnotify.h │ ├── version_string.ver │ ├── win32-tbb-export.def │ ├── win32-tbb-export.lst │ ├── win64-gcc-tbb-export.def │ ├── win64-gcc-tbb-export.lst │ ├── win64-tbb-export.def │ ├── win64-tbb-export.lst │ ├── winrt-tbb-export.lst │ ├── x86_rtm_rw_mutex.cpp │ └── xbox360-tbb-export.def │ ├── tbbmalloc │ ├── Customize.h │ ├── MapMemory.h │ ├── Statistics.h │ ├── TypeDefinitions.h │ ├── backend.cpp │ ├── backref.cpp │ ├── frontend.cpp │ ├── index.html │ ├── large_objects.cpp │ ├── lin32-proxy-export.def │ ├── lin32-tbbmalloc-export.def │ ├── lin64-proxy-export.def │ ├── lin64-tbbmalloc-export.def │ ├── lin64ipf-proxy-export.def │ ├── lin64ipf-tbbmalloc-export.def │ ├── mac32-tbbmalloc-export.def │ ├── mac64-tbbmalloc-export.def │ ├── proxy.cpp │ ├── proxy.h │ ├── proxy_overload_osx.h │ ├── shared_utils.h │ ├── tbb_function_replacement.cpp │ ├── tbb_function_replacement.h │ ├── tbbmalloc.cpp │ ├── tbbmalloc.rc │ ├── tbbmalloc_internal.h │ ├── tbbmalloc_internal_api.h │ ├── win32-gcc-tbbmalloc-export.def │ ├── win32-tbbmalloc-export.def │ ├── win64-gcc-tbbmalloc-export.def │ ├── win64-tbbmalloc-export.def │ └── xbox360-tbbmalloc-export.def │ ├── tbbproxy │ ├── tbbproxy-windows.asm │ └── tbbproxy.cpp │ └── test │ ├── harness.h │ ├── harness_allocator.h │ ├── harness_assert.h │ ├── harness_bad_expr.h │ ├── harness_barrier.h │ ├── harness_checktype.h │ ├── harness_concurrency.h │ ├── harness_concurrency_checker.h │ ├── harness_concurrency_tracker.h │ ├── harness_cpu.h │ ├── harness_defs.h │ ├── harness_dynamic_libs.h │ ├── harness_eh.h │ ├── harness_fp.h │ ├── harness_graph.h │ ├── harness_inject_scheduler.h │ ├── harness_iterator.h │ ├── harness_m128.h │ ├── harness_memory.h │ ├── harness_mic.h │ ├── harness_report.h │ ├── harness_runtime_loader.h │ ├── harness_task.h │ ├── harness_tbb_independence.h │ ├── harness_test_cases_framework.h │ ├── harness_tsx.h │ ├── test_ScalableAllocator.cpp │ ├── test_ScalableAllocator_STL.cpp │ ├── test_aggregator.cpp │ ├── test_aligned_space.cpp │ ├── test_allocator.h │ ├── test_allocator_STL.h │ ├── test_assembly.cpp │ ├── test_async_node.cpp │ ├── test_atomic.cpp │ ├── test_blocked_range.cpp │ ├── test_blocked_range2d.cpp │ ├── test_blocked_range3d.cpp │ ├── test_broadcast_node.cpp │ ├── test_buffer_node.cpp │ ├── test_cache_aligned_allocator.cpp │ ├── test_cache_aligned_allocator_STL.cpp │ ├── test_cilk_common.h │ ├── test_cilk_dynamic_load.cpp │ ├── test_cilk_interop.cpp │ ├── test_combinable.cpp │ ├── test_composite_node.cpp │ ├── test_concurrent_hash_map.cpp │ ├── test_concurrent_lru_cache.cpp │ ├── test_concurrent_monitor.cpp │ ├── test_concurrent_priority_queue.cpp │ ├── test_concurrent_queue.cpp │ ├── test_concurrent_queue_whitebox.cpp │ ├── test_concurrent_unordered_common.h │ ├── test_concurrent_unordered_map.cpp │ ├── test_concurrent_unordered_set.cpp │ ├── test_concurrent_vector.cpp │ ├── test_condition_variable.h │ ├── test_container_move_support.h │ ├── test_continue_node.cpp │ ├── test_critical_section.cpp │ ├── test_dynamic_link.cpp │ ├── test_eh_algorithms.cpp │ ├── test_eh_flow_graph.cpp │ ├── test_eh_tasks.cpp │ ├── test_enumerable_thread_specific.cpp │ ├── test_examples_common_utility.cpp │ ├── test_fast_random.cpp │ ├── test_flow_graph.cpp │ ├── test_flow_graph_whitebox.cpp │ ├── test_fp.cpp │ ├── test_function_node.cpp │ ├── test_global_control.cpp │ ├── test_global_control_whitebox.cpp │ ├── test_halt.cpp │ ├── test_handle_perror.cpp │ ├── test_hw_concurrency.cpp │ ├── test_indexer_node.cpp │ ├── test_initializer_list.h │ ├── test_inits_loop.cpp │ ├── test_intrusive_list.cpp │ ├── test_ittnotify.cpp │ ├── test_join_node.cpp │ ├── test_lambda.cpp │ ├── test_limiter_node.cpp │ ├── test_malloc_atexit.cpp │ ├── test_malloc_compliance.cpp │ ├── test_malloc_init_shutdown.cpp │ ├── test_malloc_lib_unload.cpp │ ├── test_malloc_overload.cpp │ ├── test_malloc_pools.cpp │ ├── test_malloc_pure_c.c │ ├── test_malloc_regression.cpp │ ├── test_malloc_used_by_lib.cpp │ ├── test_malloc_whitebox.cpp │ ├── test_model_plugin.cpp │ ├── test_multifunction_node.cpp │ ├── test_mutex.cpp │ ├── test_mutex_native_threads.cpp │ ├── test_openmp.cpp │ ├── test_overwrite_node.cpp │ ├── test_parallel_do.cpp │ ├── test_parallel_for.cpp │ ├── test_parallel_for_each.cpp │ ├── test_parallel_for_vectorization.cpp │ ├── test_parallel_invoke.cpp │ ├── test_parallel_pipeline.cpp │ ├── test_parallel_reduce.cpp │ ├── test_parallel_scan.cpp │ ├── test_parallel_sort.cpp │ ├── test_parallel_while.cpp │ ├── test_partitioner.h │ ├── test_partitioner_whitebox.cpp │ ├── test_partitioner_whitebox.h │ ├── test_pipeline.cpp │ ├── test_pipeline_with_tbf.cpp │ ├── test_priority_queue_node.cpp │ ├── test_queue_node.cpp │ ├── test_range_based_for.h │ ├── test_reader_writer_lock.cpp │ ├── test_runtime_loader.cpp │ ├── test_rwm_upgrade_downgrade.cpp │ ├── test_semaphore.cpp │ ├── test_sequencer_node.cpp │ ├── test_source_node.cpp │ ├── test_split_node.cpp │ ├── test_static_assert.cpp │ ├── test_std_thread.cpp │ ├── test_tagged_msg.cpp │ ├── test_task.cpp │ ├── test_task_arena.cpp │ ├── test_task_assertions.cpp │ ├── test_task_auto_init.cpp │ ├── test_task_enqueue.cpp │ ├── test_task_group.cpp │ ├── test_task_leaks.cpp │ ├── test_task_priority.cpp │ ├── test_task_scheduler_init.cpp │ ├── test_task_scheduler_observer.cpp │ ├── test_task_steal_limit.cpp │ ├── test_tbb_condition_variable.cpp │ ├── test_tbb_fork.cpp │ ├── test_tbb_header.cpp │ ├── test_tbb_thread.cpp │ ├── test_tbb_version.cpp │ ├── test_thread.h │ ├── test_tick_count.cpp │ ├── test_tuple.cpp │ ├── test_write_once_node.cpp │ └── test_yield.cpp └── src ├── AlgorithmStage.h ├── CMakeLists.txt ├── Energy.h ├── FastLsBuildUtils.cpp ├── FastLsBuildUtils.h ├── GlobalLocalParametrization.cpp ├── GlobalLocalParametrization.h ├── LinesearchParametrizer.cpp ├── LinesearchParametrizer.h ├── LocalWeightedArapParametrizer.cpp ├── LocalWeightedArapParametrizer.h ├── Param_State.cpp ├── Param_State.h ├── ParametrizationAlgorithm.h ├── PardisoSolver.cpp ├── PardisoSolver.h ├── StateManager.cpp ├── StateManager.h ├── SymmetricDirichlet.cpp ├── SymmetricDirichlet.h ├── eigen_stl_utils.cpp ├── eigen_stl_utils.h ├── main.cpp ├── parametrization_utils.cpp └── parametrization_utils.h /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/_config.yml -------------------------------------------------------------------------------- /camelhead.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/camelhead.obj -------------------------------------------------------------------------------- /ext/eigen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/CMakeLists.txt -------------------------------------------------------------------------------- /ext/eigen/COPYING.BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/COPYING.BSD -------------------------------------------------------------------------------- /ext/eigen/COPYING.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/COPYING.GPL -------------------------------------------------------------------------------- /ext/eigen/COPYING.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/COPYING.LGPL -------------------------------------------------------------------------------- /ext/eigen/COPYING.MINPACK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/COPYING.MINPACK -------------------------------------------------------------------------------- /ext/eigen/COPYING.MPL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/COPYING.MPL2 -------------------------------------------------------------------------------- /ext/eigen/COPYING.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/COPYING.README -------------------------------------------------------------------------------- /ext/eigen/CTestConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/CTestConfig.cmake -------------------------------------------------------------------------------- /ext/eigen/Eigen/Array: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/Eigen/Array -------------------------------------------------------------------------------- /ext/eigen/Eigen/Cholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/Eigen/Cholesky -------------------------------------------------------------------------------- /ext/eigen/Eigen/Core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/Eigen/Core -------------------------------------------------------------------------------- /ext/eigen/Eigen/Dense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/Eigen/Dense -------------------------------------------------------------------------------- /ext/eigen/Eigen/Eigen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/Eigen/Eigen -------------------------------------------------------------------------------- /ext/eigen/Eigen/Eigen2Support: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/Eigen/Eigen2Support -------------------------------------------------------------------------------- /ext/eigen/Eigen/Eigenvalues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/Eigen/Eigenvalues -------------------------------------------------------------------------------- /ext/eigen/Eigen/Geometry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/Eigen/Geometry -------------------------------------------------------------------------------- /ext/eigen/Eigen/Householder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/Eigen/Householder -------------------------------------------------------------------------------- /ext/eigen/Eigen/Jacobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/Eigen/Jacobi -------------------------------------------------------------------------------- /ext/eigen/Eigen/LU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/Eigen/LU -------------------------------------------------------------------------------- /ext/eigen/Eigen/LeastSquares: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/Eigen/LeastSquares -------------------------------------------------------------------------------- /ext/eigen/Eigen/MetisSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/Eigen/MetisSupport -------------------------------------------------------------------------------- /ext/eigen/Eigen/PaStiXSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/Eigen/PaStiXSupport -------------------------------------------------------------------------------- /ext/eigen/Eigen/QR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/Eigen/QR -------------------------------------------------------------------------------- /ext/eigen/Eigen/SPQRSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/Eigen/SPQRSupport -------------------------------------------------------------------------------- /ext/eigen/Eigen/SVD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/Eigen/SVD -------------------------------------------------------------------------------- /ext/eigen/Eigen/Sparse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/Eigen/Sparse -------------------------------------------------------------------------------- /ext/eigen/Eigen/SparseCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/Eigen/SparseCore -------------------------------------------------------------------------------- /ext/eigen/Eigen/SparseLU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/Eigen/SparseLU -------------------------------------------------------------------------------- /ext/eigen/Eigen/SparseQR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/Eigen/SparseQR -------------------------------------------------------------------------------- /ext/eigen/Eigen/StdDeque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/Eigen/StdDeque -------------------------------------------------------------------------------- /ext/eigen/Eigen/StdList: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/Eigen/StdList -------------------------------------------------------------------------------- /ext/eigen/Eigen/StdVector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/Eigen/StdVector -------------------------------------------------------------------------------- /ext/eigen/Eigen/src/Core/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/Eigen/src/Core/IO.h -------------------------------------------------------------------------------- /ext/eigen/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/INSTALL -------------------------------------------------------------------------------- /ext/eigen/bench/BenchTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/bench/BenchTimer.h -------------------------------------------------------------------------------- /ext/eigen/bench/BenchUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/bench/BenchUtil.h -------------------------------------------------------------------------------- /ext/eigen/bench/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/bench/README.txt -------------------------------------------------------------------------------- /ext/eigen/bench/benchFFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/bench/benchFFT.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/bench_sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/bench/bench_sum.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/bench/benchmark.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/btl/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/bench/btl/COPYING -------------------------------------------------------------------------------- /ext/eigen/bench/btl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/bench/btl/README -------------------------------------------------------------------------------- /ext/eigen/bench/eig33.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/bench/eig33.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/bench/geometry.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/quatmul.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/bench/quatmul.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/sparse_lu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/bench/sparse_lu.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/spmv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/bench/spmv.cpp -------------------------------------------------------------------------------- /ext/eigen/bench/vdw_new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/bench/vdw_new.cpp -------------------------------------------------------------------------------- /ext/eigen/blas/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/blas/CMakeLists.txt -------------------------------------------------------------------------------- /ext/eigen/blas/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/blas/README.txt -------------------------------------------------------------------------------- /ext/eigen/blas/Rank2Update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/blas/Rank2Update.h -------------------------------------------------------------------------------- /ext/eigen/blas/chbmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/blas/chbmv.f -------------------------------------------------------------------------------- /ext/eigen/blas/chpmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/blas/chpmv.f -------------------------------------------------------------------------------- /ext/eigen/blas/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/blas/common.h -------------------------------------------------------------------------------- /ext/eigen/blas/complexdots.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/blas/complexdots.f -------------------------------------------------------------------------------- /ext/eigen/blas/ctbmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/blas/ctbmv.f -------------------------------------------------------------------------------- /ext/eigen/blas/double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/blas/double.cpp -------------------------------------------------------------------------------- /ext/eigen/blas/drotm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/blas/drotm.f -------------------------------------------------------------------------------- /ext/eigen/blas/drotmg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/blas/drotmg.f -------------------------------------------------------------------------------- /ext/eigen/blas/dsbmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/blas/dsbmv.f -------------------------------------------------------------------------------- /ext/eigen/blas/dspmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/blas/dspmv.f -------------------------------------------------------------------------------- /ext/eigen/blas/dtbmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/blas/dtbmv.f -------------------------------------------------------------------------------- /ext/eigen/blas/level1_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/blas/level1_impl.h -------------------------------------------------------------------------------- /ext/eigen/blas/level2_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/blas/level2_impl.h -------------------------------------------------------------------------------- /ext/eigen/blas/level3_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/blas/level3_impl.h -------------------------------------------------------------------------------- /ext/eigen/blas/lsame.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/blas/lsame.f -------------------------------------------------------------------------------- /ext/eigen/blas/single.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/blas/single.cpp -------------------------------------------------------------------------------- /ext/eigen/blas/srotm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/blas/srotm.f -------------------------------------------------------------------------------- /ext/eigen/blas/srotmg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/blas/srotmg.f -------------------------------------------------------------------------------- /ext/eigen/blas/ssbmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/blas/ssbmv.f -------------------------------------------------------------------------------- /ext/eigen/blas/sspmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/blas/sspmv.f -------------------------------------------------------------------------------- /ext/eigen/blas/stbmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/blas/stbmv.f -------------------------------------------------------------------------------- /ext/eigen/blas/xerbla.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/blas/xerbla.cpp -------------------------------------------------------------------------------- /ext/eigen/blas/zhbmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/blas/zhbmv.f -------------------------------------------------------------------------------- /ext/eigen/blas/zhpmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/blas/zhpmv.f -------------------------------------------------------------------------------- /ext/eigen/blas/ztbmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/blas/ztbmv.f -------------------------------------------------------------------------------- /ext/eigen/cmake/FindGMP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/cmake/FindGMP.cmake -------------------------------------------------------------------------------- /ext/eigen/cmake/FindGSL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/cmake/FindGSL.cmake -------------------------------------------------------------------------------- /ext/eigen/debug/gdb/__init__.py: -------------------------------------------------------------------------------- 1 | # Intentionally empty 2 | -------------------------------------------------------------------------------- /ext/eigen/demos/opengl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/demos/opengl/README -------------------------------------------------------------------------------- /ext/eigen/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/doc/CMakeLists.txt -------------------------------------------------------------------------------- /ext/eigen/doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/doc/Doxyfile.in -------------------------------------------------------------------------------- /ext/eigen/doc/Manual.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/doc/Manual.dox -------------------------------------------------------------------------------- /ext/eigen/doc/Overview.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/doc/Overview.dox -------------------------------------------------------------------------------- /ext/eigen/doc/Pitfalls.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/doc/Pitfalls.dox -------------------------------------------------------------------------------- /ext/eigen/doc/eigendoxy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/doc/eigendoxy.css -------------------------------------------------------------------------------- /ext/eigen/doc/examples/.krazy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/doc/examples/.krazy -------------------------------------------------------------------------------- /ext/eigen/doc/snippets/.krazy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/doc/snippets/.krazy -------------------------------------------------------------------------------- /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/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/doc/tutorial.cpp -------------------------------------------------------------------------------- /ext/eigen/eigen3.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/eigen3.pc.in -------------------------------------------------------------------------------- /ext/eigen/failtest/qr_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/failtest/qr_int.cpp -------------------------------------------------------------------------------- /ext/eigen/failtest/ref_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/failtest/ref_1.cpp -------------------------------------------------------------------------------- /ext/eigen/failtest/ref_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/failtest/ref_2.cpp -------------------------------------------------------------------------------- /ext/eigen/failtest/ref_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/failtest/ref_3.cpp -------------------------------------------------------------------------------- /ext/eigen/failtest/ref_4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/failtest/ref_4.cpp -------------------------------------------------------------------------------- /ext/eigen/failtest/ref_5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/failtest/ref_5.cpp -------------------------------------------------------------------------------- /ext/eigen/lapack/cholesky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/lapack/cholesky.cpp -------------------------------------------------------------------------------- /ext/eigen/lapack/clacgv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/lapack/clacgv.f -------------------------------------------------------------------------------- /ext/eigen/lapack/cladiv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/lapack/cladiv.f -------------------------------------------------------------------------------- /ext/eigen/lapack/clarf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/lapack/clarf.f -------------------------------------------------------------------------------- /ext/eigen/lapack/clarfb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/lapack/clarfb.f -------------------------------------------------------------------------------- /ext/eigen/lapack/clarfg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/lapack/clarfg.f -------------------------------------------------------------------------------- /ext/eigen/lapack/clarft.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/lapack/clarft.f -------------------------------------------------------------------------------- /ext/eigen/lapack/dladiv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/lapack/dladiv.f -------------------------------------------------------------------------------- /ext/eigen/lapack/dlamch.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/lapack/dlamch.f -------------------------------------------------------------------------------- /ext/eigen/lapack/dlapy2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/lapack/dlapy2.f -------------------------------------------------------------------------------- /ext/eigen/lapack/dlapy3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/lapack/dlapy3.f -------------------------------------------------------------------------------- /ext/eigen/lapack/dlarf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/lapack/dlarf.f -------------------------------------------------------------------------------- /ext/eigen/lapack/dlarfb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/lapack/dlarfb.f -------------------------------------------------------------------------------- /ext/eigen/lapack/dlarfg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/lapack/dlarfg.f -------------------------------------------------------------------------------- /ext/eigen/lapack/dlarft.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/lapack/dlarft.f -------------------------------------------------------------------------------- /ext/eigen/lapack/double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/lapack/double.cpp -------------------------------------------------------------------------------- /ext/eigen/lapack/ilaclc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/lapack/ilaclc.f -------------------------------------------------------------------------------- /ext/eigen/lapack/ilaclr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/lapack/ilaclr.f -------------------------------------------------------------------------------- /ext/eigen/lapack/iladlc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/lapack/iladlc.f -------------------------------------------------------------------------------- /ext/eigen/lapack/iladlr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/lapack/iladlr.f -------------------------------------------------------------------------------- /ext/eigen/lapack/ilaslc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/lapack/ilaslc.f -------------------------------------------------------------------------------- /ext/eigen/lapack/ilaslr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/lapack/ilaslr.f -------------------------------------------------------------------------------- /ext/eigen/lapack/ilazlc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/lapack/ilazlc.f -------------------------------------------------------------------------------- /ext/eigen/lapack/ilazlr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/lapack/ilazlr.f -------------------------------------------------------------------------------- /ext/eigen/lapack/lu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/lapack/lu.cpp -------------------------------------------------------------------------------- /ext/eigen/lapack/single.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/lapack/single.cpp -------------------------------------------------------------------------------- /ext/eigen/lapack/sladiv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/lapack/sladiv.f -------------------------------------------------------------------------------- /ext/eigen/lapack/slamch.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/lapack/slamch.f -------------------------------------------------------------------------------- /ext/eigen/lapack/slapy2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/lapack/slapy2.f -------------------------------------------------------------------------------- /ext/eigen/lapack/slapy3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/lapack/slapy3.f -------------------------------------------------------------------------------- /ext/eigen/lapack/slarf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/lapack/slarf.f -------------------------------------------------------------------------------- /ext/eigen/lapack/slarfb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/lapack/slarfb.f -------------------------------------------------------------------------------- /ext/eigen/lapack/slarfg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/lapack/slarfg.f -------------------------------------------------------------------------------- /ext/eigen/lapack/slarft.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/lapack/slarft.f -------------------------------------------------------------------------------- /ext/eigen/lapack/zlacgv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/lapack/zlacgv.f -------------------------------------------------------------------------------- /ext/eigen/lapack/zladiv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/lapack/zladiv.f -------------------------------------------------------------------------------- /ext/eigen/lapack/zlarf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/lapack/zlarf.f -------------------------------------------------------------------------------- /ext/eigen/lapack/zlarfb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/lapack/zlarfb.f -------------------------------------------------------------------------------- /ext/eigen/lapack/zlarfg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/lapack/zlarfg.f -------------------------------------------------------------------------------- /ext/eigen/lapack/zlarft.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/lapack/zlarft.f -------------------------------------------------------------------------------- /ext/eigen/scripts/check.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/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/release.in: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cmake -DCMAKE_BUILD_TYPE=Release . 4 | -------------------------------------------------------------------------------- /ext/eigen/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/test/CMakeLists.txt -------------------------------------------------------------------------------- /ext/eigen/test/adjoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/test/adjoint.cpp -------------------------------------------------------------------------------- /ext/eigen/test/array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/test/array.cpp -------------------------------------------------------------------------------- /ext/eigen/test/bandmatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/test/bandmatrix.cpp -------------------------------------------------------------------------------- /ext/eigen/test/basicstuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/test/basicstuff.cpp -------------------------------------------------------------------------------- /ext/eigen/test/bicgstab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/test/bicgstab.cpp -------------------------------------------------------------------------------- /ext/eigen/test/block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/test/block.cpp -------------------------------------------------------------------------------- /ext/eigen/test/cholesky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/test/cholesky.cpp -------------------------------------------------------------------------------- /ext/eigen/test/corners.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/test/corners.cpp -------------------------------------------------------------------------------- /ext/eigen/test/cwiseop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/test/cwiseop.cpp -------------------------------------------------------------------------------- /ext/eigen/test/denseLM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/test/denseLM.cpp -------------------------------------------------------------------------------- /ext/eigen/test/diagonal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/test/diagonal.cpp -------------------------------------------------------------------------------- /ext/eigen/test/dontalign.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/test/dontalign.cpp -------------------------------------------------------------------------------- /ext/eigen/test/dynalloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/test/dynalloc.cpp -------------------------------------------------------------------------------- /ext/eigen/test/eigen2/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/test/eigen2/main.h -------------------------------------------------------------------------------- /ext/eigen/test/exceptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/test/exceptions.cpp -------------------------------------------------------------------------------- /ext/eigen/test/hessenberg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/test/hessenberg.cpp -------------------------------------------------------------------------------- /ext/eigen/test/inverse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/test/inverse.cpp -------------------------------------------------------------------------------- /ext/eigen/test/jacobi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/test/jacobi.cpp -------------------------------------------------------------------------------- /ext/eigen/test/jacobisvd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/test/jacobisvd.cpp -------------------------------------------------------------------------------- /ext/eigen/test/lu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/test/lu.cpp -------------------------------------------------------------------------------- /ext/eigen/test/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/test/main.h -------------------------------------------------------------------------------- /ext/eigen/test/mapstride.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/test/mapstride.cpp -------------------------------------------------------------------------------- /ext/eigen/test/meta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/test/meta.cpp -------------------------------------------------------------------------------- /ext/eigen/test/mpl2only.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/test/mpl2only.cpp -------------------------------------------------------------------------------- /ext/eigen/test/nomalloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/test/nomalloc.cpp -------------------------------------------------------------------------------- /ext/eigen/test/nullary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/test/nullary.cpp -------------------------------------------------------------------------------- /ext/eigen/test/packetmath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/test/packetmath.cpp -------------------------------------------------------------------------------- /ext/eigen/test/product.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/test/product.h -------------------------------------------------------------------------------- /ext/eigen/test/qr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/test/qr.cpp -------------------------------------------------------------------------------- /ext/eigen/test/qtvector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/test/qtvector.cpp -------------------------------------------------------------------------------- /ext/eigen/test/real_qz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/test/real_qz.cpp -------------------------------------------------------------------------------- /ext/eigen/test/redux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/test/redux.cpp -------------------------------------------------------------------------------- /ext/eigen/test/ref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/test/ref.cpp -------------------------------------------------------------------------------- /ext/eigen/test/resize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/test/resize.cpp -------------------------------------------------------------------------------- /ext/eigen/test/runtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/test/runtest.sh -------------------------------------------------------------------------------- /ext/eigen/test/schur_real.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/test/schur_real.cpp -------------------------------------------------------------------------------- /ext/eigen/test/sizeof.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/test/sizeof.cpp -------------------------------------------------------------------------------- /ext/eigen/test/sparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/test/sparse.h -------------------------------------------------------------------------------- /ext/eigen/test/sparseLM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/test/sparseLM.cpp -------------------------------------------------------------------------------- /ext/eigen/test/sparselu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/test/sparselu.cpp -------------------------------------------------------------------------------- /ext/eigen/test/sparseqr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/test/sparseqr.cpp -------------------------------------------------------------------------------- /ext/eigen/test/stddeque.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/test/stddeque.cpp -------------------------------------------------------------------------------- /ext/eigen/test/stdlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/test/stdlist.cpp -------------------------------------------------------------------------------- /ext/eigen/test/stdvector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/test/stdvector.cpp -------------------------------------------------------------------------------- /ext/eigen/test/swap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/test/swap.cpp -------------------------------------------------------------------------------- /ext/eigen/test/triangular.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/test/triangular.cpp -------------------------------------------------------------------------------- /ext/eigen/test/umeyama.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/test/umeyama.cpp -------------------------------------------------------------------------------- /ext/eigen/test/visitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/test/visitor.cpp -------------------------------------------------------------------------------- /ext/eigen/test/zerosized.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/eigen/test/zerosized.cpp -------------------------------------------------------------------------------- /ext/libigl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/.gitignore -------------------------------------------------------------------------------- /ext/libigl/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/.gitmodules -------------------------------------------------------------------------------- /ext/libigl/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/.mailmap -------------------------------------------------------------------------------- /ext/libigl/ACKNOWLEDGEMENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/ACKNOWLEDGEMENTS -------------------------------------------------------------------------------- /ext/libigl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/LICENSE -------------------------------------------------------------------------------- /ext/libigl/LICENSE.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/LICENSE.GPL -------------------------------------------------------------------------------- /ext/libigl/LICENSE.MPL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/LICENSE.MPL2 -------------------------------------------------------------------------------- /ext/libigl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/README.md -------------------------------------------------------------------------------- /ext/libigl/RELEASE_HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/RELEASE_HISTORY.md -------------------------------------------------------------------------------- /ext/libigl/VERSION.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/VERSION.txt -------------------------------------------------------------------------------- /ext/libigl/exclude.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/exclude.lst -------------------------------------------------------------------------------- /ext/libigl/external/AntTweakBar/src/TwPrecomp.cpp: -------------------------------------------------------------------------------- 1 | #include "TwPrecomp.h" 2 | -------------------------------------------------------------------------------- /ext/libigl/external/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/external/README.md -------------------------------------------------------------------------------- /ext/libigl/external/libpng/arm/.deps/arm_init.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /ext/libigl/external/libpng/arm/.deps/filter_neon.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /ext/libigl/external/libpng/arm/.deps/filter_neon_intrinsics.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /ext/libigl/external/libpng/contrib/libtests/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/libigl/external/libpng/contrib/libtests/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/libigl/external/libpng/contrib/tools/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/libigl/external/libpng/contrib/tools/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/libigl/external/libpng/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for config.h 2 | -------------------------------------------------------------------------------- /ext/libigl/external/libpng/tests/pngvalid-gamma-16-to-8: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --gamma-16-to-8 3 | -------------------------------------------------------------------------------- /ext/libigl/external/libpng/tests/pngvalid-gamma-alpha-mode: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --gamma-alpha-mode 3 | -------------------------------------------------------------------------------- /ext/libigl/external/libpng/tests/pngvalid-gamma-background: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --gamma-background 3 | -------------------------------------------------------------------------------- /ext/libigl/external/libpng/tests/pngvalid-gamma-expand16-alpha-mode: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --gamma-alpha-mode --expand16 3 | -------------------------------------------------------------------------------- /ext/libigl/external/libpng/tests/pngvalid-gamma-expand16-background: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --gamma-background --expand16 3 | -------------------------------------------------------------------------------- /ext/libigl/external/libpng/tests/pngvalid-gamma-expand16-transform: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --gamma-transform --expand16 3 | -------------------------------------------------------------------------------- /ext/libigl/external/libpng/tests/pngvalid-gamma-sbit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --gamma-sbit 3 | -------------------------------------------------------------------------------- /ext/libigl/external/libpng/tests/pngvalid-gamma-threshold: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --gamma-threshold 3 | -------------------------------------------------------------------------------- /ext/libigl/external/libpng/tests/pngvalid-gamma-transform: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --gamma-transform 3 | -------------------------------------------------------------------------------- /ext/libigl/external/libpng/tests/pngvalid-progressive-interlace-size: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --size --progressive-read 3 | -------------------------------------------------------------------------------- /ext/libigl/external/libpng/tests/pngvalid-progressive-interlace-transform: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --transform 3 | -------------------------------------------------------------------------------- /ext/libigl/external/tinyxml2/resources/empty.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/libigl/external/yimg/Makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/libigl/include/igl/AABB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/include/igl/AABB.h -------------------------------------------------------------------------------- /ext/libigl/include/igl/EPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/include/igl/EPS.h -------------------------------------------------------------------------------- /ext/libigl/include/igl/Hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/include/igl/Hit.h -------------------------------------------------------------------------------- /ext/libigl/include/igl/IO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/include/igl/IO -------------------------------------------------------------------------------- /ext/libigl/include/igl/ONE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/include/igl/ONE.h -------------------------------------------------------------------------------- /ext/libigl/include/igl/PI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/include/igl/PI.h -------------------------------------------------------------------------------- /ext/libigl/include/igl/STR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/include/igl/STR.h -------------------------------------------------------------------------------- /ext/libigl/include/igl/ZERO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/include/igl/ZERO.h -------------------------------------------------------------------------------- /ext/libigl/include/igl/arap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/include/igl/arap.h -------------------------------------------------------------------------------- /ext/libigl/include/igl/cat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/include/igl/cat.h -------------------------------------------------------------------------------- /ext/libigl/include/igl/ceil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/include/igl/ceil.h -------------------------------------------------------------------------------- /ext/libigl/include/igl/diag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/include/igl/diag.h -------------------------------------------------------------------------------- /ext/libigl/include/igl/dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/include/igl/dot.h -------------------------------------------------------------------------------- /ext/libigl/include/igl/dqs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/include/igl/dqs.h -------------------------------------------------------------------------------- /ext/libigl/include/igl/eigs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/include/igl/eigs.h -------------------------------------------------------------------------------- /ext/libigl/include/igl/find.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/include/igl/find.h -------------------------------------------------------------------------------- /ext/libigl/include/igl/grad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/include/igl/grad.h -------------------------------------------------------------------------------- /ext/libigl/include/igl/jet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/include/igl/jet.h -------------------------------------------------------------------------------- /ext/libigl/include/igl/lscm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/include/igl/lscm.h -------------------------------------------------------------------------------- /ext/libigl/include/igl/mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/include/igl/mod.h -------------------------------------------------------------------------------- /ext/libigl/include/igl/mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/include/igl/mode.h -------------------------------------------------------------------------------- /ext/libigl/include/igl/mvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/include/igl/mvc.h -------------------------------------------------------------------------------- /ext/libigl/include/igl/null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/include/igl/null.h -------------------------------------------------------------------------------- /ext/libigl/include/igl/orth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/include/igl/orth.h -------------------------------------------------------------------------------- /ext/libigl/include/igl/ply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/include/igl/ply.h -------------------------------------------------------------------------------- /ext/libigl/include/igl/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/include/igl/sort.h -------------------------------------------------------------------------------- /ext/libigl/include/igl/sum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/include/igl/sum.h -------------------------------------------------------------------------------- /ext/libigl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/index.html -------------------------------------------------------------------------------- /ext/libigl/libigl-logo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/libigl-logo.ai -------------------------------------------------------------------------------- /ext/libigl/libigl-teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/libigl-teaser.png -------------------------------------------------------------------------------- /ext/libigl/optional/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/optional/README.md -------------------------------------------------------------------------------- /ext/libigl/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/python/README.md -------------------------------------------------------------------------------- /ext/libigl/python/py_doc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/python/py_doc.cpp -------------------------------------------------------------------------------- /ext/libigl/python/py_doc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/python/py_doc.h -------------------------------------------------------------------------------- /ext/libigl/python/py_igl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/python/py_igl.cpp -------------------------------------------------------------------------------- /ext/libigl/python/python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/python/python.cpp -------------------------------------------------------------------------------- /ext/libigl/python/python.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/python/python.h -------------------------------------------------------------------------------- /ext/libigl/scripts/doc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/scripts/doc.sh -------------------------------------------------------------------------------- /ext/libigl/scripts/h2pair.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/scripts/h2pair.sh -------------------------------------------------------------------------------- /ext/libigl/scripts/license.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/scripts/license.sh -------------------------------------------------------------------------------- /ext/libigl/scripts/make_j.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/scripts/make_j.sh -------------------------------------------------------------------------------- /ext/libigl/scripts/upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/scripts/upload.sh -------------------------------------------------------------------------------- /ext/libigl/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/style.css -------------------------------------------------------------------------------- /ext/libigl/todos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/libigl/todos.txt -------------------------------------------------------------------------------- /ext/tbb/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/CHANGES -------------------------------------------------------------------------------- /ext/tbb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/CMakeLists.txt -------------------------------------------------------------------------------- /ext/tbb/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/COPYING -------------------------------------------------------------------------------- /ext/tbb/Makefile.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/Makefile.old -------------------------------------------------------------------------------- /ext/tbb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/README.md -------------------------------------------------------------------------------- /ext/tbb/build/AIX.gcc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/build/AIX.gcc.inc -------------------------------------------------------------------------------- /ext/tbb/build/AIX.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/build/AIX.inc -------------------------------------------------------------------------------- /ext/tbb/build/FreeBSD.gcc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/build/FreeBSD.gcc.inc -------------------------------------------------------------------------------- /ext/tbb/build/FreeBSD.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/build/FreeBSD.inc -------------------------------------------------------------------------------- /ext/tbb/build/Makefile.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/build/Makefile.rml -------------------------------------------------------------------------------- /ext/tbb/build/Makefile.tbb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/build/Makefile.tbb -------------------------------------------------------------------------------- /ext/tbb/build/Makefile.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/build/Makefile.test -------------------------------------------------------------------------------- /ext/tbb/build/SunOS.gcc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/build/SunOS.gcc.inc -------------------------------------------------------------------------------- /ext/tbb/build/SunOS.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/build/SunOS.inc -------------------------------------------------------------------------------- /ext/tbb/build/SunOS.suncc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/build/SunOS.suncc.inc -------------------------------------------------------------------------------- /ext/tbb/build/android.gcc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/build/android.gcc.inc -------------------------------------------------------------------------------- /ext/tbb/build/android.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/build/android.inc -------------------------------------------------------------------------------- /ext/tbb/build/ar_filter.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ar $@ 2>&1 | grep -v "has no symbols" 4 | exit ${PIPESTATUS[0]} 5 | -------------------------------------------------------------------------------- /ext/tbb/build/big_iron.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/build/big_iron.inc -------------------------------------------------------------------------------- /ext/tbb/build/codecov.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/build/codecov.txt -------------------------------------------------------------------------------- /ext/tbb/build/common.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/build/common.inc -------------------------------------------------------------------------------- /ext/tbb/build/detect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/build/detect.js -------------------------------------------------------------------------------- /ext/tbb/build/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/build/index.html -------------------------------------------------------------------------------- /ext/tbb/build/linux.clang.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/build/linux.clang.inc -------------------------------------------------------------------------------- /ext/tbb/build/linux.gcc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/build/linux.gcc.inc -------------------------------------------------------------------------------- /ext/tbb/build/linux.icc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/build/linux.icc.inc -------------------------------------------------------------------------------- /ext/tbb/build/linux.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/build/linux.inc -------------------------------------------------------------------------------- /ext/tbb/build/linux.xl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/build/linux.xl.inc -------------------------------------------------------------------------------- /ext/tbb/build/macos.clang.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/build/macos.clang.inc -------------------------------------------------------------------------------- /ext/tbb/build/macos.gcc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/build/macos.gcc.inc -------------------------------------------------------------------------------- /ext/tbb/build/macos.icc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/build/macos.icc.inc -------------------------------------------------------------------------------- /ext/tbb/build/macos.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/build/macos.inc -------------------------------------------------------------------------------- /ext/tbb/build/mic.icc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/build/mic.icc.inc -------------------------------------------------------------------------------- /ext/tbb/build/mic.linux.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/build/mic.linux.inc -------------------------------------------------------------------------------- /ext/tbb/build/mic.offload.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/build/mic.offload.inc -------------------------------------------------------------------------------- /ext/tbb/build/ranlib_filter.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ranlib $@ 2>&1 | grep -v "has no symbols" 4 | exit ${PIPESTATUS[0]} 5 | -------------------------------------------------------------------------------- /ext/tbb/build/suncc.map.pause: -------------------------------------------------------------------------------- 1 | hwcap_1 = OVERRIDE; -------------------------------------------------------------------------------- /ext/tbb/build/vs2010/version_string.ver: -------------------------------------------------------------------------------- 1 | #define __TBB_VERSION_STRINGS(N) "Empty" 2 | -------------------------------------------------------------------------------- /ext/tbb/build/windows.cl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/build/windows.cl.inc -------------------------------------------------------------------------------- /ext/tbb/build/windows.gcc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/build/windows.gcc.inc -------------------------------------------------------------------------------- /ext/tbb/build/windows.icl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/build/windows.icl.inc -------------------------------------------------------------------------------- /ext/tbb/build/windows.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/build/windows.inc -------------------------------------------------------------------------------- /ext/tbb/build/xbox360.cl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/build/xbox360.cl.inc -------------------------------------------------------------------------------- /ext/tbb/build/xbox360.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/build/xbox360.inc -------------------------------------------------------------------------------- /ext/tbb/doc/Release_Notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/Release_Notes.txt -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00001.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00001.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00002.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00002.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00003.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00003.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00004.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00004.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00005.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00005.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00006.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00006.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00007.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00007.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00008.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00008.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00009.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00009.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00010.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00010.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00010.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00011.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00011.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00012.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00012.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00012.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00013.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00013.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00013.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00014.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00014.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00014.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00015.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00015.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00016.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00016.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00016.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00017.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00017.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00017.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00018.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00018.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00018.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00019.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00019.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00019.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00020.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00020.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00020.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00021.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00021.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00022.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00022.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00022.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00023.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00023.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00023.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00024.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00024.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00025.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00025.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00026.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00026.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00027.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00027.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00028.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00028.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00028.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00029.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00029.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00029.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00030.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00030.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00030.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00030.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00031.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00031.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00031.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00031.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00032.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00032.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00033.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00033.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00034.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00034.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00035.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00035.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00035.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00035.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00036.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00036.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00037.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00037.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00038.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00038.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00038.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00038.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00039.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00039.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00039.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00039.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00040.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00040.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00040.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00041.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00041.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00042.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00042.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00042.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00042.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00043.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00043.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00043.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00043.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00044.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00044.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00044.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00044.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00045.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00045.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00046.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00046.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00046.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00046.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00047.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00047.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00047.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00047.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00048.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00048.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00049.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00049.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00049.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00049.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00050.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00050.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00050.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00050.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00051.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00051.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00051.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00051.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00052.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00052.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00053.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00053.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00053.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00053.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00054.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00054.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00054.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00054.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00055.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00055.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00056.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00056.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00056.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00056.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00057.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00057.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00057.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00057.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00058.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00058.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00058.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00058.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00059.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00059.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00060.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00060.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00060.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00061.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00061.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00061.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00061.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00062.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00062.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00062.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00062.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00063.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00063.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00064.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00064.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00065.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00065.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00065.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00065.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00066.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00066.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00067.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00067.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00068.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00068.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00068.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00068.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00069.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00069.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00070.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00070.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00070.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00070.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00071.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00071.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00072.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00072.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00072.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00072.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00073.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00073.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00074.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00074.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00074.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00074.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00075.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00075.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00075.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00075.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00076.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00076.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00076.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00076.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00077.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00077.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00077.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00077.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00078.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00078.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00078.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00078.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00079.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00079.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00079.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00079.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00080.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00080.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00080.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00081.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00081.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00081.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00081.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00082.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00082.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00082.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00082.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00083.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00083.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00083.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00083.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00084.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00084.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00084.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00084.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00085.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00085.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00086.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00086.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00086.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00086.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00087.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00087.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00088.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00088.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00088.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00088.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00089.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00089.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00089.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00089.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00090.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00090.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00090.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00090.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00091.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00091.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00091.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00091.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00092.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00092.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00092.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00092.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00093.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00093.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00094.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00094.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00095.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00095.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00096.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00096.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00096.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00096.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00097.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00097.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00097.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00097.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00098.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00098.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00098.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00098.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00099.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00099.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00099.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00099.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00100.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00100.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00100.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00101.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00101.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00101.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00102.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00102.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00102.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00103.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00103.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00104.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00104.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00104.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00105.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00105.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00105.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00105.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00106.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00106.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00106.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00106.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00107.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00107.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00108.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00108.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00109.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00109.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00109.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00109.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00110.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00110.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00110.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00111.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00111.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00111.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00112.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00112.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00112.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00112.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00113.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00113.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00113.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00113.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00114.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00114.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00115.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00115.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00116.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00116.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00117.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00117.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00118.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00118.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00119.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00119.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00120.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00120.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00121.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00121.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00122.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00122.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00123.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00123.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00124.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00124.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00124.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00124.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00125.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00125.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00125.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00126.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00126.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00127.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00127.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00128.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00128.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00128.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00129.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00129.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00130.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00130.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00131.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00131.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00131.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00131.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00132.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00132.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00132.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00132.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00133.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00133.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00133.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00133.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00134.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00134.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00134.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00134.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00135.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00135.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00135.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00135.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00136.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00136.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00136.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00136.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00137.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00137.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00137.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00137.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00138.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00138.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00138.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00138.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00139.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00139.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00139.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00139.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00140.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00140.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00140.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00141.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00141.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00141.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00141.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00142.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00142.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00142.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00142.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00143.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00143.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00143.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00143.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00144.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00144.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00144.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00145.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00145.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00145.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00145.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00146.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00146.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00146.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00146.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00147.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00147.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00147.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00147.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00148.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00148.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00148.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00148.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00149.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00149.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00150.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00150.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00150.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00151.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00151.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00151.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00151.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00152.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00152.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00152.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00153.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00153.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00154.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00154.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00154.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00154.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00155.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00155.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00155.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00155.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00156.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00156.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00156.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00156.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00157.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00157.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00157.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00157.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00158.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00158.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00158.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00158.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00159.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00159.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00160.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00160.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00161.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00161.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00161.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00161.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00162.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00162.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00163.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00163.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00164.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00164.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00165.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00165.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00165.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00165.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00166.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00166.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00166.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00166.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00167.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00167.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00167.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00168.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00168.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00168.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00168.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00169.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00169.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00169.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00169.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00170.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00170.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00171.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00171.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00172.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00172.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00173.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00173.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00173.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00173.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00174.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00174.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00174.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00174.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00175.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00175.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00176.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00176.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00176.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00176.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00177.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00177.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00177.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00177.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00178.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00178.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00178.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00178.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00196.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00196.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00198.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00198.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00217.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00217.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00237.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00237.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00240.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00240.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00255.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00255.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00256.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00256.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00257.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00257.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00258.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00258.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00259.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00259.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00260.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00260.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00262.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00262.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00263.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00263.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00264.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00264.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00265.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00265.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00266.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00266.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00267.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00267.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00268.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00268.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00269.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00269.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00270.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00270.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00271.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00271.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00272.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00272.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00273.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00273.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00274.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00274.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00275.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00275.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00276.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00276.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00277.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00277.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00278.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00278.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00279.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00279.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00280.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00280.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00281.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00281.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00282.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00282.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00283.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00283.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00284.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00284.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00285.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00285.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00286.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00286.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00287.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00287.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00288.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00288.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00289.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00289.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00290.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00290.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00291.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00291.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00292.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00292.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00293.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00293.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00294.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00294.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00295.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00295.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00296.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00296.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00297.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00297.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00298.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00298.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00299.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00299.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00300.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00300.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00301.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00301.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00302.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00302.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00303.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00303.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00304.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00304.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00305.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00305.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00306.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00306.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00307.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00307.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00308.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00308.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00309.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00309.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00310.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00310.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00311.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00311.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00312.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00312.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00313.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00313.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00314.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00314.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00315.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00315.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00316.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00316.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00317.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00317.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00318.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00318.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00319.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00319.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00320.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00320.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00321.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00321.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00322.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00322.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00323.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00323.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00324.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00324.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00325.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00325.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00326.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00326.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00327.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00327.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00328.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00328.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00329.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00329.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00330.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00330.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00331.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00331.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00332.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00332.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00333.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00333.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00334.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00334.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00335.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00335.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00336.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00336.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00337.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00337.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00338.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00338.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00339.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00339.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00340.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00340.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00341.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00341.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00342.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00342.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00343.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00343.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00344.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00344.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00346.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00346.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00347.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00347.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00348.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00348.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00349.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00349.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00350.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00350.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00351.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00351.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00352.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00352.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00353.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00353.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00354.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00354.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00355.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00355.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00356.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00356.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00357.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00357.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00358.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00358.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00359.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00359.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00360.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00360.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00361.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00361.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00362.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00362.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00363.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00363.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00364.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00364.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00365.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00365.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/a00366.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/a00366.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/bc_s.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/bdwn.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/closed.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/files.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/ftv2cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/ftv2cl.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/ftv2mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/ftv2mo.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/ftv2ns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/ftv2ns.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/index.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/jquery.js -------------------------------------------------------------------------------- /ext/tbb/doc/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/nav_f.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/nav_g.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/nav_h.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/open.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/pages.html -------------------------------------------------------------------------------- /ext/tbb/doc/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/tab_a.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/tab_b.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/tab_h.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/tab_s.png -------------------------------------------------------------------------------- /ext/tbb/doc/html/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/doc/html/tabs.css -------------------------------------------------------------------------------- /ext/tbb/examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/examples/Makefile -------------------------------------------------------------------------------- /ext/tbb/examples/common/gui/xcode/tbbExample/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /ext/tbb/examples/common/gui/xcode/tbbExample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /ext/tbb/examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/examples/index.html -------------------------------------------------------------------------------- /ext/tbb/include/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/include/index.html -------------------------------------------------------------------------------- /ext/tbb/include/tbb/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/include/tbb/mutex.h -------------------------------------------------------------------------------- /ext/tbb/include/tbb/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/include/tbb/task.h -------------------------------------------------------------------------------- /ext/tbb/include/tbb/tbb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/include/tbb/tbb.h -------------------------------------------------------------------------------- /ext/tbb/index.src.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/index.src.html -------------------------------------------------------------------------------- /ext/tbb/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/jni/Android.mk -------------------------------------------------------------------------------- /ext/tbb/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/jni/Application.mk -------------------------------------------------------------------------------- /ext/tbb/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/src/Makefile -------------------------------------------------------------------------------- /ext/tbb/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/src/index.html -------------------------------------------------------------------------------- /ext/tbb/src/old/task_v2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/src/old/task_v2.cpp -------------------------------------------------------------------------------- /ext/tbb/src/perf/perf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/src/perf/perf.cpp -------------------------------------------------------------------------------- /ext/tbb/src/perf/perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/src/perf/perf.h -------------------------------------------------------------------------------- /ext/tbb/src/rml/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/src/rml/index.html -------------------------------------------------------------------------------- /ext/tbb/src/tbb/arena.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/src/tbb/arena.cpp -------------------------------------------------------------------------------- /ext/tbb/src/tbb/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/src/tbb/arena.h -------------------------------------------------------------------------------- /ext/tbb/src/tbb/governor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/src/tbb/governor.h -------------------------------------------------------------------------------- /ext/tbb/src/tbb/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/src/tbb/index.html -------------------------------------------------------------------------------- /ext/tbb/src/tbb/mailbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/src/tbb/mailbox.h -------------------------------------------------------------------------------- /ext/tbb/src/tbb/market.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/src/tbb/market.cpp -------------------------------------------------------------------------------- /ext/tbb/src/tbb/market.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/src/tbb/market.h -------------------------------------------------------------------------------- /ext/tbb/src/tbb/mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/src/tbb/mutex.cpp -------------------------------------------------------------------------------- /ext/tbb/src/tbb/scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/src/tbb/scheduler.h -------------------------------------------------------------------------------- /ext/tbb/src/tbb/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/src/tbb/semaphore.h -------------------------------------------------------------------------------- /ext/tbb/src/tbb/task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/src/tbb/task.cpp -------------------------------------------------------------------------------- /ext/tbb/src/tbb/tbb_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/src/tbb/tbb_main.h -------------------------------------------------------------------------------- /ext/tbb/src/tbb/tbb_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/src/tbb/tbb_misc.h -------------------------------------------------------------------------------- /ext/tbb/src/tbb/tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/src/tbb/tls.h -------------------------------------------------------------------------------- /ext/tbb/src/test/harness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/ext/tbb/src/test/harness.h -------------------------------------------------------------------------------- /src/AlgorithmStage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/src/AlgorithmStage.h -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Energy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/src/Energy.h -------------------------------------------------------------------------------- /src/FastLsBuildUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/src/FastLsBuildUtils.cpp -------------------------------------------------------------------------------- /src/FastLsBuildUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/src/FastLsBuildUtils.h -------------------------------------------------------------------------------- /src/Param_State.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/src/Param_State.cpp -------------------------------------------------------------------------------- /src/Param_State.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/src/Param_State.h -------------------------------------------------------------------------------- /src/PardisoSolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/src/PardisoSolver.cpp -------------------------------------------------------------------------------- /src/PardisoSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/src/PardisoSolver.h -------------------------------------------------------------------------------- /src/StateManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/src/StateManager.cpp -------------------------------------------------------------------------------- /src/StateManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/src/StateManager.h -------------------------------------------------------------------------------- /src/SymmetricDirichlet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/src/SymmetricDirichlet.cpp -------------------------------------------------------------------------------- /src/SymmetricDirichlet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/src/SymmetricDirichlet.h -------------------------------------------------------------------------------- /src/eigen_stl_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/src/eigen_stl_utils.cpp -------------------------------------------------------------------------------- /src/eigen_stl_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/src/eigen_stl_utils.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/parametrization_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelRabinovich/Scalable-Locally-Injective-Mappings/HEAD/src/parametrization_utils.h --------------------------------------------------------------------------------