├── LICENSE ├── Makefile ├── README.md ├── config └── freelss ├── contrib ├── CanvasRenderer.js ├── CanvasRenderer.js.h ├── Makefile ├── OrbitControls.js ├── OrbitControls.js.h ├── PLYLoader.js ├── PLYLoader.js.h ├── Projector.js ├── Projector.js.h ├── SoftwareRenderer.js ├── SoftwareRenderer.js.h ├── eigen │ ├── include │ │ └── eigen3 │ │ │ ├── Eigen │ │ │ ├── Cholesky │ │ │ ├── CholmodSupport │ │ │ ├── Core │ │ │ ├── Dense │ │ │ ├── Eigen │ │ │ ├── Eigenvalues │ │ │ ├── Geometry │ │ │ ├── Householder │ │ │ ├── IterativeLinearSolvers │ │ │ ├── Jacobi │ │ │ ├── LU │ │ │ ├── MetisSupport │ │ │ ├── OrderingMethods │ │ │ ├── PaStiXSupport │ │ │ ├── PardisoSupport │ │ │ ├── QR │ │ │ ├── QtAlignedMalloc │ │ │ ├── SPQRSupport │ │ │ ├── SVD │ │ │ ├── Sparse │ │ │ ├── SparseCholesky │ │ │ ├── SparseCore │ │ │ ├── SparseLU │ │ │ ├── SparseQR │ │ │ ├── StdDeque │ │ │ ├── StdList │ │ │ ├── StdVector │ │ │ ├── SuperLUSupport │ │ │ ├── UmfPackSupport │ │ │ └── src │ │ │ │ ├── Cholesky │ │ │ │ ├── LDLT.h │ │ │ │ ├── LLT.h │ │ │ │ └── LLT_MKL.h │ │ │ │ ├── CholmodSupport │ │ │ │ └── CholmodSupport.h │ │ │ │ ├── Core │ │ │ │ ├── Array.h │ │ │ │ ├── ArrayBase.h │ │ │ │ ├── ArrayWrapper.h │ │ │ │ ├── Assign.h │ │ │ │ ├── AssignEvaluator.h │ │ │ │ ├── Assign_MKL.h │ │ │ │ ├── BandMatrix.h │ │ │ │ ├── Block.h │ │ │ │ ├── BooleanRedux.h │ │ │ │ ├── CommaInitializer.h │ │ │ │ ├── ConditionEstimator.h │ │ │ │ ├── CoreEvaluators.h │ │ │ │ ├── CoreIterators.h │ │ │ │ ├── CwiseBinaryOp.h │ │ │ │ ├── CwiseNullaryOp.h │ │ │ │ ├── CwiseUnaryOp.h │ │ │ │ ├── CwiseUnaryView.h │ │ │ │ ├── DenseBase.h │ │ │ │ ├── DenseCoeffsBase.h │ │ │ │ ├── DenseStorage.h │ │ │ │ ├── Diagonal.h │ │ │ │ ├── DiagonalMatrix.h │ │ │ │ ├── DiagonalProduct.h │ │ │ │ ├── Dot.h │ │ │ │ ├── EigenBase.h │ │ │ │ ├── ForceAlignedAccess.h │ │ │ │ ├── Fuzzy.h │ │ │ │ ├── GeneralProduct.h │ │ │ │ ├── GenericPacketMath.h │ │ │ │ ├── GlobalFunctions.h │ │ │ │ ├── IO.h │ │ │ │ ├── Inverse.h │ │ │ │ ├── Map.h │ │ │ │ ├── MapBase.h │ │ │ │ ├── MathFunctions.h │ │ │ │ ├── Matrix.h │ │ │ │ ├── MatrixBase.h │ │ │ │ ├── NestByValue.h │ │ │ │ ├── NoAlias.h │ │ │ │ ├── NumTraits.h │ │ │ │ ├── PermutationMatrix.h │ │ │ │ ├── PlainObjectBase.h │ │ │ │ ├── Product.h │ │ │ │ ├── ProductEvaluators.h │ │ │ │ ├── Random.h │ │ │ │ ├── Redux.h │ │ │ │ ├── Ref.h │ │ │ │ ├── Replicate.h │ │ │ │ ├── ReturnByValue.h │ │ │ │ ├── Reverse.h │ │ │ │ ├── Select.h │ │ │ │ ├── SelfAdjointView.h │ │ │ │ ├── SelfCwiseBinaryOp.h │ │ │ │ ├── Solve.h │ │ │ │ ├── SolveTriangular.h │ │ │ │ ├── SolverBase.h │ │ │ │ ├── SpecialFunctions.h │ │ │ │ ├── StableNorm.h │ │ │ │ ├── Stride.h │ │ │ │ ├── Swap.h │ │ │ │ ├── Transpose.h │ │ │ │ ├── Transpositions.h │ │ │ │ ├── TriangularMatrix.h │ │ │ │ ├── VectorBlock.h │ │ │ │ ├── VectorwiseOp.h │ │ │ │ ├── Visitor.h │ │ │ │ ├── arch │ │ │ │ │ ├── AVX │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ ├── AltiVec │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ └── PacketMath.h │ │ │ │ │ ├── CUDA │ │ │ │ │ │ ├── Half.h │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ ├── PacketMathHalf.h │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ ├── Default │ │ │ │ │ │ └── Settings.h │ │ │ │ │ ├── NEON │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ └── PacketMath.h │ │ │ │ │ └── SSE │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ ├── functors │ │ │ │ │ ├── AssignmentFunctors.h │ │ │ │ │ ├── BinaryFunctors.h │ │ │ │ │ ├── NullaryFunctors.h │ │ │ │ │ ├── StlFunctors.h │ │ │ │ │ └── UnaryFunctors.h │ │ │ │ ├── products │ │ │ │ │ ├── GeneralBlockPanelKernel.h │ │ │ │ │ ├── GeneralMatrixMatrix.h │ │ │ │ │ ├── GeneralMatrixMatrixTriangular.h │ │ │ │ │ ├── GeneralMatrixMatrixTriangular_BLAS.h │ │ │ │ │ ├── GeneralMatrixMatrix_BLAS.h │ │ │ │ │ ├── GeneralMatrixVector.h │ │ │ │ │ ├── GeneralMatrixVector_BLAS.h │ │ │ │ │ ├── Parallelizer.h │ │ │ │ │ ├── SelfadjointMatrixMatrix.h │ │ │ │ │ ├── SelfadjointMatrixMatrix_BLAS.h │ │ │ │ │ ├── SelfadjointMatrixVector.h │ │ │ │ │ ├── SelfadjointMatrixVector_BLAS.h │ │ │ │ │ ├── SelfadjointProduct.h │ │ │ │ │ ├── SelfadjointRank2Update.h │ │ │ │ │ ├── TriangularMatrixMatrix.h │ │ │ │ │ ├── TriangularMatrixMatrix_BLAS.h │ │ │ │ │ ├── TriangularMatrixVector.h │ │ │ │ │ ├── TriangularMatrixVector_BLAS.h │ │ │ │ │ ├── TriangularSolverMatrix.h │ │ │ │ │ ├── TriangularSolverMatrix_BLAS.h │ │ │ │ │ └── TriangularSolverVector.h │ │ │ │ └── util │ │ │ │ │ ├── BlasUtil.h │ │ │ │ │ ├── Constants.h │ │ │ │ │ ├── DisableStupidWarnings.h │ │ │ │ │ ├── ForwardDeclarations.h │ │ │ │ │ ├── MKL_support.h │ │ │ │ │ ├── Macros.h │ │ │ │ │ ├── Memory.h │ │ │ │ │ ├── Meta.h │ │ │ │ │ ├── NonMPL2.h │ │ │ │ │ ├── ReenableStupidWarnings.h │ │ │ │ │ ├── StaticAssert.h │ │ │ │ │ └── XprHelper.h │ │ │ │ ├── Eigenvalues │ │ │ │ ├── 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 │ │ │ │ ├── EulerAngles.h │ │ │ │ ├── Homogeneous.h │ │ │ │ ├── Hyperplane.h │ │ │ │ ├── OrthoMethods.h │ │ │ │ ├── ParametrizedLine.h │ │ │ │ ├── Quaternion.h │ │ │ │ ├── Rotation2D.h │ │ │ │ ├── RotationBase.h │ │ │ │ ├── Scaling.h │ │ │ │ ├── Transform.h │ │ │ │ ├── Translation.h │ │ │ │ ├── Umeyama.h │ │ │ │ └── arch │ │ │ │ │ └── Geometry_SSE.h │ │ │ │ ├── Householder │ │ │ │ ├── BlockHouseholder.h │ │ │ │ ├── Householder.h │ │ │ │ └── HouseholderSequence.h │ │ │ │ ├── IterativeLinearSolvers │ │ │ │ ├── BasicPreconditioners.h │ │ │ │ ├── BiCGSTAB.h │ │ │ │ ├── ConjugateGradient.h │ │ │ │ ├── IncompleteCholesky.h │ │ │ │ ├── IncompleteLUT.h │ │ │ │ ├── IterativeSolverBase.h │ │ │ │ ├── LeastSquareConjugateGradient.h │ │ │ │ └── SolveWithGuess.h │ │ │ │ ├── Jacobi │ │ │ │ └── Jacobi.h │ │ │ │ ├── LU │ │ │ │ ├── Determinant.h │ │ │ │ ├── FullPivLU.h │ │ │ │ ├── InverseImpl.h │ │ │ │ ├── PartialPivLU.h │ │ │ │ ├── PartialPivLU_MKL.h │ │ │ │ └── arch │ │ │ │ │ └── Inverse_SSE.h │ │ │ │ ├── MetisSupport │ │ │ │ └── MetisSupport.h │ │ │ │ ├── OrderingMethods │ │ │ │ ├── Amd.h │ │ │ │ ├── Eigen_Colamd.h │ │ │ │ └── Ordering.h │ │ │ │ ├── PaStiXSupport │ │ │ │ └── PaStiXSupport.h │ │ │ │ ├── PardisoSupport │ │ │ │ └── PardisoSupport.h │ │ │ │ ├── QR │ │ │ │ ├── ColPivHouseholderQR.h │ │ │ │ ├── ColPivHouseholderQR_MKL.h │ │ │ │ ├── CompleteOrthogonalDecomposition.h │ │ │ │ ├── FullPivHouseholderQR.h │ │ │ │ ├── HouseholderQR.h │ │ │ │ └── HouseholderQR_MKL.h │ │ │ │ ├── SPQRSupport │ │ │ │ └── SuiteSparseQRSupport.h │ │ │ │ ├── SVD │ │ │ │ ├── BDCSVD.h │ │ │ │ ├── JacobiSVD.h │ │ │ │ ├── JacobiSVD_MKL.h │ │ │ │ ├── SVDBase.h │ │ │ │ └── UpperBidiagonalization.h │ │ │ │ ├── SparseCholesky │ │ │ │ ├── SimplicialCholesky.h │ │ │ │ └── SimplicialCholesky_impl.h │ │ │ │ ├── SparseCore │ │ │ │ ├── AmbiVector.h │ │ │ │ ├── CompressedStorage.h │ │ │ │ ├── ConservativeSparseSparseProduct.h │ │ │ │ ├── MappedSparseMatrix.h │ │ │ │ ├── SparseAssign.h │ │ │ │ ├── SparseBlock.h │ │ │ │ ├── SparseColEtree.h │ │ │ │ ├── SparseCompressedBase.h │ │ │ │ ├── SparseCwiseBinaryOp.h │ │ │ │ ├── SparseCwiseUnaryOp.h │ │ │ │ ├── SparseDenseProduct.h │ │ │ │ ├── SparseDiagonalProduct.h │ │ │ │ ├── SparseDot.h │ │ │ │ ├── SparseFuzzy.h │ │ │ │ ├── SparseMap.h │ │ │ │ ├── SparseMatrix.h │ │ │ │ ├── SparseMatrixBase.h │ │ │ │ ├── SparsePermutation.h │ │ │ │ ├── SparseProduct.h │ │ │ │ ├── SparseRedux.h │ │ │ │ ├── SparseRef.h │ │ │ │ ├── SparseSelfAdjointView.h │ │ │ │ ├── SparseSolverBase.h │ │ │ │ ├── SparseSparseProductWithPruning.h │ │ │ │ ├── SparseTranspose.h │ │ │ │ ├── SparseTriangularView.h │ │ │ │ ├── SparseUtil.h │ │ │ │ ├── SparseVector.h │ │ │ │ ├── SparseView.h │ │ │ │ └── TriangularSolver.h │ │ │ │ ├── SparseLU │ │ │ │ ├── SparseLU.h │ │ │ │ ├── SparseLUImpl.h │ │ │ │ ├── SparseLU_Memory.h │ │ │ │ ├── SparseLU_Structs.h │ │ │ │ ├── SparseLU_SupernodalMatrix.h │ │ │ │ ├── SparseLU_Utils.h │ │ │ │ ├── SparseLU_column_bmod.h │ │ │ │ ├── SparseLU_column_dfs.h │ │ │ │ ├── SparseLU_copy_to_ucol.h │ │ │ │ ├── SparseLU_gemm_kernel.h │ │ │ │ ├── SparseLU_heap_relax_snode.h │ │ │ │ ├── SparseLU_kernel_bmod.h │ │ │ │ ├── SparseLU_panel_bmod.h │ │ │ │ ├── SparseLU_panel_dfs.h │ │ │ │ ├── SparseLU_pivotL.h │ │ │ │ ├── SparseLU_pruneL.h │ │ │ │ └── SparseLU_relax_snode.h │ │ │ │ ├── SparseQR │ │ │ │ └── SparseQR.h │ │ │ │ ├── StlSupport │ │ │ │ ├── StdDeque.h │ │ │ │ ├── StdList.h │ │ │ │ ├── StdVector.h │ │ │ │ └── details.h │ │ │ │ ├── SuperLUSupport │ │ │ │ └── SuperLUSupport.h │ │ │ │ ├── UmfPackSupport │ │ │ │ └── UmfPackSupport.h │ │ │ │ ├── misc │ │ │ │ ├── Image.h │ │ │ │ ├── Kernel.h │ │ │ │ ├── blas.h │ │ │ │ └── lapack.h │ │ │ │ └── plugins │ │ │ │ ├── ArrayCwiseBinaryOps.h │ │ │ │ ├── ArrayCwiseUnaryOps.h │ │ │ │ ├── BlockMethods.h │ │ │ │ ├── CommonCwiseBinaryOps.h │ │ │ │ ├── CommonCwiseUnaryOps.h │ │ │ │ ├── MatrixCwiseBinaryOps.h │ │ │ │ └── MatrixCwiseUnaryOps.h │ │ │ ├── signature_of_eigen3_matrix_library │ │ │ └── unsupported │ │ │ └── Eigen │ │ │ ├── AdolcForward │ │ │ ├── AlignedVector3 │ │ │ ├── ArpackSupport │ │ │ ├── AutoDiff │ │ │ ├── BVH │ │ │ ├── CXX11 │ │ │ ├── Tensor │ │ │ ├── TensorSymmetry │ │ │ ├── ThreadPool │ │ │ └── src │ │ │ │ ├── Tensor │ │ │ │ ├── Tensor.h │ │ │ │ ├── TensorArgMax.h │ │ │ │ ├── TensorAssign.h │ │ │ │ ├── TensorBase.h │ │ │ │ ├── TensorBroadcasting.h │ │ │ │ ├── TensorChipping.h │ │ │ │ ├── TensorConcatenation.h │ │ │ │ ├── TensorContraction.h │ │ │ │ ├── TensorContractionBlocking.h │ │ │ │ ├── TensorContractionCuda.h │ │ │ │ ├── TensorContractionMapper.h │ │ │ │ ├── TensorContractionThreadPool.h │ │ │ │ ├── TensorConversion.h │ │ │ │ ├── TensorConvolution.h │ │ │ │ ├── TensorCostModel.h │ │ │ │ ├── TensorCustomOp.h │ │ │ │ ├── TensorDevice.h │ │ │ │ ├── TensorDeviceCuda.h │ │ │ │ ├── TensorDeviceDefault.h │ │ │ │ ├── TensorDeviceThreadPool.h │ │ │ │ ├── TensorDimensionList.h │ │ │ │ ├── TensorDimensions.h │ │ │ │ ├── TensorEvalTo.h │ │ │ │ ├── TensorEvaluator.h │ │ │ │ ├── TensorExecutor.h │ │ │ │ ├── TensorExpr.h │ │ │ │ ├── TensorFFT.h │ │ │ │ ├── TensorFixedSize.h │ │ │ │ ├── TensorForcedEval.h │ │ │ │ ├── TensorForwardDeclarations.h │ │ │ │ ├── TensorFunctors.h │ │ │ │ ├── TensorGenerator.h │ │ │ │ ├── TensorIO.h │ │ │ │ ├── TensorImagePatch.h │ │ │ │ ├── TensorIndexList.h │ │ │ │ ├── TensorInflation.h │ │ │ │ ├── TensorInitializer.h │ │ │ │ ├── TensorIntDiv.h │ │ │ │ ├── TensorLayoutSwap.h │ │ │ │ ├── TensorMacros.h │ │ │ │ ├── TensorMap.h │ │ │ │ ├── TensorMeta.h │ │ │ │ ├── TensorMorphing.h │ │ │ │ ├── TensorPadding.h │ │ │ │ ├── TensorPatch.h │ │ │ │ ├── TensorReduction.h │ │ │ │ ├── TensorReductionCuda.h │ │ │ │ ├── TensorRef.h │ │ │ │ ├── TensorReverse.h │ │ │ │ ├── TensorShuffling.h │ │ │ │ ├── TensorStorage.h │ │ │ │ ├── TensorStriding.h │ │ │ │ ├── TensorTraits.h │ │ │ │ ├── TensorUInt128.h │ │ │ │ └── TensorVolumePatch.h │ │ │ │ ├── TensorSymmetry │ │ │ │ ├── DynamicSymmetry.h │ │ │ │ ├── StaticSymmetry.h │ │ │ │ ├── Symmetry.h │ │ │ │ └── util │ │ │ │ │ └── TemplateGroupTheory.h │ │ │ │ ├── ThreadPool │ │ │ │ ├── EventCount.h │ │ │ │ ├── NonBlockingThreadPool.h │ │ │ │ ├── RunQueue.h │ │ │ │ ├── SimpleThreadPool.h │ │ │ │ ├── ThreadEnvironment.h │ │ │ │ ├── ThreadLocal.h │ │ │ │ ├── ThreadPoolInterface.h │ │ │ │ └── ThreadYield.h │ │ │ │ └── util │ │ │ │ ├── CXX11Meta.h │ │ │ │ ├── CXX11Workarounds.h │ │ │ │ ├── EmulateArray.h │ │ │ │ ├── EmulateCXX11Meta.h │ │ │ │ └── MaxSizeVector.h │ │ │ ├── FFT │ │ │ ├── IterativeSolvers │ │ │ ├── KroneckerProduct │ │ │ ├── LevenbergMarquardt │ │ │ ├── MPRealSupport │ │ │ ├── MatrixFunctions │ │ │ ├── MoreVectorization │ │ │ ├── NonLinearOptimization │ │ │ ├── NumericalDiff │ │ │ ├── OpenGLSupport │ │ │ ├── Polynomials │ │ │ ├── Skyline │ │ │ ├── SparseExtra │ │ │ ├── Splines │ │ │ └── src │ │ │ ├── AutoDiff │ │ │ ├── AutoDiffJacobian.h │ │ │ ├── AutoDiffScalar.h │ │ │ └── AutoDiffVector.h │ │ │ ├── BVH │ │ │ ├── BVAlgorithms.h │ │ │ └── KdBVH.h │ │ │ ├── Eigenvalues │ │ │ └── ArpackSelfAdjointEigenSolver.h │ │ │ ├── FFT │ │ │ ├── ei_fftw_impl.h │ │ │ └── ei_kissfft_impl.h │ │ │ ├── IterativeSolvers │ │ │ ├── ConstrainedConjGrad.h │ │ │ ├── DGMRES.h │ │ │ ├── GMRES.h │ │ │ ├── IncompleteLU.h │ │ │ ├── IterationController.h │ │ │ ├── MINRES.h │ │ │ └── Scaling.h │ │ │ ├── KroneckerProduct │ │ │ └── KroneckerTensorProduct.h │ │ │ ├── LevenbergMarquardt │ │ │ ├── LMcovar.h │ │ │ ├── LMonestep.h │ │ │ ├── LMpar.h │ │ │ ├── LMqrsolv.h │ │ │ └── LevenbergMarquardt.h │ │ │ ├── MatrixFunctions │ │ │ ├── MatrixExponential.h │ │ │ ├── MatrixFunction.h │ │ │ ├── MatrixLogarithm.h │ │ │ ├── MatrixPower.h │ │ │ ├── MatrixSquareRoot.h │ │ │ └── StemFunction.h │ │ │ ├── MoreVectorization │ │ │ └── MathFunctions.h │ │ │ ├── NonLinearOptimization │ │ │ ├── HybridNonLinearSolver.h │ │ │ ├── LevenbergMarquardt.h │ │ │ ├── chkder.h │ │ │ ├── covar.h │ │ │ ├── dogleg.h │ │ │ ├── fdjac1.h │ │ │ ├── lmpar.h │ │ │ ├── qrsolv.h │ │ │ ├── r1mpyq.h │ │ │ ├── r1updt.h │ │ │ └── rwupdt.h │ │ │ ├── NumericalDiff │ │ │ └── NumericalDiff.h │ │ │ ├── Polynomials │ │ │ ├── Companion.h │ │ │ ├── PolynomialSolver.h │ │ │ └── PolynomialUtils.h │ │ │ ├── Skyline │ │ │ ├── SkylineInplaceLU.h │ │ │ ├── SkylineMatrix.h │ │ │ ├── SkylineMatrixBase.h │ │ │ ├── SkylineProduct.h │ │ │ ├── SkylineStorage.h │ │ │ └── SkylineUtil.h │ │ │ ├── SparseExtra │ │ │ ├── BlockOfDynamicSparseMatrix.h │ │ │ ├── BlockSparseMatrix.h │ │ │ ├── DynamicSparseMatrix.h │ │ │ ├── MarketIO.h │ │ │ ├── MatrixMarketIterator.h │ │ │ └── RandomSetter.h │ │ │ └── Splines │ │ │ ├── Spline.h │ │ │ ├── SplineFitting.h │ │ │ └── SplineFwd.h │ ├── lib │ │ └── x86_64-linux-gnu │ │ │ └── cmake │ │ │ └── eigen3 │ │ │ ├── Eigen3Config.cmake │ │ │ └── UseEigen3.cmake │ └── share │ │ └── pkgconfig │ │ └── eigen3.pc ├── jquery-ui.css ├── jquery-ui.css.h ├── jquery-ui.js ├── jquery-ui.js.h ├── jquery.js ├── jquery.js.h ├── licenses.txt ├── licenses.txt.h ├── rapidxml.hpp ├── showScan.js ├── showScan.js.h ├── three.min.js └── three.min.js.h └── src ├── A4988TurnTable.cpp ├── A4988TurnTable.h ├── BootConfigManager.cpp ├── BootConfigManager.h ├── Calibrator.cpp ├── Calibrator.h ├── Camera.cpp ├── Camera.h ├── CriticalSection.cpp ├── CriticalSection.h ├── Facetizer.cpp ├── Facetizer.h ├── FileWriter.cpp ├── FileWriter.h ├── HttpServer.cpp ├── HttpServer.h ├── IWriter.h ├── Image.cpp ├── Image.h ├── ImageProcessor.cpp ├── ImageProcessor.h ├── Laser.cpp ├── Laser.h ├── LaserResultsMerger.cpp ├── LaserResultsMerger.h ├── Lighting.cpp ├── Lighting.h ├── LocationMapper.cpp ├── LocationMapper.h ├── Logger.cpp ├── Logger.h ├── Main.cpp ├── Main.h ├── Makefile ├── MemWriter.cpp ├── MemWriter.h ├── MmalImageStore.cpp ├── MmalImageStore.h ├── MmalStillCamera.cpp ├── MmalStillCamera.h ├── MmalUtil.cpp ├── MmalUtil.h ├── MmalVideoCamera.cpp ├── MmalVideoCamera.h ├── MockCamera.cpp ├── MockCamera.h ├── MountManager.cpp ├── MountManager.h ├── NoiseRemover.cpp ├── NoiseRemover.h ├── ObjectBaseCreator.cpp ├── ObjectBaseCreator.h ├── PixelLocationWriter.cpp ├── PixelLocationWriter.h ├── PlyReader.cpp ├── PlyReader.h ├── PlyWriter.cpp ├── PlyWriter.h ├── PointCloudRenderer.cpp ├── PointCloudRenderer.h ├── Preset.cpp ├── Preset.h ├── PresetManager.cpp ├── PresetManager.h ├── Progress.cpp ├── Progress.h ├── PropertyReaderWriter.cpp ├── PropertyReaderWriter.h ├── RaspistillCamera.cpp ├── RaspistillCamera.h ├── RelayLaser.cpp ├── RelayLaser.h ├── Scanner.cpp ├── Scanner.h ├── Setup.cpp ├── Setup.h ├── StlWriter.cpp ├── StlWriter.h ├── Thread.cpp ├── Thread.h ├── TurnTable.cpp ├── TurnTable.h ├── UpdateManager.cpp ├── UpdateManager.h ├── WebContent.cpp ├── WebContent.h ├── WifiConfig.cpp ├── WifiConfig.h ├── XyzWriter.cpp ├── XyzWriter.h └── mpfit.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/README.md -------------------------------------------------------------------------------- /config/freelss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/config/freelss -------------------------------------------------------------------------------- /contrib/CanvasRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/CanvasRenderer.js -------------------------------------------------------------------------------- /contrib/CanvasRenderer.js.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/CanvasRenderer.js.h -------------------------------------------------------------------------------- /contrib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/Makefile -------------------------------------------------------------------------------- /contrib/OrbitControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/OrbitControls.js -------------------------------------------------------------------------------- /contrib/OrbitControls.js.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/OrbitControls.js.h -------------------------------------------------------------------------------- /contrib/PLYLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/PLYLoader.js -------------------------------------------------------------------------------- /contrib/PLYLoader.js.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/PLYLoader.js.h -------------------------------------------------------------------------------- /contrib/Projector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/Projector.js -------------------------------------------------------------------------------- /contrib/Projector.js.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/Projector.js.h -------------------------------------------------------------------------------- /contrib/SoftwareRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/SoftwareRenderer.js -------------------------------------------------------------------------------- /contrib/SoftwareRenderer.js.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/SoftwareRenderer.js.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/Cholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/Cholesky -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/CholmodSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/CholmodSupport -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/Core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/Core -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/Dense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/Dense -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/Eigen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/Eigen -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/Eigenvalues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/Eigenvalues -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/Geometry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/Geometry -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/Householder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/Householder -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/IterativeLinearSolvers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/IterativeLinearSolvers -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/Jacobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/Jacobi -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/LU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/LU -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/MetisSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/MetisSupport -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/OrderingMethods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/OrderingMethods -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/PaStiXSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/PaStiXSupport -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/PardisoSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/PardisoSupport -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/QR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/QR -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/QtAlignedMalloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/QtAlignedMalloc -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/SPQRSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/SPQRSupport -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/SVD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/SVD -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/Sparse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/Sparse -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/SparseCholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/SparseCholesky -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/SparseCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/SparseCore -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/SparseLU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/SparseLU -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/SparseQR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/SparseQR -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/StdDeque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/StdDeque -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/StdList: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/StdList -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/StdVector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/StdVector -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/SuperLUSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/SuperLUSupport -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/UmfPackSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/UmfPackSupport -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Cholesky/LDLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Cholesky/LDLT.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Cholesky/LLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Cholesky/LLT.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Cholesky/LLT_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Cholesky/LLT_MKL.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/CholmodSupport/CholmodSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/CholmodSupport/CholmodSupport.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/Array.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/ArrayBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/ArrayBase.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/ArrayWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/ArrayWrapper.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/Assign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/Assign.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/AssignEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/AssignEvaluator.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/Assign_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/Assign_MKL.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/BandMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/BandMatrix.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/Block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/Block.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/BooleanRedux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/BooleanRedux.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/CommaInitializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/CommaInitializer.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/ConditionEstimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/ConditionEstimator.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/CoreEvaluators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/CoreEvaluators.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/CoreIterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/CoreIterators.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/CwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/CwiseBinaryOp.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/CwiseNullaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/CwiseNullaryOp.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/CwiseUnaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/CwiseUnaryOp.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/CwiseUnaryView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/CwiseUnaryView.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/DenseBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/DenseBase.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/DenseCoeffsBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/DenseCoeffsBase.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/DenseStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/DenseStorage.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/Diagonal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/Diagonal.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/DiagonalMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/DiagonalMatrix.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/DiagonalProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/DiagonalProduct.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/Dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/Dot.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/EigenBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/EigenBase.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/ForceAlignedAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/ForceAlignedAccess.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/Fuzzy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/Fuzzy.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/GeneralProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/GeneralProduct.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/GenericPacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/GenericPacketMath.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/GlobalFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/GlobalFunctions.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/IO.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/Inverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/Inverse.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/Map.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/MapBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/MapBase.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/MathFunctions.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/Matrix.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/MatrixBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/MatrixBase.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/NestByValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/NestByValue.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/NoAlias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/NoAlias.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/NumTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/NumTraits.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/PermutationMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/PermutationMatrix.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/PlainObjectBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/PlainObjectBase.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/Product.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/Product.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/ProductEvaluators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/ProductEvaluators.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/Random.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/Redux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/Redux.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/Ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/Ref.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/Replicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/Replicate.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/ReturnByValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/ReturnByValue.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/Reverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/Reverse.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/Select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/Select.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/SelfAdjointView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/SelfAdjointView.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/SelfCwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/SelfCwiseBinaryOp.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/Solve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/Solve.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/SolveTriangular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/SolveTriangular.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/SolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/SolverBase.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/SpecialFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/SpecialFunctions.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/StableNorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/StableNorm.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/Stride.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/Stride.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/Swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/Swap.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/Transpose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/Transpose.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/Transpositions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/Transpositions.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/TriangularMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/TriangularMatrix.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/VectorBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/VectorBlock.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/VectorwiseOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/VectorwiseOp.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/Visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/Visitor.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/arch/AVX/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/arch/AVX/Complex.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/arch/AVX/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/arch/AVX/MathFunctions.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/arch/AVX/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/arch/AVX/PacketMath.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/arch/AVX/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/arch/AVX/TypeCasting.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/arch/AltiVec/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/arch/AltiVec/Complex.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/arch/AltiVec/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/arch/AltiVec/MathFunctions.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/arch/AltiVec/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/arch/AltiVec/PacketMath.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/arch/CUDA/Half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/arch/CUDA/Half.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/arch/CUDA/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/arch/CUDA/MathFunctions.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/arch/CUDA/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/arch/CUDA/PacketMath.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/arch/CUDA/PacketMathHalf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/arch/CUDA/PacketMathHalf.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/arch/CUDA/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/arch/CUDA/TypeCasting.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/arch/Default/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/arch/Default/Settings.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/arch/NEON/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/arch/NEON/Complex.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/arch/NEON/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/arch/NEON/MathFunctions.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/arch/NEON/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/arch/NEON/PacketMath.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/arch/SSE/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/arch/SSE/Complex.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/arch/SSE/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/arch/SSE/MathFunctions.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/arch/SSE/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/arch/SSE/PacketMath.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/arch/SSE/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/arch/SSE/TypeCasting.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/functors/AssignmentFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/functors/AssignmentFunctors.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/functors/BinaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/functors/BinaryFunctors.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/functors/NullaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/functors/NullaryFunctors.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/functors/StlFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/functors/StlFunctors.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/functors/UnaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/functors/UnaryFunctors.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/products/GeneralBlockPanelKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/products/GeneralBlockPanelKernel.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/products/GeneralMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/products/GeneralMatrixMatrix.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/products/GeneralMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/products/GeneralMatrixVector.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/products/Parallelizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/products/Parallelizer.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/products/SelfadjointMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/products/SelfadjointMatrixMatrix.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/products/SelfadjointMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/products/SelfadjointMatrixVector.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/products/SelfadjointProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/products/SelfadjointProduct.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/products/SelfadjointRank2Update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/products/SelfadjointRank2Update.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/products/TriangularMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/products/TriangularMatrixMatrix.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/products/TriangularMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/products/TriangularMatrixVector.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/products/TriangularSolverMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/products/TriangularSolverMatrix.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/products/TriangularSolverVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/products/TriangularSolverVector.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/util/BlasUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/util/BlasUtil.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/util/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/util/Constants.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/util/DisableStupidWarnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/util/DisableStupidWarnings.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/util/ForwardDeclarations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/util/ForwardDeclarations.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/util/MKL_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/util/MKL_support.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/util/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/util/Macros.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/util/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/util/Memory.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/util/Meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/util/Meta.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/util/NonMPL2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/util/NonMPL2.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/util/ReenableStupidWarnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/util/ReenableStupidWarnings.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/util/StaticAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/util/StaticAssert.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Core/util/XprHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Core/util/XprHelper.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Eigenvalues/ComplexEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Eigenvalues/ComplexEigenSolver.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Eigenvalues/ComplexSchur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Eigenvalues/ComplexSchur.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Eigenvalues/ComplexSchur_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Eigenvalues/ComplexSchur_MKL.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Eigenvalues/EigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Eigenvalues/EigenSolver.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Eigenvalues/HessenbergDecomposition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Eigenvalues/HessenbergDecomposition.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Eigenvalues/RealQZ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Eigenvalues/RealQZ.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Eigenvalues/RealSchur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Eigenvalues/RealSchur.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Eigenvalues/RealSchur_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Eigenvalues/RealSchur_MKL.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_MKL.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Eigenvalues/Tridiagonalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Eigenvalues/Tridiagonalization.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Geometry/AlignedBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Geometry/AlignedBox.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Geometry/AngleAxis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Geometry/AngleAxis.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Geometry/EulerAngles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Geometry/EulerAngles.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Geometry/Homogeneous.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Geometry/Homogeneous.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Geometry/Hyperplane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Geometry/Hyperplane.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Geometry/OrthoMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Geometry/OrthoMethods.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Geometry/ParametrizedLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Geometry/ParametrizedLine.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Geometry/Quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Geometry/Quaternion.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Geometry/Rotation2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Geometry/Rotation2D.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Geometry/RotationBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Geometry/RotationBase.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Geometry/Scaling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Geometry/Scaling.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Geometry/Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Geometry/Transform.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Geometry/Translation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Geometry/Translation.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Geometry/Umeyama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Geometry/Umeyama.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Geometry/arch/Geometry_SSE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Geometry/arch/Geometry_SSE.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Householder/BlockHouseholder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Householder/BlockHouseholder.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Householder/Householder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Householder/Householder.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Householder/HouseholderSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Householder/HouseholderSequence.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/Jacobi/Jacobi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/Jacobi/Jacobi.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/LU/Determinant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/LU/Determinant.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/LU/FullPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/LU/FullPivLU.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/LU/InverseImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/LU/InverseImpl.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/LU/PartialPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/LU/PartialPivLU.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/LU/PartialPivLU_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/LU/PartialPivLU_MKL.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/LU/arch/Inverse_SSE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/LU/arch/Inverse_SSE.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/MetisSupport/MetisSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/MetisSupport/MetisSupport.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/OrderingMethods/Amd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/OrderingMethods/Amd.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/OrderingMethods/Eigen_Colamd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/OrderingMethods/Eigen_Colamd.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/OrderingMethods/Ordering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/OrderingMethods/Ordering.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/PaStiXSupport/PaStiXSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/PaStiXSupport/PaStiXSupport.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/PardisoSupport/PardisoSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/PardisoSupport/PardisoSupport.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/QR/ColPivHouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/QR/ColPivHouseholderQR.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/QR/ColPivHouseholderQR_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/QR/ColPivHouseholderQR_MKL.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/QR/CompleteOrthogonalDecomposition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/QR/CompleteOrthogonalDecomposition.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/QR/FullPivHouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/QR/FullPivHouseholderQR.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/QR/HouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/QR/HouseholderQR.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/QR/HouseholderQR_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/QR/HouseholderQR_MKL.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SVD/BDCSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SVD/BDCSVD.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SVD/JacobiSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SVD/JacobiSVD.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SVD/JacobiSVD_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SVD/JacobiSVD_MKL.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SVD/SVDBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SVD/SVDBase.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SVD/UpperBidiagonalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SVD/UpperBidiagonalization.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SparseCholesky/SimplicialCholesky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SparseCholesky/SimplicialCholesky.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SparseCore/AmbiVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SparseCore/AmbiVector.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SparseCore/CompressedStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SparseCore/CompressedStorage.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SparseCore/MappedSparseMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SparseCore/MappedSparseMatrix.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SparseCore/SparseAssign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SparseCore/SparseAssign.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SparseCore/SparseBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SparseCore/SparseBlock.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SparseCore/SparseColEtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SparseCore/SparseColEtree.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SparseCore/SparseCompressedBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SparseCore/SparseCompressedBase.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SparseCore/SparseCwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SparseCore/SparseCwiseBinaryOp.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SparseCore/SparseCwiseUnaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SparseCore/SparseCwiseUnaryOp.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SparseCore/SparseDenseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SparseCore/SparseDenseProduct.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SparseCore/SparseDiagonalProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SparseCore/SparseDiagonalProduct.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SparseCore/SparseDot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SparseCore/SparseDot.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SparseCore/SparseFuzzy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SparseCore/SparseFuzzy.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SparseCore/SparseMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SparseCore/SparseMap.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SparseCore/SparseMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SparseCore/SparseMatrix.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SparseCore/SparseMatrixBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SparseCore/SparseMatrixBase.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SparseCore/SparsePermutation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SparseCore/SparsePermutation.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SparseCore/SparseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SparseCore/SparseProduct.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SparseCore/SparseRedux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SparseCore/SparseRedux.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SparseCore/SparseRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SparseCore/SparseRef.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SparseCore/SparseSelfAdjointView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SparseCore/SparseSelfAdjointView.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SparseCore/SparseSolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SparseCore/SparseSolverBase.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SparseCore/SparseSparseProductWithPruning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SparseCore/SparseSparseProductWithPruning.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SparseCore/SparseTranspose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SparseCore/SparseTranspose.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SparseCore/SparseTriangularView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SparseCore/SparseTriangularView.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SparseCore/SparseUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SparseCore/SparseUtil.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SparseCore/SparseVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SparseCore/SparseVector.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SparseCore/SparseView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SparseCore/SparseView.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SparseCore/TriangularSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SparseCore/TriangularSolver.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SparseLU/SparseLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SparseLU/SparseLU.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SparseLU/SparseLUImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SparseLU/SparseLUImpl.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SparseLU/SparseLU_Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SparseLU/SparseLU_Memory.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SparseLU/SparseLU_Structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SparseLU/SparseLU_Structs.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SparseLU/SparseLU_Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SparseLU/SparseLU_Utils.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SparseLU/SparseLU_column_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SparseLU/SparseLU_column_bmod.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SparseLU/SparseLU_column_dfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SparseLU/SparseLU_column_dfs.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SparseLU/SparseLU_gemm_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SparseLU/SparseLU_gemm_kernel.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SparseLU/SparseLU_kernel_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SparseLU/SparseLU_kernel_bmod.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SparseLU/SparseLU_panel_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SparseLU/SparseLU_panel_bmod.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SparseLU/SparseLU_panel_dfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SparseLU/SparseLU_panel_dfs.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SparseLU/SparseLU_pivotL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SparseLU/SparseLU_pivotL.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SparseLU/SparseLU_pruneL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SparseLU/SparseLU_pruneL.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SparseLU/SparseLU_relax_snode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SparseLU/SparseLU_relax_snode.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SparseQR/SparseQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SparseQR/SparseQR.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/StlSupport/StdDeque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/StlSupport/StdDeque.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/StlSupport/StdList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/StlSupport/StdList.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/StlSupport/StdVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/StlSupport/StdVector.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/StlSupport/details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/StlSupport/details.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/SuperLUSupport/SuperLUSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/SuperLUSupport/SuperLUSupport.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/UmfPackSupport/UmfPackSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/UmfPackSupport/UmfPackSupport.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/misc/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/misc/Image.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/misc/Kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/misc/Kernel.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/misc/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/misc/blas.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/misc/lapack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/misc/lapack.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/plugins/ArrayCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/plugins/ArrayCwiseBinaryOps.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/plugins/ArrayCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/plugins/ArrayCwiseUnaryOps.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/plugins/BlockMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/plugins/BlockMethods.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/plugins/CommonCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/plugins/CommonCwiseBinaryOps.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/plugins/CommonCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/plugins/CommonCwiseUnaryOps.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/plugins/MatrixCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/plugins/MatrixCwiseBinaryOps.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/Eigen/src/plugins/MatrixCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/Eigen/src/plugins/MatrixCwiseUnaryOps.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/signature_of_eigen3_matrix_library: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/signature_of_eigen3_matrix_library -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/AdolcForward: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/AdolcForward -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/AlignedVector3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/AlignedVector3 -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/ArpackSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/ArpackSupport -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/AutoDiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/AutoDiff -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/BVH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/BVH -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/Tensor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/Tensor -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/TensorSymmetry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/TensorSymmetry -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/ThreadPool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/ThreadPool -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/Tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/Tensor.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorArgMax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorArgMax.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorAssign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorAssign.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorBase.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorBroadcasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorBroadcasting.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorChipping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorChipping.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorConcatenation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorConcatenation.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionBlocking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionBlocking.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionCuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionCuda.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionMapper.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionThreadPool.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorConversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorConversion.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorConvolution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorConvolution.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorCostModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorCostModel.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorCustomOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorCustomOp.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDevice.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceCuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceCuda.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceDefault.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceDefault.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceThreadPool.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDimensionList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDimensionList.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDimensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDimensions.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorEvalTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorEvalTo.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorEvaluator.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorExecutor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorExecutor.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorExpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorExpr.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorFFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorFFT.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorFixedSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorFixedSize.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorForcedEval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorForcedEval.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorForwardDeclarations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorForwardDeclarations.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorFunctors.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorGenerator.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorIO.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorImagePatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorImagePatch.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorIndexList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorIndexList.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorInflation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorInflation.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorInitializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorInitializer.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorIntDiv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorIntDiv.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorLayoutSwap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorLayoutSwap.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorMacros.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorMap.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorMeta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorMeta.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorPadding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorPadding.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorPatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorPatch.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReduction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReduction.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReductionCuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReductionCuda.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorRef.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReverse.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorShuffling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorShuffling.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorStorage.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorStriding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorStriding.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorTraits.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorUInt128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorUInt128.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorVolumePatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorVolumePatch.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/TensorSymmetry/DynamicSymmetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/TensorSymmetry/DynamicSymmetry.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/TensorSymmetry/StaticSymmetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/TensorSymmetry/StaticSymmetry.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/TensorSymmetry/Symmetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/TensorSymmetry/Symmetry.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/TensorSymmetry/util/TemplateGroupTheory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/TensorSymmetry/util/TemplateGroupTheory.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/EventCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/EventCount.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/NonBlockingThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/NonBlockingThreadPool.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/RunQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/RunQueue.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/SimpleThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/SimpleThreadPool.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadEnvironment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadEnvironment.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadLocal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadLocal.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadPoolInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadPoolInterface.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadYield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadYield.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/util/CXX11Meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/util/CXX11Meta.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/util/CXX11Workarounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/util/CXX11Workarounds.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/util/EmulateArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/util/EmulateArray.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/util/EmulateCXX11Meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/util/EmulateCXX11Meta.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/util/MaxSizeVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/CXX11/src/util/MaxSizeVector.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/FFT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/FFT -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/IterativeSolvers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/IterativeSolvers -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/KroneckerProduct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/KroneckerProduct -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/LevenbergMarquardt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/LevenbergMarquardt -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/MPRealSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/MPRealSupport -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/MatrixFunctions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/MatrixFunctions -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/MoreVectorization: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/MoreVectorization -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/NonLinearOptimization: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/NonLinearOptimization -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/NumericalDiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/NumericalDiff -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/OpenGLSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/OpenGLSupport -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/Polynomials: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/Polynomials -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/Skyline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/Skyline -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/SparseExtra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/SparseExtra -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/Splines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/Splines -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/AutoDiff/AutoDiffJacobian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/AutoDiff/AutoDiffJacobian.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/AutoDiff/AutoDiffScalar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/AutoDiff/AutoDiffScalar.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/AutoDiff/AutoDiffVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/AutoDiff/AutoDiffVector.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/BVH/BVAlgorithms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/BVH/BVAlgorithms.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/BVH/KdBVH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/BVH/KdBVH.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/Eigenvalues/ArpackSelfAdjointEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/Eigenvalues/ArpackSelfAdjointEigenSolver.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/FFT/ei_fftw_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/FFT/ei_fftw_impl.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/FFT/ei_kissfft_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/FFT/ei_kissfft_impl.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/IterativeSolvers/ConstrainedConjGrad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/IterativeSolvers/ConstrainedConjGrad.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/IterativeSolvers/DGMRES.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/IterativeSolvers/DGMRES.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/IterativeSolvers/GMRES.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/IterativeSolvers/GMRES.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/IterativeSolvers/IncompleteLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/IterativeSolvers/IncompleteLU.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/IterativeSolvers/IterationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/IterativeSolvers/IterationController.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/IterativeSolvers/MINRES.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/IterativeSolvers/MINRES.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/IterativeSolvers/Scaling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/IterativeSolvers/Scaling.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LMcovar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LMcovar.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LMonestep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LMonestep.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LMpar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LMpar.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LMqrsolv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LMqrsolv.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LevenbergMarquardt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LevenbergMarquardt.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixFunction.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixLogarithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixLogarithm.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixPower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixPower.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixSquareRoot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixSquareRoot.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/MatrixFunctions/StemFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/MatrixFunctions/StemFunction.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/MoreVectorization/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/MoreVectorization/MathFunctions.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/HybridNonLinearSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/HybridNonLinearSolver.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/LevenbergMarquardt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/LevenbergMarquardt.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/chkder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/chkder.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/covar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/covar.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/dogleg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/dogleg.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/fdjac1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/fdjac1.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/lmpar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/lmpar.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/qrsolv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/qrsolv.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/r1mpyq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/r1mpyq.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/r1updt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/r1updt.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/rwupdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/rwupdt.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/NumericalDiff/NumericalDiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/NumericalDiff/NumericalDiff.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/Polynomials/Companion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/Polynomials/Companion.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/Polynomials/PolynomialSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/Polynomials/PolynomialSolver.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/Polynomials/PolynomialUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/Polynomials/PolynomialUtils.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/Skyline/SkylineInplaceLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/Skyline/SkylineInplaceLU.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/Skyline/SkylineMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/Skyline/SkylineMatrix.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/Skyline/SkylineMatrixBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/Skyline/SkylineMatrixBase.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/Skyline/SkylineProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/Skyline/SkylineProduct.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/Skyline/SkylineStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/Skyline/SkylineStorage.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/Skyline/SkylineUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/Skyline/SkylineUtil.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/SparseExtra/BlockOfDynamicSparseMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/SparseExtra/BlockOfDynamicSparseMatrix.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/SparseExtra/BlockSparseMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/SparseExtra/BlockSparseMatrix.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/SparseExtra/DynamicSparseMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/SparseExtra/DynamicSparseMatrix.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/SparseExtra/MarketIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/SparseExtra/MarketIO.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/SparseExtra/MatrixMarketIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/SparseExtra/MatrixMarketIterator.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/SparseExtra/RandomSetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/SparseExtra/RandomSetter.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/Splines/Spline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/Splines/Spline.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/Splines/SplineFitting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/Splines/SplineFitting.h -------------------------------------------------------------------------------- /contrib/eigen/include/eigen3/unsupported/Eigen/src/Splines/SplineFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/include/eigen3/unsupported/Eigen/src/Splines/SplineFwd.h -------------------------------------------------------------------------------- /contrib/eigen/lib/x86_64-linux-gnu/cmake/eigen3/Eigen3Config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/lib/x86_64-linux-gnu/cmake/eigen3/Eigen3Config.cmake -------------------------------------------------------------------------------- /contrib/eigen/lib/x86_64-linux-gnu/cmake/eigen3/UseEigen3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/lib/x86_64-linux-gnu/cmake/eigen3/UseEigen3.cmake -------------------------------------------------------------------------------- /contrib/eigen/share/pkgconfig/eigen3.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/eigen/share/pkgconfig/eigen3.pc -------------------------------------------------------------------------------- /contrib/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/jquery-ui.css -------------------------------------------------------------------------------- /contrib/jquery-ui.css.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/jquery-ui.css.h -------------------------------------------------------------------------------- /contrib/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/jquery-ui.js -------------------------------------------------------------------------------- /contrib/jquery-ui.js.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/jquery-ui.js.h -------------------------------------------------------------------------------- /contrib/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/jquery.js -------------------------------------------------------------------------------- /contrib/jquery.js.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/jquery.js.h -------------------------------------------------------------------------------- /contrib/licenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/licenses.txt -------------------------------------------------------------------------------- /contrib/licenses.txt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/licenses.txt.h -------------------------------------------------------------------------------- /contrib/rapidxml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/rapidxml.hpp -------------------------------------------------------------------------------- /contrib/showScan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/showScan.js -------------------------------------------------------------------------------- /contrib/showScan.js.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/showScan.js.h -------------------------------------------------------------------------------- /contrib/three.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/three.min.js -------------------------------------------------------------------------------- /contrib/three.min.js.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/contrib/three.min.js.h -------------------------------------------------------------------------------- /src/A4988TurnTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/A4988TurnTable.cpp -------------------------------------------------------------------------------- /src/A4988TurnTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/A4988TurnTable.h -------------------------------------------------------------------------------- /src/BootConfigManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/BootConfigManager.cpp -------------------------------------------------------------------------------- /src/BootConfigManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/BootConfigManager.h -------------------------------------------------------------------------------- /src/Calibrator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/Calibrator.cpp -------------------------------------------------------------------------------- /src/Calibrator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/Calibrator.h -------------------------------------------------------------------------------- /src/Camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/Camera.cpp -------------------------------------------------------------------------------- /src/Camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/Camera.h -------------------------------------------------------------------------------- /src/CriticalSection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/CriticalSection.cpp -------------------------------------------------------------------------------- /src/CriticalSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/CriticalSection.h -------------------------------------------------------------------------------- /src/Facetizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/Facetizer.cpp -------------------------------------------------------------------------------- /src/Facetizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/Facetizer.h -------------------------------------------------------------------------------- /src/FileWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/FileWriter.cpp -------------------------------------------------------------------------------- /src/FileWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/FileWriter.h -------------------------------------------------------------------------------- /src/HttpServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/HttpServer.cpp -------------------------------------------------------------------------------- /src/HttpServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/HttpServer.h -------------------------------------------------------------------------------- /src/IWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/IWriter.h -------------------------------------------------------------------------------- /src/Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/Image.cpp -------------------------------------------------------------------------------- /src/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/Image.h -------------------------------------------------------------------------------- /src/ImageProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/ImageProcessor.cpp -------------------------------------------------------------------------------- /src/ImageProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/ImageProcessor.h -------------------------------------------------------------------------------- /src/Laser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/Laser.cpp -------------------------------------------------------------------------------- /src/Laser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/Laser.h -------------------------------------------------------------------------------- /src/LaserResultsMerger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/LaserResultsMerger.cpp -------------------------------------------------------------------------------- /src/LaserResultsMerger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/LaserResultsMerger.h -------------------------------------------------------------------------------- /src/Lighting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/Lighting.cpp -------------------------------------------------------------------------------- /src/Lighting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/Lighting.h -------------------------------------------------------------------------------- /src/LocationMapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/LocationMapper.cpp -------------------------------------------------------------------------------- /src/LocationMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/LocationMapper.h -------------------------------------------------------------------------------- /src/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/Logger.cpp -------------------------------------------------------------------------------- /src/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/Logger.h -------------------------------------------------------------------------------- /src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/Main.cpp -------------------------------------------------------------------------------- /src/Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/Main.h -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/MemWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/MemWriter.cpp -------------------------------------------------------------------------------- /src/MemWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/MemWriter.h -------------------------------------------------------------------------------- /src/MmalImageStore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/MmalImageStore.cpp -------------------------------------------------------------------------------- /src/MmalImageStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/MmalImageStore.h -------------------------------------------------------------------------------- /src/MmalStillCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/MmalStillCamera.cpp -------------------------------------------------------------------------------- /src/MmalStillCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/MmalStillCamera.h -------------------------------------------------------------------------------- /src/MmalUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/MmalUtil.cpp -------------------------------------------------------------------------------- /src/MmalUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/MmalUtil.h -------------------------------------------------------------------------------- /src/MmalVideoCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/MmalVideoCamera.cpp -------------------------------------------------------------------------------- /src/MmalVideoCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/MmalVideoCamera.h -------------------------------------------------------------------------------- /src/MockCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/MockCamera.cpp -------------------------------------------------------------------------------- /src/MockCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/MockCamera.h -------------------------------------------------------------------------------- /src/MountManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/MountManager.cpp -------------------------------------------------------------------------------- /src/MountManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/MountManager.h -------------------------------------------------------------------------------- /src/NoiseRemover.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/NoiseRemover.cpp -------------------------------------------------------------------------------- /src/NoiseRemover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/NoiseRemover.h -------------------------------------------------------------------------------- /src/ObjectBaseCreator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/ObjectBaseCreator.cpp -------------------------------------------------------------------------------- /src/ObjectBaseCreator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/ObjectBaseCreator.h -------------------------------------------------------------------------------- /src/PixelLocationWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/PixelLocationWriter.cpp -------------------------------------------------------------------------------- /src/PixelLocationWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/PixelLocationWriter.h -------------------------------------------------------------------------------- /src/PlyReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/PlyReader.cpp -------------------------------------------------------------------------------- /src/PlyReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/PlyReader.h -------------------------------------------------------------------------------- /src/PlyWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/PlyWriter.cpp -------------------------------------------------------------------------------- /src/PlyWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/PlyWriter.h -------------------------------------------------------------------------------- /src/PointCloudRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/PointCloudRenderer.cpp -------------------------------------------------------------------------------- /src/PointCloudRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/PointCloudRenderer.h -------------------------------------------------------------------------------- /src/Preset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/Preset.cpp -------------------------------------------------------------------------------- /src/Preset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/Preset.h -------------------------------------------------------------------------------- /src/PresetManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/PresetManager.cpp -------------------------------------------------------------------------------- /src/PresetManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/PresetManager.h -------------------------------------------------------------------------------- /src/Progress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/Progress.cpp -------------------------------------------------------------------------------- /src/Progress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/Progress.h -------------------------------------------------------------------------------- /src/PropertyReaderWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/PropertyReaderWriter.cpp -------------------------------------------------------------------------------- /src/PropertyReaderWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/PropertyReaderWriter.h -------------------------------------------------------------------------------- /src/RaspistillCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/RaspistillCamera.cpp -------------------------------------------------------------------------------- /src/RaspistillCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/RaspistillCamera.h -------------------------------------------------------------------------------- /src/RelayLaser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/RelayLaser.cpp -------------------------------------------------------------------------------- /src/RelayLaser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/RelayLaser.h -------------------------------------------------------------------------------- /src/Scanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/Scanner.cpp -------------------------------------------------------------------------------- /src/Scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/Scanner.h -------------------------------------------------------------------------------- /src/Setup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/Setup.cpp -------------------------------------------------------------------------------- /src/Setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/Setup.h -------------------------------------------------------------------------------- /src/StlWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/StlWriter.cpp -------------------------------------------------------------------------------- /src/StlWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/StlWriter.h -------------------------------------------------------------------------------- /src/Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/Thread.cpp -------------------------------------------------------------------------------- /src/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/Thread.h -------------------------------------------------------------------------------- /src/TurnTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/TurnTable.cpp -------------------------------------------------------------------------------- /src/TurnTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/TurnTable.h -------------------------------------------------------------------------------- /src/UpdateManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/UpdateManager.cpp -------------------------------------------------------------------------------- /src/UpdateManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/UpdateManager.h -------------------------------------------------------------------------------- /src/WebContent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/WebContent.cpp -------------------------------------------------------------------------------- /src/WebContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/WebContent.h -------------------------------------------------------------------------------- /src/WifiConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/WifiConfig.cpp -------------------------------------------------------------------------------- /src/WifiConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/WifiConfig.h -------------------------------------------------------------------------------- /src/XyzWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/XyzWriter.cpp -------------------------------------------------------------------------------- /src/XyzWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/XyzWriter.h -------------------------------------------------------------------------------- /src/mpfit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hairu/freelss/HEAD/src/mpfit.h --------------------------------------------------------------------------------