├── .github └── workflows │ └── ControlGris-builds.yml ├── .gitignore ├── .gitmodules ├── ControlGRIS.jucer ├── ControlGRIS.plist ├── ControlGrisOSC.json ├── Distribution_licenses.md ├── Imgs ├── ControlGRIS2_Logo.png ├── folder_icon.png ├── folder_icon.svg └── readme.md ├── LICENSE ├── MacOS_build_sign_and_notarize.sh ├── README.md ├── Source ├── .clang-format ├── Descriptors │ ├── cg_Centroid.hpp │ ├── cg_Descriptors.hpp │ ├── cg_Flatness.hpp │ ├── cg_Loudness.hpp │ ├── cg_OnsetDetection.hpp │ ├── cg_Pitch.hpp │ ├── cg_Shape.hpp │ ├── cg_Spread.hpp │ └── cg_Stats.hpp ├── PCH.h ├── SinkinSans-400Regular.otf ├── SpatialParameters │ ├── cg_AzimuthDome.hpp │ ├── cg_ElevationDome.hpp │ ├── cg_HspanCube.hpp │ ├── cg_HspanDome.hpp │ ├── cg_Smooth.hpp │ ├── cg_SpatParamHelperFunctions.h │ ├── cg_SpatialParameter.cpp │ ├── cg_SpatialParameter.h │ ├── cg_VspanCube.hpp │ ├── cg_VspanDome.hpp │ ├── cg_XCube.hpp │ ├── cg_YCube.hpp │ └── cg_ZCube.hpp ├── cg_BannerComponent.cpp ├── cg_BannerComponent.hpp ├── cg_ChangeGesturesManager.cpp ├── cg_ChangeGesturesManager.hpp ├── cg_ControlGrisAudioProcessor.cpp ├── cg_ControlGrisAudioProcessor.hpp ├── cg_ControlGrisAudioProcessorEditor.cpp ├── cg_ControlGrisAudioProcessorEditor.hpp ├── cg_ControlGrisLookAndFeel.cpp ├── cg_ControlGrisLookAndFeel.hpp ├── cg_ElevationDrawingHandle.cpp ├── cg_ElevationDrawingHandle.hpp ├── cg_ElevationSourceComponent.cpp ├── cg_ElevationSourceComponent.hpp ├── cg_FieldComponent.cpp ├── cg_FieldComponent.hpp ├── cg_LayoutComponent.cpp ├── cg_LayoutComponent.hpp ├── cg_LinkStrategies.cpp ├── cg_LinkStrategies.hpp ├── cg_MinSizedComponent.hpp ├── cg_MinSizedSlider.cpp ├── cg_MinSizedSlider.hpp ├── cg_MinSizedTextEditor.cpp ├── cg_MinSizedTextEditor.hpp ├── cg_NumSlider.cpp ├── cg_NumSlider.h ├── cg_PersistentStorage.cpp ├── cg_PersistentStorage.h ├── cg_PositionSourceComponent.cpp ├── cg_PositionSourceComponent.hpp ├── cg_PresetsManager.cpp ├── cg_PresetsManager.hpp ├── cg_SectionAbstractTrajectories.cpp ├── cg_SectionAbstractTrajectories.hpp ├── cg_SectionGeneralSettings.cpp ├── cg_SectionGeneralSettings.hpp ├── cg_SectionOscController.cpp ├── cg_SectionOscController.hpp ├── cg_SectionPositionPresets.cpp ├── cg_SectionPositionPresets.hpp ├── cg_SectionSoundReactiveTrajectories.cpp ├── cg_SectionSoundReactiveTrajectories.h ├── cg_SectionSourcePosition.cpp ├── cg_SectionSourcePosition.hpp ├── cg_SectionSourceSpan.cpp ├── cg_SectionSourceSpan.hpp ├── cg_Source.cpp ├── cg_Source.hpp ├── cg_SourceComponent.cpp ├── cg_SourceComponent.hpp ├── cg_SourceLinkEnforcer.cpp ├── cg_SourceLinkEnforcer.hpp ├── cg_SourceSnapshot.cpp ├── cg_SourceSnapshot.hpp ├── cg_TitledComponent.cpp ├── cg_TitledComponent.hpp ├── cg_Trajectory.cpp ├── cg_Trajectory.hpp ├── cg_TrajectoryManager.cpp ├── cg_TrajectoryManager.hpp ├── cg_Warnings.hpp ├── cg_constants.cpp ├── cg_constants.hpp ├── cg_utilities.hpp └── libs │ ├── include │ ├── Eigen │ │ ├── Cholesky │ │ ├── CholmodSupport │ │ ├── Core │ │ ├── Dense │ │ ├── Eigen │ │ ├── Eigenvalues │ │ ├── Geometry │ │ ├── Householder │ │ ├── IterativeLinearSolvers │ │ ├── Jacobi │ │ ├── KLUSupport │ │ ├── LU │ │ ├── MetisSupport │ │ ├── OrderingMethods │ │ ├── PaStiXSupport │ │ ├── PardisoSupport │ │ ├── QR │ │ ├── QtAlignedMalloc │ │ ├── SPQRSupport │ │ ├── SVD │ │ ├── Sparse │ │ ├── SparseCholesky │ │ ├── SparseCore │ │ ├── SparseLU │ │ ├── SparseQR │ │ ├── StdDeque │ │ ├── StdList │ │ ├── StdVector │ │ ├── SuperLUSupport │ │ ├── UmfPackSupport │ │ └── src │ │ │ ├── Cholesky │ │ │ ├── LDLT.h │ │ │ ├── LLT.h │ │ │ └── LLT_LAPACKE.h │ │ │ ├── CholmodSupport │ │ │ └── CholmodSupport.h │ │ │ ├── Core │ │ │ ├── ArithmeticSequence.h │ │ │ ├── Array.h │ │ │ ├── ArrayBase.h │ │ │ ├── ArrayWrapper.h │ │ │ ├── Assign.h │ │ │ ├── AssignEvaluator.h │ │ │ ├── Assign_MKL.h │ │ │ ├── BandMatrix.h │ │ │ ├── Block.h │ │ │ ├── BooleanRedux.h │ │ │ ├── CommaInitializer.h │ │ │ ├── ConditionEstimator.h │ │ │ ├── CoreEvaluators.h │ │ │ ├── CoreIterators.h │ │ │ ├── CwiseBinaryOp.h │ │ │ ├── CwiseNullaryOp.h │ │ │ ├── CwiseTernaryOp.h │ │ │ ├── CwiseUnaryOp.h │ │ │ ├── CwiseUnaryView.h │ │ │ ├── DenseBase.h │ │ │ ├── DenseCoeffsBase.h │ │ │ ├── DenseStorage.h │ │ │ ├── Diagonal.h │ │ │ ├── DiagonalMatrix.h │ │ │ ├── DiagonalProduct.h │ │ │ ├── Dot.h │ │ │ ├── EigenBase.h │ │ │ ├── ForceAlignedAccess.h │ │ │ ├── Fuzzy.h │ │ │ ├── GeneralProduct.h │ │ │ ├── GenericPacketMath.h │ │ │ ├── GlobalFunctions.h │ │ │ ├── IO.h │ │ │ ├── IndexedView.h │ │ │ ├── Inverse.h │ │ │ ├── Map.h │ │ │ ├── MapBase.h │ │ │ ├── MathFunctions.h │ │ │ ├── MathFunctionsImpl.h │ │ │ ├── Matrix.h │ │ │ ├── MatrixBase.h │ │ │ ├── NestByValue.h │ │ │ ├── NoAlias.h │ │ │ ├── NumTraits.h │ │ │ ├── PartialReduxEvaluator.h │ │ │ ├── PermutationMatrix.h │ │ │ ├── PlainObjectBase.h │ │ │ ├── Product.h │ │ │ ├── ProductEvaluators.h │ │ │ ├── Random.h │ │ │ ├── Redux.h │ │ │ ├── Ref.h │ │ │ ├── Replicate.h │ │ │ ├── Reshaped.h │ │ │ ├── ReturnByValue.h │ │ │ ├── Reverse.h │ │ │ ├── Select.h │ │ │ ├── SelfAdjointView.h │ │ │ ├── SelfCwiseBinaryOp.h │ │ │ ├── Solve.h │ │ │ ├── SolveTriangular.h │ │ │ ├── SolverBase.h │ │ │ ├── StableNorm.h │ │ │ ├── StlIterators.h │ │ │ ├── Stride.h │ │ │ ├── Swap.h │ │ │ ├── Transpose.h │ │ │ ├── Transpositions.h │ │ │ ├── TriangularMatrix.h │ │ │ ├── VectorBlock.h │ │ │ ├── VectorwiseOp.h │ │ │ ├── Visitor.h │ │ │ ├── arch │ │ │ │ ├── AVX │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ ├── AVX512 │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ ├── AltiVec │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── MatrixProduct.h │ │ │ │ │ ├── MatrixProductCommon.h │ │ │ │ │ ├── MatrixProductMMA.h │ │ │ │ │ └── PacketMath.h │ │ │ │ ├── CUDA │ │ │ │ │ └── Complex.h │ │ │ │ ├── Default │ │ │ │ │ ├── BFloat16.h │ │ │ │ │ ├── ConjHelper.h │ │ │ │ │ ├── GenericPacketMathFunctions.h │ │ │ │ │ ├── GenericPacketMathFunctionsFwd.h │ │ │ │ │ ├── Half.h │ │ │ │ │ ├── Settings.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ ├── GPU │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ ├── HIP │ │ │ │ │ └── hcc │ │ │ │ │ │ └── math_constants.h │ │ │ │ ├── MSA │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ └── PacketMath.h │ │ │ │ ├── NEON │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── GeneralBlockPanelKernel.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ ├── SSE │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ ├── SVE │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ ├── SYCL │ │ │ │ │ ├── InteropHeaders.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ ├── SyclMemoryModel.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ └── ZVector │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ └── PacketMath.h │ │ │ ├── functors │ │ │ │ ├── AssignmentFunctors.h │ │ │ │ ├── BinaryFunctors.h │ │ │ │ ├── NullaryFunctors.h │ │ │ │ ├── StlFunctors.h │ │ │ │ ├── TernaryFunctors.h │ │ │ │ └── UnaryFunctors.h │ │ │ ├── products │ │ │ │ ├── GeneralBlockPanelKernel.h │ │ │ │ ├── GeneralMatrixMatrix.h │ │ │ │ ├── GeneralMatrixMatrixTriangular.h │ │ │ │ ├── GeneralMatrixMatrixTriangular_BLAS.h │ │ │ │ ├── GeneralMatrixMatrix_BLAS.h │ │ │ │ ├── GeneralMatrixVector.h │ │ │ │ ├── GeneralMatrixVector_BLAS.h │ │ │ │ ├── Parallelizer.h │ │ │ │ ├── SelfadjointMatrixMatrix.h │ │ │ │ ├── SelfadjointMatrixMatrix_BLAS.h │ │ │ │ ├── SelfadjointMatrixVector.h │ │ │ │ ├── SelfadjointMatrixVector_BLAS.h │ │ │ │ ├── SelfadjointProduct.h │ │ │ │ ├── SelfadjointRank2Update.h │ │ │ │ ├── TriangularMatrixMatrix.h │ │ │ │ ├── TriangularMatrixMatrix_BLAS.h │ │ │ │ ├── TriangularMatrixVector.h │ │ │ │ ├── TriangularMatrixVector_BLAS.h │ │ │ │ ├── TriangularSolverMatrix.h │ │ │ │ ├── TriangularSolverMatrix_BLAS.h │ │ │ │ └── TriangularSolverVector.h │ │ │ └── util │ │ │ │ ├── BlasUtil.h │ │ │ │ ├── ConfigureVectorization.h │ │ │ │ ├── Constants.h │ │ │ │ ├── DisableStupidWarnings.h │ │ │ │ ├── ForwardDeclarations.h │ │ │ │ ├── IndexedViewHelper.h │ │ │ │ ├── IntegralConstant.h │ │ │ │ ├── MKL_support.h │ │ │ │ ├── Macros.h │ │ │ │ ├── Memory.h │ │ │ │ ├── Meta.h │ │ │ │ ├── NonMPL2.h │ │ │ │ ├── ReenableStupidWarnings.h │ │ │ │ ├── ReshapedHelper.h │ │ │ │ ├── StaticAssert.h │ │ │ │ ├── SymbolicIndex.h │ │ │ │ └── XprHelper.h │ │ │ ├── Eigenvalues │ │ │ ├── ComplexEigenSolver.h │ │ │ ├── ComplexSchur.h │ │ │ ├── ComplexSchur_LAPACKE.h │ │ │ ├── EigenSolver.h │ │ │ ├── GeneralizedEigenSolver.h │ │ │ ├── GeneralizedSelfAdjointEigenSolver.h │ │ │ ├── HessenbergDecomposition.h │ │ │ ├── MatrixBaseEigenvalues.h │ │ │ ├── RealQZ.h │ │ │ ├── RealSchur.h │ │ │ ├── RealSchur_LAPACKE.h │ │ │ ├── SelfAdjointEigenSolver.h │ │ │ ├── SelfAdjointEigenSolver_LAPACKE.h │ │ │ └── Tridiagonalization.h │ │ │ ├── Geometry │ │ │ ├── AlignedBox.h │ │ │ ├── AngleAxis.h │ │ │ ├── EulerAngles.h │ │ │ ├── Homogeneous.h │ │ │ ├── Hyperplane.h │ │ │ ├── OrthoMethods.h │ │ │ ├── ParametrizedLine.h │ │ │ ├── Quaternion.h │ │ │ ├── Rotation2D.h │ │ │ ├── RotationBase.h │ │ │ ├── Scaling.h │ │ │ ├── Transform.h │ │ │ ├── Translation.h │ │ │ ├── Umeyama.h │ │ │ └── arch │ │ │ │ └── Geometry_SIMD.h │ │ │ ├── Householder │ │ │ ├── BlockHouseholder.h │ │ │ ├── Householder.h │ │ │ └── HouseholderSequence.h │ │ │ ├── IterativeLinearSolvers │ │ │ ├── BasicPreconditioners.h │ │ │ ├── BiCGSTAB.h │ │ │ ├── ConjugateGradient.h │ │ │ ├── IncompleteCholesky.h │ │ │ ├── IncompleteLUT.h │ │ │ ├── IterativeSolverBase.h │ │ │ ├── LeastSquareConjugateGradient.h │ │ │ └── SolveWithGuess.h │ │ │ ├── Jacobi │ │ │ └── Jacobi.h │ │ │ ├── KLUSupport │ │ │ └── KLUSupport.h │ │ │ ├── LU │ │ │ ├── Determinant.h │ │ │ ├── FullPivLU.h │ │ │ ├── InverseImpl.h │ │ │ ├── PartialPivLU.h │ │ │ ├── PartialPivLU_LAPACKE.h │ │ │ └── arch │ │ │ │ └── InverseSize4.h │ │ │ ├── MetisSupport │ │ │ └── MetisSupport.h │ │ │ ├── OrderingMethods │ │ │ ├── Amd.h │ │ │ ├── Eigen_Colamd.h │ │ │ └── Ordering.h │ │ │ ├── PaStiXSupport │ │ │ └── PaStiXSupport.h │ │ │ ├── PardisoSupport │ │ │ └── PardisoSupport.h │ │ │ ├── QR │ │ │ ├── ColPivHouseholderQR.h │ │ │ ├── ColPivHouseholderQR_LAPACKE.h │ │ │ ├── CompleteOrthogonalDecomposition.h │ │ │ ├── FullPivHouseholderQR.h │ │ │ ├── HouseholderQR.h │ │ │ └── HouseholderQR_LAPACKE.h │ │ │ ├── SPQRSupport │ │ │ └── SuiteSparseQRSupport.h │ │ │ ├── SVD │ │ │ ├── BDCSVD.h │ │ │ ├── JacobiSVD.h │ │ │ ├── JacobiSVD_LAPACKE.h │ │ │ ├── SVDBase.h │ │ │ └── UpperBidiagonalization.h │ │ │ ├── SparseCholesky │ │ │ ├── SimplicialCholesky.h │ │ │ └── SimplicialCholesky_impl.h │ │ │ ├── SparseCore │ │ │ ├── AmbiVector.h │ │ │ ├── CompressedStorage.h │ │ │ ├── ConservativeSparseSparseProduct.h │ │ │ ├── MappedSparseMatrix.h │ │ │ ├── SparseAssign.h │ │ │ ├── SparseBlock.h │ │ │ ├── SparseColEtree.h │ │ │ ├── SparseCompressedBase.h │ │ │ ├── SparseCwiseBinaryOp.h │ │ │ ├── SparseCwiseUnaryOp.h │ │ │ ├── SparseDenseProduct.h │ │ │ ├── SparseDiagonalProduct.h │ │ │ ├── SparseDot.h │ │ │ ├── SparseFuzzy.h │ │ │ ├── SparseMap.h │ │ │ ├── SparseMatrix.h │ │ │ ├── SparseMatrixBase.h │ │ │ ├── SparsePermutation.h │ │ │ ├── SparseProduct.h │ │ │ ├── SparseRedux.h │ │ │ ├── SparseRef.h │ │ │ ├── SparseSelfAdjointView.h │ │ │ ├── SparseSolverBase.h │ │ │ ├── SparseSparseProductWithPruning.h │ │ │ ├── SparseTranspose.h │ │ │ ├── SparseTriangularView.h │ │ │ ├── SparseUtil.h │ │ │ ├── SparseVector.h │ │ │ ├── SparseView.h │ │ │ └── TriangularSolver.h │ │ │ ├── SparseLU │ │ │ ├── SparseLU.h │ │ │ ├── SparseLUImpl.h │ │ │ ├── SparseLU_Memory.h │ │ │ ├── SparseLU_Structs.h │ │ │ ├── SparseLU_SupernodalMatrix.h │ │ │ ├── SparseLU_Utils.h │ │ │ ├── SparseLU_column_bmod.h │ │ │ ├── SparseLU_column_dfs.h │ │ │ ├── SparseLU_copy_to_ucol.h │ │ │ ├── SparseLU_gemm_kernel.h │ │ │ ├── SparseLU_heap_relax_snode.h │ │ │ ├── SparseLU_kernel_bmod.h │ │ │ ├── SparseLU_panel_bmod.h │ │ │ ├── SparseLU_panel_dfs.h │ │ │ ├── SparseLU_pivotL.h │ │ │ ├── SparseLU_pruneL.h │ │ │ └── SparseLU_relax_snode.h │ │ │ ├── SparseQR │ │ │ └── SparseQR.h │ │ │ ├── StlSupport │ │ │ ├── StdDeque.h │ │ │ ├── StdList.h │ │ │ ├── StdVector.h │ │ │ └── details.h │ │ │ ├── SuperLUSupport │ │ │ └── SuperLUSupport.h │ │ │ ├── UmfPackSupport │ │ │ └── UmfPackSupport.h │ │ │ ├── misc │ │ │ ├── Image.h │ │ │ ├── Kernel.h │ │ │ ├── RealSvd2x2.h │ │ │ ├── blas.h │ │ │ ├── lapack.h │ │ │ ├── lapacke.h │ │ │ └── lapacke_mangling.h │ │ │ └── plugins │ │ │ ├── ArrayCwiseBinaryOps.h │ │ │ ├── ArrayCwiseUnaryOps.h │ │ │ ├── BlockMethods.h │ │ │ ├── CommonCwiseBinaryOps.h │ │ │ ├── CommonCwiseUnaryOps.h │ │ │ ├── IndexedViewMethods.h │ │ │ ├── MatrixCwiseBinaryOps.h │ │ │ ├── MatrixCwiseUnaryOps.h │ │ │ └── ReshapedMethods.h │ ├── Spectra │ │ ├── DavidsonSymEigsSolver.h │ │ ├── GenEigsBase.h │ │ ├── GenEigsComplexShiftSolver.h │ │ ├── GenEigsRealShiftSolver.h │ │ ├── GenEigsSolver.h │ │ ├── JDSymEigsBase.h │ │ ├── LinAlg │ │ │ ├── Arnoldi.h │ │ │ ├── BKLDLT.h │ │ │ ├── DoubleShiftQR.h │ │ │ ├── Lanczos.h │ │ │ ├── Orthogonalization.h │ │ │ ├── RitzPairs.h │ │ │ ├── SearchSpace.h │ │ │ ├── TridiagEigen.h │ │ │ ├── UpperHessenbergEigen.h │ │ │ ├── UpperHessenbergQR.h │ │ │ └── UpperHessenbergSchur.h │ │ ├── MatOp │ │ │ ├── DenseCholesky.h │ │ │ ├── DenseGenComplexShiftSolve.h │ │ │ ├── DenseGenMatProd.h │ │ │ ├── DenseGenRealShiftSolve.h │ │ │ ├── DenseSymMatProd.h │ │ │ ├── DenseSymShiftSolve.h │ │ │ ├── SparseCholesky.h │ │ │ ├── SparseGenComplexShiftSolve.h │ │ │ ├── SparseGenMatProd.h │ │ │ ├── SparseGenRealShiftSolve.h │ │ │ ├── SparseRegularInverse.h │ │ │ ├── SparseSymMatProd.h │ │ │ ├── SparseSymShiftSolve.h │ │ │ ├── SymShiftInvert.h │ │ │ └── internal │ │ │ │ ├── ArnoldiOp.h │ │ │ │ ├── SymGEigsBucklingOp.h │ │ │ │ ├── SymGEigsCayleyOp.h │ │ │ │ ├── SymGEigsCholeskyOp.h │ │ │ │ ├── SymGEigsRegInvOp.h │ │ │ │ └── SymGEigsShiftInvertOp.h │ │ ├── SymEigsBase.h │ │ ├── SymEigsShiftSolver.h │ │ ├── SymEigsSolver.h │ │ ├── SymGEigsShiftSolver.h │ │ ├── SymGEigsSolver.h │ │ ├── Util │ │ │ ├── CompInfo.h │ │ │ ├── GEigsMode.h │ │ │ ├── SelectionRule.h │ │ │ ├── SimpleRandom.h │ │ │ ├── TypeTraits.h │ │ │ └── Version.h │ │ └── contrib │ │ │ ├── LOBPCGSolver.h │ │ │ └── PartialSVDSolver.h │ ├── flucoma │ │ ├── FluidVersion.hpp │ │ ├── algorithms │ │ │ ├── public │ │ │ │ ├── AudioTransport.hpp │ │ │ │ ├── CepstrumF0.hpp │ │ │ │ ├── ChromaFilterBank.hpp │ │ │ │ ├── DCT.hpp │ │ │ │ ├── DataSetIdSequence.hpp │ │ │ │ ├── DataSetQuery.hpp │ │ │ │ ├── Envelope.hpp │ │ │ │ ├── EnvelopeGate.hpp │ │ │ │ ├── EnvelopeSegmentation.hpp │ │ │ │ ├── Grid.hpp │ │ │ │ ├── GriffinLim.hpp │ │ │ │ ├── HPS.hpp │ │ │ │ ├── HPSS.hpp │ │ │ │ ├── KDTree.hpp │ │ │ │ ├── KMeans.hpp │ │ │ │ ├── KNNClassifier.hpp │ │ │ │ ├── KNNRegressor.hpp │ │ │ │ ├── LabelSetEncoder.hpp │ │ │ │ ├── Loudness.hpp │ │ │ │ ├── MDS.hpp │ │ │ │ ├── MLP.hpp │ │ │ │ ├── MelBands.hpp │ │ │ │ ├── MultiStats.hpp │ │ │ │ ├── NMF.hpp │ │ │ │ ├── NMFCross.hpp │ │ │ │ ├── NMFMorph.hpp │ │ │ │ ├── NNDSVD.hpp │ │ │ │ ├── Normalization.hpp │ │ │ │ ├── NoveltyFeature.hpp │ │ │ │ ├── NoveltySegmentation.hpp │ │ │ │ ├── OnsetDetectionFunctions.hpp │ │ │ │ ├── OnsetSegmentation.hpp │ │ │ │ ├── PCA.hpp │ │ │ │ ├── RatioMask.hpp │ │ │ │ ├── RobustScaling.hpp │ │ │ │ ├── RunningStats.hpp │ │ │ │ ├── SGD.hpp │ │ │ │ ├── SKMeans.hpp │ │ │ │ ├── STFT.hpp │ │ │ │ ├── SineExtraction.hpp │ │ │ │ ├── SineFeature.hpp │ │ │ │ ├── SpectralShape.hpp │ │ │ │ ├── Standardization.hpp │ │ │ │ ├── TransientExtraction.hpp │ │ │ │ ├── TransientSegmentation.hpp │ │ │ │ ├── UMAP.hpp │ │ │ │ ├── WindowFuncs.hpp │ │ │ │ └── YINFFT.hpp │ │ │ └── util │ │ │ │ ├── ARModel.hpp │ │ │ │ ├── AlgorithmUtils.hpp │ │ │ │ ├── Assign2D.hpp │ │ │ │ ├── ButterworthHPFilter.hpp │ │ │ │ ├── DistanceFuncs.hpp │ │ │ │ ├── FFT.hpp │ │ │ │ ├── FluidEigenMappings.hpp │ │ │ │ ├── IncrementalMeanVar.hpp │ │ │ │ ├── KWeightingFilter.hpp │ │ │ │ ├── MedianFilter.hpp │ │ │ │ ├── Munkres.hpp │ │ │ │ ├── NNFuncs.hpp │ │ │ │ ├── NNLayer.hpp │ │ │ │ ├── Novelty.hpp │ │ │ │ ├── OnsetDetectionFuncs.hpp │ │ │ │ ├── OptimalTransport.hpp │ │ │ │ ├── OutlierDetection.hpp │ │ │ │ ├── PartialTracking.hpp │ │ │ │ ├── PeakDetection.hpp │ │ │ │ ├── RTPGHI.hpp │ │ │ │ ├── ScalerUtils.hpp │ │ │ │ ├── SlideUDFilter.hpp │ │ │ │ ├── SpectralEmbedding.hpp │ │ │ │ ├── Stats.hpp │ │ │ │ ├── Toeplitz.hpp │ │ │ │ ├── TruePeak.hpp │ │ │ │ └── WeightedStats.hpp │ │ ├── clients │ │ │ ├── common │ │ │ │ ├── AudioClient.hpp │ │ │ │ ├── BufferAdaptor.hpp │ │ │ │ ├── BufferedProcess.hpp │ │ │ │ ├── FluidBaseClient.hpp │ │ │ │ ├── FluidContext.hpp │ │ │ │ ├── FluidInputTrigger.hpp │ │ │ │ ├── FluidNRTClientWrapper.hpp │ │ │ │ ├── FluidSink.hpp │ │ │ │ ├── FluidSource.hpp │ │ │ │ ├── FluidTask.hpp │ │ │ │ ├── MemoryBufferAdaptor.hpp │ │ │ │ ├── MessageSet.hpp │ │ │ │ ├── OfflineClient.hpp │ │ │ │ ├── ParameterConstraints.hpp │ │ │ │ ├── ParameterSet.hpp │ │ │ │ ├── ParameterTrackChanges.hpp │ │ │ │ ├── ParameterTypes.hpp │ │ │ │ ├── Result.hpp │ │ │ │ ├── SharedClientUtils.hpp │ │ │ │ ├── SpikesToTimes.hpp │ │ │ │ └── TupleUtilities.hpp │ │ │ ├── nrt │ │ │ │ ├── BufComposeClient.hpp │ │ │ │ ├── BufFlattenClient.hpp │ │ │ │ ├── BufSTFTClient.hpp │ │ │ │ ├── BufScaleClient.hpp │ │ │ │ ├── BufSelectClient.hpp │ │ │ │ ├── BufSelectEveryClient.hpp │ │ │ │ ├── BufStatsClient.hpp │ │ │ │ ├── BufThreshClient.hpp │ │ │ │ ├── ClientInputChecks.hpp │ │ │ │ ├── CommonResults.hpp │ │ │ │ ├── CorpusClient.hpp │ │ │ │ ├── DataClient.hpp │ │ │ │ ├── DataSetClient.hpp │ │ │ │ ├── DataSetQueryClient.hpp │ │ │ │ ├── FluidSharedInstanceAdaptor.hpp │ │ │ │ ├── FluidThreadTestClient.hpp │ │ │ │ ├── GridClient.hpp │ │ │ │ ├── KDTreeClient.hpp │ │ │ │ ├── KMeansClient.hpp │ │ │ │ ├── KNNClassifierClient.hpp │ │ │ │ ├── KNNRegressorClient.hpp │ │ │ │ ├── LabelSetClient.hpp │ │ │ │ ├── MDSClient.hpp │ │ │ │ ├── MLPClassifierClient.hpp │ │ │ │ ├── MLPRegressorClient.hpp │ │ │ │ ├── MessageTest.hpp │ │ │ │ ├── NMFClient.hpp │ │ │ │ ├── NMFCrossClient.hpp │ │ │ │ ├── NMFSeedClient.hpp │ │ │ │ ├── NRTClient.hpp │ │ │ │ ├── NormalizeClient.hpp │ │ │ │ ├── NoveltyClient.hpp │ │ │ │ ├── PCAClient.hpp │ │ │ │ ├── ProviderTest.hpp │ │ │ │ ├── RobustScaleClient.hpp │ │ │ │ ├── SKMeansClient.hpp │ │ │ │ ├── StandardizeClient.hpp │ │ │ │ ├── SubscriberTest.hpp │ │ │ │ └── UMAPClient.hpp │ │ │ └── rt │ │ │ │ ├── AmpFeatureClient.hpp │ │ │ │ ├── AmpGateClient.hpp │ │ │ │ ├── AmpSliceClient.hpp │ │ │ │ ├── AudioTransportClient.hpp │ │ │ │ ├── BaseSTFTClient.hpp │ │ │ │ ├── ChromaClient.hpp │ │ │ │ ├── GainClient.hpp │ │ │ │ ├── HPSSClient.hpp │ │ │ │ ├── LoudnessClient.hpp │ │ │ │ ├── MFCCClient.hpp │ │ │ │ ├── MelBandsClient.hpp │ │ │ │ ├── NMFFilterClient.hpp │ │ │ │ ├── NMFMatchClient.hpp │ │ │ │ ├── NMFMorphClient.hpp │ │ │ │ ├── NoInputSTFTClient.hpp │ │ │ │ ├── NoveltyFeatureClient.hpp │ │ │ │ ├── NoveltySliceClient.hpp │ │ │ │ ├── OnsetFeatureClient.hpp │ │ │ │ ├── OnsetSliceClient.hpp │ │ │ │ ├── PitchClient.hpp │ │ │ │ ├── RunningStatsClient.hpp │ │ │ │ ├── SineFeatureClient.hpp │ │ │ │ ├── SinesClient.hpp │ │ │ │ ├── SpectralShapeClient.hpp │ │ │ │ ├── TransientClient.hpp │ │ │ │ └── TransientSliceClient.hpp │ │ └── data │ │ │ ├── FluidDataSet.hpp │ │ │ ├── FluidFile.hpp │ │ │ ├── FluidIndex.hpp │ │ │ ├── FluidJSON.hpp │ │ │ ├── FluidMemory.hpp │ │ │ ├── FluidMeta.hpp │ │ │ ├── FluidTensor.hpp │ │ │ ├── FluidTensor_Support.hpp │ │ │ └── TensorTypes.hpp │ ├── fmt │ │ ├── args.h │ │ ├── base.h │ │ ├── chrono.h │ │ ├── color.h │ │ ├── compile.h │ │ ├── core.h │ │ ├── format-inl.h │ │ ├── format.h │ │ ├── os.h │ │ ├── ostream.h │ │ ├── printf.h │ │ ├── ranges.h │ │ ├── std.h │ │ └── xchar.h │ ├── foonathan │ │ └── memory │ │ │ ├── aligned_allocator.hpp │ │ │ ├── allocator_storage.hpp │ │ │ ├── allocator_traits.hpp │ │ │ ├── config.hpp │ │ │ ├── config_impl.hpp │ │ │ ├── container.hpp │ │ │ ├── container_node_sizes_impl.hpp │ │ │ ├── debugging.hpp │ │ │ ├── default_allocator.hpp │ │ │ ├── deleter.hpp │ │ │ ├── detail │ │ │ ├── align.hpp │ │ │ ├── assert.hpp │ │ │ ├── container_node_sizes.hpp │ │ │ ├── debug_helpers.hpp │ │ │ ├── ebo_storage.hpp │ │ │ ├── free_list.hpp │ │ │ ├── free_list_array.hpp │ │ │ ├── ilog2.hpp │ │ │ ├── lowlevel_allocator.hpp │ │ │ ├── memory_stack.hpp │ │ │ ├── small_free_list.hpp │ │ │ └── utility.hpp │ │ │ ├── error.hpp │ │ │ ├── fallback_allocator.hpp │ │ │ ├── heap_allocator.hpp │ │ │ ├── iteration_allocator.hpp │ │ │ ├── joint_allocator.hpp │ │ │ ├── malloc_allocator.hpp │ │ │ ├── memory_arena.hpp │ │ │ ├── memory_pool.hpp │ │ │ ├── memory_pool_collection.hpp │ │ │ ├── memory_pool_type.hpp │ │ │ ├── memory_resource_adapter.hpp │ │ │ ├── memory_stack.hpp │ │ │ ├── namespace_alias.hpp │ │ │ ├── new_allocator.hpp │ │ │ ├── segregator.hpp │ │ │ ├── smart_ptr.hpp │ │ │ ├── static_allocator.hpp │ │ │ ├── std_allocator.hpp │ │ │ ├── temporary_allocator.hpp │ │ │ ├── threading.hpp │ │ │ ├── tracking.hpp │ │ │ └── virtual_memory.hpp │ ├── hisstools │ │ ├── allocator.hpp │ │ ├── audio_file │ │ │ ├── aifc_compression.hpp │ │ │ ├── base.hpp │ │ │ ├── extended_double.hpp │ │ │ ├── format.hpp │ │ │ ├── in_file.hpp │ │ │ ├── out_file.hpp │ │ │ └── utilities.hpp │ │ ├── convolution │ │ │ ├── mono.hpp │ │ │ ├── multichannel.hpp │ │ │ ├── n_to_mono.hpp │ │ │ ├── partitioned.hpp │ │ │ ├── time_domain.hpp │ │ │ └── utilities.hpp │ │ ├── fft │ │ │ ├── core.hpp │ │ │ ├── fft.hpp │ │ │ └── types.hpp │ │ ├── interpolation.hpp │ │ ├── kernel_smoother.hpp │ │ ├── memory_swap.hpp │ │ ├── namespace.hpp │ │ ├── partial_tracker.hpp │ │ ├── random_generator.hpp │ │ ├── resampler.hpp │ │ ├── simd_support.hpp │ │ ├── spectral_functions.hpp │ │ ├── spectral_processor.hpp │ │ ├── statistics.hpp │ │ ├── table_reader.hpp │ │ ├── thread_locks.hpp │ │ └── window.hpp │ ├── nlohmann │ │ ├── adl_serializer.hpp │ │ ├── byte_container_with_subtype.hpp │ │ ├── detail │ │ │ ├── abi_macros.hpp │ │ │ ├── conversions │ │ │ │ ├── from_json.hpp │ │ │ │ ├── to_chars.hpp │ │ │ │ └── to_json.hpp │ │ │ ├── exceptions.hpp │ │ │ ├── hash.hpp │ │ │ ├── input │ │ │ │ ├── binary_reader.hpp │ │ │ │ ├── input_adapters.hpp │ │ │ │ ├── json_sax.hpp │ │ │ │ ├── lexer.hpp │ │ │ │ ├── parser.hpp │ │ │ │ └── position_t.hpp │ │ │ ├── iterators │ │ │ │ ├── internal_iterator.hpp │ │ │ │ ├── iter_impl.hpp │ │ │ │ ├── iteration_proxy.hpp │ │ │ │ ├── iterator_traits.hpp │ │ │ │ ├── json_reverse_iterator.hpp │ │ │ │ └── primitive_iterator.hpp │ │ │ ├── json_pointer.hpp │ │ │ ├── json_ref.hpp │ │ │ ├── macro_scope.hpp │ │ │ ├── macro_unscope.hpp │ │ │ ├── meta │ │ │ │ ├── call_std │ │ │ │ │ ├── begin.hpp │ │ │ │ │ └── end.hpp │ │ │ │ ├── cpp_future.hpp │ │ │ │ ├── detected.hpp │ │ │ │ ├── identity_tag.hpp │ │ │ │ ├── is_sax.hpp │ │ │ │ ├── std_fs.hpp │ │ │ │ ├── type_traits.hpp │ │ │ │ └── void_t.hpp │ │ │ ├── output │ │ │ │ ├── binary_writer.hpp │ │ │ │ ├── output_adapters.hpp │ │ │ │ └── serializer.hpp │ │ │ ├── string_concat.hpp │ │ │ ├── string_escape.hpp │ │ │ └── value_t.hpp │ │ ├── json.hpp │ │ ├── json_fwd.hpp │ │ ├── ordered_map.hpp │ │ └── thirdparty │ │ │ └── hedley │ │ │ ├── hedley.hpp │ │ │ └── hedley_undef.hpp │ └── tl │ │ └── optional.hpp │ └── lib │ └── flucoma │ ├── linux │ ├── Debug │ │ ├── libflucoma_VERSION_LIB.a │ │ ├── libfmt.a │ │ └── libfoonathan_memory-0.7.3.a │ └── Release │ │ ├── libflucoma_VERSION_LIB.a │ │ ├── libfmt.a │ │ └── libfoonathan_memory-0.7.3.a │ ├── macos │ ├── Debug │ │ ├── libflucoma_VERSION_LIB.a │ │ ├── libfmt.a │ │ └── libfoonathan_memory-0.7.3.a │ └── Release │ │ ├── libflucoma_VERSION_LIB.a │ │ ├── libfmt.a │ │ └── libfoonathan_memory-0.7.3.a │ └── windows │ ├── Debug │ ├── flucoma_VERSION_LIB.lib │ ├── fmt.lib │ └── foonathan_memory-0.7.3.lib │ └── Release │ ├── flucoma_VERSION_LIB.lib │ ├── fmt.lib │ └── foonathan_memory-0.7.3.lib ├── Windows_sign_aax.sh └── doxygen ├── Doxyfile ├── Makefile ├── README.txt └── extra ├── doxygen.css ├── dynsections.js └── tabs.css /.github/workflows/ControlGris-builds.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/.github/workflows/ControlGris-builds.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/.gitmodules -------------------------------------------------------------------------------- /ControlGRIS.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/ControlGRIS.jucer -------------------------------------------------------------------------------- /ControlGRIS.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/ControlGRIS.plist -------------------------------------------------------------------------------- /ControlGrisOSC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/ControlGrisOSC.json -------------------------------------------------------------------------------- /Distribution_licenses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Distribution_licenses.md -------------------------------------------------------------------------------- /Imgs/ControlGRIS2_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Imgs/ControlGRIS2_Logo.png -------------------------------------------------------------------------------- /Imgs/folder_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Imgs/folder_icon.png -------------------------------------------------------------------------------- /Imgs/folder_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Imgs/folder_icon.svg -------------------------------------------------------------------------------- /Imgs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Imgs/readme.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/LICENSE -------------------------------------------------------------------------------- /MacOS_build_sign_and_notarize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/MacOS_build_sign_and_notarize.sh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/README.md -------------------------------------------------------------------------------- /Source/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/.clang-format -------------------------------------------------------------------------------- /Source/Descriptors/cg_Centroid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/Descriptors/cg_Centroid.hpp -------------------------------------------------------------------------------- /Source/Descriptors/cg_Descriptors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/Descriptors/cg_Descriptors.hpp -------------------------------------------------------------------------------- /Source/Descriptors/cg_Flatness.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/Descriptors/cg_Flatness.hpp -------------------------------------------------------------------------------- /Source/Descriptors/cg_Loudness.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/Descriptors/cg_Loudness.hpp -------------------------------------------------------------------------------- /Source/Descriptors/cg_OnsetDetection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/Descriptors/cg_OnsetDetection.hpp -------------------------------------------------------------------------------- /Source/Descriptors/cg_Pitch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/Descriptors/cg_Pitch.hpp -------------------------------------------------------------------------------- /Source/Descriptors/cg_Shape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/Descriptors/cg_Shape.hpp -------------------------------------------------------------------------------- /Source/Descriptors/cg_Spread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/Descriptors/cg_Spread.hpp -------------------------------------------------------------------------------- /Source/Descriptors/cg_Stats.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/Descriptors/cg_Stats.hpp -------------------------------------------------------------------------------- /Source/PCH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/PCH.h -------------------------------------------------------------------------------- /Source/SinkinSans-400Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/SinkinSans-400Regular.otf -------------------------------------------------------------------------------- /Source/SpatialParameters/cg_AzimuthDome.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/SpatialParameters/cg_AzimuthDome.hpp -------------------------------------------------------------------------------- /Source/SpatialParameters/cg_ElevationDome.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/SpatialParameters/cg_ElevationDome.hpp -------------------------------------------------------------------------------- /Source/SpatialParameters/cg_HspanCube.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/SpatialParameters/cg_HspanCube.hpp -------------------------------------------------------------------------------- /Source/SpatialParameters/cg_HspanDome.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/SpatialParameters/cg_HspanDome.hpp -------------------------------------------------------------------------------- /Source/SpatialParameters/cg_Smooth.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/SpatialParameters/cg_Smooth.hpp -------------------------------------------------------------------------------- /Source/SpatialParameters/cg_SpatParamHelperFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/SpatialParameters/cg_SpatParamHelperFunctions.h -------------------------------------------------------------------------------- /Source/SpatialParameters/cg_SpatialParameter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/SpatialParameters/cg_SpatialParameter.cpp -------------------------------------------------------------------------------- /Source/SpatialParameters/cg_SpatialParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/SpatialParameters/cg_SpatialParameter.h -------------------------------------------------------------------------------- /Source/SpatialParameters/cg_VspanCube.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/SpatialParameters/cg_VspanCube.hpp -------------------------------------------------------------------------------- /Source/SpatialParameters/cg_VspanDome.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/SpatialParameters/cg_VspanDome.hpp -------------------------------------------------------------------------------- /Source/SpatialParameters/cg_XCube.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/SpatialParameters/cg_XCube.hpp -------------------------------------------------------------------------------- /Source/SpatialParameters/cg_YCube.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/SpatialParameters/cg_YCube.hpp -------------------------------------------------------------------------------- /Source/SpatialParameters/cg_ZCube.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/SpatialParameters/cg_ZCube.hpp -------------------------------------------------------------------------------- /Source/cg_BannerComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_BannerComponent.cpp -------------------------------------------------------------------------------- /Source/cg_BannerComponent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_BannerComponent.hpp -------------------------------------------------------------------------------- /Source/cg_ChangeGesturesManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_ChangeGesturesManager.cpp -------------------------------------------------------------------------------- /Source/cg_ChangeGesturesManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_ChangeGesturesManager.hpp -------------------------------------------------------------------------------- /Source/cg_ControlGrisAudioProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_ControlGrisAudioProcessor.cpp -------------------------------------------------------------------------------- /Source/cg_ControlGrisAudioProcessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_ControlGrisAudioProcessor.hpp -------------------------------------------------------------------------------- /Source/cg_ControlGrisAudioProcessorEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_ControlGrisAudioProcessorEditor.cpp -------------------------------------------------------------------------------- /Source/cg_ControlGrisAudioProcessorEditor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_ControlGrisAudioProcessorEditor.hpp -------------------------------------------------------------------------------- /Source/cg_ControlGrisLookAndFeel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_ControlGrisLookAndFeel.cpp -------------------------------------------------------------------------------- /Source/cg_ControlGrisLookAndFeel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_ControlGrisLookAndFeel.hpp -------------------------------------------------------------------------------- /Source/cg_ElevationDrawingHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_ElevationDrawingHandle.cpp -------------------------------------------------------------------------------- /Source/cg_ElevationDrawingHandle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_ElevationDrawingHandle.hpp -------------------------------------------------------------------------------- /Source/cg_ElevationSourceComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_ElevationSourceComponent.cpp -------------------------------------------------------------------------------- /Source/cg_ElevationSourceComponent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_ElevationSourceComponent.hpp -------------------------------------------------------------------------------- /Source/cg_FieldComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_FieldComponent.cpp -------------------------------------------------------------------------------- /Source/cg_FieldComponent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_FieldComponent.hpp -------------------------------------------------------------------------------- /Source/cg_LayoutComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_LayoutComponent.cpp -------------------------------------------------------------------------------- /Source/cg_LayoutComponent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_LayoutComponent.hpp -------------------------------------------------------------------------------- /Source/cg_LinkStrategies.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_LinkStrategies.cpp -------------------------------------------------------------------------------- /Source/cg_LinkStrategies.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_LinkStrategies.hpp -------------------------------------------------------------------------------- /Source/cg_MinSizedComponent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_MinSizedComponent.hpp -------------------------------------------------------------------------------- /Source/cg_MinSizedSlider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_MinSizedSlider.cpp -------------------------------------------------------------------------------- /Source/cg_MinSizedSlider.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_MinSizedSlider.hpp -------------------------------------------------------------------------------- /Source/cg_MinSizedTextEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_MinSizedTextEditor.cpp -------------------------------------------------------------------------------- /Source/cg_MinSizedTextEditor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_MinSizedTextEditor.hpp -------------------------------------------------------------------------------- /Source/cg_NumSlider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_NumSlider.cpp -------------------------------------------------------------------------------- /Source/cg_NumSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_NumSlider.h -------------------------------------------------------------------------------- /Source/cg_PersistentStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_PersistentStorage.cpp -------------------------------------------------------------------------------- /Source/cg_PersistentStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_PersistentStorage.h -------------------------------------------------------------------------------- /Source/cg_PositionSourceComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_PositionSourceComponent.cpp -------------------------------------------------------------------------------- /Source/cg_PositionSourceComponent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_PositionSourceComponent.hpp -------------------------------------------------------------------------------- /Source/cg_PresetsManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_PresetsManager.cpp -------------------------------------------------------------------------------- /Source/cg_PresetsManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_PresetsManager.hpp -------------------------------------------------------------------------------- /Source/cg_SectionAbstractTrajectories.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_SectionAbstractTrajectories.cpp -------------------------------------------------------------------------------- /Source/cg_SectionAbstractTrajectories.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_SectionAbstractTrajectories.hpp -------------------------------------------------------------------------------- /Source/cg_SectionGeneralSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_SectionGeneralSettings.cpp -------------------------------------------------------------------------------- /Source/cg_SectionGeneralSettings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_SectionGeneralSettings.hpp -------------------------------------------------------------------------------- /Source/cg_SectionOscController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_SectionOscController.cpp -------------------------------------------------------------------------------- /Source/cg_SectionOscController.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_SectionOscController.hpp -------------------------------------------------------------------------------- /Source/cg_SectionPositionPresets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_SectionPositionPresets.cpp -------------------------------------------------------------------------------- /Source/cg_SectionPositionPresets.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_SectionPositionPresets.hpp -------------------------------------------------------------------------------- /Source/cg_SectionSoundReactiveTrajectories.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_SectionSoundReactiveTrajectories.cpp -------------------------------------------------------------------------------- /Source/cg_SectionSoundReactiveTrajectories.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_SectionSoundReactiveTrajectories.h -------------------------------------------------------------------------------- /Source/cg_SectionSourcePosition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_SectionSourcePosition.cpp -------------------------------------------------------------------------------- /Source/cg_SectionSourcePosition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_SectionSourcePosition.hpp -------------------------------------------------------------------------------- /Source/cg_SectionSourceSpan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_SectionSourceSpan.cpp -------------------------------------------------------------------------------- /Source/cg_SectionSourceSpan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_SectionSourceSpan.hpp -------------------------------------------------------------------------------- /Source/cg_Source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_Source.cpp -------------------------------------------------------------------------------- /Source/cg_Source.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_Source.hpp -------------------------------------------------------------------------------- /Source/cg_SourceComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_SourceComponent.cpp -------------------------------------------------------------------------------- /Source/cg_SourceComponent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_SourceComponent.hpp -------------------------------------------------------------------------------- /Source/cg_SourceLinkEnforcer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_SourceLinkEnforcer.cpp -------------------------------------------------------------------------------- /Source/cg_SourceLinkEnforcer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_SourceLinkEnforcer.hpp -------------------------------------------------------------------------------- /Source/cg_SourceSnapshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_SourceSnapshot.cpp -------------------------------------------------------------------------------- /Source/cg_SourceSnapshot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_SourceSnapshot.hpp -------------------------------------------------------------------------------- /Source/cg_TitledComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_TitledComponent.cpp -------------------------------------------------------------------------------- /Source/cg_TitledComponent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_TitledComponent.hpp -------------------------------------------------------------------------------- /Source/cg_Trajectory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_Trajectory.cpp -------------------------------------------------------------------------------- /Source/cg_Trajectory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_Trajectory.hpp -------------------------------------------------------------------------------- /Source/cg_TrajectoryManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_TrajectoryManager.cpp -------------------------------------------------------------------------------- /Source/cg_TrajectoryManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_TrajectoryManager.hpp -------------------------------------------------------------------------------- /Source/cg_Warnings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_Warnings.hpp -------------------------------------------------------------------------------- /Source/cg_constants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_constants.cpp -------------------------------------------------------------------------------- /Source/cg_constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_constants.hpp -------------------------------------------------------------------------------- /Source/cg_utilities.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/cg_utilities.hpp -------------------------------------------------------------------------------- /Source/libs/include/Eigen/Cholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/Cholesky -------------------------------------------------------------------------------- /Source/libs/include/Eigen/CholmodSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/CholmodSupport -------------------------------------------------------------------------------- /Source/libs/include/Eigen/Core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/Core -------------------------------------------------------------------------------- /Source/libs/include/Eigen/Dense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/Dense -------------------------------------------------------------------------------- /Source/libs/include/Eigen/Eigen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/Eigen -------------------------------------------------------------------------------- /Source/libs/include/Eigen/Eigenvalues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/Eigenvalues -------------------------------------------------------------------------------- /Source/libs/include/Eigen/Geometry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/Geometry -------------------------------------------------------------------------------- /Source/libs/include/Eigen/Householder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/Householder -------------------------------------------------------------------------------- /Source/libs/include/Eigen/IterativeLinearSolvers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/IterativeLinearSolvers -------------------------------------------------------------------------------- /Source/libs/include/Eigen/Jacobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/Jacobi -------------------------------------------------------------------------------- /Source/libs/include/Eigen/KLUSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/KLUSupport -------------------------------------------------------------------------------- /Source/libs/include/Eigen/LU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/LU -------------------------------------------------------------------------------- /Source/libs/include/Eigen/MetisSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/MetisSupport -------------------------------------------------------------------------------- /Source/libs/include/Eigen/OrderingMethods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/OrderingMethods -------------------------------------------------------------------------------- /Source/libs/include/Eigen/PaStiXSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/PaStiXSupport -------------------------------------------------------------------------------- /Source/libs/include/Eigen/PardisoSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/PardisoSupport -------------------------------------------------------------------------------- /Source/libs/include/Eigen/QR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/QR -------------------------------------------------------------------------------- /Source/libs/include/Eigen/QtAlignedMalloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/QtAlignedMalloc -------------------------------------------------------------------------------- /Source/libs/include/Eigen/SPQRSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/SPQRSupport -------------------------------------------------------------------------------- /Source/libs/include/Eigen/SVD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/SVD -------------------------------------------------------------------------------- /Source/libs/include/Eigen/Sparse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/Sparse -------------------------------------------------------------------------------- /Source/libs/include/Eigen/SparseCholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/SparseCholesky -------------------------------------------------------------------------------- /Source/libs/include/Eigen/SparseCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/SparseCore -------------------------------------------------------------------------------- /Source/libs/include/Eigen/SparseLU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/SparseLU -------------------------------------------------------------------------------- /Source/libs/include/Eigen/SparseQR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/SparseQR -------------------------------------------------------------------------------- /Source/libs/include/Eigen/StdDeque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/StdDeque -------------------------------------------------------------------------------- /Source/libs/include/Eigen/StdList: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/StdList -------------------------------------------------------------------------------- /Source/libs/include/Eigen/StdVector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/StdVector -------------------------------------------------------------------------------- /Source/libs/include/Eigen/SuperLUSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/SuperLUSupport -------------------------------------------------------------------------------- /Source/libs/include/Eigen/UmfPackSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/UmfPackSupport -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Cholesky/LDLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Cholesky/LDLT.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Cholesky/LLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Cholesky/LLT.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Cholesky/LLT_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Cholesky/LLT_LAPACKE.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/CholmodSupport/CholmodSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/CholmodSupport/CholmodSupport.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/ArithmeticSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/ArithmeticSequence.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/Array.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/ArrayBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/ArrayBase.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/ArrayWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/ArrayWrapper.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/Assign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/Assign.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/AssignEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/AssignEvaluator.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/Assign_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/Assign_MKL.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/BandMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/BandMatrix.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/Block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/Block.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/BooleanRedux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/BooleanRedux.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/CommaInitializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/CommaInitializer.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/ConditionEstimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/ConditionEstimator.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/CoreEvaluators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/CoreEvaluators.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/CoreIterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/CoreIterators.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/CwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/CwiseBinaryOp.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/CwiseNullaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/CwiseNullaryOp.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/CwiseTernaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/CwiseTernaryOp.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/CwiseUnaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/CwiseUnaryOp.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/CwiseUnaryView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/CwiseUnaryView.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/DenseBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/DenseBase.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/DenseCoeffsBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/DenseCoeffsBase.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/DenseStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/DenseStorage.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/Diagonal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/Diagonal.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/DiagonalMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/DiagonalMatrix.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/DiagonalProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/DiagonalProduct.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/Dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/Dot.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/EigenBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/EigenBase.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/ForceAlignedAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/ForceAlignedAccess.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/Fuzzy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/Fuzzy.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/GeneralProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/GeneralProduct.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/GenericPacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/GenericPacketMath.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/GlobalFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/GlobalFunctions.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/IO.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/IndexedView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/IndexedView.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/Inverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/Inverse.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/Map.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/MapBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/MapBase.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/MathFunctions.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/MathFunctionsImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/MathFunctionsImpl.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/Matrix.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/MatrixBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/MatrixBase.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/NestByValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/NestByValue.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/NoAlias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/NoAlias.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/NumTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/NumTraits.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/PartialReduxEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/PartialReduxEvaluator.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/PermutationMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/PermutationMatrix.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/PlainObjectBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/PlainObjectBase.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/Product.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/Product.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/ProductEvaluators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/ProductEvaluators.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/Random.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/Redux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/Redux.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/Ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/Ref.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/Replicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/Replicate.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/Reshaped.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/Reshaped.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/ReturnByValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/ReturnByValue.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/Reverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/Reverse.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/Select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/Select.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/SelfAdjointView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/SelfAdjointView.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/SelfCwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/SelfCwiseBinaryOp.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/Solve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/Solve.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/SolveTriangular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/SolveTriangular.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/SolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/SolverBase.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/StableNorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/StableNorm.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/StlIterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/StlIterators.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/Stride.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/Stride.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/Swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/Swap.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/Transpose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/Transpose.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/Transpositions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/Transpositions.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/TriangularMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/TriangularMatrix.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/VectorBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/VectorBlock.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/VectorwiseOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/VectorwiseOp.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/Visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/Visitor.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/arch/AVX/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/arch/AVX/Complex.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/arch/AVX/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/arch/AVX/MathFunctions.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/arch/AVX/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/arch/AVX/PacketMath.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/arch/AVX/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/arch/AVX/TypeCasting.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/arch/AVX512/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/arch/AVX512/Complex.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/arch/AVX512/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/arch/AVX512/MathFunctions.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/arch/AVX512/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/arch/AVX512/PacketMath.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/arch/AVX512/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/arch/AVX512/TypeCasting.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/arch/AltiVec/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/arch/AltiVec/Complex.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/arch/AltiVec/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/arch/AltiVec/MathFunctions.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/arch/AltiVec/MatrixProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/arch/AltiVec/MatrixProduct.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/arch/AltiVec/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/arch/AltiVec/PacketMath.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/arch/CUDA/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/arch/CUDA/Complex.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/arch/Default/BFloat16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/arch/Default/BFloat16.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/arch/Default/ConjHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/arch/Default/ConjHelper.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/arch/Default/Half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/arch/Default/Half.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/arch/Default/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/arch/Default/Settings.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/arch/Default/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/arch/Default/TypeCasting.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/arch/GPU/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/arch/GPU/MathFunctions.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/arch/GPU/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/arch/GPU/PacketMath.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/arch/GPU/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/arch/GPU/TypeCasting.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/arch/HIP/hcc/math_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/arch/HIP/hcc/math_constants.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/arch/MSA/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/arch/MSA/Complex.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/arch/MSA/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/arch/MSA/MathFunctions.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/arch/MSA/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/arch/MSA/PacketMath.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/arch/NEON/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/arch/NEON/Complex.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/arch/NEON/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/arch/NEON/MathFunctions.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/arch/NEON/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/arch/NEON/PacketMath.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/arch/NEON/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/arch/NEON/TypeCasting.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/arch/SSE/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/arch/SSE/Complex.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/arch/SSE/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/arch/SSE/MathFunctions.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/arch/SSE/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/arch/SSE/PacketMath.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/arch/SSE/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/arch/SSE/TypeCasting.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/arch/SVE/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/arch/SVE/MathFunctions.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/arch/SVE/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/arch/SVE/PacketMath.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/arch/SVE/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/arch/SVE/TypeCasting.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/arch/SYCL/InteropHeaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/arch/SYCL/InteropHeaders.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/arch/SYCL/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/arch/SYCL/MathFunctions.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/arch/SYCL/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/arch/SYCL/PacketMath.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/arch/SYCL/SyclMemoryModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/arch/SYCL/SyclMemoryModel.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/arch/SYCL/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/arch/SYCL/TypeCasting.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/arch/ZVector/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/arch/ZVector/Complex.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/arch/ZVector/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/arch/ZVector/MathFunctions.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/arch/ZVector/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/arch/ZVector/PacketMath.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/functors/AssignmentFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/functors/AssignmentFunctors.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/functors/BinaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/functors/BinaryFunctors.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/functors/NullaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/functors/NullaryFunctors.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/functors/StlFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/functors/StlFunctors.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/functors/TernaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/functors/TernaryFunctors.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/functors/UnaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/functors/UnaryFunctors.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/products/GeneralMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/products/GeneralMatrixMatrix.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/products/GeneralMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/products/GeneralMatrixVector.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/products/Parallelizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/products/Parallelizer.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/products/SelfadjointProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/products/SelfadjointProduct.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/util/BlasUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/util/BlasUtil.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/util/ConfigureVectorization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/util/ConfigureVectorization.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/util/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/util/Constants.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/util/DisableStupidWarnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/util/DisableStupidWarnings.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/util/ForwardDeclarations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/util/ForwardDeclarations.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/util/IndexedViewHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/util/IndexedViewHelper.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/util/IntegralConstant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/util/IntegralConstant.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/util/MKL_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/util/MKL_support.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/util/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/util/Macros.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/util/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/util/Memory.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/util/Meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/util/Meta.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/util/NonMPL2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/util/NonMPL2.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/util/ReenableStupidWarnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/util/ReenableStupidWarnings.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/util/ReshapedHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/util/ReshapedHelper.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/util/StaticAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/util/StaticAssert.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/util/SymbolicIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/util/SymbolicIndex.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Core/util/XprHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Core/util/XprHelper.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Eigenvalues/ComplexEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Eigenvalues/ComplexEigenSolver.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Eigenvalues/ComplexSchur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Eigenvalues/ComplexSchur.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Eigenvalues/EigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Eigenvalues/EigenSolver.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Eigenvalues/RealQZ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Eigenvalues/RealQZ.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Eigenvalues/RealSchur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Eigenvalues/RealSchur.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Eigenvalues/Tridiagonalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Eigenvalues/Tridiagonalization.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Geometry/AlignedBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Geometry/AlignedBox.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Geometry/AngleAxis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Geometry/AngleAxis.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Geometry/EulerAngles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Geometry/EulerAngles.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Geometry/Homogeneous.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Geometry/Homogeneous.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Geometry/Hyperplane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Geometry/Hyperplane.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Geometry/OrthoMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Geometry/OrthoMethods.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Geometry/ParametrizedLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Geometry/ParametrizedLine.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Geometry/Quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Geometry/Quaternion.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Geometry/Rotation2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Geometry/Rotation2D.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Geometry/RotationBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Geometry/RotationBase.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Geometry/Scaling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Geometry/Scaling.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Geometry/Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Geometry/Transform.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Geometry/Translation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Geometry/Translation.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Geometry/Umeyama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Geometry/Umeyama.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Geometry/arch/Geometry_SIMD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Geometry/arch/Geometry_SIMD.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Householder/BlockHouseholder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Householder/BlockHouseholder.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Householder/Householder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Householder/Householder.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Householder/HouseholderSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Householder/HouseholderSequence.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/Jacobi/Jacobi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/Jacobi/Jacobi.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/KLUSupport/KLUSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/KLUSupport/KLUSupport.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/LU/Determinant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/LU/Determinant.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/LU/FullPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/LU/FullPivLU.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/LU/InverseImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/LU/InverseImpl.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/LU/PartialPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/LU/PartialPivLU.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/LU/PartialPivLU_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/LU/PartialPivLU_LAPACKE.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/LU/arch/InverseSize4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/LU/arch/InverseSize4.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/MetisSupport/MetisSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/MetisSupport/MetisSupport.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/OrderingMethods/Amd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/OrderingMethods/Amd.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/OrderingMethods/Eigen_Colamd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/OrderingMethods/Eigen_Colamd.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/OrderingMethods/Ordering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/OrderingMethods/Ordering.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/PaStiXSupport/PaStiXSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/PaStiXSupport/PaStiXSupport.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/PardisoSupport/PardisoSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/PardisoSupport/PardisoSupport.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/QR/ColPivHouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/QR/ColPivHouseholderQR.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/QR/FullPivHouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/QR/FullPivHouseholderQR.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/QR/HouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/QR/HouseholderQR.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/QR/HouseholderQR_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/QR/HouseholderQR_LAPACKE.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SVD/BDCSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SVD/BDCSVD.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SVD/JacobiSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SVD/JacobiSVD.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SVD/JacobiSVD_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SVD/JacobiSVD_LAPACKE.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SVD/SVDBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SVD/SVDBase.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SVD/UpperBidiagonalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SVD/UpperBidiagonalization.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SparseCholesky/SimplicialCholesky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SparseCholesky/SimplicialCholesky.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SparseCore/AmbiVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SparseCore/AmbiVector.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SparseCore/CompressedStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SparseCore/CompressedStorage.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SparseCore/MappedSparseMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SparseCore/MappedSparseMatrix.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SparseCore/SparseAssign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SparseCore/SparseAssign.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SparseCore/SparseBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SparseCore/SparseBlock.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SparseCore/SparseColEtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SparseCore/SparseColEtree.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SparseCore/SparseCompressedBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SparseCore/SparseCompressedBase.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SparseCore/SparseCwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SparseCore/SparseCwiseBinaryOp.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SparseCore/SparseCwiseUnaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SparseCore/SparseCwiseUnaryOp.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SparseCore/SparseDenseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SparseCore/SparseDenseProduct.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SparseCore/SparseDiagonalProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SparseCore/SparseDiagonalProduct.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SparseCore/SparseDot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SparseCore/SparseDot.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SparseCore/SparseFuzzy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SparseCore/SparseFuzzy.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SparseCore/SparseMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SparseCore/SparseMap.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SparseCore/SparseMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SparseCore/SparseMatrix.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SparseCore/SparseMatrixBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SparseCore/SparseMatrixBase.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SparseCore/SparsePermutation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SparseCore/SparsePermutation.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SparseCore/SparseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SparseCore/SparseProduct.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SparseCore/SparseRedux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SparseCore/SparseRedux.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SparseCore/SparseRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SparseCore/SparseRef.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SparseCore/SparseSelfAdjointView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SparseCore/SparseSelfAdjointView.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SparseCore/SparseSolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SparseCore/SparseSolverBase.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SparseCore/SparseTranspose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SparseCore/SparseTranspose.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SparseCore/SparseTriangularView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SparseCore/SparseTriangularView.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SparseCore/SparseUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SparseCore/SparseUtil.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SparseCore/SparseVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SparseCore/SparseVector.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SparseCore/SparseView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SparseCore/SparseView.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SparseCore/TriangularSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SparseCore/TriangularSolver.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SparseLU/SparseLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SparseLU/SparseLU.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SparseLU/SparseLUImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SparseLU/SparseLUImpl.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SparseLU/SparseLU_Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SparseLU/SparseLU_Memory.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SparseLU/SparseLU_Structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SparseLU/SparseLU_Structs.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SparseLU/SparseLU_Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SparseLU/SparseLU_Utils.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SparseLU/SparseLU_column_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SparseLU/SparseLU_column_bmod.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SparseLU/SparseLU_column_dfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SparseLU/SparseLU_column_dfs.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SparseLU/SparseLU_gemm_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SparseLU/SparseLU_gemm_kernel.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SparseLU/SparseLU_kernel_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SparseLU/SparseLU_kernel_bmod.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SparseLU/SparseLU_panel_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SparseLU/SparseLU_panel_bmod.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SparseLU/SparseLU_panel_dfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SparseLU/SparseLU_panel_dfs.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SparseLU/SparseLU_pivotL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SparseLU/SparseLU_pivotL.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SparseLU/SparseLU_pruneL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SparseLU/SparseLU_pruneL.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SparseLU/SparseLU_relax_snode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SparseLU/SparseLU_relax_snode.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SparseQR/SparseQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SparseQR/SparseQR.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/StlSupport/StdDeque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/StlSupport/StdDeque.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/StlSupport/StdList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/StlSupport/StdList.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/StlSupport/StdVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/StlSupport/StdVector.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/StlSupport/details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/StlSupport/details.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/SuperLUSupport/SuperLUSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/SuperLUSupport/SuperLUSupport.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/UmfPackSupport/UmfPackSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/UmfPackSupport/UmfPackSupport.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/misc/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/misc/Image.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/misc/Kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/misc/Kernel.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/misc/RealSvd2x2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/misc/RealSvd2x2.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/misc/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/misc/blas.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/misc/lapack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/misc/lapack.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/misc/lapacke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/misc/lapacke.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/misc/lapacke_mangling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/misc/lapacke_mangling.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/plugins/ArrayCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/plugins/ArrayCwiseBinaryOps.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/plugins/ArrayCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/plugins/ArrayCwiseUnaryOps.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/plugins/BlockMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/plugins/BlockMethods.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/plugins/CommonCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/plugins/CommonCwiseBinaryOps.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/plugins/CommonCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/plugins/CommonCwiseUnaryOps.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/plugins/IndexedViewMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/plugins/IndexedViewMethods.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/plugins/MatrixCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/plugins/MatrixCwiseBinaryOps.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/plugins/MatrixCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/plugins/MatrixCwiseUnaryOps.h -------------------------------------------------------------------------------- /Source/libs/include/Eigen/src/plugins/ReshapedMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Eigen/src/plugins/ReshapedMethods.h -------------------------------------------------------------------------------- /Source/libs/include/Spectra/DavidsonSymEigsSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Spectra/DavidsonSymEigsSolver.h -------------------------------------------------------------------------------- /Source/libs/include/Spectra/GenEigsBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Spectra/GenEigsBase.h -------------------------------------------------------------------------------- /Source/libs/include/Spectra/GenEigsComplexShiftSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Spectra/GenEigsComplexShiftSolver.h -------------------------------------------------------------------------------- /Source/libs/include/Spectra/GenEigsRealShiftSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Spectra/GenEigsRealShiftSolver.h -------------------------------------------------------------------------------- /Source/libs/include/Spectra/GenEigsSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Spectra/GenEigsSolver.h -------------------------------------------------------------------------------- /Source/libs/include/Spectra/JDSymEigsBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Spectra/JDSymEigsBase.h -------------------------------------------------------------------------------- /Source/libs/include/Spectra/LinAlg/Arnoldi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Spectra/LinAlg/Arnoldi.h -------------------------------------------------------------------------------- /Source/libs/include/Spectra/LinAlg/BKLDLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Spectra/LinAlg/BKLDLT.h -------------------------------------------------------------------------------- /Source/libs/include/Spectra/LinAlg/DoubleShiftQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Spectra/LinAlg/DoubleShiftQR.h -------------------------------------------------------------------------------- /Source/libs/include/Spectra/LinAlg/Lanczos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Spectra/LinAlg/Lanczos.h -------------------------------------------------------------------------------- /Source/libs/include/Spectra/LinAlg/Orthogonalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Spectra/LinAlg/Orthogonalization.h -------------------------------------------------------------------------------- /Source/libs/include/Spectra/LinAlg/RitzPairs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Spectra/LinAlg/RitzPairs.h -------------------------------------------------------------------------------- /Source/libs/include/Spectra/LinAlg/SearchSpace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Spectra/LinAlg/SearchSpace.h -------------------------------------------------------------------------------- /Source/libs/include/Spectra/LinAlg/TridiagEigen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Spectra/LinAlg/TridiagEigen.h -------------------------------------------------------------------------------- /Source/libs/include/Spectra/LinAlg/UpperHessenbergEigen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Spectra/LinAlg/UpperHessenbergEigen.h -------------------------------------------------------------------------------- /Source/libs/include/Spectra/LinAlg/UpperHessenbergQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Spectra/LinAlg/UpperHessenbergQR.h -------------------------------------------------------------------------------- /Source/libs/include/Spectra/LinAlg/UpperHessenbergSchur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Spectra/LinAlg/UpperHessenbergSchur.h -------------------------------------------------------------------------------- /Source/libs/include/Spectra/MatOp/DenseCholesky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Spectra/MatOp/DenseCholesky.h -------------------------------------------------------------------------------- /Source/libs/include/Spectra/MatOp/DenseGenComplexShiftSolve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Spectra/MatOp/DenseGenComplexShiftSolve.h -------------------------------------------------------------------------------- /Source/libs/include/Spectra/MatOp/DenseGenMatProd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Spectra/MatOp/DenseGenMatProd.h -------------------------------------------------------------------------------- /Source/libs/include/Spectra/MatOp/DenseGenRealShiftSolve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Spectra/MatOp/DenseGenRealShiftSolve.h -------------------------------------------------------------------------------- /Source/libs/include/Spectra/MatOp/DenseSymMatProd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Spectra/MatOp/DenseSymMatProd.h -------------------------------------------------------------------------------- /Source/libs/include/Spectra/MatOp/DenseSymShiftSolve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Spectra/MatOp/DenseSymShiftSolve.h -------------------------------------------------------------------------------- /Source/libs/include/Spectra/MatOp/SparseCholesky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Spectra/MatOp/SparseCholesky.h -------------------------------------------------------------------------------- /Source/libs/include/Spectra/MatOp/SparseGenComplexShiftSolve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Spectra/MatOp/SparseGenComplexShiftSolve.h -------------------------------------------------------------------------------- /Source/libs/include/Spectra/MatOp/SparseGenMatProd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Spectra/MatOp/SparseGenMatProd.h -------------------------------------------------------------------------------- /Source/libs/include/Spectra/MatOp/SparseGenRealShiftSolve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Spectra/MatOp/SparseGenRealShiftSolve.h -------------------------------------------------------------------------------- /Source/libs/include/Spectra/MatOp/SparseRegularInverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Spectra/MatOp/SparseRegularInverse.h -------------------------------------------------------------------------------- /Source/libs/include/Spectra/MatOp/SparseSymMatProd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Spectra/MatOp/SparseSymMatProd.h -------------------------------------------------------------------------------- /Source/libs/include/Spectra/MatOp/SparseSymShiftSolve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Spectra/MatOp/SparseSymShiftSolve.h -------------------------------------------------------------------------------- /Source/libs/include/Spectra/MatOp/SymShiftInvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Spectra/MatOp/SymShiftInvert.h -------------------------------------------------------------------------------- /Source/libs/include/Spectra/MatOp/internal/ArnoldiOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Spectra/MatOp/internal/ArnoldiOp.h -------------------------------------------------------------------------------- /Source/libs/include/Spectra/MatOp/internal/SymGEigsBucklingOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Spectra/MatOp/internal/SymGEigsBucklingOp.h -------------------------------------------------------------------------------- /Source/libs/include/Spectra/MatOp/internal/SymGEigsCayleyOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Spectra/MatOp/internal/SymGEigsCayleyOp.h -------------------------------------------------------------------------------- /Source/libs/include/Spectra/MatOp/internal/SymGEigsCholeskyOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Spectra/MatOp/internal/SymGEigsCholeskyOp.h -------------------------------------------------------------------------------- /Source/libs/include/Spectra/MatOp/internal/SymGEigsRegInvOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Spectra/MatOp/internal/SymGEigsRegInvOp.h -------------------------------------------------------------------------------- /Source/libs/include/Spectra/SymEigsBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Spectra/SymEigsBase.h -------------------------------------------------------------------------------- /Source/libs/include/Spectra/SymEigsShiftSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Spectra/SymEigsShiftSolver.h -------------------------------------------------------------------------------- /Source/libs/include/Spectra/SymEigsSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Spectra/SymEigsSolver.h -------------------------------------------------------------------------------- /Source/libs/include/Spectra/SymGEigsShiftSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Spectra/SymGEigsShiftSolver.h -------------------------------------------------------------------------------- /Source/libs/include/Spectra/SymGEigsSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Spectra/SymGEigsSolver.h -------------------------------------------------------------------------------- /Source/libs/include/Spectra/Util/CompInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Spectra/Util/CompInfo.h -------------------------------------------------------------------------------- /Source/libs/include/Spectra/Util/GEigsMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Spectra/Util/GEigsMode.h -------------------------------------------------------------------------------- /Source/libs/include/Spectra/Util/SelectionRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Spectra/Util/SelectionRule.h -------------------------------------------------------------------------------- /Source/libs/include/Spectra/Util/SimpleRandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Spectra/Util/SimpleRandom.h -------------------------------------------------------------------------------- /Source/libs/include/Spectra/Util/TypeTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Spectra/Util/TypeTraits.h -------------------------------------------------------------------------------- /Source/libs/include/Spectra/Util/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Spectra/Util/Version.h -------------------------------------------------------------------------------- /Source/libs/include/Spectra/contrib/LOBPCGSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Spectra/contrib/LOBPCGSolver.h -------------------------------------------------------------------------------- /Source/libs/include/Spectra/contrib/PartialSVDSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/Spectra/contrib/PartialSVDSolver.h -------------------------------------------------------------------------------- /Source/libs/include/flucoma/FluidVersion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/FluidVersion.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/public/AudioTransport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/public/AudioTransport.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/public/CepstrumF0.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/public/CepstrumF0.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/public/DCT.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/public/DCT.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/public/DataSetQuery.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/public/DataSetQuery.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/public/Envelope.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/public/Envelope.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/public/EnvelopeGate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/public/EnvelopeGate.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/public/Grid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/public/Grid.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/public/GriffinLim.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/public/GriffinLim.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/public/HPS.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/public/HPS.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/public/HPSS.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/public/HPSS.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/public/KDTree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/public/KDTree.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/public/KMeans.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/public/KMeans.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/public/KNNClassifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/public/KNNClassifier.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/public/KNNRegressor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/public/KNNRegressor.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/public/LabelSetEncoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/public/LabelSetEncoder.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/public/Loudness.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/public/Loudness.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/public/MDS.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/public/MDS.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/public/MLP.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/public/MLP.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/public/MelBands.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/public/MelBands.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/public/MultiStats.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/public/MultiStats.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/public/NMF.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/public/NMF.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/public/NMFCross.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/public/NMFCross.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/public/NMFMorph.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/public/NMFMorph.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/public/NNDSVD.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/public/NNDSVD.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/public/Normalization.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/public/Normalization.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/public/NoveltyFeature.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/public/NoveltyFeature.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/public/PCA.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/public/PCA.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/public/RatioMask.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/public/RatioMask.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/public/RobustScaling.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/public/RobustScaling.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/public/RunningStats.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/public/RunningStats.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/public/SGD.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/public/SGD.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/public/SKMeans.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/public/SKMeans.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/public/STFT.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/public/STFT.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/public/SineExtraction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/public/SineExtraction.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/public/SineFeature.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/public/SineFeature.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/public/SpectralShape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/public/SpectralShape.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/public/Standardization.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/public/Standardization.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/public/UMAP.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/public/UMAP.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/public/WindowFuncs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/public/WindowFuncs.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/public/YINFFT.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/public/YINFFT.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/util/ARModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/util/ARModel.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/util/AlgorithmUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/util/AlgorithmUtils.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/util/Assign2D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/util/Assign2D.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/util/DistanceFuncs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/util/DistanceFuncs.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/util/FFT.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/util/FFT.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/util/KWeightingFilter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/util/KWeightingFilter.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/util/MedianFilter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/util/MedianFilter.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/util/Munkres.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/util/Munkres.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/util/NNFuncs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/util/NNFuncs.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/util/NNLayer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/util/NNLayer.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/util/Novelty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/util/Novelty.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/util/OptimalTransport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/util/OptimalTransport.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/util/OutlierDetection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/util/OutlierDetection.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/util/PartialTracking.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/util/PartialTracking.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/util/PeakDetection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/util/PeakDetection.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/util/RTPGHI.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/util/RTPGHI.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/util/ScalerUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/util/ScalerUtils.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/util/SlideUDFilter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/util/SlideUDFilter.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/util/SpectralEmbedding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/util/SpectralEmbedding.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/util/Stats.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/util/Stats.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/util/Toeplitz.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/util/Toeplitz.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/util/TruePeak.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/util/TruePeak.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/algorithms/util/WeightedStats.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/algorithms/util/WeightedStats.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/common/AudioClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/common/AudioClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/common/BufferAdaptor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/common/BufferAdaptor.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/common/BufferedProcess.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/common/BufferedProcess.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/common/FluidBaseClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/common/FluidBaseClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/common/FluidContext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/common/FluidContext.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/common/FluidInputTrigger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/common/FluidInputTrigger.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/common/FluidSink.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/common/FluidSink.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/common/FluidSource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/common/FluidSource.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/common/FluidTask.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/common/FluidTask.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/common/MessageSet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/common/MessageSet.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/common/OfflineClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/common/OfflineClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/common/ParameterSet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/common/ParameterSet.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/common/ParameterTypes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/common/ParameterTypes.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/common/Result.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/common/Result.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/common/SharedClientUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/common/SharedClientUtils.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/common/SpikesToTimes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/common/SpikesToTimes.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/common/TupleUtilities.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/common/TupleUtilities.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/nrt/BufComposeClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/nrt/BufComposeClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/nrt/BufFlattenClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/nrt/BufFlattenClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/nrt/BufSTFTClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/nrt/BufSTFTClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/nrt/BufScaleClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/nrt/BufScaleClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/nrt/BufSelectClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/nrt/BufSelectClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/nrt/BufSelectEveryClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/nrt/BufSelectEveryClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/nrt/BufStatsClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/nrt/BufStatsClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/nrt/BufThreshClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/nrt/BufThreshClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/nrt/ClientInputChecks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/nrt/ClientInputChecks.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/nrt/CommonResults.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/nrt/CommonResults.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/nrt/CorpusClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/nrt/CorpusClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/nrt/DataClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/nrt/DataClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/nrt/DataSetClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/nrt/DataSetClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/nrt/DataSetQueryClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/nrt/DataSetQueryClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/nrt/FluidThreadTestClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/nrt/FluidThreadTestClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/nrt/GridClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/nrt/GridClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/nrt/KDTreeClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/nrt/KDTreeClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/nrt/KMeansClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/nrt/KMeansClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/nrt/KNNClassifierClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/nrt/KNNClassifierClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/nrt/KNNRegressorClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/nrt/KNNRegressorClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/nrt/LabelSetClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/nrt/LabelSetClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/nrt/MDSClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/nrt/MDSClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/nrt/MLPClassifierClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/nrt/MLPClassifierClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/nrt/MLPRegressorClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/nrt/MLPRegressorClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/nrt/MessageTest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/nrt/MessageTest.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/nrt/NMFClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/nrt/NMFClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/nrt/NMFCrossClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/nrt/NMFCrossClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/nrt/NMFSeedClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/nrt/NMFSeedClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/nrt/NRTClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/nrt/NRTClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/nrt/NormalizeClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/nrt/NormalizeClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/nrt/NoveltyClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/nrt/NoveltyClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/nrt/PCAClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/nrt/PCAClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/nrt/ProviderTest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/nrt/ProviderTest.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/nrt/RobustScaleClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/nrt/RobustScaleClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/nrt/SKMeansClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/nrt/SKMeansClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/nrt/StandardizeClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/nrt/StandardizeClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/nrt/SubscriberTest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/nrt/SubscriberTest.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/nrt/UMAPClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/nrt/UMAPClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/rt/AmpFeatureClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/rt/AmpFeatureClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/rt/AmpGateClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/rt/AmpGateClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/rt/AmpSliceClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/rt/AmpSliceClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/rt/AudioTransportClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/rt/AudioTransportClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/rt/BaseSTFTClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/rt/BaseSTFTClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/rt/ChromaClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/rt/ChromaClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/rt/GainClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/rt/GainClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/rt/HPSSClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/rt/HPSSClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/rt/LoudnessClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/rt/LoudnessClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/rt/MFCCClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/rt/MFCCClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/rt/MelBandsClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/rt/MelBandsClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/rt/NMFFilterClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/rt/NMFFilterClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/rt/NMFMatchClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/rt/NMFMatchClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/rt/NMFMorphClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/rt/NMFMorphClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/rt/NoInputSTFTClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/rt/NoInputSTFTClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/rt/NoveltyFeatureClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/rt/NoveltyFeatureClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/rt/NoveltySliceClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/rt/NoveltySliceClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/rt/OnsetFeatureClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/rt/OnsetFeatureClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/rt/OnsetSliceClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/rt/OnsetSliceClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/rt/PitchClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/rt/PitchClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/rt/RunningStatsClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/rt/RunningStatsClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/rt/SineFeatureClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/rt/SineFeatureClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/rt/SinesClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/rt/SinesClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/rt/SpectralShapeClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/rt/SpectralShapeClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/rt/TransientClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/rt/TransientClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/clients/rt/TransientSliceClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/clients/rt/TransientSliceClient.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/data/FluidDataSet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/data/FluidDataSet.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/data/FluidFile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/data/FluidFile.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/data/FluidIndex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/data/FluidIndex.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/data/FluidJSON.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/data/FluidJSON.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/data/FluidMemory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/data/FluidMemory.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/data/FluidMeta.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/data/FluidMeta.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/data/FluidTensor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/data/FluidTensor.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/data/FluidTensor_Support.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/data/FluidTensor_Support.hpp -------------------------------------------------------------------------------- /Source/libs/include/flucoma/data/TensorTypes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/flucoma/data/TensorTypes.hpp -------------------------------------------------------------------------------- /Source/libs/include/fmt/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/fmt/args.h -------------------------------------------------------------------------------- /Source/libs/include/fmt/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/fmt/base.h -------------------------------------------------------------------------------- /Source/libs/include/fmt/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/fmt/chrono.h -------------------------------------------------------------------------------- /Source/libs/include/fmt/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/fmt/color.h -------------------------------------------------------------------------------- /Source/libs/include/fmt/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/fmt/compile.h -------------------------------------------------------------------------------- /Source/libs/include/fmt/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/fmt/core.h -------------------------------------------------------------------------------- /Source/libs/include/fmt/format-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/fmt/format-inl.h -------------------------------------------------------------------------------- /Source/libs/include/fmt/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/fmt/format.h -------------------------------------------------------------------------------- /Source/libs/include/fmt/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/fmt/os.h -------------------------------------------------------------------------------- /Source/libs/include/fmt/ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/fmt/ostream.h -------------------------------------------------------------------------------- /Source/libs/include/fmt/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/fmt/printf.h -------------------------------------------------------------------------------- /Source/libs/include/fmt/ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/fmt/ranges.h -------------------------------------------------------------------------------- /Source/libs/include/fmt/std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/fmt/std.h -------------------------------------------------------------------------------- /Source/libs/include/fmt/xchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/fmt/xchar.h -------------------------------------------------------------------------------- /Source/libs/include/foonathan/memory/aligned_allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/foonathan/memory/aligned_allocator.hpp -------------------------------------------------------------------------------- /Source/libs/include/foonathan/memory/allocator_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/foonathan/memory/allocator_storage.hpp -------------------------------------------------------------------------------- /Source/libs/include/foonathan/memory/allocator_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/foonathan/memory/allocator_traits.hpp -------------------------------------------------------------------------------- /Source/libs/include/foonathan/memory/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/foonathan/memory/config.hpp -------------------------------------------------------------------------------- /Source/libs/include/foonathan/memory/config_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/foonathan/memory/config_impl.hpp -------------------------------------------------------------------------------- /Source/libs/include/foonathan/memory/container.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/foonathan/memory/container.hpp -------------------------------------------------------------------------------- /Source/libs/include/foonathan/memory/debugging.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/foonathan/memory/debugging.hpp -------------------------------------------------------------------------------- /Source/libs/include/foonathan/memory/default_allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/foonathan/memory/default_allocator.hpp -------------------------------------------------------------------------------- /Source/libs/include/foonathan/memory/deleter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/foonathan/memory/deleter.hpp -------------------------------------------------------------------------------- /Source/libs/include/foonathan/memory/detail/align.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/foonathan/memory/detail/align.hpp -------------------------------------------------------------------------------- /Source/libs/include/foonathan/memory/detail/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/foonathan/memory/detail/assert.hpp -------------------------------------------------------------------------------- /Source/libs/include/foonathan/memory/detail/debug_helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/foonathan/memory/detail/debug_helpers.hpp -------------------------------------------------------------------------------- /Source/libs/include/foonathan/memory/detail/ebo_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/foonathan/memory/detail/ebo_storage.hpp -------------------------------------------------------------------------------- /Source/libs/include/foonathan/memory/detail/free_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/foonathan/memory/detail/free_list.hpp -------------------------------------------------------------------------------- /Source/libs/include/foonathan/memory/detail/free_list_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/foonathan/memory/detail/free_list_array.hpp -------------------------------------------------------------------------------- /Source/libs/include/foonathan/memory/detail/ilog2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/foonathan/memory/detail/ilog2.hpp -------------------------------------------------------------------------------- /Source/libs/include/foonathan/memory/detail/memory_stack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/foonathan/memory/detail/memory_stack.hpp -------------------------------------------------------------------------------- /Source/libs/include/foonathan/memory/detail/small_free_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/foonathan/memory/detail/small_free_list.hpp -------------------------------------------------------------------------------- /Source/libs/include/foonathan/memory/detail/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/foonathan/memory/detail/utility.hpp -------------------------------------------------------------------------------- /Source/libs/include/foonathan/memory/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/foonathan/memory/error.hpp -------------------------------------------------------------------------------- /Source/libs/include/foonathan/memory/fallback_allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/foonathan/memory/fallback_allocator.hpp -------------------------------------------------------------------------------- /Source/libs/include/foonathan/memory/heap_allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/foonathan/memory/heap_allocator.hpp -------------------------------------------------------------------------------- /Source/libs/include/foonathan/memory/iteration_allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/foonathan/memory/iteration_allocator.hpp -------------------------------------------------------------------------------- /Source/libs/include/foonathan/memory/joint_allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/foonathan/memory/joint_allocator.hpp -------------------------------------------------------------------------------- /Source/libs/include/foonathan/memory/malloc_allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/foonathan/memory/malloc_allocator.hpp -------------------------------------------------------------------------------- /Source/libs/include/foonathan/memory/memory_arena.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/foonathan/memory/memory_arena.hpp -------------------------------------------------------------------------------- /Source/libs/include/foonathan/memory/memory_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/foonathan/memory/memory_pool.hpp -------------------------------------------------------------------------------- /Source/libs/include/foonathan/memory/memory_pool_collection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/foonathan/memory/memory_pool_collection.hpp -------------------------------------------------------------------------------- /Source/libs/include/foonathan/memory/memory_pool_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/foonathan/memory/memory_pool_type.hpp -------------------------------------------------------------------------------- /Source/libs/include/foonathan/memory/memory_resource_adapter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/foonathan/memory/memory_resource_adapter.hpp -------------------------------------------------------------------------------- /Source/libs/include/foonathan/memory/memory_stack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/foonathan/memory/memory_stack.hpp -------------------------------------------------------------------------------- /Source/libs/include/foonathan/memory/namespace_alias.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/foonathan/memory/namespace_alias.hpp -------------------------------------------------------------------------------- /Source/libs/include/foonathan/memory/new_allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/foonathan/memory/new_allocator.hpp -------------------------------------------------------------------------------- /Source/libs/include/foonathan/memory/segregator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/foonathan/memory/segregator.hpp -------------------------------------------------------------------------------- /Source/libs/include/foonathan/memory/smart_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/foonathan/memory/smart_ptr.hpp -------------------------------------------------------------------------------- /Source/libs/include/foonathan/memory/static_allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/foonathan/memory/static_allocator.hpp -------------------------------------------------------------------------------- /Source/libs/include/foonathan/memory/std_allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/foonathan/memory/std_allocator.hpp -------------------------------------------------------------------------------- /Source/libs/include/foonathan/memory/temporary_allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/foonathan/memory/temporary_allocator.hpp -------------------------------------------------------------------------------- /Source/libs/include/foonathan/memory/threading.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/foonathan/memory/threading.hpp -------------------------------------------------------------------------------- /Source/libs/include/foonathan/memory/tracking.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/foonathan/memory/tracking.hpp -------------------------------------------------------------------------------- /Source/libs/include/foonathan/memory/virtual_memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/foonathan/memory/virtual_memory.hpp -------------------------------------------------------------------------------- /Source/libs/include/hisstools/allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/hisstools/allocator.hpp -------------------------------------------------------------------------------- /Source/libs/include/hisstools/audio_file/aifc_compression.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/hisstools/audio_file/aifc_compression.hpp -------------------------------------------------------------------------------- /Source/libs/include/hisstools/audio_file/base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/hisstools/audio_file/base.hpp -------------------------------------------------------------------------------- /Source/libs/include/hisstools/audio_file/extended_double.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/hisstools/audio_file/extended_double.hpp -------------------------------------------------------------------------------- /Source/libs/include/hisstools/audio_file/format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/hisstools/audio_file/format.hpp -------------------------------------------------------------------------------- /Source/libs/include/hisstools/audio_file/in_file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/hisstools/audio_file/in_file.hpp -------------------------------------------------------------------------------- /Source/libs/include/hisstools/audio_file/out_file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/hisstools/audio_file/out_file.hpp -------------------------------------------------------------------------------- /Source/libs/include/hisstools/audio_file/utilities.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/hisstools/audio_file/utilities.hpp -------------------------------------------------------------------------------- /Source/libs/include/hisstools/convolution/mono.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/hisstools/convolution/mono.hpp -------------------------------------------------------------------------------- /Source/libs/include/hisstools/convolution/multichannel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/hisstools/convolution/multichannel.hpp -------------------------------------------------------------------------------- /Source/libs/include/hisstools/convolution/n_to_mono.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/hisstools/convolution/n_to_mono.hpp -------------------------------------------------------------------------------- /Source/libs/include/hisstools/convolution/partitioned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/hisstools/convolution/partitioned.hpp -------------------------------------------------------------------------------- /Source/libs/include/hisstools/convolution/time_domain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/hisstools/convolution/time_domain.hpp -------------------------------------------------------------------------------- /Source/libs/include/hisstools/convolution/utilities.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/hisstools/convolution/utilities.hpp -------------------------------------------------------------------------------- /Source/libs/include/hisstools/fft/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/hisstools/fft/core.hpp -------------------------------------------------------------------------------- /Source/libs/include/hisstools/fft/fft.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/hisstools/fft/fft.hpp -------------------------------------------------------------------------------- /Source/libs/include/hisstools/fft/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/hisstools/fft/types.hpp -------------------------------------------------------------------------------- /Source/libs/include/hisstools/interpolation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/hisstools/interpolation.hpp -------------------------------------------------------------------------------- /Source/libs/include/hisstools/kernel_smoother.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/hisstools/kernel_smoother.hpp -------------------------------------------------------------------------------- /Source/libs/include/hisstools/memory_swap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/hisstools/memory_swap.hpp -------------------------------------------------------------------------------- /Source/libs/include/hisstools/namespace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/hisstools/namespace.hpp -------------------------------------------------------------------------------- /Source/libs/include/hisstools/partial_tracker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/hisstools/partial_tracker.hpp -------------------------------------------------------------------------------- /Source/libs/include/hisstools/random_generator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/hisstools/random_generator.hpp -------------------------------------------------------------------------------- /Source/libs/include/hisstools/resampler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/hisstools/resampler.hpp -------------------------------------------------------------------------------- /Source/libs/include/hisstools/simd_support.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/hisstools/simd_support.hpp -------------------------------------------------------------------------------- /Source/libs/include/hisstools/spectral_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/hisstools/spectral_functions.hpp -------------------------------------------------------------------------------- /Source/libs/include/hisstools/spectral_processor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/hisstools/spectral_processor.hpp -------------------------------------------------------------------------------- /Source/libs/include/hisstools/statistics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/hisstools/statistics.hpp -------------------------------------------------------------------------------- /Source/libs/include/hisstools/table_reader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/hisstools/table_reader.hpp -------------------------------------------------------------------------------- /Source/libs/include/hisstools/thread_locks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/hisstools/thread_locks.hpp -------------------------------------------------------------------------------- /Source/libs/include/hisstools/window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/hisstools/window.hpp -------------------------------------------------------------------------------- /Source/libs/include/nlohmann/adl_serializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/nlohmann/adl_serializer.hpp -------------------------------------------------------------------------------- /Source/libs/include/nlohmann/byte_container_with_subtype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/nlohmann/byte_container_with_subtype.hpp -------------------------------------------------------------------------------- /Source/libs/include/nlohmann/detail/abi_macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/nlohmann/detail/abi_macros.hpp -------------------------------------------------------------------------------- /Source/libs/include/nlohmann/detail/conversions/from_json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/nlohmann/detail/conversions/from_json.hpp -------------------------------------------------------------------------------- /Source/libs/include/nlohmann/detail/conversions/to_chars.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/nlohmann/detail/conversions/to_chars.hpp -------------------------------------------------------------------------------- /Source/libs/include/nlohmann/detail/conversions/to_json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/nlohmann/detail/conversions/to_json.hpp -------------------------------------------------------------------------------- /Source/libs/include/nlohmann/detail/exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/nlohmann/detail/exceptions.hpp -------------------------------------------------------------------------------- /Source/libs/include/nlohmann/detail/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/nlohmann/detail/hash.hpp -------------------------------------------------------------------------------- /Source/libs/include/nlohmann/detail/input/binary_reader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/nlohmann/detail/input/binary_reader.hpp -------------------------------------------------------------------------------- /Source/libs/include/nlohmann/detail/input/input_adapters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/nlohmann/detail/input/input_adapters.hpp -------------------------------------------------------------------------------- /Source/libs/include/nlohmann/detail/input/json_sax.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/nlohmann/detail/input/json_sax.hpp -------------------------------------------------------------------------------- /Source/libs/include/nlohmann/detail/input/lexer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/nlohmann/detail/input/lexer.hpp -------------------------------------------------------------------------------- /Source/libs/include/nlohmann/detail/input/parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/nlohmann/detail/input/parser.hpp -------------------------------------------------------------------------------- /Source/libs/include/nlohmann/detail/input/position_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/nlohmann/detail/input/position_t.hpp -------------------------------------------------------------------------------- /Source/libs/include/nlohmann/detail/iterators/iter_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/nlohmann/detail/iterators/iter_impl.hpp -------------------------------------------------------------------------------- /Source/libs/include/nlohmann/detail/iterators/iteration_proxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/nlohmann/detail/iterators/iteration_proxy.hpp -------------------------------------------------------------------------------- /Source/libs/include/nlohmann/detail/iterators/iterator_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/nlohmann/detail/iterators/iterator_traits.hpp -------------------------------------------------------------------------------- /Source/libs/include/nlohmann/detail/json_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/nlohmann/detail/json_pointer.hpp -------------------------------------------------------------------------------- /Source/libs/include/nlohmann/detail/json_ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/nlohmann/detail/json_ref.hpp -------------------------------------------------------------------------------- /Source/libs/include/nlohmann/detail/macro_scope.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/nlohmann/detail/macro_scope.hpp -------------------------------------------------------------------------------- /Source/libs/include/nlohmann/detail/macro_unscope.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/nlohmann/detail/macro_unscope.hpp -------------------------------------------------------------------------------- /Source/libs/include/nlohmann/detail/meta/call_std/begin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/nlohmann/detail/meta/call_std/begin.hpp -------------------------------------------------------------------------------- /Source/libs/include/nlohmann/detail/meta/call_std/end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/nlohmann/detail/meta/call_std/end.hpp -------------------------------------------------------------------------------- /Source/libs/include/nlohmann/detail/meta/cpp_future.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/nlohmann/detail/meta/cpp_future.hpp -------------------------------------------------------------------------------- /Source/libs/include/nlohmann/detail/meta/detected.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/nlohmann/detail/meta/detected.hpp -------------------------------------------------------------------------------- /Source/libs/include/nlohmann/detail/meta/identity_tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/nlohmann/detail/meta/identity_tag.hpp -------------------------------------------------------------------------------- /Source/libs/include/nlohmann/detail/meta/is_sax.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/nlohmann/detail/meta/is_sax.hpp -------------------------------------------------------------------------------- /Source/libs/include/nlohmann/detail/meta/std_fs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/nlohmann/detail/meta/std_fs.hpp -------------------------------------------------------------------------------- /Source/libs/include/nlohmann/detail/meta/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/nlohmann/detail/meta/type_traits.hpp -------------------------------------------------------------------------------- /Source/libs/include/nlohmann/detail/meta/void_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/nlohmann/detail/meta/void_t.hpp -------------------------------------------------------------------------------- /Source/libs/include/nlohmann/detail/output/binary_writer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/nlohmann/detail/output/binary_writer.hpp -------------------------------------------------------------------------------- /Source/libs/include/nlohmann/detail/output/output_adapters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/nlohmann/detail/output/output_adapters.hpp -------------------------------------------------------------------------------- /Source/libs/include/nlohmann/detail/output/serializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/nlohmann/detail/output/serializer.hpp -------------------------------------------------------------------------------- /Source/libs/include/nlohmann/detail/string_concat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/nlohmann/detail/string_concat.hpp -------------------------------------------------------------------------------- /Source/libs/include/nlohmann/detail/string_escape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/nlohmann/detail/string_escape.hpp -------------------------------------------------------------------------------- /Source/libs/include/nlohmann/detail/value_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/nlohmann/detail/value_t.hpp -------------------------------------------------------------------------------- /Source/libs/include/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/nlohmann/json.hpp -------------------------------------------------------------------------------- /Source/libs/include/nlohmann/json_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/nlohmann/json_fwd.hpp -------------------------------------------------------------------------------- /Source/libs/include/nlohmann/ordered_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/nlohmann/ordered_map.hpp -------------------------------------------------------------------------------- /Source/libs/include/nlohmann/thirdparty/hedley/hedley.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/nlohmann/thirdparty/hedley/hedley.hpp -------------------------------------------------------------------------------- /Source/libs/include/nlohmann/thirdparty/hedley/hedley_undef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/nlohmann/thirdparty/hedley/hedley_undef.hpp -------------------------------------------------------------------------------- /Source/libs/include/tl/optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/include/tl/optional.hpp -------------------------------------------------------------------------------- /Source/libs/lib/flucoma/linux/Debug/libflucoma_VERSION_LIB.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/lib/flucoma/linux/Debug/libflucoma_VERSION_LIB.a -------------------------------------------------------------------------------- /Source/libs/lib/flucoma/linux/Debug/libfmt.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/lib/flucoma/linux/Debug/libfmt.a -------------------------------------------------------------------------------- /Source/libs/lib/flucoma/linux/Debug/libfoonathan_memory-0.7.3.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/lib/flucoma/linux/Debug/libfoonathan_memory-0.7.3.a -------------------------------------------------------------------------------- /Source/libs/lib/flucoma/linux/Release/libflucoma_VERSION_LIB.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/lib/flucoma/linux/Release/libflucoma_VERSION_LIB.a -------------------------------------------------------------------------------- /Source/libs/lib/flucoma/linux/Release/libfmt.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/lib/flucoma/linux/Release/libfmt.a -------------------------------------------------------------------------------- /Source/libs/lib/flucoma/linux/Release/libfoonathan_memory-0.7.3.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/lib/flucoma/linux/Release/libfoonathan_memory-0.7.3.a -------------------------------------------------------------------------------- /Source/libs/lib/flucoma/macos/Debug/libflucoma_VERSION_LIB.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/lib/flucoma/macos/Debug/libflucoma_VERSION_LIB.a -------------------------------------------------------------------------------- /Source/libs/lib/flucoma/macos/Debug/libfmt.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/lib/flucoma/macos/Debug/libfmt.a -------------------------------------------------------------------------------- /Source/libs/lib/flucoma/macos/Debug/libfoonathan_memory-0.7.3.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/lib/flucoma/macos/Debug/libfoonathan_memory-0.7.3.a -------------------------------------------------------------------------------- /Source/libs/lib/flucoma/macos/Release/libflucoma_VERSION_LIB.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/lib/flucoma/macos/Release/libflucoma_VERSION_LIB.a -------------------------------------------------------------------------------- /Source/libs/lib/flucoma/macos/Release/libfmt.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/lib/flucoma/macos/Release/libfmt.a -------------------------------------------------------------------------------- /Source/libs/lib/flucoma/macos/Release/libfoonathan_memory-0.7.3.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/lib/flucoma/macos/Release/libfoonathan_memory-0.7.3.a -------------------------------------------------------------------------------- /Source/libs/lib/flucoma/windows/Debug/flucoma_VERSION_LIB.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/lib/flucoma/windows/Debug/flucoma_VERSION_LIB.lib -------------------------------------------------------------------------------- /Source/libs/lib/flucoma/windows/Debug/fmt.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/lib/flucoma/windows/Debug/fmt.lib -------------------------------------------------------------------------------- /Source/libs/lib/flucoma/windows/Debug/foonathan_memory-0.7.3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/lib/flucoma/windows/Debug/foonathan_memory-0.7.3.lib -------------------------------------------------------------------------------- /Source/libs/lib/flucoma/windows/Release/flucoma_VERSION_LIB.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/lib/flucoma/windows/Release/flucoma_VERSION_LIB.lib -------------------------------------------------------------------------------- /Source/libs/lib/flucoma/windows/Release/fmt.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Source/libs/lib/flucoma/windows/Release/fmt.lib -------------------------------------------------------------------------------- /Windows_sign_aax.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/Windows_sign_aax.sh -------------------------------------------------------------------------------- /doxygen/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/doxygen/Doxyfile -------------------------------------------------------------------------------- /doxygen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/doxygen/Makefile -------------------------------------------------------------------------------- /doxygen/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/doxygen/README.txt -------------------------------------------------------------------------------- /doxygen/extra/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/doxygen/extra/doxygen.css -------------------------------------------------------------------------------- /doxygen/extra/dynsections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/doxygen/extra/dynsections.js -------------------------------------------------------------------------------- /doxygen/extra/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GRIS-UdeM/ControlGRIS/HEAD/doxygen/extra/tabs.css --------------------------------------------------------------------------------