├── AUTHORS ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake └── FindNumPy.cmake ├── configure.sh ├── cpp ├── Boost.NumPy │ ├── CMake-init.sh │ ├── CMakeFiles │ │ ├── CMakeDirectoryInformation.cmake │ │ └── progress.marks │ ├── CMakeLists.txt │ ├── CTestTestfile.cmake │ ├── Jamroot │ ├── LICENSE_1_0.txt │ ├── Makefile │ ├── README │ ├── SConscript │ ├── SConstruct │ ├── boost │ │ ├── numpy.hpp │ │ └── numpy │ │ │ ├── dtype.hpp │ │ │ ├── internal.hpp │ │ │ ├── invoke_matching.hpp │ │ │ ├── matrix.hpp │ │ │ ├── ndarray.hpp │ │ │ ├── numpy_object_mgr_traits.hpp │ │ │ ├── scalars.hpp │ │ │ └── ufunc.hpp │ ├── cmake_install.cmake │ └── libs │ │ └── numpy │ │ ├── cmake │ │ ├── FindNumPy.cmake │ │ ├── FindPythonLibsNew.cmake │ │ └── README.txt │ │ ├── doc │ │ ├── CMakeLists.txt │ │ ├── Jamfile │ │ ├── Makefile │ │ ├── _build │ │ │ ├── doctrees │ │ │ │ ├── cmakeBuild.doctree │ │ │ │ ├── environment.pickle │ │ │ │ ├── index.doctree │ │ │ │ ├── reference │ │ │ │ │ ├── binary_ufunc.doctree │ │ │ │ │ ├── dtype.doctree │ │ │ │ │ ├── index.doctree │ │ │ │ │ ├── multi_iter.doctree │ │ │ │ │ ├── ndarray.doctree │ │ │ │ │ └── unary_ufunc.doctree │ │ │ │ └── tutorial │ │ │ │ │ ├── dtype.doctree │ │ │ │ │ ├── fromdata.doctree │ │ │ │ │ ├── index.doctree │ │ │ │ │ ├── ndarray.doctree │ │ │ │ │ ├── simple.doctree │ │ │ │ │ └── ufunc.doctree │ │ │ └── html │ │ │ │ ├── .buildinfo │ │ │ │ ├── _sources │ │ │ │ ├── cmakeBuild.txt │ │ │ │ ├── index.txt │ │ │ │ ├── reference │ │ │ │ │ ├── binary_ufunc.txt │ │ │ │ │ ├── dtype.txt │ │ │ │ │ ├── index.txt │ │ │ │ │ ├── multi_iter.txt │ │ │ │ │ ├── ndarray.txt │ │ │ │ │ └── unary_ufunc.txt │ │ │ │ └── tutorial │ │ │ │ │ ├── dtype.txt │ │ │ │ │ ├── fromdata.txt │ │ │ │ │ ├── index.txt │ │ │ │ │ ├── ndarray.txt │ │ │ │ │ ├── simple.txt │ │ │ │ │ └── ufunc.txt │ │ │ │ ├── _static │ │ │ │ ├── ajax-loader.gif │ │ │ │ ├── basic.css │ │ │ │ ├── boost.css │ │ │ │ ├── boost.png │ │ │ │ ├── comment-bright.png │ │ │ │ ├── comment-close.png │ │ │ │ ├── comment.png │ │ │ │ ├── default.css │ │ │ │ ├── doctools.js │ │ │ │ ├── down-pressed.png │ │ │ │ ├── down.png │ │ │ │ ├── file.png │ │ │ │ ├── home.png │ │ │ │ ├── jquery.js │ │ │ │ ├── minus.png │ │ │ │ ├── next.png │ │ │ │ ├── plus.png │ │ │ │ ├── prev.png │ │ │ │ ├── pygments.css │ │ │ │ ├── searchtools.js │ │ │ │ ├── sidebar.js │ │ │ │ ├── style.css │ │ │ │ ├── underscore.js │ │ │ │ ├── up-pressed.png │ │ │ │ ├── up.png │ │ │ │ └── websupport.js │ │ │ │ ├── cmakeBuild.html │ │ │ │ ├── genindex.html │ │ │ │ ├── index.html │ │ │ │ ├── objects.inv │ │ │ │ ├── reference │ │ │ │ ├── binary_ufunc.html │ │ │ │ ├── dtype.html │ │ │ │ ├── index.html │ │ │ │ ├── multi_iter.html │ │ │ │ ├── ndarray.html │ │ │ │ └── unary_ufunc.html │ │ │ │ ├── search.html │ │ │ │ ├── searchindex.js │ │ │ │ └── tutorial │ │ │ │ ├── dtype.html │ │ │ │ ├── fromdata.html │ │ │ │ ├── index.html │ │ │ │ ├── ndarray.html │ │ │ │ ├── simple.html │ │ │ │ └── ufunc.html │ │ ├── _static │ │ │ ├── boost.css │ │ │ ├── boost.png │ │ │ ├── home.png │ │ │ ├── next.png │ │ │ ├── prev.png │ │ │ ├── style.css │ │ │ └── up.png │ │ ├── _templates │ │ │ └── layout.html │ │ ├── cmakeBuild.rst │ │ ├── conf.py │ │ ├── index.rst │ │ ├── make.bat │ │ ├── reference │ │ │ ├── Jamfile │ │ │ ├── binary_ufunc.rst │ │ │ ├── dtype.rst │ │ │ ├── index.rst │ │ │ ├── multi_iter.rst │ │ │ ├── ndarray.rst │ │ │ └── unary_ufunc.rst │ │ ├── rst.css │ │ └── tutorial │ │ │ ├── dtype.rst │ │ │ ├── fromdata.rst │ │ │ ├── index.rst │ │ │ ├── ndarray.rst │ │ │ ├── simple.rst │ │ │ └── ufunc.rst │ │ ├── example │ │ ├── CMakeLists.txt │ │ ├── Jamfile │ │ ├── SConscript │ │ ├── demo_gaussian.py │ │ ├── dtype.cpp │ │ ├── fromdata.cpp │ │ ├── gaussian.cpp │ │ ├── ndarray.cpp │ │ ├── simple.cpp │ │ ├── ufunc.cpp │ │ └── wrap.cpp │ │ ├── src │ │ ├── CMakeFiles │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ ├── boost_numpy.dir │ │ │ │ ├── CXX.includecache │ │ │ │ ├── DependInfo.cmake │ │ │ │ ├── build.make │ │ │ │ ├── cmake_clean.cmake │ │ │ │ ├── cmake_clean_target.cmake │ │ │ │ ├── depend.internal │ │ │ │ ├── depend.make │ │ │ │ ├── flags.make │ │ │ │ ├── link.txt │ │ │ │ └── progress.make │ │ │ └── progress.marks │ │ ├── CMakeLists.txt │ │ ├── CTestTestfile.cmake │ │ ├── Jamfile │ │ ├── Makefile │ │ ├── SConscript │ │ ├── cmake_install.cmake │ │ ├── dtype.cpp │ │ ├── libboost_numpy.a │ │ ├── matrix.cpp │ │ ├── ndarray.cpp │ │ ├── numpy.cpp │ │ ├── scalars.cpp │ │ └── ufunc.cpp │ │ └── test │ │ ├── CMakeLists.txt │ │ ├── Jamfile │ │ ├── SConscript │ │ ├── dtype.py │ │ ├── dtype_mod.cpp │ │ ├── indexing.py │ │ ├── indexing_mod.cpp │ │ ├── ndarray.py │ │ ├── ndarray_mod.cpp │ │ ├── runCmakeTest.bat.in │ │ ├── runCmakeTest.sh.in │ │ ├── shapes.py │ │ ├── shapes_mod.cpp │ │ ├── templates.py │ │ ├── templates_mod.cpp │ │ ├── ufunc.py │ │ └── ufunc_mod.cpp ├── CMakeLists.txt ├── 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 ├── clipper │ ├── License.txt │ ├── README │ ├── clipper.cpp │ └── clipper.hpp ├── polycont │ ├── cpp │ │ ├── clockwise_sort.hpp │ │ ├── containers.hpp │ │ ├── examples │ │ │ ├── example_polycont.cpp │ │ │ ├── example_polycont.darwin15 │ │ │ ├── example_polycont.linux-gnu │ │ │ ├── test_io.bin │ │ │ ├── test_io.cpp │ │ │ ├── test_io.darwin15 │ │ │ ├── test_io.linux-gnu │ │ │ └── test_io.pcont │ │ ├── in_out_sort.hpp │ │ ├── io.hpp │ │ ├── lines2jordan.hpp │ │ ├── mask2poly.hpp │ │ ├── mask2polycont.hpp │ │ ├── move2junctions.hpp │ │ ├── poly_compare.hpp │ │ └── simplify.hpp │ └── python.cpp └── psimpl │ ├── LICENSE.txt │ ├── README.txt │ └── psimpl.hpp ├── data ├── get_davis.sh └── get_davis_results.sh └── python ├── experiments ├── eval_all.py ├── eval_attributes.py ├── eval_sequences.py ├── eval_simple.py └── eval_train_test.py ├── lib └── davis │ ├── __init__.py │ ├── config.py │ ├── dataset │ ├── __init__.py │ ├── loader.py │ └── utils.py │ ├── logger.py │ ├── measures │ ├── __init__.py │ ├── f_boundary.py │ ├── jaccard.py │ └── t_stability.py │ ├── parallel.py │ └── timer.py ├── requirements.txt └── tools ├── eval.py ├── eval_view.py └── list_techniques.py /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/AUTHORS -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/README.md -------------------------------------------------------------------------------- /cmake/FindNumPy.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cmake/FindNumPy.cmake -------------------------------------------------------------------------------- /configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/configure.sh -------------------------------------------------------------------------------- /cpp/Boost.NumPy/CMake-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/CMake-init.sh -------------------------------------------------------------------------------- /cpp/Boost.NumPy/CMakeFiles/CMakeDirectoryInformation.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/CMakeFiles/CMakeDirectoryInformation.cmake -------------------------------------------------------------------------------- /cpp/Boost.NumPy/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /cpp/Boost.NumPy/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Boost.NumPy/CTestTestfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/CTestTestfile.cmake -------------------------------------------------------------------------------- /cpp/Boost.NumPy/Jamroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/Jamroot -------------------------------------------------------------------------------- /cpp/Boost.NumPy/LICENSE_1_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/LICENSE_1_0.txt -------------------------------------------------------------------------------- /cpp/Boost.NumPy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/Makefile -------------------------------------------------------------------------------- /cpp/Boost.NumPy/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/README -------------------------------------------------------------------------------- /cpp/Boost.NumPy/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/SConscript -------------------------------------------------------------------------------- /cpp/Boost.NumPy/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/SConstruct -------------------------------------------------------------------------------- /cpp/Boost.NumPy/boost/numpy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/boost/numpy.hpp -------------------------------------------------------------------------------- /cpp/Boost.NumPy/boost/numpy/dtype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/boost/numpy/dtype.hpp -------------------------------------------------------------------------------- /cpp/Boost.NumPy/boost/numpy/internal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/boost/numpy/internal.hpp -------------------------------------------------------------------------------- /cpp/Boost.NumPy/boost/numpy/invoke_matching.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/boost/numpy/invoke_matching.hpp -------------------------------------------------------------------------------- /cpp/Boost.NumPy/boost/numpy/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/boost/numpy/matrix.hpp -------------------------------------------------------------------------------- /cpp/Boost.NumPy/boost/numpy/ndarray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/boost/numpy/ndarray.hpp -------------------------------------------------------------------------------- /cpp/Boost.NumPy/boost/numpy/numpy_object_mgr_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/boost/numpy/numpy_object_mgr_traits.hpp -------------------------------------------------------------------------------- /cpp/Boost.NumPy/boost/numpy/scalars.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/boost/numpy/scalars.hpp -------------------------------------------------------------------------------- /cpp/Boost.NumPy/boost/numpy/ufunc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/boost/numpy/ufunc.hpp -------------------------------------------------------------------------------- /cpp/Boost.NumPy/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/cmake_install.cmake -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/cmake/FindNumPy.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/cmake/FindNumPy.cmake -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/cmake/FindPythonLibsNew.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/cmake/FindPythonLibsNew.cmake -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/cmake/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/cmake/README.txt -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/Jamfile -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/Makefile -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/doctrees/cmakeBuild.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/doctrees/cmakeBuild.doctree -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/doctrees/environment.pickle -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/doctrees/index.doctree -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/doctrees/reference/binary_ufunc.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/doctrees/reference/binary_ufunc.doctree -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/doctrees/reference/dtype.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/doctrees/reference/dtype.doctree -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/doctrees/reference/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/doctrees/reference/index.doctree -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/doctrees/reference/multi_iter.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/doctrees/reference/multi_iter.doctree -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/doctrees/reference/ndarray.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/doctrees/reference/ndarray.doctree -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/doctrees/reference/unary_ufunc.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/doctrees/reference/unary_ufunc.doctree -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/doctrees/tutorial/dtype.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/doctrees/tutorial/dtype.doctree -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/doctrees/tutorial/fromdata.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/doctrees/tutorial/fromdata.doctree -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/doctrees/tutorial/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/doctrees/tutorial/index.doctree -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/doctrees/tutorial/ndarray.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/doctrees/tutorial/ndarray.doctree -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/doctrees/tutorial/simple.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/doctrees/tutorial/simple.doctree -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/doctrees/tutorial/ufunc.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/doctrees/tutorial/ufunc.doctree -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/.buildinfo -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/_sources/cmakeBuild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/_sources/cmakeBuild.txt -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/_sources/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/_sources/index.txt -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/_sources/reference/binary_ufunc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/_sources/reference/binary_ufunc.txt -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/_sources/reference/dtype.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/_sources/reference/dtype.txt -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/_sources/reference/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/_sources/reference/index.txt -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/_sources/reference/multi_iter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/_sources/reference/multi_iter.txt -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/_sources/reference/ndarray.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/_sources/reference/ndarray.txt -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/_sources/reference/unary_ufunc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/_sources/reference/unary_ufunc.txt -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/_sources/tutorial/dtype.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/_sources/tutorial/dtype.txt -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/_sources/tutorial/fromdata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/_sources/tutorial/fromdata.txt -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/_sources/tutorial/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/_sources/tutorial/index.txt -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/_sources/tutorial/ndarray.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/_sources/tutorial/ndarray.txt -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/_sources/tutorial/simple.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/_sources/tutorial/simple.txt -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/_sources/tutorial/ufunc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/_sources/tutorial/ufunc.txt -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/ajax-loader.gif -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/basic.css -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/boost.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/boost.css -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/boost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/boost.png -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/comment-bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/comment-bright.png -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/comment-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/comment-close.png -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/comment.png -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/default.css -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/doctools.js -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/down-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/down-pressed.png -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/down.png -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/file.png -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/home.png -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/jquery.js -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/minus.png -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/next.png -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/plus.png -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/prev.png -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/pygments.css -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/searchtools.js -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/sidebar.js -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/style.css -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/underscore.js -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/up-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/up-pressed.png -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/up.png -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/websupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/_static/websupport.js -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/cmakeBuild.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/cmakeBuild.html -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/genindex.html -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/index.html -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/objects.inv -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/reference/binary_ufunc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/reference/binary_ufunc.html -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/reference/dtype.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/reference/dtype.html -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/reference/index.html -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/reference/multi_iter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/reference/multi_iter.html -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/reference/ndarray.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/reference/ndarray.html -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/reference/unary_ufunc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/reference/unary_ufunc.html -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/search.html -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/searchindex.js -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/tutorial/dtype.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/tutorial/dtype.html -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/tutorial/fromdata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/tutorial/fromdata.html -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/tutorial/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/tutorial/index.html -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/tutorial/ndarray.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/tutorial/ndarray.html -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/tutorial/simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/tutorial/simple.html -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_build/html/tutorial/ufunc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_build/html/tutorial/ufunc.html -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_static/boost.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_static/boost.css -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_static/boost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_static/boost.png -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_static/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_static/home.png -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_static/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_static/next.png -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_static/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_static/prev.png -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_static/style.css -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_static/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_static/up.png -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/_templates/layout.html -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/cmakeBuild.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/cmakeBuild.rst -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/conf.py -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/index.rst -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/make.bat -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/reference/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/reference/Jamfile -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/reference/binary_ufunc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/reference/binary_ufunc.rst -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/reference/dtype.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/reference/dtype.rst -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/reference/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/reference/index.rst -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/reference/multi_iter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/reference/multi_iter.rst -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/reference/ndarray.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/reference/ndarray.rst -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/reference/unary_ufunc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/reference/unary_ufunc.rst -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/rst.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/rst.css -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/tutorial/dtype.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/tutorial/dtype.rst -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/tutorial/fromdata.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/tutorial/fromdata.rst -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/tutorial/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/tutorial/index.rst -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/tutorial/ndarray.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/tutorial/ndarray.rst -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/tutorial/simple.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/tutorial/simple.rst -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/doc/tutorial/ufunc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/doc/tutorial/ufunc.rst -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/example/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/example/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/example/Jamfile -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/example/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/example/SConscript -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/example/demo_gaussian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/example/demo_gaussian.py -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/example/dtype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/example/dtype.cpp -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/example/fromdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/example/fromdata.cpp -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/example/gaussian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/example/gaussian.cpp -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/example/ndarray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/example/ndarray.cpp -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/example/simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/example/simple.cpp -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/example/ufunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/example/ufunc.cpp -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/example/wrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/example/wrap.cpp -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/src/CMakeFiles/CMakeDirectoryInformation.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/src/CMakeFiles/CMakeDirectoryInformation.cmake -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/src/CMakeFiles/boost_numpy.dir/CXX.includecache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/src/CMakeFiles/boost_numpy.dir/CXX.includecache -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/src/CMakeFiles/boost_numpy.dir/DependInfo.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/src/CMakeFiles/boost_numpy.dir/DependInfo.cmake -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/src/CMakeFiles/boost_numpy.dir/build.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/src/CMakeFiles/boost_numpy.dir/build.make -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/src/CMakeFiles/boost_numpy.dir/cmake_clean.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/src/CMakeFiles/boost_numpy.dir/cmake_clean.cmake -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/src/CMakeFiles/boost_numpy.dir/cmake_clean_target.cmake: -------------------------------------------------------------------------------- 1 | FILE(REMOVE_RECURSE 2 | "libboost_numpy.a" 3 | ) 4 | -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/src/CMakeFiles/boost_numpy.dir/depend.internal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/src/CMakeFiles/boost_numpy.dir/depend.internal -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/src/CMakeFiles/boost_numpy.dir/depend.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/src/CMakeFiles/boost_numpy.dir/depend.make -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/src/CMakeFiles/boost_numpy.dir/flags.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/src/CMakeFiles/boost_numpy.dir/flags.make -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/src/CMakeFiles/boost_numpy.dir/link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/src/CMakeFiles/boost_numpy.dir/link.txt -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/src/CMakeFiles/boost_numpy.dir/progress.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/src/CMakeFiles/boost_numpy.dir/progress.make -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/src/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/src/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/src/CTestTestfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/src/CTestTestfile.cmake -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/src/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/src/Jamfile -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/src/Makefile -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/src/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/src/SConscript -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/src/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/src/cmake_install.cmake -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/src/dtype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/src/dtype.cpp -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/src/libboost_numpy.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/src/libboost_numpy.a -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/src/matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/src/matrix.cpp -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/src/ndarray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/src/ndarray.cpp -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/src/numpy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/src/numpy.cpp -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/src/scalars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/src/scalars.cpp -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/src/ufunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/src/ufunc.cpp -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/test/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/test/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/test/Jamfile -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/test/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/test/SConscript -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/test/dtype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/test/dtype.py -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/test/dtype_mod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/test/dtype_mod.cpp -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/test/indexing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/test/indexing.py -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/test/indexing_mod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/test/indexing_mod.cpp -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/test/ndarray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/test/ndarray.py -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/test/ndarray_mod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/test/ndarray_mod.cpp -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/test/runCmakeTest.bat.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/test/runCmakeTest.bat.in -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/test/runCmakeTest.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/test/runCmakeTest.sh.in -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/test/shapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/test/shapes.py -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/test/shapes_mod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/test/shapes_mod.cpp -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/test/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/test/templates.py -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/test/templates_mod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/test/templates_mod.cpp -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/test/ufunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/test/ufunc.py -------------------------------------------------------------------------------- /cpp/Boost.NumPy/libs/numpy/test/ufunc_mod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Boost.NumPy/libs/numpy/test/ufunc_mod.cpp -------------------------------------------------------------------------------- /cpp/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory( Boost.NumPy ) 2 | -------------------------------------------------------------------------------- /cpp/Eigen/Array: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/Array -------------------------------------------------------------------------------- /cpp/Eigen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Eigen/Cholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/Cholesky -------------------------------------------------------------------------------- /cpp/Eigen/CholmodSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/CholmodSupport -------------------------------------------------------------------------------- /cpp/Eigen/Core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/Core -------------------------------------------------------------------------------- /cpp/Eigen/Dense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/Dense -------------------------------------------------------------------------------- /cpp/Eigen/Eigen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/Eigen -------------------------------------------------------------------------------- /cpp/Eigen/Eigen2Support: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/Eigen2Support -------------------------------------------------------------------------------- /cpp/Eigen/Eigenvalues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/Eigenvalues -------------------------------------------------------------------------------- /cpp/Eigen/Geometry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/Geometry -------------------------------------------------------------------------------- /cpp/Eigen/Householder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/Householder -------------------------------------------------------------------------------- /cpp/Eigen/IterativeLinearSolvers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/IterativeLinearSolvers -------------------------------------------------------------------------------- /cpp/Eigen/Jacobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/Jacobi -------------------------------------------------------------------------------- /cpp/Eigen/LU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/LU -------------------------------------------------------------------------------- /cpp/Eigen/LeastSquares: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/LeastSquares -------------------------------------------------------------------------------- /cpp/Eigen/MetisSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/MetisSupport -------------------------------------------------------------------------------- /cpp/Eigen/OrderingMethods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/OrderingMethods -------------------------------------------------------------------------------- /cpp/Eigen/PaStiXSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/PaStiXSupport -------------------------------------------------------------------------------- /cpp/Eigen/PardisoSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/PardisoSupport -------------------------------------------------------------------------------- /cpp/Eigen/QR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/QR -------------------------------------------------------------------------------- /cpp/Eigen/QtAlignedMalloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/QtAlignedMalloc -------------------------------------------------------------------------------- /cpp/Eigen/SPQRSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/SPQRSupport -------------------------------------------------------------------------------- /cpp/Eigen/SVD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/SVD -------------------------------------------------------------------------------- /cpp/Eigen/Sparse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/Sparse -------------------------------------------------------------------------------- /cpp/Eigen/SparseCholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/SparseCholesky -------------------------------------------------------------------------------- /cpp/Eigen/SparseCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/SparseCore -------------------------------------------------------------------------------- /cpp/Eigen/SparseLU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/SparseLU -------------------------------------------------------------------------------- /cpp/Eigen/SparseQR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/SparseQR -------------------------------------------------------------------------------- /cpp/Eigen/StdDeque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/StdDeque -------------------------------------------------------------------------------- /cpp/Eigen/StdList: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/StdList -------------------------------------------------------------------------------- /cpp/Eigen/StdVector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/StdVector -------------------------------------------------------------------------------- /cpp/Eigen/SuperLUSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/SuperLUSupport -------------------------------------------------------------------------------- /cpp/Eigen/UmfPackSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/UmfPackSupport -------------------------------------------------------------------------------- /cpp/Eigen/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Eigen/src/Cholesky/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Cholesky/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Eigen/src/Cholesky/LDLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Cholesky/LDLT.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Cholesky/LLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Cholesky/LLT.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Cholesky/LLT_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Cholesky/LLT_MKL.h -------------------------------------------------------------------------------- /cpp/Eigen/src/CholmodSupport/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/CholmodSupport/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Eigen/src/CholmodSupport/CholmodSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/CholmodSupport/CholmodSupport.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/Array.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/ArrayBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/ArrayBase.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/ArrayWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/ArrayWrapper.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/Assign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/Assign.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/Assign_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/Assign_MKL.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/BandMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/BandMatrix.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/Block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/Block.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/BooleanRedux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/BooleanRedux.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/CommaInitializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/CommaInitializer.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/CoreIterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/CoreIterators.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/CwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/CwiseBinaryOp.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/CwiseNullaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/CwiseNullaryOp.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/CwiseUnaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/CwiseUnaryOp.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/CwiseUnaryView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/CwiseUnaryView.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/DenseBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/DenseBase.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/DenseCoeffsBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/DenseCoeffsBase.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/DenseStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/DenseStorage.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/Diagonal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/Diagonal.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/DiagonalMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/DiagonalMatrix.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/DiagonalProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/DiagonalProduct.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/Dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/Dot.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/EigenBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/EigenBase.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/Flagged.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/Flagged.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/ForceAlignedAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/ForceAlignedAccess.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/Functors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/Functors.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/Fuzzy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/Fuzzy.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/GeneralProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/GeneralProduct.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/GenericPacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/GenericPacketMath.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/GlobalFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/GlobalFunctions.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/IO.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/Map.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/MapBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/MapBase.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/MathFunctions.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/Matrix.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/MatrixBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/MatrixBase.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/NestByValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/NestByValue.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/NoAlias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/NoAlias.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/NumTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/NumTraits.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/PermutationMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/PermutationMatrix.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/PlainObjectBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/PlainObjectBase.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/ProductBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/ProductBase.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/Random.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/Redux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/Redux.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/Ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/Ref.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/Replicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/Replicate.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/ReturnByValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/ReturnByValue.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/Reverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/Reverse.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/Select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/Select.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/SelfAdjointView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/SelfAdjointView.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/SelfCwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/SelfCwiseBinaryOp.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/SolveTriangular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/SolveTriangular.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/StableNorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/StableNorm.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/Stride.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/Stride.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/Swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/Swap.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/Transpose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/Transpose.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/Transpositions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/Transpositions.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/TriangularMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/TriangularMatrix.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/VectorBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/VectorBlock.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/VectorwiseOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/VectorwiseOp.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/Visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/Visitor.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/arch/AltiVec/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/arch/AltiVec/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/arch/AltiVec/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/arch/AltiVec/Complex.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/arch/AltiVec/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/arch/AltiVec/PacketMath.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/arch/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/arch/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/arch/Default/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/arch/Default/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/arch/Default/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/arch/Default/Settings.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/arch/NEON/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/arch/NEON/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/arch/NEON/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/arch/NEON/Complex.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/arch/NEON/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/arch/NEON/PacketMath.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/arch/SSE/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/arch/SSE/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/arch/SSE/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/arch/SSE/Complex.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/arch/SSE/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/arch/SSE/MathFunctions.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/arch/SSE/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/arch/SSE/PacketMath.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/products/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/products/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/products/CoeffBasedProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/products/CoeffBasedProduct.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/products/GeneralBlockPanelKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/products/GeneralBlockPanelKernel.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/products/GeneralMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/products/GeneralMatrixMatrix.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_MKL.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/products/GeneralMatrixMatrix_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/products/GeneralMatrixMatrix_MKL.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/products/GeneralMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/products/GeneralMatrixVector.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/products/GeneralMatrixVector_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/products/GeneralMatrixVector_MKL.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/products/Parallelizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/products/Parallelizer.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/products/SelfadjointMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/products/SelfadjointMatrixMatrix.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/products/SelfadjointMatrixMatrix_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/products/SelfadjointMatrixMatrix_MKL.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/products/SelfadjointMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/products/SelfadjointMatrixVector.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/products/SelfadjointMatrixVector_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/products/SelfadjointMatrixVector_MKL.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/products/SelfadjointProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/products/SelfadjointProduct.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/products/SelfadjointRank2Update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/products/SelfadjointRank2Update.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/products/TriangularMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/products/TriangularMatrixMatrix.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/products/TriangularMatrixMatrix_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/products/TriangularMatrixMatrix_MKL.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/products/TriangularMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/products/TriangularMatrixVector.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/products/TriangularMatrixVector_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/products/TriangularMatrixVector_MKL.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/products/TriangularSolverMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/products/TriangularSolverMatrix.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/products/TriangularSolverMatrix_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/products/TriangularSolverMatrix_MKL.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/products/TriangularSolverVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/products/TriangularSolverVector.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/util/BlasUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/util/BlasUtil.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/util/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/util/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/util/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/util/Constants.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/util/DisableStupidWarnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/util/DisableStupidWarnings.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/util/ForwardDeclarations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/util/ForwardDeclarations.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/util/MKL_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/util/MKL_support.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/util/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/util/Macros.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/util/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/util/Memory.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/util/Meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/util/Meta.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/util/NonMPL2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/util/NonMPL2.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/util/ReenableStupidWarnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/util/ReenableStupidWarnings.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/util/StaticAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/util/StaticAssert.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Core/util/XprHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Core/util/XprHelper.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Eigen2Support/Block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Eigen2Support/Block.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Eigen2Support/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Eigen2Support/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Eigen/src/Eigen2Support/Cwise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Eigen2Support/Cwise.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Eigen2Support/CwiseOperators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Eigen2Support/CwiseOperators.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Eigen2Support/Geometry/AlignedBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Eigen2Support/Geometry/AlignedBox.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Eigen2Support/Geometry/All.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Eigen2Support/Geometry/All.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Eigen2Support/Geometry/AngleAxis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Eigen2Support/Geometry/AngleAxis.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Eigen2Support/Geometry/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Eigen2Support/Geometry/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Eigen/src/Eigen2Support/Geometry/Hyperplane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Eigen2Support/Geometry/Hyperplane.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Eigen2Support/Geometry/ParametrizedLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Eigen2Support/Geometry/ParametrizedLine.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Eigen2Support/Geometry/Quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Eigen2Support/Geometry/Quaternion.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Eigen2Support/Geometry/Rotation2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Eigen2Support/Geometry/Rotation2D.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Eigen2Support/Geometry/RotationBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Eigen2Support/Geometry/RotationBase.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Eigen2Support/Geometry/Scaling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Eigen2Support/Geometry/Scaling.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Eigen2Support/Geometry/Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Eigen2Support/Geometry/Transform.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Eigen2Support/Geometry/Translation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Eigen2Support/Geometry/Translation.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Eigen2Support/LU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Eigen2Support/LU.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Eigen2Support/Lazy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Eigen2Support/Lazy.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Eigen2Support/LeastSquares.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Eigen2Support/LeastSquares.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Eigen2Support/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Eigen2Support/Macros.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Eigen2Support/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Eigen2Support/MathFunctions.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Eigen2Support/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Eigen2Support/Memory.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Eigen2Support/Meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Eigen2Support/Meta.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Eigen2Support/Minor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Eigen2Support/Minor.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Eigen2Support/QR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Eigen2Support/QR.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Eigen2Support/SVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Eigen2Support/SVD.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Eigen2Support/TriangularSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Eigen2Support/TriangularSolver.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Eigen2Support/VectorBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Eigen2Support/VectorBlock.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Eigenvalues/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Eigenvalues/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Eigen/src/Eigenvalues/ComplexEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Eigenvalues/ComplexEigenSolver.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Eigenvalues/ComplexSchur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Eigenvalues/ComplexSchur.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Eigenvalues/ComplexSchur_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Eigenvalues/ComplexSchur_MKL.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Eigenvalues/EigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Eigenvalues/EigenSolver.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Eigenvalues/HessenbergDecomposition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Eigenvalues/HessenbergDecomposition.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Eigenvalues/RealQZ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Eigenvalues/RealQZ.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Eigenvalues/RealSchur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Eigenvalues/RealSchur.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Eigenvalues/RealSchur_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Eigenvalues/RealSchur_MKL.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_MKL.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Eigenvalues/Tridiagonalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Eigenvalues/Tridiagonalization.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Geometry/AlignedBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Geometry/AlignedBox.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Geometry/AngleAxis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Geometry/AngleAxis.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Geometry/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Geometry/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Eigen/src/Geometry/EulerAngles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Geometry/EulerAngles.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Geometry/Homogeneous.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Geometry/Homogeneous.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Geometry/Hyperplane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Geometry/Hyperplane.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Geometry/OrthoMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Geometry/OrthoMethods.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Geometry/ParametrizedLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Geometry/ParametrizedLine.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Geometry/Quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Geometry/Quaternion.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Geometry/Rotation2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Geometry/Rotation2D.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Geometry/RotationBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Geometry/RotationBase.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Geometry/Scaling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Geometry/Scaling.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Geometry/Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Geometry/Transform.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Geometry/Translation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Geometry/Translation.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Geometry/Umeyama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Geometry/Umeyama.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Geometry/arch/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Geometry/arch/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Eigen/src/Geometry/arch/Geometry_SSE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Geometry/arch/Geometry_SSE.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Householder/BlockHouseholder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Householder/BlockHouseholder.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Householder/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Householder/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Eigen/src/Householder/Householder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Householder/Householder.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Householder/HouseholderSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Householder/HouseholderSequence.h -------------------------------------------------------------------------------- /cpp/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h -------------------------------------------------------------------------------- /cpp/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h -------------------------------------------------------------------------------- /cpp/Eigen/src/IterativeLinearSolvers/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/IterativeLinearSolvers/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h -------------------------------------------------------------------------------- /cpp/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h -------------------------------------------------------------------------------- /cpp/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h -------------------------------------------------------------------------------- /cpp/Eigen/src/Jacobi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Jacobi/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Eigen/src/Jacobi/Jacobi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/Jacobi/Jacobi.h -------------------------------------------------------------------------------- /cpp/Eigen/src/LU/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/LU/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Eigen/src/LU/Determinant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/LU/Determinant.h -------------------------------------------------------------------------------- /cpp/Eigen/src/LU/FullPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/LU/FullPivLU.h -------------------------------------------------------------------------------- /cpp/Eigen/src/LU/Inverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/LU/Inverse.h -------------------------------------------------------------------------------- /cpp/Eigen/src/LU/PartialPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/LU/PartialPivLU.h -------------------------------------------------------------------------------- /cpp/Eigen/src/LU/PartialPivLU_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/LU/PartialPivLU_MKL.h -------------------------------------------------------------------------------- /cpp/Eigen/src/LU/arch/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/LU/arch/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Eigen/src/LU/arch/Inverse_SSE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/LU/arch/Inverse_SSE.h -------------------------------------------------------------------------------- /cpp/Eigen/src/MetisSupport/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/MetisSupport/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Eigen/src/MetisSupport/MetisSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/MetisSupport/MetisSupport.h -------------------------------------------------------------------------------- /cpp/Eigen/src/OrderingMethods/Amd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/OrderingMethods/Amd.h -------------------------------------------------------------------------------- /cpp/Eigen/src/OrderingMethods/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/OrderingMethods/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Eigen/src/OrderingMethods/Eigen_Colamd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/OrderingMethods/Eigen_Colamd.h -------------------------------------------------------------------------------- /cpp/Eigen/src/OrderingMethods/Ordering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/OrderingMethods/Ordering.h -------------------------------------------------------------------------------- /cpp/Eigen/src/PaStiXSupport/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/PaStiXSupport/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Eigen/src/PaStiXSupport/PaStiXSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/PaStiXSupport/PaStiXSupport.h -------------------------------------------------------------------------------- /cpp/Eigen/src/PardisoSupport/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/PardisoSupport/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Eigen/src/PardisoSupport/PardisoSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/PardisoSupport/PardisoSupport.h -------------------------------------------------------------------------------- /cpp/Eigen/src/QR/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/QR/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Eigen/src/QR/ColPivHouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/QR/ColPivHouseholderQR.h -------------------------------------------------------------------------------- /cpp/Eigen/src/QR/ColPivHouseholderQR_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/QR/ColPivHouseholderQR_MKL.h -------------------------------------------------------------------------------- /cpp/Eigen/src/QR/FullPivHouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/QR/FullPivHouseholderQR.h -------------------------------------------------------------------------------- /cpp/Eigen/src/QR/HouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/QR/HouseholderQR.h -------------------------------------------------------------------------------- /cpp/Eigen/src/QR/HouseholderQR_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/QR/HouseholderQR_MKL.h -------------------------------------------------------------------------------- /cpp/Eigen/src/SPQRSupport/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SPQRSupport/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h -------------------------------------------------------------------------------- /cpp/Eigen/src/SVD/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SVD/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Eigen/src/SVD/JacobiSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SVD/JacobiSVD.h -------------------------------------------------------------------------------- /cpp/Eigen/src/SVD/JacobiSVD_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SVD/JacobiSVD_MKL.h -------------------------------------------------------------------------------- /cpp/Eigen/src/SVD/UpperBidiagonalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SVD/UpperBidiagonalization.h -------------------------------------------------------------------------------- /cpp/Eigen/src/SparseCholesky/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SparseCholesky/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Eigen/src/SparseCholesky/SimplicialCholesky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SparseCholesky/SimplicialCholesky.h -------------------------------------------------------------------------------- /cpp/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h -------------------------------------------------------------------------------- /cpp/Eigen/src/SparseCore/AmbiVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SparseCore/AmbiVector.h -------------------------------------------------------------------------------- /cpp/Eigen/src/SparseCore/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SparseCore/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Eigen/src/SparseCore/CompressedStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SparseCore/CompressedStorage.h -------------------------------------------------------------------------------- /cpp/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h -------------------------------------------------------------------------------- /cpp/Eigen/src/SparseCore/MappedSparseMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SparseCore/MappedSparseMatrix.h -------------------------------------------------------------------------------- /cpp/Eigen/src/SparseCore/SparseBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SparseCore/SparseBlock.h -------------------------------------------------------------------------------- /cpp/Eigen/src/SparseCore/SparseColEtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SparseCore/SparseColEtree.h -------------------------------------------------------------------------------- /cpp/Eigen/src/SparseCore/SparseCwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SparseCore/SparseCwiseBinaryOp.h -------------------------------------------------------------------------------- /cpp/Eigen/src/SparseCore/SparseCwiseUnaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SparseCore/SparseCwiseUnaryOp.h -------------------------------------------------------------------------------- /cpp/Eigen/src/SparseCore/SparseDenseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SparseCore/SparseDenseProduct.h -------------------------------------------------------------------------------- /cpp/Eigen/src/SparseCore/SparseDiagonalProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SparseCore/SparseDiagonalProduct.h -------------------------------------------------------------------------------- /cpp/Eigen/src/SparseCore/SparseDot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SparseCore/SparseDot.h -------------------------------------------------------------------------------- /cpp/Eigen/src/SparseCore/SparseFuzzy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SparseCore/SparseFuzzy.h -------------------------------------------------------------------------------- /cpp/Eigen/src/SparseCore/SparseMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SparseCore/SparseMatrix.h -------------------------------------------------------------------------------- /cpp/Eigen/src/SparseCore/SparseMatrixBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SparseCore/SparseMatrixBase.h -------------------------------------------------------------------------------- /cpp/Eigen/src/SparseCore/SparsePermutation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SparseCore/SparsePermutation.h -------------------------------------------------------------------------------- /cpp/Eigen/src/SparseCore/SparseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SparseCore/SparseProduct.h -------------------------------------------------------------------------------- /cpp/Eigen/src/SparseCore/SparseRedux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SparseCore/SparseRedux.h -------------------------------------------------------------------------------- /cpp/Eigen/src/SparseCore/SparseSelfAdjointView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SparseCore/SparseSelfAdjointView.h -------------------------------------------------------------------------------- /cpp/Eigen/src/SparseCore/SparseSparseProductWithPruning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SparseCore/SparseSparseProductWithPruning.h -------------------------------------------------------------------------------- /cpp/Eigen/src/SparseCore/SparseTranspose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SparseCore/SparseTranspose.h -------------------------------------------------------------------------------- /cpp/Eigen/src/SparseCore/SparseTriangularView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SparseCore/SparseTriangularView.h -------------------------------------------------------------------------------- /cpp/Eigen/src/SparseCore/SparseUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SparseCore/SparseUtil.h -------------------------------------------------------------------------------- /cpp/Eigen/src/SparseCore/SparseVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SparseCore/SparseVector.h -------------------------------------------------------------------------------- /cpp/Eigen/src/SparseCore/SparseView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SparseCore/SparseView.h -------------------------------------------------------------------------------- /cpp/Eigen/src/SparseCore/TriangularSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SparseCore/TriangularSolver.h -------------------------------------------------------------------------------- /cpp/Eigen/src/SparseLU/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SparseLU/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Eigen/src/SparseLU/SparseLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SparseLU/SparseLU.h -------------------------------------------------------------------------------- /cpp/Eigen/src/SparseLU/SparseLUImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SparseLU/SparseLUImpl.h -------------------------------------------------------------------------------- /cpp/Eigen/src/SparseLU/SparseLU_Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SparseLU/SparseLU_Memory.h -------------------------------------------------------------------------------- /cpp/Eigen/src/SparseLU/SparseLU_Structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SparseLU/SparseLU_Structs.h -------------------------------------------------------------------------------- /cpp/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h -------------------------------------------------------------------------------- /cpp/Eigen/src/SparseLU/SparseLU_Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SparseLU/SparseLU_Utils.h -------------------------------------------------------------------------------- /cpp/Eigen/src/SparseLU/SparseLU_column_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SparseLU/SparseLU_column_bmod.h -------------------------------------------------------------------------------- /cpp/Eigen/src/SparseLU/SparseLU_column_dfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SparseLU/SparseLU_column_dfs.h -------------------------------------------------------------------------------- /cpp/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h -------------------------------------------------------------------------------- /cpp/Eigen/src/SparseLU/SparseLU_gemm_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SparseLU/SparseLU_gemm_kernel.h -------------------------------------------------------------------------------- /cpp/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h -------------------------------------------------------------------------------- /cpp/Eigen/src/SparseLU/SparseLU_kernel_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SparseLU/SparseLU_kernel_bmod.h -------------------------------------------------------------------------------- /cpp/Eigen/src/SparseLU/SparseLU_panel_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SparseLU/SparseLU_panel_bmod.h -------------------------------------------------------------------------------- /cpp/Eigen/src/SparseLU/SparseLU_panel_dfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SparseLU/SparseLU_panel_dfs.h -------------------------------------------------------------------------------- /cpp/Eigen/src/SparseLU/SparseLU_pivotL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SparseLU/SparseLU_pivotL.h -------------------------------------------------------------------------------- /cpp/Eigen/src/SparseLU/SparseLU_pruneL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SparseLU/SparseLU_pruneL.h -------------------------------------------------------------------------------- /cpp/Eigen/src/SparseLU/SparseLU_relax_snode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SparseLU/SparseLU_relax_snode.h -------------------------------------------------------------------------------- /cpp/Eigen/src/SparseQR/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SparseQR/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Eigen/src/SparseQR/SparseQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SparseQR/SparseQR.h -------------------------------------------------------------------------------- /cpp/Eigen/src/StlSupport/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/StlSupport/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Eigen/src/StlSupport/StdDeque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/StlSupport/StdDeque.h -------------------------------------------------------------------------------- /cpp/Eigen/src/StlSupport/StdList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/StlSupport/StdList.h -------------------------------------------------------------------------------- /cpp/Eigen/src/StlSupport/StdVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/StlSupport/StdVector.h -------------------------------------------------------------------------------- /cpp/Eigen/src/StlSupport/details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/StlSupport/details.h -------------------------------------------------------------------------------- /cpp/Eigen/src/SuperLUSupport/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SuperLUSupport/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Eigen/src/SuperLUSupport/SuperLUSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/SuperLUSupport/SuperLUSupport.h -------------------------------------------------------------------------------- /cpp/Eigen/src/UmfPackSupport/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/UmfPackSupport/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Eigen/src/UmfPackSupport/UmfPackSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/UmfPackSupport/UmfPackSupport.h -------------------------------------------------------------------------------- /cpp/Eigen/src/misc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/misc/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Eigen/src/misc/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/misc/Image.h -------------------------------------------------------------------------------- /cpp/Eigen/src/misc/Kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/misc/Kernel.h -------------------------------------------------------------------------------- /cpp/Eigen/src/misc/Solve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/misc/Solve.h -------------------------------------------------------------------------------- /cpp/Eigen/src/misc/SparseSolve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/misc/SparseSolve.h -------------------------------------------------------------------------------- /cpp/Eigen/src/misc/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/misc/blas.h -------------------------------------------------------------------------------- /cpp/Eigen/src/plugins/ArrayCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/plugins/ArrayCwiseBinaryOps.h -------------------------------------------------------------------------------- /cpp/Eigen/src/plugins/ArrayCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/plugins/ArrayCwiseUnaryOps.h -------------------------------------------------------------------------------- /cpp/Eigen/src/plugins/BlockMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/plugins/BlockMethods.h -------------------------------------------------------------------------------- /cpp/Eigen/src/plugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/plugins/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/Eigen/src/plugins/CommonCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/plugins/CommonCwiseBinaryOps.h -------------------------------------------------------------------------------- /cpp/Eigen/src/plugins/CommonCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/plugins/CommonCwiseUnaryOps.h -------------------------------------------------------------------------------- /cpp/Eigen/src/plugins/MatrixCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/plugins/MatrixCwiseBinaryOps.h -------------------------------------------------------------------------------- /cpp/Eigen/src/plugins/MatrixCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/Eigen/src/plugins/MatrixCwiseUnaryOps.h -------------------------------------------------------------------------------- /cpp/clipper/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/clipper/License.txt -------------------------------------------------------------------------------- /cpp/clipper/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/clipper/README -------------------------------------------------------------------------------- /cpp/clipper/clipper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/clipper/clipper.cpp -------------------------------------------------------------------------------- /cpp/clipper/clipper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/clipper/clipper.hpp -------------------------------------------------------------------------------- /cpp/polycont/cpp/clockwise_sort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/polycont/cpp/clockwise_sort.hpp -------------------------------------------------------------------------------- /cpp/polycont/cpp/containers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/polycont/cpp/containers.hpp -------------------------------------------------------------------------------- /cpp/polycont/cpp/examples/example_polycont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/polycont/cpp/examples/example_polycont.cpp -------------------------------------------------------------------------------- /cpp/polycont/cpp/examples/example_polycont.darwin15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/polycont/cpp/examples/example_polycont.darwin15 -------------------------------------------------------------------------------- /cpp/polycont/cpp/examples/example_polycont.linux-gnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/polycont/cpp/examples/example_polycont.linux-gnu -------------------------------------------------------------------------------- /cpp/polycont/cpp/examples/test_io.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/polycont/cpp/examples/test_io.bin -------------------------------------------------------------------------------- /cpp/polycont/cpp/examples/test_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/polycont/cpp/examples/test_io.cpp -------------------------------------------------------------------------------- /cpp/polycont/cpp/examples/test_io.darwin15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/polycont/cpp/examples/test_io.darwin15 -------------------------------------------------------------------------------- /cpp/polycont/cpp/examples/test_io.linux-gnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/polycont/cpp/examples/test_io.linux-gnu -------------------------------------------------------------------------------- /cpp/polycont/cpp/examples/test_io.pcont: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/polycont/cpp/examples/test_io.pcont -------------------------------------------------------------------------------- /cpp/polycont/cpp/in_out_sort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/polycont/cpp/in_out_sort.hpp -------------------------------------------------------------------------------- /cpp/polycont/cpp/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/polycont/cpp/io.hpp -------------------------------------------------------------------------------- /cpp/polycont/cpp/lines2jordan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/polycont/cpp/lines2jordan.hpp -------------------------------------------------------------------------------- /cpp/polycont/cpp/mask2poly.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/polycont/cpp/mask2poly.hpp -------------------------------------------------------------------------------- /cpp/polycont/cpp/mask2polycont.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/polycont/cpp/mask2polycont.hpp -------------------------------------------------------------------------------- /cpp/polycont/cpp/move2junctions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/polycont/cpp/move2junctions.hpp -------------------------------------------------------------------------------- /cpp/polycont/cpp/poly_compare.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/polycont/cpp/poly_compare.hpp -------------------------------------------------------------------------------- /cpp/polycont/cpp/simplify.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/polycont/cpp/simplify.hpp -------------------------------------------------------------------------------- /cpp/polycont/python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/polycont/python.cpp -------------------------------------------------------------------------------- /cpp/psimpl/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/psimpl/LICENSE.txt -------------------------------------------------------------------------------- /cpp/psimpl/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/psimpl/README.txt -------------------------------------------------------------------------------- /cpp/psimpl/psimpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/cpp/psimpl/psimpl.hpp -------------------------------------------------------------------------------- /data/get_davis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/data/get_davis.sh -------------------------------------------------------------------------------- /data/get_davis_results.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/data/get_davis_results.sh -------------------------------------------------------------------------------- /python/experiments/eval_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/python/experiments/eval_all.py -------------------------------------------------------------------------------- /python/experiments/eval_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/python/experiments/eval_attributes.py -------------------------------------------------------------------------------- /python/experiments/eval_sequences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/python/experiments/eval_sequences.py -------------------------------------------------------------------------------- /python/experiments/eval_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/python/experiments/eval_simple.py -------------------------------------------------------------------------------- /python/experiments/eval_train_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/python/experiments/eval_train_test.py -------------------------------------------------------------------------------- /python/lib/davis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/python/lib/davis/__init__.py -------------------------------------------------------------------------------- /python/lib/davis/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/python/lib/davis/config.py -------------------------------------------------------------------------------- /python/lib/davis/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/python/lib/davis/dataset/__init__.py -------------------------------------------------------------------------------- /python/lib/davis/dataset/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/python/lib/davis/dataset/loader.py -------------------------------------------------------------------------------- /python/lib/davis/dataset/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/python/lib/davis/dataset/utils.py -------------------------------------------------------------------------------- /python/lib/davis/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/python/lib/davis/logger.py -------------------------------------------------------------------------------- /python/lib/davis/measures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/python/lib/davis/measures/__init__.py -------------------------------------------------------------------------------- /python/lib/davis/measures/f_boundary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/python/lib/davis/measures/f_boundary.py -------------------------------------------------------------------------------- /python/lib/davis/measures/jaccard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/python/lib/davis/measures/jaccard.py -------------------------------------------------------------------------------- /python/lib/davis/measures/t_stability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/python/lib/davis/measures/t_stability.py -------------------------------------------------------------------------------- /python/lib/davis/parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/python/lib/davis/parallel.py -------------------------------------------------------------------------------- /python/lib/davis/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/python/lib/davis/timer.py -------------------------------------------------------------------------------- /python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/python/requirements.txt -------------------------------------------------------------------------------- /python/tools/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/python/tools/eval.py -------------------------------------------------------------------------------- /python/tools/eval_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/python/tools/eval_view.py -------------------------------------------------------------------------------- /python/tools/list_techniques.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fperazzi/davis/HEAD/python/tools/list_techniques.py --------------------------------------------------------------------------------