├── .github └── FUNDING.yml ├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── azure-pipelines.yml ├── bench.mk ├── bench ├── bench_results.md ├── benchmark.hpp ├── main.cpp ├── modulebench.cpp └── modulebench.hpp ├── doc ├── Diagrams │ ├── .gitignore │ ├── Makefile │ ├── Werner.png │ ├── pulse_circuit.png │ ├── pulse_circuit.tex │ ├── rnn_arch.png │ ├── rnn_arch.tex │ ├── warp_arch.png │ └── warp_arch.tex ├── Screenshots │ ├── ChowChorus.png │ ├── ChowDer.png │ ├── ChowFDN.png │ ├── ChowModal.png │ ├── ChowPhaserFeedback.png │ ├── ChowPhaserMod.png │ ├── ChowPulse.png │ ├── ChowRNN.png │ ├── ChowTape.png │ ├── ChowTapeChew.png │ ├── ChowTapeComp.png │ ├── ChowTapeDegrade.png │ ├── ChowTapeLoss.png │ ├── Credit.png │ ├── Warp.png │ └── Werner.png ├── bench.md └── manual.md ├── examples ├── modal.vcv └── rnn.vcv ├── gen_screenshots.sh ├── lib ├── Eigen │ ├── CMakeLists.txt │ ├── COPYING.txt │ ├── Cholesky │ ├── CholmodSupport │ ├── Core │ ├── Dense │ ├── Eigen │ ├── Eigenvalues │ ├── Geometry │ ├── Householder │ ├── IterativeLinearSolvers │ ├── Jacobi │ ├── LU │ ├── MetisSupport │ ├── OrderingMethods │ ├── PaStiXSupport │ ├── PardisoSupport │ ├── QR │ ├── QtAlignedMalloc │ ├── SPQRSupport │ ├── SVD │ ├── Sparse │ ├── SparseCholesky │ ├── SparseCore │ ├── SparseLU │ ├── SparseQR │ ├── StdDeque │ ├── StdList │ ├── StdVector │ ├── SuperLUSupport │ ├── UmfPackSupport │ └── src │ │ ├── Cholesky │ │ ├── LDLT.h │ │ ├── LLT.h │ │ └── LLT_LAPACKE.h │ │ ├── CholmodSupport │ │ └── CholmodSupport.h │ │ ├── Core │ │ ├── Array.h │ │ ├── ArrayBase.h │ │ ├── ArrayWrapper.h │ │ ├── Assign.h │ │ ├── AssignEvaluator.h │ │ ├── Assign_MKL.h │ │ ├── BandMatrix.h │ │ ├── Block.h │ │ ├── BooleanRedux.h │ │ ├── CommaInitializer.h │ │ ├── ConditionEstimator.h │ │ ├── CoreEvaluators.h │ │ ├── CoreIterators.h │ │ ├── CwiseBinaryOp.h │ │ ├── CwiseNullaryOp.h │ │ ├── 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 │ │ ├── Inverse.h │ │ ├── Map.h │ │ ├── MapBase.h │ │ ├── MathFunctions.h │ │ ├── MathFunctionsImpl.h │ │ ├── Matrix.h │ │ ├── MatrixBase.h │ │ ├── NestByValue.h │ │ ├── NoAlias.h │ │ ├── NumTraits.h │ │ ├── PermutationMatrix.h │ │ ├── PlainObjectBase.h │ │ ├── Product.h │ │ ├── ProductEvaluators.h │ │ ├── Random.h │ │ ├── Redux.h │ │ ├── Ref.h │ │ ├── Replicate.h │ │ ├── ReturnByValue.h │ │ ├── Reverse.h │ │ ├── Select.h │ │ ├── SelfAdjointView.h │ │ ├── SelfCwiseBinaryOp.h │ │ ├── Solve.h │ │ ├── SolveTriangular.h │ │ ├── SolverBase.h │ │ ├── StableNorm.h │ │ ├── Stride.h │ │ ├── Swap.h │ │ ├── Transpose.h │ │ ├── Transpositions.h │ │ ├── TriangularMatrix.h │ │ ├── VectorBlock.h │ │ ├── VectorwiseOp.h │ │ ├── Visitor.h │ │ ├── arch │ │ │ ├── AVX │ │ │ │ ├── Complex.h │ │ │ │ ├── MathFunctions.h │ │ │ │ ├── PacketMath.h │ │ │ │ └── TypeCasting.h │ │ │ ├── AVX512 │ │ │ │ ├── MathFunctions.h │ │ │ │ └── PacketMath.h │ │ │ ├── AltiVec │ │ │ │ ├── Complex.h │ │ │ │ ├── MathFunctions.h │ │ │ │ └── PacketMath.h │ │ │ ├── CUDA │ │ │ │ ├── Complex.h │ │ │ │ ├── Half.h │ │ │ │ ├── MathFunctions.h │ │ │ │ ├── PacketMath.h │ │ │ │ ├── PacketMathHalf.h │ │ │ │ └── TypeCasting.h │ │ │ ├── Default │ │ │ │ ├── ConjHelper.h │ │ │ │ └── Settings.h │ │ │ ├── NEON │ │ │ │ ├── Complex.h │ │ │ │ ├── MathFunctions.h │ │ │ │ └── PacketMath.h │ │ │ ├── SSE │ │ │ │ ├── Complex.h │ │ │ │ ├── MathFunctions.h │ │ │ │ ├── PacketMath.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 │ │ │ ├── Constants.h │ │ │ ├── DisableStupidWarnings.h │ │ │ ├── ForwardDeclarations.h │ │ │ ├── MKL_support.h │ │ │ ├── Macros.h │ │ │ ├── Memory.h │ │ │ ├── Meta.h │ │ │ ├── NonMPL2.h │ │ │ ├── ReenableStupidWarnings.h │ │ │ ├── StaticAssert.h │ │ │ └── XprHelper.h │ │ ├── Eigenvalues │ │ ├── ComplexEigenSolver.h │ │ ├── ComplexSchur.h │ │ ├── ComplexSchur_LAPACKE.h │ │ ├── EigenSolver.h │ │ ├── GeneralizedEigenSolver.h │ │ ├── GeneralizedSelfAdjointEigenSolver.h │ │ ├── HessenbergDecomposition.h │ │ ├── MatrixBaseEigenvalues.h │ │ ├── RealQZ.h │ │ ├── RealSchur.h │ │ ├── RealSchur_LAPACKE.h │ │ ├── SelfAdjointEigenSolver.h │ │ ├── SelfAdjointEigenSolver_LAPACKE.h │ │ └── Tridiagonalization.h │ │ ├── Geometry │ │ ├── AlignedBox.h │ │ ├── AngleAxis.h │ │ ├── EulerAngles.h │ │ ├── Homogeneous.h │ │ ├── Hyperplane.h │ │ ├── OrthoMethods.h │ │ ├── ParametrizedLine.h │ │ ├── Quaternion.h │ │ ├── Rotation2D.h │ │ ├── RotationBase.h │ │ ├── Scaling.h │ │ ├── Transform.h │ │ ├── Translation.h │ │ ├── Umeyama.h │ │ └── arch │ │ │ └── Geometry_SSE.h │ │ ├── Householder │ │ ├── BlockHouseholder.h │ │ ├── Householder.h │ │ └── HouseholderSequence.h │ │ ├── IterativeLinearSolvers │ │ ├── BasicPreconditioners.h │ │ ├── BiCGSTAB.h │ │ ├── ConjugateGradient.h │ │ ├── IncompleteCholesky.h │ │ ├── IncompleteLUT.h │ │ ├── IterativeSolverBase.h │ │ ├── LeastSquareConjugateGradient.h │ │ └── SolveWithGuess.h │ │ ├── Jacobi │ │ └── Jacobi.h │ │ ├── LU │ │ ├── Determinant.h │ │ ├── FullPivLU.h │ │ ├── InverseImpl.h │ │ ├── PartialPivLU.h │ │ ├── PartialPivLU_LAPACKE.h │ │ └── arch │ │ │ └── Inverse_SSE.h │ │ ├── MetisSupport │ │ └── MetisSupport.h │ │ ├── OrderingMethods │ │ ├── Amd.h │ │ ├── Eigen_Colamd.h │ │ └── Ordering.h │ │ ├── PaStiXSupport │ │ └── PaStiXSupport.h │ │ ├── PardisoSupport │ │ └── PardisoSupport.h │ │ ├── QR │ │ ├── ColPivHouseholderQR.h │ │ ├── ColPivHouseholderQR_LAPACKE.h │ │ ├── CompleteOrthogonalDecomposition.h │ │ ├── FullPivHouseholderQR.h │ │ ├── HouseholderQR.h │ │ └── HouseholderQR_LAPACKE.h │ │ ├── SPQRSupport │ │ └── SuiteSparseQRSupport.h │ │ ├── SVD │ │ ├── BDCSVD.h │ │ ├── JacobiSVD.h │ │ ├── JacobiSVD_LAPACKE.h │ │ ├── SVDBase.h │ │ └── UpperBidiagonalization.h │ │ ├── SparseCholesky │ │ ├── SimplicialCholesky.h │ │ └── SimplicialCholesky_impl.h │ │ ├── SparseCore │ │ ├── AmbiVector.h │ │ ├── CompressedStorage.h │ │ ├── ConservativeSparseSparseProduct.h │ │ ├── MappedSparseMatrix.h │ │ ├── SparseAssign.h │ │ ├── SparseBlock.h │ │ ├── SparseColEtree.h │ │ ├── SparseCompressedBase.h │ │ ├── SparseCwiseBinaryOp.h │ │ ├── SparseCwiseUnaryOp.h │ │ ├── SparseDenseProduct.h │ │ ├── SparseDiagonalProduct.h │ │ ├── SparseDot.h │ │ ├── SparseFuzzy.h │ │ ├── SparseMap.h │ │ ├── SparseMatrix.h │ │ ├── SparseMatrixBase.h │ │ ├── SparsePermutation.h │ │ ├── SparseProduct.h │ │ ├── SparseRedux.h │ │ ├── SparseRef.h │ │ ├── SparseSelfAdjointView.h │ │ ├── SparseSolverBase.h │ │ ├── SparseSparseProductWithPruning.h │ │ ├── SparseTranspose.h │ │ ├── SparseTriangularView.h │ │ ├── SparseUtil.h │ │ ├── SparseVector.h │ │ ├── SparseView.h │ │ └── TriangularSolver.h │ │ ├── SparseLU │ │ ├── SparseLU.h │ │ ├── SparseLUImpl.h │ │ ├── SparseLU_Memory.h │ │ ├── SparseLU_Structs.h │ │ ├── SparseLU_SupernodalMatrix.h │ │ ├── SparseLU_Utils.h │ │ ├── SparseLU_column_bmod.h │ │ ├── SparseLU_column_dfs.h │ │ ├── SparseLU_copy_to_ucol.h │ │ ├── SparseLU_gemm_kernel.h │ │ ├── SparseLU_heap_relax_snode.h │ │ ├── SparseLU_kernel_bmod.h │ │ ├── SparseLU_panel_bmod.h │ │ ├── SparseLU_panel_dfs.h │ │ ├── SparseLU_pivotL.h │ │ ├── SparseLU_pruneL.h │ │ └── SparseLU_relax_snode.h │ │ ├── SparseQR │ │ └── SparseQR.h │ │ ├── StlSupport │ │ ├── StdDeque.h │ │ ├── StdList.h │ │ ├── StdVector.h │ │ └── details.h │ │ ├── SuperLUSupport │ │ └── SuperLUSupport.h │ │ ├── UmfPackSupport │ │ └── UmfPackSupport.h │ │ ├── misc │ │ ├── Image.h │ │ ├── Kernel.h │ │ ├── RealSvd2x2.h │ │ ├── blas.h │ │ ├── lapack.h │ │ ├── lapacke.h │ │ └── lapacke_mangling.h │ │ └── plugins │ │ ├── ArrayCwiseBinaryOps.h │ │ ├── ArrayCwiseUnaryOps.h │ │ ├── BlockMethods.h │ │ ├── CommonCwiseBinaryOps.h │ │ ├── CommonCwiseUnaryOps.h │ │ ├── MatrixCwiseBinaryOps.h │ │ └── MatrixCwiseUnaryOps.h ├── MLUtils │ ├── Layer.h │ ├── Model.h │ ├── activation.h │ ├── dense.h │ ├── dense_eigen.h │ ├── gru.cpp │ ├── gru.h │ ├── gru_eigen.cpp │ └── gru_eigen.h └── r8lib │ ├── COPYING.txt │ ├── matrix_exponential.cpp │ ├── matrix_exponential.h │ ├── r8lib.cpp │ └── r8lib.h ├── plugin.json ├── res ├── ChowChorus.svg ├── ChowDer.svg ├── ChowFDN.svg ├── ChowModal.svg ├── ChowPhaseFB.svg ├── ChowPhaseMod.svg ├── ChowPulse.svg ├── ChowRNN.svg ├── ChowTape.svg ├── ChowTapeChew.svg ├── ChowTapeCompression.svg ├── ChowTapeDegrade.svg ├── ChowTapeLoss.svg ├── Credit.svg ├── Warp.svg ├── WernerFilter.svg ├── components │ ├── Knob.svg │ ├── KnobLarge.svg │ ├── PinwheelRust_0.svg │ ├── PinwheelRust_1.svg │ ├── PinwheelTeal_0.svg │ ├── PinwheelTeal_1.svg │ ├── Port.svg │ └── SmallKnob.svg └── fonts │ └── RobotoCondensed-Bold.ttf └── src ├── ChowChorus ├── BBDCompander.h ├── BBDDelayLine.cpp ├── BBDDelayLine.h ├── BBDFilterBank.h ├── BBDNonlin.h ├── ChowChorus.cpp └── SSEComplex.h ├── ChowDer ├── BaxandallEQ.cpp ├── BaxandallEQ.hpp ├── ChowDer.cpp └── ClippingStage.hpp ├── ChowFDN ├── ChowFDN.cpp ├── fdn.cpp ├── fdn.hpp └── mixing_matrix_utils.hpp ├── ChowModal ├── ChowModal.cpp └── Mode.hpp ├── ChowPhaser ├── ChowPhaserFB.cpp ├── ChowPhaserMod.cpp └── ldr.hpp ├── ChowPulse ├── ChowPulse.cpp └── PulseShaper.hpp ├── ChowRNN ├── ChowRNN.cpp ├── LayerJSON.cpp ├── LayerJSON.hpp ├── LayerRandomiser.cpp └── LayerRandomiser.hpp ├── ChowTape ├── compression │ └── ChowTapeCompression.cpp ├── degrade │ ├── ChowTapeChew.cpp │ ├── ChowTapeDegrade.cpp │ ├── DegradeFilter.h │ ├── DegradeNoise.h │ └── Dropout.h ├── loss │ ├── ChowTapeLoss.cpp │ └── FIRFilter.h └── tape │ ├── ChowTape.cpp │ ├── HysteresisProcessing.cpp │ └── HysteresisProcessing.hpp ├── Credit ├── Credit.cpp ├── FileUtils.hpp └── ModuleWriter.hpp ├── Warp ├── Mappings.hpp ├── NewtonRaphson.hpp ├── Warp.cpp ├── Warp.hpp ├── WarpFilter.cpp └── WarpFilter.hpp ├── Werner ├── GenSVF.cpp ├── GenSVF.hpp └── Werner.cpp ├── plugin.cpp ├── plugin.hpp └── shared ├── AAFilter.hpp ├── ChoiceQuantity.hpp ├── LevelDetector.hpp ├── ParamMap.hpp ├── SineWave.cpp ├── SineWave.h ├── SmoothedValue.h ├── VariableOversampling.hpp ├── components.hpp ├── delay_line.cpp ├── delay_line.hpp ├── delay_utils.hpp ├── iir.hpp ├── nl_biquad.hpp ├── oversampling.hpp ├── shelf_filter.hpp └── surge_FastMath.h /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /bench.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/bench.mk -------------------------------------------------------------------------------- /bench/bench_results.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/bench/bench_results.md -------------------------------------------------------------------------------- /bench/benchmark.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/bench/benchmark.hpp -------------------------------------------------------------------------------- /bench/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/bench/main.cpp -------------------------------------------------------------------------------- /bench/modulebench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/bench/modulebench.cpp -------------------------------------------------------------------------------- /bench/modulebench.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/bench/modulebench.hpp -------------------------------------------------------------------------------- /doc/Diagrams/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/doc/Diagrams/.gitignore -------------------------------------------------------------------------------- /doc/Diagrams/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/doc/Diagrams/Makefile -------------------------------------------------------------------------------- /doc/Diagrams/Werner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/doc/Diagrams/Werner.png -------------------------------------------------------------------------------- /doc/Diagrams/pulse_circuit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/doc/Diagrams/pulse_circuit.png -------------------------------------------------------------------------------- /doc/Diagrams/pulse_circuit.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/doc/Diagrams/pulse_circuit.tex -------------------------------------------------------------------------------- /doc/Diagrams/rnn_arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/doc/Diagrams/rnn_arch.png -------------------------------------------------------------------------------- /doc/Diagrams/rnn_arch.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/doc/Diagrams/rnn_arch.tex -------------------------------------------------------------------------------- /doc/Diagrams/warp_arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/doc/Diagrams/warp_arch.png -------------------------------------------------------------------------------- /doc/Diagrams/warp_arch.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/doc/Diagrams/warp_arch.tex -------------------------------------------------------------------------------- /doc/Screenshots/ChowChorus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/doc/Screenshots/ChowChorus.png -------------------------------------------------------------------------------- /doc/Screenshots/ChowDer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/doc/Screenshots/ChowDer.png -------------------------------------------------------------------------------- /doc/Screenshots/ChowFDN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/doc/Screenshots/ChowFDN.png -------------------------------------------------------------------------------- /doc/Screenshots/ChowModal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/doc/Screenshots/ChowModal.png -------------------------------------------------------------------------------- /doc/Screenshots/ChowPhaserFeedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/doc/Screenshots/ChowPhaserFeedback.png -------------------------------------------------------------------------------- /doc/Screenshots/ChowPhaserMod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/doc/Screenshots/ChowPhaserMod.png -------------------------------------------------------------------------------- /doc/Screenshots/ChowPulse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/doc/Screenshots/ChowPulse.png -------------------------------------------------------------------------------- /doc/Screenshots/ChowRNN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/doc/Screenshots/ChowRNN.png -------------------------------------------------------------------------------- /doc/Screenshots/ChowTape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/doc/Screenshots/ChowTape.png -------------------------------------------------------------------------------- /doc/Screenshots/ChowTapeChew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/doc/Screenshots/ChowTapeChew.png -------------------------------------------------------------------------------- /doc/Screenshots/ChowTapeComp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/doc/Screenshots/ChowTapeComp.png -------------------------------------------------------------------------------- /doc/Screenshots/ChowTapeDegrade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/doc/Screenshots/ChowTapeDegrade.png -------------------------------------------------------------------------------- /doc/Screenshots/ChowTapeLoss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/doc/Screenshots/ChowTapeLoss.png -------------------------------------------------------------------------------- /doc/Screenshots/Credit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/doc/Screenshots/Credit.png -------------------------------------------------------------------------------- /doc/Screenshots/Warp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/doc/Screenshots/Warp.png -------------------------------------------------------------------------------- /doc/Screenshots/Werner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/doc/Screenshots/Werner.png -------------------------------------------------------------------------------- /doc/bench.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/doc/bench.md -------------------------------------------------------------------------------- /doc/manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/doc/manual.md -------------------------------------------------------------------------------- /examples/modal.vcv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/examples/modal.vcv -------------------------------------------------------------------------------- /examples/rnn.vcv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/examples/rnn.vcv -------------------------------------------------------------------------------- /gen_screenshots.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/gen_screenshots.sh -------------------------------------------------------------------------------- /lib/Eigen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Eigen/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/COPYING.txt -------------------------------------------------------------------------------- /lib/Eigen/Cholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/Cholesky -------------------------------------------------------------------------------- /lib/Eigen/CholmodSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/CholmodSupport -------------------------------------------------------------------------------- /lib/Eigen/Core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/Core -------------------------------------------------------------------------------- /lib/Eigen/Dense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/Dense -------------------------------------------------------------------------------- /lib/Eigen/Eigen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/Eigen -------------------------------------------------------------------------------- /lib/Eigen/Eigenvalues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/Eigenvalues -------------------------------------------------------------------------------- /lib/Eigen/Geometry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/Geometry -------------------------------------------------------------------------------- /lib/Eigen/Householder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/Householder -------------------------------------------------------------------------------- /lib/Eigen/IterativeLinearSolvers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/IterativeLinearSolvers -------------------------------------------------------------------------------- /lib/Eigen/Jacobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/Jacobi -------------------------------------------------------------------------------- /lib/Eigen/LU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/LU -------------------------------------------------------------------------------- /lib/Eigen/MetisSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/MetisSupport -------------------------------------------------------------------------------- /lib/Eigen/OrderingMethods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/OrderingMethods -------------------------------------------------------------------------------- /lib/Eigen/PaStiXSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/PaStiXSupport -------------------------------------------------------------------------------- /lib/Eigen/PardisoSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/PardisoSupport -------------------------------------------------------------------------------- /lib/Eigen/QR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/QR -------------------------------------------------------------------------------- /lib/Eigen/QtAlignedMalloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/QtAlignedMalloc -------------------------------------------------------------------------------- /lib/Eigen/SPQRSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/SPQRSupport -------------------------------------------------------------------------------- /lib/Eigen/SVD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/SVD -------------------------------------------------------------------------------- /lib/Eigen/Sparse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/Sparse -------------------------------------------------------------------------------- /lib/Eigen/SparseCholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/SparseCholesky -------------------------------------------------------------------------------- /lib/Eigen/SparseCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/SparseCore -------------------------------------------------------------------------------- /lib/Eigen/SparseLU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/SparseLU -------------------------------------------------------------------------------- /lib/Eigen/SparseQR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/SparseQR -------------------------------------------------------------------------------- /lib/Eigen/StdDeque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/StdDeque -------------------------------------------------------------------------------- /lib/Eigen/StdList: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/StdList -------------------------------------------------------------------------------- /lib/Eigen/StdVector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/StdVector -------------------------------------------------------------------------------- /lib/Eigen/SuperLUSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/SuperLUSupport -------------------------------------------------------------------------------- /lib/Eigen/UmfPackSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/UmfPackSupport -------------------------------------------------------------------------------- /lib/Eigen/src/Cholesky/LDLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Cholesky/LDLT.h -------------------------------------------------------------------------------- /lib/Eigen/src/Cholesky/LLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Cholesky/LLT.h -------------------------------------------------------------------------------- /lib/Eigen/src/Cholesky/LLT_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Cholesky/LLT_LAPACKE.h -------------------------------------------------------------------------------- /lib/Eigen/src/CholmodSupport/CholmodSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/CholmodSupport/CholmodSupport.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/Array.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/ArrayBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/ArrayBase.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/ArrayWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/ArrayWrapper.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/Assign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/Assign.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/AssignEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/AssignEvaluator.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/Assign_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/Assign_MKL.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/BandMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/BandMatrix.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/Block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/Block.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/BooleanRedux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/BooleanRedux.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/CommaInitializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/CommaInitializer.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/ConditionEstimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/ConditionEstimator.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/CoreEvaluators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/CoreEvaluators.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/CoreIterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/CoreIterators.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/CwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/CwiseBinaryOp.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/CwiseNullaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/CwiseNullaryOp.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/CwiseTernaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/CwiseTernaryOp.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/CwiseUnaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/CwiseUnaryOp.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/CwiseUnaryView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/CwiseUnaryView.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/DenseBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/DenseBase.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/DenseCoeffsBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/DenseCoeffsBase.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/DenseStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/DenseStorage.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/Diagonal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/Diagonal.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/DiagonalMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/DiagonalMatrix.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/DiagonalProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/DiagonalProduct.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/Dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/Dot.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/EigenBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/EigenBase.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/ForceAlignedAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/ForceAlignedAccess.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/Fuzzy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/Fuzzy.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/GeneralProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/GeneralProduct.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/GenericPacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/GenericPacketMath.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/GlobalFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/GlobalFunctions.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/IO.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/Inverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/Inverse.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/Map.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/MapBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/MapBase.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/MathFunctions.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/MathFunctionsImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/MathFunctionsImpl.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/Matrix.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/MatrixBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/MatrixBase.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/NestByValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/NestByValue.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/NoAlias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/NoAlias.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/NumTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/NumTraits.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/PermutationMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/PermutationMatrix.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/PlainObjectBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/PlainObjectBase.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/Product.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/Product.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/ProductEvaluators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/ProductEvaluators.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/Random.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/Redux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/Redux.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/Ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/Ref.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/Replicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/Replicate.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/ReturnByValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/ReturnByValue.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/Reverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/Reverse.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/Select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/Select.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/SelfAdjointView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/SelfAdjointView.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/SelfCwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/SelfCwiseBinaryOp.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/Solve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/Solve.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/SolveTriangular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/SolveTriangular.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/SolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/SolverBase.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/StableNorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/StableNorm.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/Stride.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/Stride.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/Swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/Swap.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/Transpose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/Transpose.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/Transpositions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/Transpositions.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/TriangularMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/TriangularMatrix.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/VectorBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/VectorBlock.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/VectorwiseOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/VectorwiseOp.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/Visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/Visitor.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/arch/AVX/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/arch/AVX/Complex.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/arch/AVX/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/arch/AVX/MathFunctions.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/arch/AVX/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/arch/AVX/PacketMath.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/arch/AVX/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/arch/AVX/TypeCasting.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/arch/AVX512/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/arch/AVX512/MathFunctions.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/arch/AVX512/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/arch/AVX512/PacketMath.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/arch/AltiVec/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/arch/AltiVec/Complex.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/arch/AltiVec/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/arch/AltiVec/MathFunctions.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/arch/AltiVec/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/arch/AltiVec/PacketMath.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/arch/CUDA/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/arch/CUDA/Complex.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/arch/CUDA/Half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/arch/CUDA/Half.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/arch/CUDA/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/arch/CUDA/MathFunctions.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/arch/CUDA/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/arch/CUDA/PacketMath.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/arch/CUDA/PacketMathHalf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/arch/CUDA/PacketMathHalf.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/arch/CUDA/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/arch/CUDA/TypeCasting.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/arch/Default/ConjHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/arch/Default/ConjHelper.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/arch/Default/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/arch/Default/Settings.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/arch/NEON/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/arch/NEON/Complex.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/arch/NEON/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/arch/NEON/MathFunctions.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/arch/NEON/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/arch/NEON/PacketMath.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/arch/SSE/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/arch/SSE/Complex.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/arch/SSE/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/arch/SSE/MathFunctions.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/arch/SSE/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/arch/SSE/PacketMath.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/arch/SSE/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/arch/SSE/TypeCasting.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/arch/ZVector/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/arch/ZVector/Complex.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/arch/ZVector/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/arch/ZVector/MathFunctions.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/arch/ZVector/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/arch/ZVector/PacketMath.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/functors/AssignmentFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/functors/AssignmentFunctors.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/functors/BinaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/functors/BinaryFunctors.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/functors/NullaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/functors/NullaryFunctors.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/functors/StlFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/functors/StlFunctors.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/functors/TernaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/functors/TernaryFunctors.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/functors/UnaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/functors/UnaryFunctors.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/products/GeneralBlockPanelKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/products/GeneralBlockPanelKernel.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/products/GeneralMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/products/GeneralMatrixMatrix.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/products/GeneralMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/products/GeneralMatrixVector.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/products/Parallelizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/products/Parallelizer.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/products/SelfadjointMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/products/SelfadjointMatrixMatrix.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/products/SelfadjointMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/products/SelfadjointMatrixVector.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/products/SelfadjointProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/products/SelfadjointProduct.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/products/SelfadjointRank2Update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/products/SelfadjointRank2Update.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/products/TriangularMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/products/TriangularMatrixMatrix.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/products/TriangularMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/products/TriangularMatrixVector.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/products/TriangularSolverMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/products/TriangularSolverMatrix.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/products/TriangularSolverVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/products/TriangularSolverVector.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/util/BlasUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/util/BlasUtil.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/util/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/util/Constants.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/util/DisableStupidWarnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/util/DisableStupidWarnings.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/util/ForwardDeclarations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/util/ForwardDeclarations.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/util/MKL_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/util/MKL_support.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/util/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/util/Macros.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/util/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/util/Memory.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/util/Meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/util/Meta.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/util/NonMPL2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/util/NonMPL2.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/util/ReenableStupidWarnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/util/ReenableStupidWarnings.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/util/StaticAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/util/StaticAssert.h -------------------------------------------------------------------------------- /lib/Eigen/src/Core/util/XprHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Core/util/XprHelper.h -------------------------------------------------------------------------------- /lib/Eigen/src/Eigenvalues/ComplexEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Eigenvalues/ComplexEigenSolver.h -------------------------------------------------------------------------------- /lib/Eigen/src/Eigenvalues/ComplexSchur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Eigenvalues/ComplexSchur.h -------------------------------------------------------------------------------- /lib/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h -------------------------------------------------------------------------------- /lib/Eigen/src/Eigenvalues/EigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Eigenvalues/EigenSolver.h -------------------------------------------------------------------------------- /lib/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h -------------------------------------------------------------------------------- /lib/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h -------------------------------------------------------------------------------- /lib/Eigen/src/Eigenvalues/HessenbergDecomposition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Eigenvalues/HessenbergDecomposition.h -------------------------------------------------------------------------------- /lib/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h -------------------------------------------------------------------------------- /lib/Eigen/src/Eigenvalues/RealQZ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Eigenvalues/RealQZ.h -------------------------------------------------------------------------------- /lib/Eigen/src/Eigenvalues/RealSchur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Eigenvalues/RealSchur.h -------------------------------------------------------------------------------- /lib/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h -------------------------------------------------------------------------------- /lib/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h -------------------------------------------------------------------------------- /lib/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h -------------------------------------------------------------------------------- /lib/Eigen/src/Eigenvalues/Tridiagonalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Eigenvalues/Tridiagonalization.h -------------------------------------------------------------------------------- /lib/Eigen/src/Geometry/AlignedBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Geometry/AlignedBox.h -------------------------------------------------------------------------------- /lib/Eigen/src/Geometry/AngleAxis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Geometry/AngleAxis.h -------------------------------------------------------------------------------- /lib/Eigen/src/Geometry/EulerAngles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Geometry/EulerAngles.h -------------------------------------------------------------------------------- /lib/Eigen/src/Geometry/Homogeneous.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Geometry/Homogeneous.h -------------------------------------------------------------------------------- /lib/Eigen/src/Geometry/Hyperplane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Geometry/Hyperplane.h -------------------------------------------------------------------------------- /lib/Eigen/src/Geometry/OrthoMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Geometry/OrthoMethods.h -------------------------------------------------------------------------------- /lib/Eigen/src/Geometry/ParametrizedLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Geometry/ParametrizedLine.h -------------------------------------------------------------------------------- /lib/Eigen/src/Geometry/Quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Geometry/Quaternion.h -------------------------------------------------------------------------------- /lib/Eigen/src/Geometry/Rotation2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Geometry/Rotation2D.h -------------------------------------------------------------------------------- /lib/Eigen/src/Geometry/RotationBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Geometry/RotationBase.h -------------------------------------------------------------------------------- /lib/Eigen/src/Geometry/Scaling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Geometry/Scaling.h -------------------------------------------------------------------------------- /lib/Eigen/src/Geometry/Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Geometry/Transform.h -------------------------------------------------------------------------------- /lib/Eigen/src/Geometry/Translation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Geometry/Translation.h -------------------------------------------------------------------------------- /lib/Eigen/src/Geometry/Umeyama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Geometry/Umeyama.h -------------------------------------------------------------------------------- /lib/Eigen/src/Geometry/arch/Geometry_SSE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Geometry/arch/Geometry_SSE.h -------------------------------------------------------------------------------- /lib/Eigen/src/Householder/BlockHouseholder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Householder/BlockHouseholder.h -------------------------------------------------------------------------------- /lib/Eigen/src/Householder/Householder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Householder/Householder.h -------------------------------------------------------------------------------- /lib/Eigen/src/Householder/HouseholderSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Householder/HouseholderSequence.h -------------------------------------------------------------------------------- /lib/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h -------------------------------------------------------------------------------- /lib/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h -------------------------------------------------------------------------------- /lib/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h -------------------------------------------------------------------------------- /lib/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h -------------------------------------------------------------------------------- /lib/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h -------------------------------------------------------------------------------- /lib/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h -------------------------------------------------------------------------------- /lib/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h -------------------------------------------------------------------------------- /lib/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h -------------------------------------------------------------------------------- /lib/Eigen/src/Jacobi/Jacobi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/Jacobi/Jacobi.h -------------------------------------------------------------------------------- /lib/Eigen/src/LU/Determinant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/LU/Determinant.h -------------------------------------------------------------------------------- /lib/Eigen/src/LU/FullPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/LU/FullPivLU.h -------------------------------------------------------------------------------- /lib/Eigen/src/LU/InverseImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/LU/InverseImpl.h -------------------------------------------------------------------------------- /lib/Eigen/src/LU/PartialPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/LU/PartialPivLU.h -------------------------------------------------------------------------------- /lib/Eigen/src/LU/PartialPivLU_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/LU/PartialPivLU_LAPACKE.h -------------------------------------------------------------------------------- /lib/Eigen/src/LU/arch/Inverse_SSE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/LU/arch/Inverse_SSE.h -------------------------------------------------------------------------------- /lib/Eigen/src/MetisSupport/MetisSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/MetisSupport/MetisSupport.h -------------------------------------------------------------------------------- /lib/Eigen/src/OrderingMethods/Amd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/OrderingMethods/Amd.h -------------------------------------------------------------------------------- /lib/Eigen/src/OrderingMethods/Eigen_Colamd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/OrderingMethods/Eigen_Colamd.h -------------------------------------------------------------------------------- /lib/Eigen/src/OrderingMethods/Ordering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/OrderingMethods/Ordering.h -------------------------------------------------------------------------------- /lib/Eigen/src/PaStiXSupport/PaStiXSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/PaStiXSupport/PaStiXSupport.h -------------------------------------------------------------------------------- /lib/Eigen/src/PardisoSupport/PardisoSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/PardisoSupport/PardisoSupport.h -------------------------------------------------------------------------------- /lib/Eigen/src/QR/ColPivHouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/QR/ColPivHouseholderQR.h -------------------------------------------------------------------------------- /lib/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h -------------------------------------------------------------------------------- /lib/Eigen/src/QR/CompleteOrthogonalDecomposition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/QR/CompleteOrthogonalDecomposition.h -------------------------------------------------------------------------------- /lib/Eigen/src/QR/FullPivHouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/QR/FullPivHouseholderQR.h -------------------------------------------------------------------------------- /lib/Eigen/src/QR/HouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/QR/HouseholderQR.h -------------------------------------------------------------------------------- /lib/Eigen/src/QR/HouseholderQR_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/QR/HouseholderQR_LAPACKE.h -------------------------------------------------------------------------------- /lib/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h -------------------------------------------------------------------------------- /lib/Eigen/src/SVD/BDCSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SVD/BDCSVD.h -------------------------------------------------------------------------------- /lib/Eigen/src/SVD/JacobiSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SVD/JacobiSVD.h -------------------------------------------------------------------------------- /lib/Eigen/src/SVD/JacobiSVD_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SVD/JacobiSVD_LAPACKE.h -------------------------------------------------------------------------------- /lib/Eigen/src/SVD/SVDBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SVD/SVDBase.h -------------------------------------------------------------------------------- /lib/Eigen/src/SVD/UpperBidiagonalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SVD/UpperBidiagonalization.h -------------------------------------------------------------------------------- /lib/Eigen/src/SparseCholesky/SimplicialCholesky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SparseCholesky/SimplicialCholesky.h -------------------------------------------------------------------------------- /lib/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h -------------------------------------------------------------------------------- /lib/Eigen/src/SparseCore/AmbiVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SparseCore/AmbiVector.h -------------------------------------------------------------------------------- /lib/Eigen/src/SparseCore/CompressedStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SparseCore/CompressedStorage.h -------------------------------------------------------------------------------- /lib/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h -------------------------------------------------------------------------------- /lib/Eigen/src/SparseCore/MappedSparseMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SparseCore/MappedSparseMatrix.h -------------------------------------------------------------------------------- /lib/Eigen/src/SparseCore/SparseAssign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SparseCore/SparseAssign.h -------------------------------------------------------------------------------- /lib/Eigen/src/SparseCore/SparseBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SparseCore/SparseBlock.h -------------------------------------------------------------------------------- /lib/Eigen/src/SparseCore/SparseColEtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SparseCore/SparseColEtree.h -------------------------------------------------------------------------------- /lib/Eigen/src/SparseCore/SparseCompressedBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SparseCore/SparseCompressedBase.h -------------------------------------------------------------------------------- /lib/Eigen/src/SparseCore/SparseCwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SparseCore/SparseCwiseBinaryOp.h -------------------------------------------------------------------------------- /lib/Eigen/src/SparseCore/SparseCwiseUnaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SparseCore/SparseCwiseUnaryOp.h -------------------------------------------------------------------------------- /lib/Eigen/src/SparseCore/SparseDenseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SparseCore/SparseDenseProduct.h -------------------------------------------------------------------------------- /lib/Eigen/src/SparseCore/SparseDiagonalProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SparseCore/SparseDiagonalProduct.h -------------------------------------------------------------------------------- /lib/Eigen/src/SparseCore/SparseDot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SparseCore/SparseDot.h -------------------------------------------------------------------------------- /lib/Eigen/src/SparseCore/SparseFuzzy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SparseCore/SparseFuzzy.h -------------------------------------------------------------------------------- /lib/Eigen/src/SparseCore/SparseMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SparseCore/SparseMap.h -------------------------------------------------------------------------------- /lib/Eigen/src/SparseCore/SparseMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SparseCore/SparseMatrix.h -------------------------------------------------------------------------------- /lib/Eigen/src/SparseCore/SparseMatrixBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SparseCore/SparseMatrixBase.h -------------------------------------------------------------------------------- /lib/Eigen/src/SparseCore/SparsePermutation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SparseCore/SparsePermutation.h -------------------------------------------------------------------------------- /lib/Eigen/src/SparseCore/SparseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SparseCore/SparseProduct.h -------------------------------------------------------------------------------- /lib/Eigen/src/SparseCore/SparseRedux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SparseCore/SparseRedux.h -------------------------------------------------------------------------------- /lib/Eigen/src/SparseCore/SparseRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SparseCore/SparseRef.h -------------------------------------------------------------------------------- /lib/Eigen/src/SparseCore/SparseSelfAdjointView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SparseCore/SparseSelfAdjointView.h -------------------------------------------------------------------------------- /lib/Eigen/src/SparseCore/SparseSolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SparseCore/SparseSolverBase.h -------------------------------------------------------------------------------- /lib/Eigen/src/SparseCore/SparseSparseProductWithPruning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SparseCore/SparseSparseProductWithPruning.h -------------------------------------------------------------------------------- /lib/Eigen/src/SparseCore/SparseTranspose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SparseCore/SparseTranspose.h -------------------------------------------------------------------------------- /lib/Eigen/src/SparseCore/SparseTriangularView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SparseCore/SparseTriangularView.h -------------------------------------------------------------------------------- /lib/Eigen/src/SparseCore/SparseUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SparseCore/SparseUtil.h -------------------------------------------------------------------------------- /lib/Eigen/src/SparseCore/SparseVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SparseCore/SparseVector.h -------------------------------------------------------------------------------- /lib/Eigen/src/SparseCore/SparseView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SparseCore/SparseView.h -------------------------------------------------------------------------------- /lib/Eigen/src/SparseCore/TriangularSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SparseCore/TriangularSolver.h -------------------------------------------------------------------------------- /lib/Eigen/src/SparseLU/SparseLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SparseLU/SparseLU.h -------------------------------------------------------------------------------- /lib/Eigen/src/SparseLU/SparseLUImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SparseLU/SparseLUImpl.h -------------------------------------------------------------------------------- /lib/Eigen/src/SparseLU/SparseLU_Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SparseLU/SparseLU_Memory.h -------------------------------------------------------------------------------- /lib/Eigen/src/SparseLU/SparseLU_Structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SparseLU/SparseLU_Structs.h -------------------------------------------------------------------------------- /lib/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h -------------------------------------------------------------------------------- /lib/Eigen/src/SparseLU/SparseLU_Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SparseLU/SparseLU_Utils.h -------------------------------------------------------------------------------- /lib/Eigen/src/SparseLU/SparseLU_column_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SparseLU/SparseLU_column_bmod.h -------------------------------------------------------------------------------- /lib/Eigen/src/SparseLU/SparseLU_column_dfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SparseLU/SparseLU_column_dfs.h -------------------------------------------------------------------------------- /lib/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h -------------------------------------------------------------------------------- /lib/Eigen/src/SparseLU/SparseLU_gemm_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SparseLU/SparseLU_gemm_kernel.h -------------------------------------------------------------------------------- /lib/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h -------------------------------------------------------------------------------- /lib/Eigen/src/SparseLU/SparseLU_kernel_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SparseLU/SparseLU_kernel_bmod.h -------------------------------------------------------------------------------- /lib/Eigen/src/SparseLU/SparseLU_panel_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SparseLU/SparseLU_panel_bmod.h -------------------------------------------------------------------------------- /lib/Eigen/src/SparseLU/SparseLU_panel_dfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SparseLU/SparseLU_panel_dfs.h -------------------------------------------------------------------------------- /lib/Eigen/src/SparseLU/SparseLU_pivotL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SparseLU/SparseLU_pivotL.h -------------------------------------------------------------------------------- /lib/Eigen/src/SparseLU/SparseLU_pruneL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SparseLU/SparseLU_pruneL.h -------------------------------------------------------------------------------- /lib/Eigen/src/SparseLU/SparseLU_relax_snode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SparseLU/SparseLU_relax_snode.h -------------------------------------------------------------------------------- /lib/Eigen/src/SparseQR/SparseQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SparseQR/SparseQR.h -------------------------------------------------------------------------------- /lib/Eigen/src/StlSupport/StdDeque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/StlSupport/StdDeque.h -------------------------------------------------------------------------------- /lib/Eigen/src/StlSupport/StdList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/StlSupport/StdList.h -------------------------------------------------------------------------------- /lib/Eigen/src/StlSupport/StdVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/StlSupport/StdVector.h -------------------------------------------------------------------------------- /lib/Eigen/src/StlSupport/details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/StlSupport/details.h -------------------------------------------------------------------------------- /lib/Eigen/src/SuperLUSupport/SuperLUSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/SuperLUSupport/SuperLUSupport.h -------------------------------------------------------------------------------- /lib/Eigen/src/UmfPackSupport/UmfPackSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/UmfPackSupport/UmfPackSupport.h -------------------------------------------------------------------------------- /lib/Eigen/src/misc/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/misc/Image.h -------------------------------------------------------------------------------- /lib/Eigen/src/misc/Kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/misc/Kernel.h -------------------------------------------------------------------------------- /lib/Eigen/src/misc/RealSvd2x2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/misc/RealSvd2x2.h -------------------------------------------------------------------------------- /lib/Eigen/src/misc/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/misc/blas.h -------------------------------------------------------------------------------- /lib/Eigen/src/misc/lapack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/misc/lapack.h -------------------------------------------------------------------------------- /lib/Eigen/src/misc/lapacke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/misc/lapacke.h -------------------------------------------------------------------------------- /lib/Eigen/src/misc/lapacke_mangling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/misc/lapacke_mangling.h -------------------------------------------------------------------------------- /lib/Eigen/src/plugins/ArrayCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/plugins/ArrayCwiseBinaryOps.h -------------------------------------------------------------------------------- /lib/Eigen/src/plugins/ArrayCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/plugins/ArrayCwiseUnaryOps.h -------------------------------------------------------------------------------- /lib/Eigen/src/plugins/BlockMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/plugins/BlockMethods.h -------------------------------------------------------------------------------- /lib/Eigen/src/plugins/CommonCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/plugins/CommonCwiseBinaryOps.h -------------------------------------------------------------------------------- /lib/Eigen/src/plugins/CommonCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/plugins/CommonCwiseUnaryOps.h -------------------------------------------------------------------------------- /lib/Eigen/src/plugins/MatrixCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/plugins/MatrixCwiseBinaryOps.h -------------------------------------------------------------------------------- /lib/Eigen/src/plugins/MatrixCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/Eigen/src/plugins/MatrixCwiseUnaryOps.h -------------------------------------------------------------------------------- /lib/MLUtils/Layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/MLUtils/Layer.h -------------------------------------------------------------------------------- /lib/MLUtils/Model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/MLUtils/Model.h -------------------------------------------------------------------------------- /lib/MLUtils/activation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/MLUtils/activation.h -------------------------------------------------------------------------------- /lib/MLUtils/dense.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/MLUtils/dense.h -------------------------------------------------------------------------------- /lib/MLUtils/dense_eigen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/MLUtils/dense_eigen.h -------------------------------------------------------------------------------- /lib/MLUtils/gru.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/MLUtils/gru.cpp -------------------------------------------------------------------------------- /lib/MLUtils/gru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/MLUtils/gru.h -------------------------------------------------------------------------------- /lib/MLUtils/gru_eigen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/MLUtils/gru_eigen.cpp -------------------------------------------------------------------------------- /lib/MLUtils/gru_eigen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/MLUtils/gru_eigen.h -------------------------------------------------------------------------------- /lib/r8lib/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/r8lib/COPYING.txt -------------------------------------------------------------------------------- /lib/r8lib/matrix_exponential.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/r8lib/matrix_exponential.cpp -------------------------------------------------------------------------------- /lib/r8lib/matrix_exponential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/r8lib/matrix_exponential.h -------------------------------------------------------------------------------- /lib/r8lib/r8lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/r8lib/r8lib.cpp -------------------------------------------------------------------------------- /lib/r8lib/r8lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/lib/r8lib/r8lib.h -------------------------------------------------------------------------------- /plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/plugin.json -------------------------------------------------------------------------------- /res/ChowChorus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/res/ChowChorus.svg -------------------------------------------------------------------------------- /res/ChowDer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/res/ChowDer.svg -------------------------------------------------------------------------------- /res/ChowFDN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/res/ChowFDN.svg -------------------------------------------------------------------------------- /res/ChowModal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/res/ChowModal.svg -------------------------------------------------------------------------------- /res/ChowPhaseFB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/res/ChowPhaseFB.svg -------------------------------------------------------------------------------- /res/ChowPhaseMod.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/res/ChowPhaseMod.svg -------------------------------------------------------------------------------- /res/ChowPulse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/res/ChowPulse.svg -------------------------------------------------------------------------------- /res/ChowRNN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/res/ChowRNN.svg -------------------------------------------------------------------------------- /res/ChowTape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/res/ChowTape.svg -------------------------------------------------------------------------------- /res/ChowTapeChew.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/res/ChowTapeChew.svg -------------------------------------------------------------------------------- /res/ChowTapeCompression.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/res/ChowTapeCompression.svg -------------------------------------------------------------------------------- /res/ChowTapeDegrade.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/res/ChowTapeDegrade.svg -------------------------------------------------------------------------------- /res/ChowTapeLoss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/res/ChowTapeLoss.svg -------------------------------------------------------------------------------- /res/Credit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/res/Credit.svg -------------------------------------------------------------------------------- /res/Warp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/res/Warp.svg -------------------------------------------------------------------------------- /res/WernerFilter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/res/WernerFilter.svg -------------------------------------------------------------------------------- /res/components/Knob.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/res/components/Knob.svg -------------------------------------------------------------------------------- /res/components/KnobLarge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/res/components/KnobLarge.svg -------------------------------------------------------------------------------- /res/components/PinwheelRust_0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/res/components/PinwheelRust_0.svg -------------------------------------------------------------------------------- /res/components/PinwheelRust_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/res/components/PinwheelRust_1.svg -------------------------------------------------------------------------------- /res/components/PinwheelTeal_0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/res/components/PinwheelTeal_0.svg -------------------------------------------------------------------------------- /res/components/PinwheelTeal_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/res/components/PinwheelTeal_1.svg -------------------------------------------------------------------------------- /res/components/Port.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/res/components/Port.svg -------------------------------------------------------------------------------- /res/components/SmallKnob.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/res/components/SmallKnob.svg -------------------------------------------------------------------------------- /res/fonts/RobotoCondensed-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/res/fonts/RobotoCondensed-Bold.ttf -------------------------------------------------------------------------------- /src/ChowChorus/BBDCompander.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/ChowChorus/BBDCompander.h -------------------------------------------------------------------------------- /src/ChowChorus/BBDDelayLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/ChowChorus/BBDDelayLine.cpp -------------------------------------------------------------------------------- /src/ChowChorus/BBDDelayLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/ChowChorus/BBDDelayLine.h -------------------------------------------------------------------------------- /src/ChowChorus/BBDFilterBank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/ChowChorus/BBDFilterBank.h -------------------------------------------------------------------------------- /src/ChowChorus/BBDNonlin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/ChowChorus/BBDNonlin.h -------------------------------------------------------------------------------- /src/ChowChorus/ChowChorus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/ChowChorus/ChowChorus.cpp -------------------------------------------------------------------------------- /src/ChowChorus/SSEComplex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/ChowChorus/SSEComplex.h -------------------------------------------------------------------------------- /src/ChowDer/BaxandallEQ.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/ChowDer/BaxandallEQ.cpp -------------------------------------------------------------------------------- /src/ChowDer/BaxandallEQ.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/ChowDer/BaxandallEQ.hpp -------------------------------------------------------------------------------- /src/ChowDer/ChowDer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/ChowDer/ChowDer.cpp -------------------------------------------------------------------------------- /src/ChowDer/ClippingStage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/ChowDer/ClippingStage.hpp -------------------------------------------------------------------------------- /src/ChowFDN/ChowFDN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/ChowFDN/ChowFDN.cpp -------------------------------------------------------------------------------- /src/ChowFDN/fdn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/ChowFDN/fdn.cpp -------------------------------------------------------------------------------- /src/ChowFDN/fdn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/ChowFDN/fdn.hpp -------------------------------------------------------------------------------- /src/ChowFDN/mixing_matrix_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/ChowFDN/mixing_matrix_utils.hpp -------------------------------------------------------------------------------- /src/ChowModal/ChowModal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/ChowModal/ChowModal.cpp -------------------------------------------------------------------------------- /src/ChowModal/Mode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/ChowModal/Mode.hpp -------------------------------------------------------------------------------- /src/ChowPhaser/ChowPhaserFB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/ChowPhaser/ChowPhaserFB.cpp -------------------------------------------------------------------------------- /src/ChowPhaser/ChowPhaserMod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/ChowPhaser/ChowPhaserMod.cpp -------------------------------------------------------------------------------- /src/ChowPhaser/ldr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/ChowPhaser/ldr.hpp -------------------------------------------------------------------------------- /src/ChowPulse/ChowPulse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/ChowPulse/ChowPulse.cpp -------------------------------------------------------------------------------- /src/ChowPulse/PulseShaper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/ChowPulse/PulseShaper.hpp -------------------------------------------------------------------------------- /src/ChowRNN/ChowRNN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/ChowRNN/ChowRNN.cpp -------------------------------------------------------------------------------- /src/ChowRNN/LayerJSON.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/ChowRNN/LayerJSON.cpp -------------------------------------------------------------------------------- /src/ChowRNN/LayerJSON.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/ChowRNN/LayerJSON.hpp -------------------------------------------------------------------------------- /src/ChowRNN/LayerRandomiser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/ChowRNN/LayerRandomiser.cpp -------------------------------------------------------------------------------- /src/ChowRNN/LayerRandomiser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/ChowRNN/LayerRandomiser.hpp -------------------------------------------------------------------------------- /src/ChowTape/compression/ChowTapeCompression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/ChowTape/compression/ChowTapeCompression.cpp -------------------------------------------------------------------------------- /src/ChowTape/degrade/ChowTapeChew.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/ChowTape/degrade/ChowTapeChew.cpp -------------------------------------------------------------------------------- /src/ChowTape/degrade/ChowTapeDegrade.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/ChowTape/degrade/ChowTapeDegrade.cpp -------------------------------------------------------------------------------- /src/ChowTape/degrade/DegradeFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/ChowTape/degrade/DegradeFilter.h -------------------------------------------------------------------------------- /src/ChowTape/degrade/DegradeNoise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/ChowTape/degrade/DegradeNoise.h -------------------------------------------------------------------------------- /src/ChowTape/degrade/Dropout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/ChowTape/degrade/Dropout.h -------------------------------------------------------------------------------- /src/ChowTape/loss/ChowTapeLoss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/ChowTape/loss/ChowTapeLoss.cpp -------------------------------------------------------------------------------- /src/ChowTape/loss/FIRFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/ChowTape/loss/FIRFilter.h -------------------------------------------------------------------------------- /src/ChowTape/tape/ChowTape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/ChowTape/tape/ChowTape.cpp -------------------------------------------------------------------------------- /src/ChowTape/tape/HysteresisProcessing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/ChowTape/tape/HysteresisProcessing.cpp -------------------------------------------------------------------------------- /src/ChowTape/tape/HysteresisProcessing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/ChowTape/tape/HysteresisProcessing.hpp -------------------------------------------------------------------------------- /src/Credit/Credit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/Credit/Credit.cpp -------------------------------------------------------------------------------- /src/Credit/FileUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/Credit/FileUtils.hpp -------------------------------------------------------------------------------- /src/Credit/ModuleWriter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/Credit/ModuleWriter.hpp -------------------------------------------------------------------------------- /src/Warp/Mappings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/Warp/Mappings.hpp -------------------------------------------------------------------------------- /src/Warp/NewtonRaphson.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/Warp/NewtonRaphson.hpp -------------------------------------------------------------------------------- /src/Warp/Warp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/Warp/Warp.cpp -------------------------------------------------------------------------------- /src/Warp/Warp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/Warp/Warp.hpp -------------------------------------------------------------------------------- /src/Warp/WarpFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/Warp/WarpFilter.cpp -------------------------------------------------------------------------------- /src/Warp/WarpFilter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/Warp/WarpFilter.hpp -------------------------------------------------------------------------------- /src/Werner/GenSVF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/Werner/GenSVF.cpp -------------------------------------------------------------------------------- /src/Werner/GenSVF.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/Werner/GenSVF.hpp -------------------------------------------------------------------------------- /src/Werner/Werner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/Werner/Werner.cpp -------------------------------------------------------------------------------- /src/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/plugin.cpp -------------------------------------------------------------------------------- /src/plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/plugin.hpp -------------------------------------------------------------------------------- /src/shared/AAFilter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/shared/AAFilter.hpp -------------------------------------------------------------------------------- /src/shared/ChoiceQuantity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/shared/ChoiceQuantity.hpp -------------------------------------------------------------------------------- /src/shared/LevelDetector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/shared/LevelDetector.hpp -------------------------------------------------------------------------------- /src/shared/ParamMap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/shared/ParamMap.hpp -------------------------------------------------------------------------------- /src/shared/SineWave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/shared/SineWave.cpp -------------------------------------------------------------------------------- /src/shared/SineWave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/shared/SineWave.h -------------------------------------------------------------------------------- /src/shared/SmoothedValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/shared/SmoothedValue.h -------------------------------------------------------------------------------- /src/shared/VariableOversampling.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/shared/VariableOversampling.hpp -------------------------------------------------------------------------------- /src/shared/components.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/shared/components.hpp -------------------------------------------------------------------------------- /src/shared/delay_line.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/shared/delay_line.cpp -------------------------------------------------------------------------------- /src/shared/delay_line.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/shared/delay_line.hpp -------------------------------------------------------------------------------- /src/shared/delay_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/shared/delay_utils.hpp -------------------------------------------------------------------------------- /src/shared/iir.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/shared/iir.hpp -------------------------------------------------------------------------------- /src/shared/nl_biquad.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/shared/nl_biquad.hpp -------------------------------------------------------------------------------- /src/shared/oversampling.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/shared/oversampling.hpp -------------------------------------------------------------------------------- /src/shared/shelf_filter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/shared/shelf_filter.hpp -------------------------------------------------------------------------------- /src/shared/surge_FastMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowDSP-VCV/HEAD/src/shared/surge_FastMath.h --------------------------------------------------------------------------------