├── .gitignore ├── Data ├── Misc │ ├── MuscleVAE_force.txt │ ├── drawstuff │ │ ├── arrow.obj │ │ ├── checkered.ppm │ │ ├── ground.ppm │ │ ├── sky.ppm │ │ ├── soft_checkered.ppm │ │ └── wood.ppm │ ├── manual_muscle_kp4.txt │ ├── muscle_character.json │ └── muscle_character_full.json ├── NNModel │ ├── config.yml │ └── test.yml ├── Parameters │ ├── muscle.yml │ └── test.yml └── ReferenceData │ └── walk_run_jump │ ├── lafan_jump.bvh │ ├── lafan_run.bvh │ └── lafan_walk.bvh ├── DrawStuffUtils ├── __init__.py └── init_viewer.py ├── ModifyODESrc ├── .gitignore ├── CMakeLists.txt ├── DrawStuffWorld.pxd ├── EigenWrapper.pxd ├── ModifyODE.pxd ├── MotionUtils.pxd ├── OPCODE │ ├── Ice │ │ ├── IceAABB.cpp │ │ ├── IceAABB.h │ │ ├── IceAxes.h │ │ ├── IceBoundingSphere.h │ │ ├── IceContainer.cpp │ │ ├── IceContainer.h │ │ ├── IceFPU.h │ │ ├── IceHPoint.cpp │ │ ├── IceHPoint.h │ │ ├── IceIndexedTriangle.cpp │ │ ├── IceIndexedTriangle.h │ │ ├── IceLSS.h │ │ ├── IceMatrix3x3.cpp │ │ ├── IceMatrix3x3.h │ │ ├── IceMatrix4x4.cpp │ │ ├── IceMatrix4x4.h │ │ ├── IceMemoryMacros.h │ │ ├── IceOBB.cpp │ │ ├── IceOBB.h │ │ ├── IcePairs.h │ │ ├── IcePlane.cpp │ │ ├── IcePlane.h │ │ ├── IcePoint.cpp │ │ ├── IcePoint.h │ │ ├── IcePreprocessor.h │ │ ├── IceRandom.cpp │ │ ├── IceRandom.h │ │ ├── IceRay.cpp │ │ ├── IceRay.h │ │ ├── IceRevisitedRadix.cpp │ │ ├── IceRevisitedRadix.h │ │ ├── IceSegment.cpp │ │ ├── IceSegment.h │ │ ├── IceTriList.h │ │ ├── IceTriangle.cpp │ │ ├── IceTriangle.h │ │ ├── IceTypes.h │ │ ├── IceUtils.cpp │ │ └── IceUtils.h │ ├── OPC_AABBCollider.cpp │ ├── OPC_AABBCollider.h │ ├── OPC_AABBTree.cpp │ ├── OPC_AABBTree.h │ ├── OPC_BaseModel.cpp │ ├── OPC_BaseModel.h │ ├── OPC_BoxBoxOverlap.h │ ├── OPC_Collider.cpp │ ├── OPC_Collider.h │ ├── OPC_Common.cpp │ ├── OPC_Common.h │ ├── OPC_HybridModel.cpp │ ├── OPC_HybridModel.h │ ├── OPC_IceHook.h │ ├── OPC_LSSAABBOverlap.h │ ├── OPC_LSSCollider.cpp │ ├── OPC_LSSCollider.h │ ├── OPC_LSSTriOverlap.h │ ├── OPC_MeshInterface.cpp │ ├── OPC_MeshInterface.h │ ├── OPC_Model.cpp │ ├── OPC_Model.h │ ├── OPC_OBBCollider.cpp │ ├── OPC_OBBCollider.h │ ├── OPC_OptimizedTree.cpp │ ├── OPC_OptimizedTree.h │ ├── OPC_Picking.cpp │ ├── OPC_Picking.h │ ├── OPC_PlanesAABBOverlap.h │ ├── OPC_PlanesCollider.cpp │ ├── OPC_PlanesCollider.h │ ├── OPC_PlanesTriOverlap.h │ ├── OPC_RayAABBOverlap.h │ ├── OPC_RayCollider.cpp │ ├── OPC_RayCollider.h │ ├── OPC_RayTriOverlap.h │ ├── OPC_Settings.h │ ├── OPC_SphereAABBOverlap.h │ ├── OPC_SphereCollider.cpp │ ├── OPC_SphereCollider.h │ ├── OPC_SphereTriOverlap.h │ ├── OPC_TreeBuilders.cpp │ ├── OPC_TreeBuilders.h │ ├── OPC_TreeCollider.cpp │ ├── OPC_TreeCollider.h │ ├── OPC_TriBoxOverlap.h │ ├── OPC_TriTriOverlap.h │ ├── OPC_VolumeCollider.cpp │ ├── OPC_VolumeCollider.h │ ├── Opcode.cpp │ ├── Opcode.h │ └── Stdafx.h ├── Utils │ ├── EigenWrapper.cpp │ ├── MixQuaternion.cpp │ ├── MixQuaternion.h │ ├── PDControlAdd.cpp │ ├── PDControlAdd.h │ ├── QuaternionWithGrad.cpp │ ├── QuaternionWithGrad.h │ ├── inertia.cpp │ ├── inertia.h │ ├── joint_local_quat_batch.cpp │ └── joint_local_quat_batch.h ├── VclSimuBackend.pyx ├── ZERO_CHECK.proj ├── clear.cmd ├── clear.sh ├── drawstuff │ ├── Makefile.am │ ├── Makefile.in │ ├── Visualizer │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ └── drawByWorld.cpp │ ├── dstest │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ └── dstest.cpp │ └── src │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── drawstuff.cpp │ │ ├── drawstuffWrapper.cpp │ │ ├── internal.h │ │ ├── resource.h │ │ ├── resources.rc │ │ └── windows.cpp ├── include │ ├── drawstuff │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── drawstuff.h │ │ ├── drawstuffWrapper.h │ │ └── version.h │ └── ode │ │ ├── collision.h │ │ ├── collision_space.h │ │ ├── collision_trimesh.h │ │ ├── common.h │ │ ├── compatibility.h │ │ ├── contact.h │ │ ├── dampedstepcommon.h │ │ ├── error.h │ │ ├── export-dif.h │ │ ├── extutils.h │ │ ├── feature_info.h │ │ ├── mass.h │ │ ├── matrix.h │ │ ├── memory.h │ │ ├── misc.h │ │ ├── objects.h │ │ ├── ode.h │ │ ├── odeconfig.h │ │ ├── odecpp.h │ │ ├── odecpp_collision.h │ │ ├── odeinit.h │ │ ├── odemath.h │ │ ├── odemath_legacy.h │ │ ├── rotation.h │ │ └── timer.h ├── libccd │ └── src │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── alloc.c │ │ ├── ccd.c │ │ ├── ccd │ │ ├── alloc.h │ │ ├── ccd.h │ │ ├── compiler.h │ │ ├── dbg.h │ │ ├── list.h │ │ ├── polytope.h │ │ ├── precision.h.in │ │ ├── quat.h │ │ ├── simplex.h │ │ ├── support.h │ │ └── vec3.h │ │ ├── config.h.in │ │ ├── custom │ │ └── ccdcustom │ │ │ ├── quat.h │ │ │ └── vec3.h │ │ ├── mpr.c │ │ ├── polytope.c │ │ ├── support.c │ │ ├── testsuites │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── bench.c │ │ ├── bench2.c │ │ ├── boxbox.c │ │ ├── boxbox.h │ │ ├── boxcyl.c │ │ ├── boxcyl.h │ │ ├── common.c │ │ ├── common.h │ │ ├── cu │ │ │ ├── COPYING │ │ │ ├── COPYING.LESSER │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── cu.c │ │ │ └── cu.h │ │ ├── cylcyl.c │ │ ├── cylcyl.h │ │ ├── main.c │ │ ├── mpr_boxbox.c │ │ ├── mpr_boxbox.h │ │ ├── mpr_boxcyl.c │ │ ├── mpr_boxcyl.h │ │ ├── mpr_cylcyl.c │ │ ├── mpr_cylcyl.h │ │ ├── polytope.c │ │ ├── polytope.h │ │ ├── spheresphere.c │ │ ├── spheresphere.h │ │ ├── support.c │ │ ├── support.h │ │ ├── vec3.c │ │ └── vec3.h │ │ └── vec3.c ├── readme.md ├── setup.py └── src │ ├── .gitignore │ ├── array.cpp │ ├── array.h │ ├── box.cpp │ ├── capsule.cpp │ ├── collision_cylinder_box.cpp │ ├── collision_cylinder_plane.cpp │ ├── collision_cylinder_sphere.cpp │ ├── collision_cylinder_trimesh.cpp │ ├── collision_kernel.cpp │ ├── collision_kernel.h │ ├── collision_libccd.cpp.backup │ ├── collision_libccd.h.backup │ ├── collision_quadtreespace.cpp │ ├── collision_sapspace.cpp │ ├── collision_space.cpp │ ├── collision_space_internal.h │ ├── collision_std.h │ ├── collision_transform.cpp │ ├── collision_transform.h │ ├── collision_trimesh_box.cpp │ ├── collision_trimesh_ccylinder.cpp │ ├── collision_trimesh_colliders.h │ ├── collision_trimesh_disabled.cpp │ ├── collision_trimesh_distance.cpp │ ├── collision_trimesh_gimpact.cpp │ ├── collision_trimesh_internal.h │ ├── collision_trimesh_opcode.cpp │ ├── collision_trimesh_plane.cpp │ ├── collision_trimesh_ray.cpp │ ├── collision_trimesh_sphere.cpp │ ├── collision_trimesh_trimesh.cpp │ ├── collision_trimesh_trimesh_new.cpp │ ├── collision_util.cpp │ ├── collision_util.h │ ├── config.h │ ├── convex.cpp │ ├── cylinder.cpp │ ├── dampedstep.cpp │ ├── dampedstep.h │ ├── dampedstepcommon.cpp │ ├── dampedstepwithinfo.cpp │ ├── error.cpp │ ├── export-dif.cpp │ ├── extutils.cpp │ ├── fastdot.c │ ├── fastldlt.c │ ├── fastlsolve.c │ ├── fastltsolve.c │ ├── heightfield.cpp │ ├── heightfield.h │ ├── joints │ ├── amotor.cpp │ ├── amotor.h │ ├── ball.cpp │ ├── ball.h │ ├── contact.cpp │ ├── contact.h │ ├── contact2.cpp │ ├── contact2.h │ ├── contact3.cpp │ ├── contact3.h │ ├── contactmaxforce.cpp │ ├── contactmaxforce.h │ ├── emptyball.cpp │ ├── emptyball.h │ ├── fixed.cpp │ ├── fixed.h │ ├── hinge.cpp │ ├── hinge.h │ ├── hinge2.cpp │ ├── hinge2.h │ ├── joint.cpp │ ├── joint.h │ ├── joint_internal.h │ ├── joints.h │ ├── lmotor.cpp │ ├── lmotor.h │ ├── null.cpp │ ├── null.h │ ├── piston.cpp │ ├── piston.h │ ├── plane2d.cpp │ ├── plane2d.h │ ├── pr.cpp │ ├── pr.h │ ├── pu.cpp │ ├── pu.h │ ├── slider.cpp │ ├── slider.h │ ├── universal.cpp │ └── universal.h │ ├── lcp.cpp │ ├── lcp.h │ ├── mass.cpp │ ├── mat.cpp │ ├── mat.h │ ├── matrix.cpp │ ├── memory.cpp │ ├── misc.cpp │ ├── nextafterf.c │ ├── objects.h │ ├── obstack.cpp │ ├── obstack.h │ ├── ode.cpp │ ├── odeinit.cpp │ ├── odemath.cpp │ ├── odeou.cpp │ ├── odeou.h │ ├── odetls.cpp │ ├── odetls.h │ ├── plane.cpp │ ├── quickstep.cpp │ ├── quickstep.h │ ├── ray.cpp │ ├── rotation.cpp │ ├── sphere.cpp │ ├── step.cpp │ ├── step.h │ ├── step_resort_joints.cpp │ ├── stepwithinfo.cpp │ ├── timer.cpp │ ├── util.cpp │ └── util.h ├── Muscle ├── muscle_character.py └── muscle_scene_loader.py ├── MuscleVAECore ├── Env │ ├── __init__.py │ └── muscle_env.py ├── Model │ ├── __init__.py │ ├── modules.py │ ├── musclevae.py │ ├── trajectory_collection.py │ └── world_model.py ├── Utils │ ├── __init__.py │ ├── diff_quat.py │ ├── index_counter.py │ ├── misc.py │ ├── motion_dataset.py │ ├── motion_utils.py │ ├── mpi_utils.py │ ├── pytorch_utils.py │ ├── radam.py │ └── replay_buffer.py └── __init__.py ├── PlayGround ├── playground_util.py ├── random_generation.py ├── track_something.py ├── velocity_control.py └── visualize_world_model.py ├── README.md ├── Script └── build_motion_dataset.py ├── ThirdParty ├── EigenExtension │ ├── EigenBindingWrapper.h │ ├── LinearEquSolve.cpp │ ├── LinearEquSolve.h │ ├── Mat3Euler.cpp │ └── Mat3Euler.h ├── GL │ └── glew.h ├── eigen-3.3.8 │ ├── .hgeol │ ├── CMakeLists.txt │ ├── COPYING.BSD │ ├── COPYING.GPL │ ├── COPYING.LGPL │ ├── COPYING.MINPACK │ ├── COPYING.MPL2 │ ├── COPYING.README │ ├── CTestConfig.cmake │ ├── CTestCustom.cmake.in │ ├── Eigen │ │ ├── CMakeLists.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 │ ├── INSTALL │ ├── README.md │ ├── bench │ │ ├── BenchSparseUtil.h │ │ ├── BenchTimer.h │ │ ├── BenchUtil.h │ │ ├── README.txt │ │ ├── analyze-blocking-sizes.cpp │ │ ├── basicbench.cxxlist │ │ ├── basicbenchmark.cpp │ │ ├── basicbenchmark.h │ │ ├── benchBlasGemm.cpp │ │ ├── benchCholesky.cpp │ │ ├── benchEigenSolver.cpp │ │ ├── benchFFT.cpp │ │ ├── benchGeometry.cpp │ │ ├── benchVecAdd.cpp │ │ ├── bench_gemm.cpp │ │ ├── bench_multi_compilers.sh │ │ ├── bench_norm.cpp │ │ ├── bench_reverse.cpp │ │ ├── bench_sum.cpp │ │ ├── bench_unrolling │ │ ├── benchmark-blocking-sizes.cpp │ │ ├── benchmark.cpp │ │ ├── benchmarkSlice.cpp │ │ ├── benchmarkX.cpp │ │ ├── benchmarkXcwise.cpp │ │ ├── benchmark_suite │ │ ├── btl │ │ │ ├── CMakeLists.txt │ │ │ ├── COPYING │ │ │ ├── README │ │ │ ├── actions │ │ │ │ ├── action_aat_product.hh │ │ │ │ ├── action_ata_product.hh │ │ │ │ ├── action_atv_product.hh │ │ │ │ ├── action_axpby.hh │ │ │ │ ├── action_axpy.hh │ │ │ │ ├── action_cholesky.hh │ │ │ │ ├── action_ger.hh │ │ │ │ ├── action_hessenberg.hh │ │ │ │ ├── action_lu_decomp.hh │ │ │ │ ├── action_lu_solve.hh │ │ │ │ ├── action_matrix_matrix_product.hh │ │ │ │ ├── action_matrix_matrix_product_bis.hh │ │ │ │ ├── action_matrix_vector_product.hh │ │ │ │ ├── action_partial_lu.hh │ │ │ │ ├── action_rot.hh │ │ │ │ ├── action_symv.hh │ │ │ │ ├── action_syr2.hh │ │ │ │ ├── action_trisolve.hh │ │ │ │ ├── action_trisolve_matrix.hh │ │ │ │ ├── action_trmm.hh │ │ │ │ └── basic_actions.hh │ │ │ ├── cmake │ │ │ │ ├── FindACML.cmake │ │ │ │ ├── FindATLAS.cmake │ │ │ │ ├── FindBLAZE.cmake │ │ │ │ ├── FindBlitz.cmake │ │ │ │ ├── FindCBLAS.cmake │ │ │ │ ├── FindGMM.cmake │ │ │ │ ├── FindMKL.cmake │ │ │ │ ├── FindMTL4.cmake │ │ │ │ ├── FindOPENBLAS.cmake │ │ │ │ ├── FindPackageHandleStandardArgs.cmake │ │ │ │ ├── FindTvmet.cmake │ │ │ │ └── MacroOptionalAddSubdirectory.cmake │ │ │ ├── data │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── action_settings.txt │ │ │ │ ├── gnuplot_common_settings.hh │ │ │ │ ├── go_mean │ │ │ │ ├── mean.cxx │ │ │ │ ├── mk_gnuplot_script.sh │ │ │ │ ├── mk_mean_script.sh │ │ │ │ ├── mk_new_gnuplot.sh │ │ │ │ ├── perlib_plot_settings.txt │ │ │ │ ├── regularize.cxx │ │ │ │ ├── smooth.cxx │ │ │ │ └── smooth_all.sh │ │ │ ├── generic_bench │ │ │ │ ├── bench.hh │ │ │ │ ├── bench_parameter.hh │ │ │ │ ├── btl.hh │ │ │ │ ├── init │ │ │ │ │ ├── init_function.hh │ │ │ │ │ ├── init_matrix.hh │ │ │ │ │ └── init_vector.hh │ │ │ │ ├── static │ │ │ │ │ ├── bench_static.hh │ │ │ │ │ ├── intel_bench_fixed_size.hh │ │ │ │ │ └── static_size_generator.hh │ │ │ │ ├── timers │ │ │ │ │ ├── STL_perf_analyzer.hh │ │ │ │ │ ├── STL_timer.hh │ │ │ │ │ ├── mixed_perf_analyzer.hh │ │ │ │ │ ├── portable_perf_analyzer.hh │ │ │ │ │ ├── portable_perf_analyzer_old.hh │ │ │ │ │ ├── portable_timer.hh │ │ │ │ │ ├── x86_perf_analyzer.hh │ │ │ │ │ └── x86_timer.hh │ │ │ │ └── utils │ │ │ │ │ ├── size_lin_log.hh │ │ │ │ │ ├── size_log.hh │ │ │ │ │ ├── utilities.h │ │ │ │ │ └── xy_file.hh │ │ │ └── libs │ │ │ │ ├── BLAS │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── blas.h │ │ │ │ ├── blas_interface.hh │ │ │ │ ├── blas_interface_impl.hh │ │ │ │ ├── c_interface_base.h │ │ │ │ └── main.cpp │ │ │ │ ├── STL │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── STL_interface.hh │ │ │ │ └── main.cpp │ │ │ │ ├── blaze │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── blaze_interface.hh │ │ │ │ └── main.cpp │ │ │ │ ├── blitz │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── blitz_LU_solve_interface.hh │ │ │ │ ├── blitz_interface.hh │ │ │ │ ├── btl_blitz.cpp │ │ │ │ ├── btl_tiny_blitz.cpp │ │ │ │ └── tiny_blitz_interface.hh │ │ │ │ ├── eigen2 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── btl_tiny_eigen2.cpp │ │ │ │ ├── eigen2_interface.hh │ │ │ │ ├── main_adv.cpp │ │ │ │ ├── main_linear.cpp │ │ │ │ ├── main_matmat.cpp │ │ │ │ └── main_vecmat.cpp │ │ │ │ ├── eigen3 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── btl_tiny_eigen3.cpp │ │ │ │ ├── eigen3_interface.hh │ │ │ │ ├── main_adv.cpp │ │ │ │ ├── main_linear.cpp │ │ │ │ ├── main_matmat.cpp │ │ │ │ └── main_vecmat.cpp │ │ │ │ ├── gmm │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── gmm_LU_solve_interface.hh │ │ │ │ ├── gmm_interface.hh │ │ │ │ └── main.cpp │ │ │ │ ├── mtl4 │ │ │ │ ├── .kdbgrc.main │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── main.cpp │ │ │ │ ├── mtl4_LU_solve_interface.hh │ │ │ │ └── mtl4_interface.hh │ │ │ │ ├── tensors │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── main_linear.cpp │ │ │ │ ├── main_matmat.cpp │ │ │ │ ├── main_vecmat.cpp │ │ │ │ └── tensor_interface.hh │ │ │ │ ├── tvmet │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── main.cpp │ │ │ │ └── tvmet_interface.hh │ │ │ │ └── ublas │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── main.cpp │ │ │ │ └── ublas_interface.hh │ │ ├── check_cache_queries.cpp │ │ ├── dense_solvers.cpp │ │ ├── eig33.cpp │ │ ├── geometry.cpp │ │ ├── perf_monitoring │ │ │ └── gemm │ │ │ │ ├── changesets.txt │ │ │ │ ├── gemm.cpp │ │ │ │ ├── gemm_settings.txt │ │ │ │ ├── lazy_gemm.cpp │ │ │ │ ├── lazy_gemm_settings.txt │ │ │ │ ├── make_plot.sh │ │ │ │ └── run.sh │ │ ├── product_threshold.cpp │ │ ├── quat_slerp.cpp │ │ ├── quatmul.cpp │ │ ├── sparse_cholesky.cpp │ │ ├── sparse_dense_product.cpp │ │ ├── sparse_lu.cpp │ │ ├── sparse_product.cpp │ │ ├── sparse_randomsetter.cpp │ │ ├── sparse_setter.cpp │ │ ├── sparse_transpose.cpp │ │ ├── sparse_trisolver.cpp │ │ ├── spbench │ │ │ ├── CMakeLists.txt │ │ │ ├── sp_solver.cpp │ │ │ ├── spbench.dtd │ │ │ ├── spbenchsolver.cpp │ │ │ ├── spbenchsolver.h │ │ │ ├── spbenchstyle.h │ │ │ └── test_sparseLU.cpp │ │ ├── spmv.cpp │ │ ├── tensors │ │ │ ├── README │ │ │ ├── benchmark.h │ │ │ ├── benchmark_main.cc │ │ │ ├── contraction_benchmarks_cpu.cc │ │ │ ├── tensor_benchmarks.h │ │ │ ├── tensor_benchmarks_cpu.cc │ │ │ ├── tensor_benchmarks_fp16_gpu.cu │ │ │ ├── tensor_benchmarks_gpu.cu │ │ │ └── tensor_benchmarks_sycl.cc │ │ └── vdw_new.cpp │ ├── blas │ │ ├── BandTriangularSolver.h │ │ ├── CMakeLists.txt │ │ ├── GeneralRank1Update.h │ │ ├── PackedSelfadjointProduct.h │ │ ├── PackedTriangularMatrixVector.h │ │ ├── PackedTriangularSolverVector.h │ │ ├── README.txt │ │ ├── Rank2Update.h │ │ ├── common.h │ │ ├── complex_double.cpp │ │ ├── complex_single.cpp │ │ ├── double.cpp │ │ ├── f2c │ │ │ ├── chbmv.c │ │ │ ├── chpmv.c │ │ │ ├── complexdots.c │ │ │ ├── ctbmv.c │ │ │ ├── d_cnjg.c │ │ │ ├── datatypes.h │ │ │ ├── drotm.c │ │ │ ├── drotmg.c │ │ │ ├── dsbmv.c │ │ │ ├── dspmv.c │ │ │ ├── dtbmv.c │ │ │ ├── lsame.c │ │ │ ├── r_cnjg.c │ │ │ ├── srotm.c │ │ │ ├── srotmg.c │ │ │ ├── ssbmv.c │ │ │ ├── sspmv.c │ │ │ ├── stbmv.c │ │ │ ├── zhbmv.c │ │ │ ├── zhpmv.c │ │ │ └── ztbmv.c │ │ ├── fortran │ │ │ └── complexdots.f │ │ ├── level1_cplx_impl.h │ │ ├── level1_impl.h │ │ ├── level1_real_impl.h │ │ ├── level2_cplx_impl.h │ │ ├── level2_impl.h │ │ ├── level2_real_impl.h │ │ ├── level3_impl.h │ │ ├── single.cpp │ │ ├── testing │ │ │ ├── CMakeLists.txt │ │ │ ├── cblat1.f │ │ │ ├── cblat2.f │ │ │ ├── cblat3.f │ │ │ ├── dblat1.f │ │ │ ├── dblat2.f │ │ │ ├── dblat3.f │ │ │ ├── runblastest.sh │ │ │ ├── sblat1.f │ │ │ ├── sblat2.f │ │ │ ├── sblat3.f │ │ │ ├── zblat1.f │ │ │ ├── zblat2.f │ │ │ └── zblat3.f │ │ └── xerbla.cpp │ ├── cmake │ │ ├── Eigen3Config.cmake.in │ │ ├── Eigen3ConfigLegacy.cmake.in │ │ ├── EigenConfigureTesting.cmake │ │ ├── EigenDetermineOSVersion.cmake │ │ ├── EigenDetermineVSServicePack.cmake │ │ ├── EigenTesting.cmake │ │ ├── EigenUninstall.cmake │ │ ├── FindAdolc.cmake │ │ ├── FindBLAS.cmake │ │ ├── FindBLASEXT.cmake │ │ ├── FindCholmod.cmake │ │ ├── FindComputeCpp.cmake │ │ ├── FindEigen2.cmake │ │ ├── FindEigen3.cmake │ │ ├── FindFFTW.cmake │ │ ├── FindGLEW.cmake │ │ ├── FindGMP.cmake │ │ ├── FindGSL.cmake │ │ ├── FindGoogleHash.cmake │ │ ├── FindHWLOC.cmake │ │ ├── FindLAPACK.cmake │ │ ├── FindMPFR.cmake │ │ ├── FindMetis.cmake │ │ ├── FindPTSCOTCH.cmake │ │ ├── FindPastix.cmake │ │ ├── FindSPQR.cmake │ │ ├── FindScotch.cmake │ │ ├── FindStandardMathLibrary.cmake │ │ ├── FindSuperLU.cmake │ │ ├── FindUmfpack.cmake │ │ ├── RegexUtils.cmake │ │ ├── UseEigen3.cmake │ │ └── language_support.cmake │ ├── debug │ │ ├── gdb │ │ │ ├── __init__.py │ │ │ └── printers.py │ │ └── msvc │ │ │ └── eigen.natvis │ ├── demos │ │ ├── CMakeLists.txt │ │ ├── mandelbrot │ │ │ ├── CMakeLists.txt │ │ │ ├── README │ │ │ ├── mandelbrot.cpp │ │ │ └── mandelbrot.h │ │ ├── mix_eigen_and_c │ │ │ ├── README │ │ │ ├── binary_library.cpp │ │ │ ├── binary_library.h │ │ │ └── example.c │ │ └── opengl │ │ │ ├── CMakeLists.txt │ │ │ ├── README │ │ │ ├── camera.cpp │ │ │ ├── camera.h │ │ │ ├── gpuhelper.cpp │ │ │ ├── gpuhelper.h │ │ │ ├── icosphere.cpp │ │ │ ├── icosphere.h │ │ │ ├── quaternion_demo.cpp │ │ │ ├── quaternion_demo.h │ │ │ ├── trackball.cpp │ │ │ └── trackball.h │ ├── doc │ │ ├── A05_PortingFrom2To3.dox │ │ ├── AsciiQuickReference.txt │ │ ├── B01_Experimental.dox │ │ ├── CMakeLists.txt │ │ ├── ClassHierarchy.dox │ │ ├── CoeffwiseMathFunctionsTable.dox │ │ ├── CustomizingEigen_CustomScalar.dox │ │ ├── CustomizingEigen_InheritingMatrix.dox │ │ ├── CustomizingEigen_NullaryExpr.dox │ │ ├── CustomizingEigen_Plugins.dox │ │ ├── DenseDecompositionBenchmark.dox │ │ ├── Doxyfile.in │ │ ├── Eigen_Silly_Professor_64x64.png │ │ ├── FixedSizeVectorizable.dox │ │ ├── FunctionsTakingEigenTypes.dox │ │ ├── HiPerformance.dox │ │ ├── InplaceDecomposition.dox │ │ ├── InsideEigenExample.dox │ │ ├── LeastSquares.dox │ │ ├── Manual.dox │ │ ├── MatrixfreeSolverExample.dox │ │ ├── NewExpressionType.dox │ │ ├── Overview.dox │ │ ├── PassingByValue.dox │ │ ├── Pitfalls.dox │ │ ├── PreprocessorDirectives.dox │ │ ├── QuickReference.dox │ │ ├── QuickStartGuide.dox │ │ ├── SparseLinearSystems.dox │ │ ├── SparseQuickReference.dox │ │ ├── StlContainers.dox │ │ ├── StorageOrders.dox │ │ ├── StructHavingEigenMembers.dox │ │ ├── TemplateKeyword.dox │ │ ├── TopicAliasing.dox │ │ ├── TopicAssertions.dox │ │ ├── TopicCMakeGuide.dox │ │ ├── TopicEigenExpressionTemplates.dox │ │ ├── TopicLazyEvaluation.dox │ │ ├── TopicLinearAlgebraDecompositions.dox │ │ ├── TopicMultithreading.dox │ │ ├── TopicResizing.dox │ │ ├── TopicScalarTypes.dox │ │ ├── TopicVectorization.dox │ │ ├── TutorialAdvancedInitialization.dox │ │ ├── TutorialArrayClass.dox │ │ ├── TutorialBlockOperations.dox │ │ ├── TutorialGeometry.dox │ │ ├── TutorialLinearAlgebra.dox │ │ ├── TutorialMapClass.dox │ │ ├── TutorialMatrixArithmetic.dox │ │ ├── TutorialMatrixClass.dox │ │ ├── TutorialReductionsVisitorsBroadcasting.dox │ │ ├── TutorialReshapeSlicing.dox │ │ ├── TutorialSparse.dox │ │ ├── TutorialSparse_example_details.dox │ │ ├── UnalignedArrayAssert.dox │ │ ├── UsingBlasLapackBackends.dox │ │ ├── UsingIntelMKL.dox │ │ ├── UsingNVCC.dox │ │ ├── WrongStackAlignment.dox │ │ ├── eigen_navtree_hacks.js │ │ ├── eigendoxy.css │ │ ├── eigendoxy_footer.html.in │ │ ├── eigendoxy_header.html.in │ │ ├── eigendoxy_layout.xml.in │ │ ├── eigendoxy_tabs.css │ │ ├── examples │ │ │ ├── .krazy │ │ │ ├── CMakeLists.txt │ │ │ ├── CustomizingEigen_Inheritance.cpp │ │ │ ├── Cwise_erf.cpp │ │ │ ├── Cwise_erfc.cpp │ │ │ ├── Cwise_lgamma.cpp │ │ │ ├── DenseBase_middleCols_int.cpp │ │ │ ├── DenseBase_middleRows_int.cpp │ │ │ ├── DenseBase_template_int_middleCols.cpp │ │ │ ├── DenseBase_template_int_middleRows.cpp │ │ │ ├── QuickStart_example.cpp │ │ │ ├── QuickStart_example2_dynamic.cpp │ │ │ ├── QuickStart_example2_fixed.cpp │ │ │ ├── TemplateKeyword_flexible.cpp │ │ │ ├── TemplateKeyword_simple.cpp │ │ │ ├── TutorialInplaceLU.cpp │ │ │ ├── TutorialLinAlgComputeTwice.cpp │ │ │ ├── TutorialLinAlgExComputeSolveError.cpp │ │ │ ├── TutorialLinAlgExSolveColPivHouseholderQR.cpp │ │ │ ├── TutorialLinAlgExSolveLDLT.cpp │ │ │ ├── TutorialLinAlgInverseDeterminant.cpp │ │ │ ├── TutorialLinAlgRankRevealing.cpp │ │ │ ├── TutorialLinAlgSVDSolve.cpp │ │ │ ├── TutorialLinAlgSelfAdjointEigenSolver.cpp │ │ │ ├── TutorialLinAlgSetThreshold.cpp │ │ │ ├── Tutorial_ArrayClass_accessors.cpp │ │ │ ├── Tutorial_ArrayClass_addition.cpp │ │ │ ├── Tutorial_ArrayClass_cwise_other.cpp │ │ │ ├── Tutorial_ArrayClass_interop.cpp │ │ │ ├── Tutorial_ArrayClass_interop_matrix.cpp │ │ │ ├── Tutorial_ArrayClass_mult.cpp │ │ │ ├── Tutorial_BlockOperations_block_assignment.cpp │ │ │ ├── Tutorial_BlockOperations_colrow.cpp │ │ │ ├── Tutorial_BlockOperations_corner.cpp │ │ │ ├── Tutorial_BlockOperations_print_block.cpp │ │ │ ├── Tutorial_BlockOperations_vector.cpp │ │ │ ├── Tutorial_PartialLU_solve.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_broadcast_1nn.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_broadcast_simple.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_broadcast_simple_rowwise.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_colwise.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_maxnorm.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_reductions_bool.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_reductions_norm.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_reductions_operatornorm.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_rowwise.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_visitors.cpp │ │ │ ├── Tutorial_simple_example_dynamic_size.cpp │ │ │ ├── Tutorial_simple_example_fixed_size.cpp │ │ │ ├── class_Block.cpp │ │ │ ├── class_CwiseBinaryOp.cpp │ │ │ ├── class_CwiseUnaryOp.cpp │ │ │ ├── class_CwiseUnaryOp_ptrfun.cpp │ │ │ ├── class_FixedBlock.cpp │ │ │ ├── class_FixedVectorBlock.cpp │ │ │ ├── class_VectorBlock.cpp │ │ │ ├── function_taking_eigenbase.cpp │ │ │ ├── function_taking_ref.cpp │ │ │ ├── make_circulant.cpp │ │ │ ├── make_circulant.cpp.entry │ │ │ ├── make_circulant.cpp.evaluator │ │ │ ├── make_circulant.cpp.expression │ │ │ ├── make_circulant.cpp.main │ │ │ ├── make_circulant.cpp.preamble │ │ │ ├── make_circulant.cpp.traits │ │ │ ├── make_circulant2.cpp │ │ │ ├── matrixfree_cg.cpp │ │ │ ├── nullary_indexing.cpp │ │ │ ├── tut_arithmetic_add_sub.cpp │ │ │ ├── tut_arithmetic_dot_cross.cpp │ │ │ ├── tut_arithmetic_matrix_mul.cpp │ │ │ ├── tut_arithmetic_redux_basic.cpp │ │ │ ├── tut_arithmetic_scalar_mul_div.cpp │ │ │ ├── tut_matrix_coefficient_accessors.cpp │ │ │ ├── tut_matrix_resize.cpp │ │ │ └── tut_matrix_resize_fixed_size.cpp │ │ ├── ftv2node.png │ │ ├── ftv2pnode.png │ │ ├── snippets │ │ │ ├── .krazy │ │ │ ├── AngleAxis_mimic_euler.cpp │ │ │ ├── BiCGSTAB_simple.cpp │ │ │ ├── BiCGSTAB_step_by_step.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── ColPivHouseholderQR_solve.cpp │ │ │ ├── ComplexEigenSolver_compute.cpp │ │ │ ├── ComplexEigenSolver_eigenvalues.cpp │ │ │ ├── ComplexEigenSolver_eigenvectors.cpp │ │ │ ├── ComplexSchur_compute.cpp │ │ │ ├── ComplexSchur_matrixT.cpp │ │ │ ├── ComplexSchur_matrixU.cpp │ │ │ ├── Cwise_abs.cpp │ │ │ ├── Cwise_abs2.cpp │ │ │ ├── Cwise_acos.cpp │ │ │ ├── Cwise_arg.cpp │ │ │ ├── Cwise_array_power_array.cpp │ │ │ ├── Cwise_asin.cpp │ │ │ ├── Cwise_atan.cpp │ │ │ ├── Cwise_boolean_and.cpp │ │ │ ├── Cwise_boolean_not.cpp │ │ │ ├── Cwise_boolean_or.cpp │ │ │ ├── Cwise_boolean_xor.cpp │ │ │ ├── Cwise_ceil.cpp │ │ │ ├── Cwise_cos.cpp │ │ │ ├── Cwise_cosh.cpp │ │ │ ├── Cwise_cube.cpp │ │ │ ├── Cwise_equal_equal.cpp │ │ │ ├── Cwise_exp.cpp │ │ │ ├── Cwise_floor.cpp │ │ │ ├── Cwise_greater.cpp │ │ │ ├── Cwise_greater_equal.cpp │ │ │ ├── Cwise_inverse.cpp │ │ │ ├── Cwise_isFinite.cpp │ │ │ ├── Cwise_isInf.cpp │ │ │ ├── Cwise_isNaN.cpp │ │ │ ├── Cwise_less.cpp │ │ │ ├── Cwise_less_equal.cpp │ │ │ ├── Cwise_log.cpp │ │ │ ├── Cwise_log10.cpp │ │ │ ├── Cwise_max.cpp │ │ │ ├── Cwise_min.cpp │ │ │ ├── Cwise_minus.cpp │ │ │ ├── Cwise_minus_equal.cpp │ │ │ ├── Cwise_not_equal.cpp │ │ │ ├── Cwise_plus.cpp │ │ │ ├── Cwise_plus_equal.cpp │ │ │ ├── Cwise_pow.cpp │ │ │ ├── Cwise_product.cpp │ │ │ ├── Cwise_quotient.cpp │ │ │ ├── Cwise_round.cpp │ │ │ ├── Cwise_scalar_power_array.cpp │ │ │ ├── Cwise_sign.cpp │ │ │ ├── Cwise_sin.cpp │ │ │ ├── Cwise_sinh.cpp │ │ │ ├── Cwise_slash_equal.cpp │ │ │ ├── Cwise_sqrt.cpp │ │ │ ├── Cwise_square.cpp │ │ │ ├── Cwise_tan.cpp │ │ │ ├── Cwise_tanh.cpp │ │ │ ├── Cwise_times_equal.cpp │ │ │ ├── DenseBase_LinSpaced.cpp │ │ │ ├── DenseBase_LinSpacedInt.cpp │ │ │ ├── DenseBase_LinSpaced_seq.cpp │ │ │ ├── DenseBase_setLinSpaced.cpp │ │ │ ├── DirectionWise_hnormalized.cpp │ │ │ ├── DirectionWise_replicate.cpp │ │ │ ├── DirectionWise_replicate_int.cpp │ │ │ ├── EigenSolver_EigenSolver_MatrixType.cpp │ │ │ ├── EigenSolver_compute.cpp │ │ │ ├── EigenSolver_eigenvalues.cpp │ │ │ ├── EigenSolver_eigenvectors.cpp │ │ │ ├── EigenSolver_pseudoEigenvectors.cpp │ │ │ ├── FullPivHouseholderQR_solve.cpp │ │ │ ├── FullPivLU_image.cpp │ │ │ ├── FullPivLU_kernel.cpp │ │ │ ├── FullPivLU_solve.cpp │ │ │ ├── GeneralizedEigenSolver.cpp │ │ │ ├── HessenbergDecomposition_compute.cpp │ │ │ ├── HessenbergDecomposition_matrixH.cpp │ │ │ ├── HessenbergDecomposition_packedMatrix.cpp │ │ │ ├── HouseholderQR_householderQ.cpp │ │ │ ├── HouseholderQR_solve.cpp │ │ │ ├── HouseholderSequence_HouseholderSequence.cpp │ │ │ ├── IOFormat.cpp │ │ │ ├── JacobiSVD_basic.cpp │ │ │ ├── Jacobi_makeGivens.cpp │ │ │ ├── Jacobi_makeJacobi.cpp │ │ │ ├── LLT_example.cpp │ │ │ ├── LLT_solve.cpp │ │ │ ├── LeastSquaresNormalEquations.cpp │ │ │ ├── LeastSquaresQR.cpp │ │ │ ├── Map_general_stride.cpp │ │ │ ├── Map_inner_stride.cpp │ │ │ ├── Map_outer_stride.cpp │ │ │ ├── Map_placement_new.cpp │ │ │ ├── Map_simple.cpp │ │ │ ├── MatrixBase_adjoint.cpp │ │ │ ├── MatrixBase_all.cpp │ │ │ ├── MatrixBase_applyOnTheLeft.cpp │ │ │ ├── MatrixBase_applyOnTheRight.cpp │ │ │ ├── MatrixBase_array.cpp │ │ │ ├── MatrixBase_array_const.cpp │ │ │ ├── MatrixBase_asDiagonal.cpp │ │ │ ├── MatrixBase_block_int_int.cpp │ │ │ ├── MatrixBase_block_int_int_int_int.cpp │ │ │ ├── MatrixBase_bottomLeftCorner_int_int.cpp │ │ │ ├── MatrixBase_bottomRightCorner_int_int.cpp │ │ │ ├── MatrixBase_bottomRows_int.cpp │ │ │ ├── MatrixBase_cast.cpp │ │ │ ├── MatrixBase_col.cpp │ │ │ ├── MatrixBase_colwise.cpp │ │ │ ├── MatrixBase_computeInverseAndDetWithCheck.cpp │ │ │ ├── MatrixBase_computeInverseWithCheck.cpp │ │ │ ├── MatrixBase_cwiseAbs.cpp │ │ │ ├── MatrixBase_cwiseAbs2.cpp │ │ │ ├── MatrixBase_cwiseEqual.cpp │ │ │ ├── MatrixBase_cwiseInverse.cpp │ │ │ ├── MatrixBase_cwiseMax.cpp │ │ │ ├── MatrixBase_cwiseMin.cpp │ │ │ ├── MatrixBase_cwiseNotEqual.cpp │ │ │ ├── MatrixBase_cwiseProduct.cpp │ │ │ ├── MatrixBase_cwiseQuotient.cpp │ │ │ ├── MatrixBase_cwiseSign.cpp │ │ │ ├── MatrixBase_cwiseSqrt.cpp │ │ │ ├── MatrixBase_diagonal.cpp │ │ │ ├── MatrixBase_diagonal_int.cpp │ │ │ ├── MatrixBase_diagonal_template_int.cpp │ │ │ ├── MatrixBase_eigenvalues.cpp │ │ │ ├── MatrixBase_end_int.cpp │ │ │ ├── MatrixBase_eval.cpp │ │ │ ├── MatrixBase_fixedBlock_int_int.cpp │ │ │ ├── MatrixBase_hnormalized.cpp │ │ │ ├── MatrixBase_homogeneous.cpp │ │ │ ├── MatrixBase_identity.cpp │ │ │ ├── MatrixBase_identity_int_int.cpp │ │ │ ├── MatrixBase_inverse.cpp │ │ │ ├── MatrixBase_isDiagonal.cpp │ │ │ ├── MatrixBase_isIdentity.cpp │ │ │ ├── MatrixBase_isOnes.cpp │ │ │ ├── MatrixBase_isOrthogonal.cpp │ │ │ ├── MatrixBase_isUnitary.cpp │ │ │ ├── MatrixBase_isZero.cpp │ │ │ ├── MatrixBase_leftCols_int.cpp │ │ │ ├── MatrixBase_noalias.cpp │ │ │ ├── MatrixBase_ones.cpp │ │ │ ├── MatrixBase_ones_int.cpp │ │ │ ├── MatrixBase_ones_int_int.cpp │ │ │ ├── MatrixBase_operatorNorm.cpp │ │ │ ├── MatrixBase_prod.cpp │ │ │ ├── MatrixBase_random.cpp │ │ │ ├── MatrixBase_random_int.cpp │ │ │ ├── MatrixBase_random_int_int.cpp │ │ │ ├── MatrixBase_replicate.cpp │ │ │ ├── MatrixBase_replicate_int_int.cpp │ │ │ ├── MatrixBase_reverse.cpp │ │ │ ├── MatrixBase_rightCols_int.cpp │ │ │ ├── MatrixBase_row.cpp │ │ │ ├── MatrixBase_rowwise.cpp │ │ │ ├── MatrixBase_segment_int_int.cpp │ │ │ ├── MatrixBase_select.cpp │ │ │ ├── MatrixBase_selfadjointView.cpp │ │ │ ├── MatrixBase_set.cpp │ │ │ ├── MatrixBase_setIdentity.cpp │ │ │ ├── MatrixBase_setOnes.cpp │ │ │ ├── MatrixBase_setRandom.cpp │ │ │ ├── MatrixBase_setZero.cpp │ │ │ ├── MatrixBase_start_int.cpp │ │ │ ├── MatrixBase_template_int_bottomRows.cpp │ │ │ ├── MatrixBase_template_int_end.cpp │ │ │ ├── MatrixBase_template_int_int_block_int_int_int_int.cpp │ │ │ ├── MatrixBase_template_int_int_bottomLeftCorner.cpp │ │ │ ├── MatrixBase_template_int_int_bottomLeftCorner_int_int.cpp │ │ │ ├── MatrixBase_template_int_int_bottomRightCorner.cpp │ │ │ ├── MatrixBase_template_int_int_bottomRightCorner_int_int.cpp │ │ │ ├── MatrixBase_template_int_int_topLeftCorner.cpp │ │ │ ├── MatrixBase_template_int_int_topLeftCorner_int_int.cpp │ │ │ ├── MatrixBase_template_int_int_topRightCorner.cpp │ │ │ ├── MatrixBase_template_int_int_topRightCorner_int_int.cpp │ │ │ ├── MatrixBase_template_int_leftCols.cpp │ │ │ ├── MatrixBase_template_int_rightCols.cpp │ │ │ ├── MatrixBase_template_int_segment.cpp │ │ │ ├── MatrixBase_template_int_start.cpp │ │ │ ├── MatrixBase_template_int_topRows.cpp │ │ │ ├── MatrixBase_topLeftCorner_int_int.cpp │ │ │ ├── MatrixBase_topRightCorner_int_int.cpp │ │ │ ├── MatrixBase_topRows_int.cpp │ │ │ ├── MatrixBase_transpose.cpp │ │ │ ├── MatrixBase_triangularView.cpp │ │ │ ├── MatrixBase_zero.cpp │ │ │ ├── MatrixBase_zero_int.cpp │ │ │ ├── MatrixBase_zero_int_int.cpp │ │ │ ├── Matrix_Map_stride.cpp │ │ │ ├── Matrix_resize_NoChange_int.cpp │ │ │ ├── Matrix_resize_int.cpp │ │ │ ├── Matrix_resize_int_NoChange.cpp │ │ │ ├── Matrix_resize_int_int.cpp │ │ │ ├── Matrix_setConstant_int.cpp │ │ │ ├── Matrix_setConstant_int_int.cpp │ │ │ ├── Matrix_setIdentity_int_int.cpp │ │ │ ├── Matrix_setOnes_int.cpp │ │ │ ├── Matrix_setOnes_int_int.cpp │ │ │ ├── Matrix_setRandom_int.cpp │ │ │ ├── Matrix_setRandom_int_int.cpp │ │ │ ├── Matrix_setZero_int.cpp │ │ │ ├── Matrix_setZero_int_int.cpp │ │ │ ├── PartialPivLU_solve.cpp │ │ │ ├── PartialRedux_count.cpp │ │ │ ├── PartialRedux_maxCoeff.cpp │ │ │ ├── PartialRedux_minCoeff.cpp │ │ │ ├── PartialRedux_norm.cpp │ │ │ ├── PartialRedux_prod.cpp │ │ │ ├── PartialRedux_squaredNorm.cpp │ │ │ ├── PartialRedux_sum.cpp │ │ │ ├── RealQZ_compute.cpp │ │ │ ├── RealSchur_RealSchur_MatrixType.cpp │ │ │ ├── RealSchur_compute.cpp │ │ │ ├── SelfAdjointEigenSolver_SelfAdjointEigenSolver.cpp │ │ │ ├── SelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType.cpp │ │ │ ├── SelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType2.cpp │ │ │ ├── SelfAdjointEigenSolver_compute_MatrixType.cpp │ │ │ ├── SelfAdjointEigenSolver_compute_MatrixType2.cpp │ │ │ ├── SelfAdjointEigenSolver_eigenvalues.cpp │ │ │ ├── SelfAdjointEigenSolver_eigenvectors.cpp │ │ │ ├── SelfAdjointEigenSolver_operatorInverseSqrt.cpp │ │ │ ├── SelfAdjointEigenSolver_operatorSqrt.cpp │ │ │ ├── SelfAdjointView_eigenvalues.cpp │ │ │ ├── SelfAdjointView_operatorNorm.cpp │ │ │ ├── SparseMatrix_coeffs.cpp │ │ │ ├── TopicAliasing_block.cpp │ │ │ ├── TopicAliasing_block_correct.cpp │ │ │ ├── TopicAliasing_cwise.cpp │ │ │ ├── TopicAliasing_mult1.cpp │ │ │ ├── TopicAliasing_mult2.cpp │ │ │ ├── TopicAliasing_mult3.cpp │ │ │ ├── TopicAliasing_mult4.cpp │ │ │ ├── TopicAliasing_mult5.cpp │ │ │ ├── TopicStorageOrders_example.cpp │ │ │ ├── Triangular_solve.cpp │ │ │ ├── Tridiagonalization_Tridiagonalization_MatrixType.cpp │ │ │ ├── Tridiagonalization_compute.cpp │ │ │ ├── Tridiagonalization_decomposeInPlace.cpp │ │ │ ├── Tridiagonalization_diagonal.cpp │ │ │ ├── Tridiagonalization_householderCoefficients.cpp │ │ │ ├── Tridiagonalization_packedMatrix.cpp │ │ │ ├── Tutorial_AdvancedInitialization_Block.cpp │ │ │ ├── Tutorial_AdvancedInitialization_CommaTemporary.cpp │ │ │ ├── Tutorial_AdvancedInitialization_Join.cpp │ │ │ ├── Tutorial_AdvancedInitialization_LinSpaced.cpp │ │ │ ├── Tutorial_AdvancedInitialization_ThreeWays.cpp │ │ │ ├── Tutorial_AdvancedInitialization_Zero.cpp │ │ │ ├── Tutorial_Map_rowmajor.cpp │ │ │ ├── Tutorial_Map_using.cpp │ │ │ ├── Tutorial_ReshapeMat2Mat.cpp │ │ │ ├── Tutorial_ReshapeMat2Vec.cpp │ │ │ ├── Tutorial_SlicingCol.cpp │ │ │ ├── Tutorial_SlicingVec.cpp │ │ │ ├── Tutorial_commainit_01.cpp │ │ │ ├── Tutorial_commainit_01b.cpp │ │ │ ├── Tutorial_commainit_02.cpp │ │ │ ├── Tutorial_solve_matrix_inverse.cpp │ │ │ ├── Tutorial_solve_multiple_rhs.cpp │ │ │ ├── Tutorial_solve_reuse_decomposition.cpp │ │ │ ├── Tutorial_solve_singular.cpp │ │ │ ├── Tutorial_solve_triangular.cpp │ │ │ ├── Tutorial_solve_triangular_inplace.cpp │ │ │ ├── VectorwiseOp_homogeneous.cpp │ │ │ ├── Vectorwise_reverse.cpp │ │ │ ├── class_FullPivLU.cpp │ │ │ ├── compile_snippet.cpp.in │ │ │ ├── tut_arithmetic_redux_minmax.cpp │ │ │ ├── tut_arithmetic_transpose_aliasing.cpp │ │ │ ├── tut_arithmetic_transpose_conjugate.cpp │ │ │ ├── tut_arithmetic_transpose_inplace.cpp │ │ │ └── tut_matrix_assignment_resizing.cpp │ │ ├── special_examples │ │ │ ├── CMakeLists.txt │ │ │ ├── Tutorial_sparse_example.cpp │ │ │ ├── Tutorial_sparse_example_details.cpp │ │ │ └── random_cpp11.cpp │ │ └── tutorial.cpp │ ├── eigen3.pc.in │ ├── failtest │ │ ├── CMakeLists.txt │ │ ├── bdcsvd_int.cpp │ │ ├── block_nonconst_ctor_on_const_xpr_0.cpp │ │ ├── block_nonconst_ctor_on_const_xpr_1.cpp │ │ ├── block_nonconst_ctor_on_const_xpr_2.cpp │ │ ├── block_on_const_type_actually_const_0.cpp │ │ ├── block_on_const_type_actually_const_1.cpp │ │ ├── colpivqr_int.cpp │ │ ├── const_qualified_block_method_retval_0.cpp │ │ ├── const_qualified_block_method_retval_1.cpp │ │ ├── const_qualified_diagonal_method_retval.cpp │ │ ├── const_qualified_transpose_method_retval.cpp │ │ ├── cwiseunaryview_nonconst_ctor_on_const_xpr.cpp │ │ ├── cwiseunaryview_on_const_type_actually_const.cpp │ │ ├── diagonal_nonconst_ctor_on_const_xpr.cpp │ │ ├── diagonal_on_const_type_actually_const.cpp │ │ ├── eigensolver_cplx.cpp │ │ ├── eigensolver_int.cpp │ │ ├── failtest_sanity_check.cpp │ │ ├── fullpivlu_int.cpp │ │ ├── fullpivqr_int.cpp │ │ ├── jacobisvd_int.cpp │ │ ├── ldlt_int.cpp │ │ ├── llt_int.cpp │ │ ├── map_nonconst_ctor_on_const_ptr_0.cpp │ │ ├── map_nonconst_ctor_on_const_ptr_1.cpp │ │ ├── map_nonconst_ctor_on_const_ptr_2.cpp │ │ ├── map_nonconst_ctor_on_const_ptr_3.cpp │ │ ├── map_nonconst_ctor_on_const_ptr_4.cpp │ │ ├── map_on_const_type_actually_const_0.cpp │ │ ├── map_on_const_type_actually_const_1.cpp │ │ ├── partialpivlu_int.cpp │ │ ├── qr_int.cpp │ │ ├── ref_1.cpp │ │ ├── ref_2.cpp │ │ ├── ref_3.cpp │ │ ├── ref_4.cpp │ │ ├── ref_5.cpp │ │ ├── selfadjointview_nonconst_ctor_on_const_xpr.cpp │ │ ├── selfadjointview_on_const_type_actually_const.cpp │ │ ├── sparse_ref_1.cpp │ │ ├── sparse_ref_2.cpp │ │ ├── sparse_ref_3.cpp │ │ ├── sparse_ref_4.cpp │ │ ├── sparse_ref_5.cpp │ │ ├── sparse_storage_mismatch.cpp │ │ ├── swap_1.cpp │ │ ├── swap_2.cpp │ │ ├── ternary_1.cpp │ │ ├── ternary_2.cpp │ │ ├── transpose_nonconst_ctor_on_const_xpr.cpp │ │ ├── transpose_on_const_type_actually_const.cpp │ │ ├── triangularview_nonconst_ctor_on_const_xpr.cpp │ │ └── triangularview_on_const_type_actually_const.cpp │ ├── lapack │ │ ├── CMakeLists.txt │ │ ├── cholesky.cpp │ │ ├── clacgv.f │ │ ├── cladiv.f │ │ ├── clarf.f │ │ ├── clarfb.f │ │ ├── clarfg.f │ │ ├── clarft.f │ │ ├── complex_double.cpp │ │ ├── complex_single.cpp │ │ ├── dladiv.f │ │ ├── dlamch.f │ │ ├── dlapy2.f │ │ ├── dlapy3.f │ │ ├── dlarf.f │ │ ├── dlarfb.f │ │ ├── dlarfg.f │ │ ├── dlarft.f │ │ ├── double.cpp │ │ ├── dsecnd_NONE.f │ │ ├── eigenvalues.cpp │ │ ├── ilaclc.f │ │ ├── ilaclr.f │ │ ├── iladlc.f │ │ ├── iladlr.f │ │ ├── ilaslc.f │ │ ├── ilaslr.f │ │ ├── ilazlc.f │ │ ├── ilazlr.f │ │ ├── lapack_common.h │ │ ├── lu.cpp │ │ ├── second_NONE.f │ │ ├── single.cpp │ │ ├── sladiv.f │ │ ├── slamch.f │ │ ├── slapy2.f │ │ ├── slapy3.f │ │ ├── slarf.f │ │ ├── slarfb.f │ │ ├── slarfg.f │ │ ├── slarft.f │ │ ├── svd.cpp │ │ ├── zlacgv.f │ │ ├── zladiv.f │ │ ├── zlarf.f │ │ ├── zlarfb.f │ │ ├── zlarfg.f │ │ └── zlarft.f │ ├── scripts │ │ ├── CMakeLists.txt │ │ ├── buildtests.in │ │ ├── cdashtesting.cmake.in │ │ ├── check.in │ │ ├── debug.in │ │ ├── eigen_gen_credits.cpp │ │ ├── eigen_gen_docs │ │ ├── release.in │ │ └── relicense.py │ ├── signature_of_eigen3_matrix_library │ ├── test │ │ ├── CMakeLists.txt │ │ ├── adjoint.cpp │ │ ├── array.cpp │ │ ├── array_for_matrix.cpp │ │ ├── array_of_string.cpp │ │ ├── array_replicate.cpp │ │ ├── array_reverse.cpp │ │ ├── bandmatrix.cpp │ │ ├── basicstuff.cpp │ │ ├── bdcsvd.cpp │ │ ├── bicgstab.cpp │ │ ├── block.cpp │ │ ├── boostmultiprec.cpp │ │ ├── bug1213.cpp │ │ ├── bug1213.h │ │ ├── bug1213_main.cpp │ │ ├── cholesky.cpp │ │ ├── cholmod_support.cpp │ │ ├── commainitializer.cpp │ │ ├── conjugate_gradient.cpp │ │ ├── conservative_resize.cpp │ │ ├── constructor.cpp │ │ ├── corners.cpp │ │ ├── ctorleak.cpp │ │ ├── cuda_basic.cu │ │ ├── cuda_common.h │ │ ├── denseLM.cpp │ │ ├── dense_storage.cpp │ │ ├── determinant.cpp │ │ ├── diagonal.cpp │ │ ├── diagonalmatrices.cpp │ │ ├── dontalign.cpp │ │ ├── dynalloc.cpp │ │ ├── eigen2support.cpp │ │ ├── eigensolver_complex.cpp │ │ ├── eigensolver_generalized_real.cpp │ │ ├── eigensolver_generic.cpp │ │ ├── eigensolver_selfadjoint.cpp │ │ ├── evaluator_common.h │ │ ├── evaluators.cpp │ │ ├── exceptions.cpp │ │ ├── fastmath.cpp │ │ ├── first_aligned.cpp │ │ ├── geo_alignedbox.cpp │ │ ├── geo_eulerangles.cpp │ │ ├── geo_homogeneous.cpp │ │ ├── geo_hyperplane.cpp │ │ ├── geo_orthomethods.cpp │ │ ├── geo_parametrizedline.cpp │ │ ├── geo_quaternion.cpp │ │ ├── geo_transformations.cpp │ │ ├── half_float.cpp │ │ ├── hessenberg.cpp │ │ ├── householder.cpp │ │ ├── incomplete_cholesky.cpp │ │ ├── inplace_decomposition.cpp │ │ ├── integer_types.cpp │ │ ├── inverse.cpp │ │ ├── is_same_dense.cpp │ │ ├── jacobi.cpp │ │ ├── jacobisvd.cpp │ │ ├── linearstructure.cpp │ │ ├── lscg.cpp │ │ ├── lu.cpp │ │ ├── main.h │ │ ├── mapped_matrix.cpp │ │ ├── mapstaticmethods.cpp │ │ ├── mapstride.cpp │ │ ├── meta.cpp │ │ ├── metis_support.cpp │ │ ├── miscmatrices.cpp │ │ ├── mixingtypes.cpp │ │ ├── mpl2only.cpp │ │ ├── nesting_ops.cpp │ │ ├── nomalloc.cpp │ │ ├── nullary.cpp │ │ ├── numext.cpp │ │ ├── packetmath.cpp │ │ ├── pardiso_support.cpp │ │ ├── pastix_support.cpp │ │ ├── permutationmatrices.cpp │ │ ├── prec_inverse_4x4.cpp │ │ ├── product.h │ │ ├── product_extra.cpp │ │ ├── product_large.cpp │ │ ├── product_mmtr.cpp │ │ ├── product_notemporary.cpp │ │ ├── product_selfadjoint.cpp │ │ ├── product_small.cpp │ │ ├── product_symm.cpp │ │ ├── product_syrk.cpp │ │ ├── product_trmm.cpp │ │ ├── product_trmv.cpp │ │ ├── product_trsolve.cpp │ │ ├── qr.cpp │ │ ├── qr_colpivoting.cpp │ │ ├── qr_fullpivoting.cpp │ │ ├── qtvector.cpp │ │ ├── rand.cpp │ │ ├── real_qz.cpp │ │ ├── redux.cpp │ │ ├── ref.cpp │ │ ├── resize.cpp │ │ ├── rvalue_types.cpp │ │ ├── schur_complex.cpp │ │ ├── schur_real.cpp │ │ ├── selfadjoint.cpp │ │ ├── simplicial_cholesky.cpp │ │ ├── sizeof.cpp │ │ ├── sizeoverflow.cpp │ │ ├── smallvectors.cpp │ │ ├── sparse.h │ │ ├── sparseLM.cpp │ │ ├── sparse_basic.cpp │ │ ├── sparse_block.cpp │ │ ├── sparse_permutations.cpp │ │ ├── sparse_product.cpp │ │ ├── sparse_ref.cpp │ │ ├── sparse_solver.h │ │ ├── sparse_solvers.cpp │ │ ├── sparse_vector.cpp │ │ ├── sparselu.cpp │ │ ├── sparseqr.cpp │ │ ├── special_numbers.cpp │ │ ├── spqr_support.cpp │ │ ├── stable_norm.cpp │ │ ├── stddeque.cpp │ │ ├── stddeque_overload.cpp │ │ ├── stdlist.cpp │ │ ├── stdlist_overload.cpp │ │ ├── stdvector.cpp │ │ ├── stdvector_overload.cpp │ │ ├── superlu_support.cpp │ │ ├── svd_common.h │ │ ├── svd_fill.h │ │ ├── swap.cpp │ │ ├── triangular.cpp │ │ ├── umeyama.cpp │ │ ├── umfpack_support.cpp │ │ ├── unalignedassert.cpp │ │ ├── unalignedcount.cpp │ │ ├── upperbidiagonalization.cpp │ │ ├── vectorization_logic.cpp │ │ ├── vectorwiseop.cpp │ │ ├── visitor.cpp │ │ └── zerosized.cpp │ └── unsupported │ │ ├── CMakeLists.txt │ │ ├── Eigen │ │ ├── AdolcForward │ │ ├── AlignedVector3 │ │ ├── ArpackSupport │ │ ├── AutoDiff │ │ ├── BVH │ │ ├── CMakeLists.txt │ │ ├── CXX11 │ │ │ ├── CMakeLists.txt │ │ │ ├── Tensor │ │ │ ├── TensorSymmetry │ │ │ ├── ThreadPool │ │ │ └── src │ │ │ │ ├── Tensor │ │ │ │ ├── README.md │ │ │ │ ├── Tensor.h │ │ │ │ ├── TensorArgMax.h │ │ │ │ ├── TensorAssign.h │ │ │ │ ├── TensorBase.h │ │ │ │ ├── TensorBroadcasting.h │ │ │ │ ├── TensorChipping.h │ │ │ │ ├── TensorConcatenation.h │ │ │ │ ├── TensorContraction.h │ │ │ │ ├── TensorContractionBlocking.h │ │ │ │ ├── TensorContractionCuda.h │ │ │ │ ├── TensorContractionMapper.h │ │ │ │ ├── TensorContractionThreadPool.h │ │ │ │ ├── TensorConversion.h │ │ │ │ ├── TensorConvolution.h │ │ │ │ ├── TensorCostModel.h │ │ │ │ ├── TensorCustomOp.h │ │ │ │ ├── TensorDevice.h │ │ │ │ ├── TensorDeviceCuda.h │ │ │ │ ├── TensorDeviceDefault.h │ │ │ │ ├── TensorDeviceSycl.h │ │ │ │ ├── TensorDeviceThreadPool.h │ │ │ │ ├── TensorDimensionList.h │ │ │ │ ├── TensorDimensions.h │ │ │ │ ├── TensorEvalTo.h │ │ │ │ ├── TensorEvaluator.h │ │ │ │ ├── TensorExecutor.h │ │ │ │ ├── TensorExpr.h │ │ │ │ ├── TensorFFT.h │ │ │ │ ├── TensorFixedSize.h │ │ │ │ ├── TensorForcedEval.h │ │ │ │ ├── TensorForwardDeclarations.h │ │ │ │ ├── TensorFunctors.h │ │ │ │ ├── TensorGenerator.h │ │ │ │ ├── TensorGlobalFunctions.h │ │ │ │ ├── TensorIO.h │ │ │ │ ├── TensorImagePatch.h │ │ │ │ ├── TensorIndexList.h │ │ │ │ ├── TensorInflation.h │ │ │ │ ├── TensorInitializer.h │ │ │ │ ├── TensorIntDiv.h │ │ │ │ ├── TensorLayoutSwap.h │ │ │ │ ├── TensorMacros.h │ │ │ │ ├── TensorMap.h │ │ │ │ ├── TensorMeta.h │ │ │ │ ├── TensorMorphing.h │ │ │ │ ├── TensorPadding.h │ │ │ │ ├── TensorPatch.h │ │ │ │ ├── TensorRandom.h │ │ │ │ ├── TensorReduction.h │ │ │ │ ├── TensorReductionCuda.h │ │ │ │ ├── TensorReductionSycl.h │ │ │ │ ├── TensorRef.h │ │ │ │ ├── TensorReverse.h │ │ │ │ ├── TensorScan.h │ │ │ │ ├── TensorShuffling.h │ │ │ │ ├── TensorStorage.h │ │ │ │ ├── TensorStriding.h │ │ │ │ ├── TensorSycl.h │ │ │ │ ├── TensorSyclConvertToDeviceExpression.h │ │ │ │ ├── TensorSyclExprConstructor.h │ │ │ │ ├── TensorSyclExtractAccessor.h │ │ │ │ ├── TensorSyclExtractFunctors.h │ │ │ │ ├── TensorSyclLeafCount.h │ │ │ │ ├── TensorSyclPlaceHolderExpr.h │ │ │ │ ├── TensorSyclRun.h │ │ │ │ ├── TensorSyclTuple.h │ │ │ │ ├── TensorTraits.h │ │ │ │ ├── TensorUInt128.h │ │ │ │ └── TensorVolumePatch.h │ │ │ │ ├── TensorSymmetry │ │ │ │ ├── DynamicSymmetry.h │ │ │ │ ├── StaticSymmetry.h │ │ │ │ ├── Symmetry.h │ │ │ │ └── util │ │ │ │ │ └── TemplateGroupTheory.h │ │ │ │ ├── ThreadPool │ │ │ │ ├── EventCount.h │ │ │ │ ├── NonBlockingThreadPool.h │ │ │ │ ├── RunQueue.h │ │ │ │ ├── SimpleThreadPool.h │ │ │ │ ├── ThreadEnvironment.h │ │ │ │ ├── ThreadLocal.h │ │ │ │ ├── ThreadPoolInterface.h │ │ │ │ └── ThreadYield.h │ │ │ │ └── util │ │ │ │ ├── CXX11Meta.h │ │ │ │ ├── CXX11Workarounds.h │ │ │ │ ├── EmulateArray.h │ │ │ │ ├── EmulateCXX11Meta.h │ │ │ │ └── MaxSizeVector.h │ │ ├── EulerAngles │ │ ├── FFT │ │ ├── IterativeSolvers │ │ ├── KroneckerProduct │ │ ├── LevenbergMarquardt │ │ ├── MPRealSupport │ │ ├── MatrixFunctions │ │ ├── MoreVectorization │ │ ├── NonLinearOptimization │ │ ├── NumericalDiff │ │ ├── OpenGLSupport │ │ ├── Polynomials │ │ ├── Skyline │ │ ├── SparseExtra │ │ ├── SpecialFunctions │ │ ├── Splines │ │ └── src │ │ │ ├── AutoDiff │ │ │ ├── AutoDiffJacobian.h │ │ │ ├── AutoDiffScalar.h │ │ │ └── AutoDiffVector.h │ │ │ ├── BVH │ │ │ ├── BVAlgorithms.h │ │ │ └── KdBVH.h │ │ │ ├── Eigenvalues │ │ │ └── ArpackSelfAdjointEigenSolver.h │ │ │ ├── EulerAngles │ │ │ ├── CMakeLists.txt │ │ │ ├── EulerAngles.h │ │ │ └── EulerSystem.h │ │ │ ├── FFT │ │ │ ├── ei_fftw_impl.h │ │ │ └── ei_kissfft_impl.h │ │ │ ├── IterativeSolvers │ │ │ ├── ConstrainedConjGrad.h │ │ │ ├── DGMRES.h │ │ │ ├── GMRES.h │ │ │ ├── IncompleteLU.h │ │ │ ├── IterationController.h │ │ │ ├── MINRES.h │ │ │ └── Scaling.h │ │ │ ├── KroneckerProduct │ │ │ └── KroneckerTensorProduct.h │ │ │ ├── LevenbergMarquardt │ │ │ ├── CopyrightMINPACK.txt │ │ │ ├── LMcovar.h │ │ │ ├── LMonestep.h │ │ │ ├── LMpar.h │ │ │ ├── LMqrsolv.h │ │ │ └── LevenbergMarquardt.h │ │ │ ├── MatrixFunctions │ │ │ ├── MatrixExponential.h │ │ │ ├── MatrixFunction.h │ │ │ ├── MatrixLogarithm.h │ │ │ ├── MatrixPower.h │ │ │ ├── MatrixSquareRoot.h │ │ │ └── StemFunction.h │ │ │ ├── MoreVectorization │ │ │ └── MathFunctions.h │ │ │ ├── NonLinearOptimization │ │ │ ├── HybridNonLinearSolver.h │ │ │ ├── LevenbergMarquardt.h │ │ │ ├── chkder.h │ │ │ ├── covar.h │ │ │ ├── dogleg.h │ │ │ ├── fdjac1.h │ │ │ ├── lmpar.h │ │ │ ├── qrsolv.h │ │ │ ├── r1mpyq.h │ │ │ ├── r1updt.h │ │ │ └── rwupdt.h │ │ │ ├── NumericalDiff │ │ │ └── NumericalDiff.h │ │ │ ├── Polynomials │ │ │ ├── Companion.h │ │ │ ├── PolynomialSolver.h │ │ │ └── PolynomialUtils.h │ │ │ ├── Skyline │ │ │ ├── SkylineInplaceLU.h │ │ │ ├── SkylineMatrix.h │ │ │ ├── SkylineMatrixBase.h │ │ │ ├── SkylineProduct.h │ │ │ ├── SkylineStorage.h │ │ │ └── SkylineUtil.h │ │ │ ├── SparseExtra │ │ │ ├── BlockOfDynamicSparseMatrix.h │ │ │ ├── BlockSparseMatrix.h │ │ │ ├── DynamicSparseMatrix.h │ │ │ ├── MarketIO.h │ │ │ ├── MatrixMarketIterator.h │ │ │ └── RandomSetter.h │ │ │ ├── SpecialFunctions │ │ │ ├── SpecialFunctionsArrayAPI.h │ │ │ ├── SpecialFunctionsFunctors.h │ │ │ ├── SpecialFunctionsHalf.h │ │ │ ├── SpecialFunctionsImpl.h │ │ │ ├── SpecialFunctionsPacketMath.h │ │ │ └── arch │ │ │ │ └── CUDA │ │ │ │ └── CudaSpecialFunctions.h │ │ │ └── Splines │ │ │ ├── Spline.h │ │ │ ├── SplineFitting.h │ │ │ └── SplineFwd.h │ │ ├── README.txt │ │ ├── bench │ │ └── bench_svd.cpp │ │ ├── doc │ │ ├── CMakeLists.txt │ │ ├── Overview.dox │ │ ├── eigendoxy_layout.xml.in │ │ ├── examples │ │ │ ├── BVH_Example.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── EulerAngles.cpp │ │ │ ├── FFT.cpp │ │ │ ├── MatrixExponential.cpp │ │ │ ├── MatrixFunction.cpp │ │ │ ├── MatrixLogarithm.cpp │ │ │ ├── MatrixPower.cpp │ │ │ ├── MatrixPower_optimal.cpp │ │ │ ├── MatrixSine.cpp │ │ │ ├── MatrixSinh.cpp │ │ │ ├── MatrixSquareRoot.cpp │ │ │ ├── PolynomialSolver1.cpp │ │ │ └── PolynomialUtils1.cpp │ │ └── snippets │ │ │ └── CMakeLists.txt │ │ └── test │ │ ├── BVH.cpp │ │ ├── CMakeLists.txt │ │ ├── EulerAngles.cpp │ │ ├── FFT.cpp │ │ ├── FFTW.cpp │ │ ├── NonLinearOptimization.cpp │ │ ├── NumericalDiff.cpp │ │ ├── alignedvector3.cpp │ │ ├── autodiff.cpp │ │ ├── autodiff_scalar.cpp │ │ ├── cxx11_eventcount.cpp │ │ ├── cxx11_meta.cpp │ │ ├── cxx11_non_blocking_thread_pool.cpp │ │ ├── cxx11_runqueue.cpp │ │ ├── cxx11_tensor_argmax.cpp │ │ ├── cxx11_tensor_argmax_cuda.cu │ │ ├── cxx11_tensor_assign.cpp │ │ ├── cxx11_tensor_broadcast_sycl.cpp │ │ ├── cxx11_tensor_broadcasting.cpp │ │ ├── cxx11_tensor_cast_float16_cuda.cu │ │ ├── cxx11_tensor_casts.cpp │ │ ├── cxx11_tensor_chipping.cpp │ │ ├── cxx11_tensor_comparisons.cpp │ │ ├── cxx11_tensor_complex_cuda.cu │ │ ├── cxx11_tensor_complex_cwise_ops_cuda.cu │ │ ├── cxx11_tensor_concatenation.cpp │ │ ├── cxx11_tensor_const.cpp │ │ ├── cxx11_tensor_contract_cuda.cu │ │ ├── cxx11_tensor_contraction.cpp │ │ ├── cxx11_tensor_convolution.cpp │ │ ├── cxx11_tensor_cuda.cu │ │ ├── cxx11_tensor_custom_index.cpp │ │ ├── cxx11_tensor_custom_op.cpp │ │ ├── cxx11_tensor_device.cu │ │ ├── cxx11_tensor_device_sycl.cpp │ │ ├── cxx11_tensor_dimension.cpp │ │ ├── cxx11_tensor_empty.cpp │ │ ├── cxx11_tensor_expr.cpp │ │ ├── cxx11_tensor_fft.cpp │ │ ├── cxx11_tensor_fixed_size.cpp │ │ ├── cxx11_tensor_forced_eval.cpp │ │ ├── cxx11_tensor_forced_eval_sycl.cpp │ │ ├── cxx11_tensor_generator.cpp │ │ ├── cxx11_tensor_ifft.cpp │ │ ├── cxx11_tensor_image_patch.cpp │ │ ├── cxx11_tensor_index_list.cpp │ │ ├── cxx11_tensor_inflation.cpp │ │ ├── cxx11_tensor_intdiv.cpp │ │ ├── cxx11_tensor_io.cpp │ │ ├── cxx11_tensor_layout_swap.cpp │ │ ├── cxx11_tensor_lvalue.cpp │ │ ├── cxx11_tensor_map.cpp │ │ ├── cxx11_tensor_math.cpp │ │ ├── cxx11_tensor_mixed_indices.cpp │ │ ├── cxx11_tensor_morphing.cpp │ │ ├── cxx11_tensor_notification.cpp │ │ ├── cxx11_tensor_of_complex.cpp │ │ ├── cxx11_tensor_of_const_values.cpp │ │ ├── cxx11_tensor_of_float16_cuda.cu │ │ ├── cxx11_tensor_of_strings.cpp │ │ ├── cxx11_tensor_padding.cpp │ │ ├── cxx11_tensor_patch.cpp │ │ ├── cxx11_tensor_random.cpp │ │ ├── cxx11_tensor_random_cuda.cu │ │ ├── cxx11_tensor_reduction.cpp │ │ ├── cxx11_tensor_reduction_cuda.cu │ │ ├── cxx11_tensor_reduction_sycl.cpp │ │ ├── cxx11_tensor_ref.cpp │ │ ├── cxx11_tensor_reverse.cpp │ │ ├── cxx11_tensor_roundings.cpp │ │ ├── cxx11_tensor_scan.cpp │ │ ├── cxx11_tensor_scan_cuda.cu │ │ ├── cxx11_tensor_shuffling.cpp │ │ ├── cxx11_tensor_simple.cpp │ │ ├── cxx11_tensor_striding.cpp │ │ ├── cxx11_tensor_sugar.cpp │ │ ├── cxx11_tensor_sycl.cpp │ │ ├── cxx11_tensor_symmetry.cpp │ │ ├── cxx11_tensor_thread_pool.cpp │ │ ├── cxx11_tensor_uint128.cpp │ │ ├── cxx11_tensor_volume_patch.cpp │ │ ├── dgmres.cpp │ │ ├── forward_adolc.cpp │ │ ├── gmres.cpp │ │ ├── kronecker_product.cpp │ │ ├── levenberg_marquardt.cpp │ │ ├── matrix_exponential.cpp │ │ ├── matrix_function.cpp │ │ ├── matrix_functions.h │ │ ├── matrix_power.cpp │ │ ├── matrix_square_root.cpp │ │ ├── minres.cpp │ │ ├── mpreal │ │ └── mpreal.h │ │ ├── mpreal_support.cpp │ │ ├── openglsupport.cpp │ │ ├── polynomialsolver.cpp │ │ ├── polynomialutils.cpp │ │ ├── sparse_extra.cpp │ │ ├── special_functions.cpp │ │ └── splines.cpp └── glew32 │ └── glew32.lib ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/.gitignore -------------------------------------------------------------------------------- /Data/Misc/MuscleVAE_force.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/Data/Misc/MuscleVAE_force.txt -------------------------------------------------------------------------------- /Data/Misc/drawstuff/arrow.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/Data/Misc/drawstuff/arrow.obj -------------------------------------------------------------------------------- /Data/Misc/drawstuff/checkered.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/Data/Misc/drawstuff/checkered.ppm -------------------------------------------------------------------------------- /Data/Misc/drawstuff/ground.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/Data/Misc/drawstuff/ground.ppm -------------------------------------------------------------------------------- /Data/Misc/drawstuff/sky.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/Data/Misc/drawstuff/sky.ppm -------------------------------------------------------------------------------- /Data/Misc/drawstuff/soft_checkered.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/Data/Misc/drawstuff/soft_checkered.ppm -------------------------------------------------------------------------------- /Data/Misc/drawstuff/wood.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/Data/Misc/drawstuff/wood.ppm -------------------------------------------------------------------------------- /Data/Misc/manual_muscle_kp4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/Data/Misc/manual_muscle_kp4.txt -------------------------------------------------------------------------------- /Data/Misc/muscle_character.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/Data/Misc/muscle_character.json -------------------------------------------------------------------------------- /Data/Misc/muscle_character_full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/Data/Misc/muscle_character_full.json -------------------------------------------------------------------------------- /Data/NNModel/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/Data/NNModel/config.yml -------------------------------------------------------------------------------- /Data/NNModel/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/Data/NNModel/test.yml -------------------------------------------------------------------------------- /Data/Parameters/muscle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/Data/Parameters/muscle.yml -------------------------------------------------------------------------------- /Data/Parameters/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/Data/Parameters/test.yml -------------------------------------------------------------------------------- /Data/ReferenceData/walk_run_jump/lafan_jump.bvh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/Data/ReferenceData/walk_run_jump/lafan_jump.bvh -------------------------------------------------------------------------------- /Data/ReferenceData/walk_run_jump/lafan_run.bvh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/Data/ReferenceData/walk_run_jump/lafan_run.bvh -------------------------------------------------------------------------------- /Data/ReferenceData/walk_run_jump/lafan_walk.bvh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/Data/ReferenceData/walk_run_jump/lafan_walk.bvh -------------------------------------------------------------------------------- /DrawStuffUtils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/DrawStuffUtils/__init__.py -------------------------------------------------------------------------------- /DrawStuffUtils/init_viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/DrawStuffUtils/init_viewer.py -------------------------------------------------------------------------------- /ModifyODESrc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/.gitignore -------------------------------------------------------------------------------- /ModifyODESrc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/CMakeLists.txt -------------------------------------------------------------------------------- /ModifyODESrc/DrawStuffWorld.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/DrawStuffWorld.pxd -------------------------------------------------------------------------------- /ModifyODESrc/EigenWrapper.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/EigenWrapper.pxd -------------------------------------------------------------------------------- /ModifyODESrc/ModifyODE.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/ModifyODE.pxd -------------------------------------------------------------------------------- /ModifyODESrc/MotionUtils.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/MotionUtils.pxd -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/Ice/IceAABB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/Ice/IceAABB.cpp -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/Ice/IceAABB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/Ice/IceAABB.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/Ice/IceAxes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/Ice/IceAxes.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/Ice/IceBoundingSphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/Ice/IceBoundingSphere.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/Ice/IceContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/Ice/IceContainer.cpp -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/Ice/IceContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/Ice/IceContainer.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/Ice/IceFPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/Ice/IceFPU.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/Ice/IceHPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/Ice/IceHPoint.cpp -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/Ice/IceHPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/Ice/IceHPoint.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/Ice/IceIndexedTriangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/Ice/IceIndexedTriangle.cpp -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/Ice/IceIndexedTriangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/Ice/IceIndexedTriangle.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/Ice/IceLSS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/Ice/IceLSS.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/Ice/IceMatrix3x3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/Ice/IceMatrix3x3.cpp -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/Ice/IceMatrix3x3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/Ice/IceMatrix3x3.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/Ice/IceMatrix4x4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/Ice/IceMatrix4x4.cpp -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/Ice/IceMatrix4x4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/Ice/IceMatrix4x4.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/Ice/IceMemoryMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/Ice/IceMemoryMacros.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/Ice/IceOBB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/Ice/IceOBB.cpp -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/Ice/IceOBB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/Ice/IceOBB.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/Ice/IcePairs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/Ice/IcePairs.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/Ice/IcePlane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/Ice/IcePlane.cpp -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/Ice/IcePlane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/Ice/IcePlane.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/Ice/IcePoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/Ice/IcePoint.cpp -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/Ice/IcePoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/Ice/IcePoint.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/Ice/IcePreprocessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/Ice/IcePreprocessor.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/Ice/IceRandom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/Ice/IceRandom.cpp -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/Ice/IceRandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/Ice/IceRandom.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/Ice/IceRay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/Ice/IceRay.cpp -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/Ice/IceRay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/Ice/IceRay.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/Ice/IceRevisitedRadix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/Ice/IceRevisitedRadix.cpp -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/Ice/IceRevisitedRadix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/Ice/IceRevisitedRadix.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/Ice/IceSegment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/Ice/IceSegment.cpp -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/Ice/IceSegment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/Ice/IceSegment.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/Ice/IceTriList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/Ice/IceTriList.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/Ice/IceTriangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/Ice/IceTriangle.cpp -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/Ice/IceTriangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/Ice/IceTriangle.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/Ice/IceTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/Ice/IceTypes.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/Ice/IceUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/Ice/IceUtils.cpp -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/Ice/IceUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/Ice/IceUtils.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/OPC_AABBCollider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/OPC_AABBCollider.cpp -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/OPC_AABBCollider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/OPC_AABBCollider.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/OPC_AABBTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/OPC_AABBTree.cpp -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/OPC_AABBTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/OPC_AABBTree.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/OPC_BaseModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/OPC_BaseModel.cpp -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/OPC_BaseModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/OPC_BaseModel.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/OPC_BoxBoxOverlap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/OPC_BoxBoxOverlap.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/OPC_Collider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/OPC_Collider.cpp -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/OPC_Collider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/OPC_Collider.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/OPC_Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/OPC_Common.cpp -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/OPC_Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/OPC_Common.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/OPC_HybridModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/OPC_HybridModel.cpp -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/OPC_HybridModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/OPC_HybridModel.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/OPC_IceHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/OPC_IceHook.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/OPC_LSSAABBOverlap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/OPC_LSSAABBOverlap.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/OPC_LSSCollider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/OPC_LSSCollider.cpp -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/OPC_LSSCollider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/OPC_LSSCollider.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/OPC_LSSTriOverlap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/OPC_LSSTriOverlap.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/OPC_MeshInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/OPC_MeshInterface.cpp -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/OPC_MeshInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/OPC_MeshInterface.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/OPC_Model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/OPC_Model.cpp -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/OPC_Model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/OPC_Model.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/OPC_OBBCollider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/OPC_OBBCollider.cpp -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/OPC_OBBCollider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/OPC_OBBCollider.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/OPC_OptimizedTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/OPC_OptimizedTree.cpp -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/OPC_OptimizedTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/OPC_OptimizedTree.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/OPC_Picking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/OPC_Picking.cpp -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/OPC_Picking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/OPC_Picking.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/OPC_PlanesAABBOverlap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/OPC_PlanesAABBOverlap.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/OPC_PlanesCollider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/OPC_PlanesCollider.cpp -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/OPC_PlanesCollider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/OPC_PlanesCollider.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/OPC_PlanesTriOverlap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/OPC_PlanesTriOverlap.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/OPC_RayAABBOverlap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/OPC_RayAABBOverlap.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/OPC_RayCollider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/OPC_RayCollider.cpp -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/OPC_RayCollider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/OPC_RayCollider.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/OPC_RayTriOverlap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/OPC_RayTriOverlap.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/OPC_Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/OPC_Settings.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/OPC_SphereAABBOverlap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/OPC_SphereAABBOverlap.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/OPC_SphereCollider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/OPC_SphereCollider.cpp -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/OPC_SphereCollider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/OPC_SphereCollider.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/OPC_SphereTriOverlap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/OPC_SphereTriOverlap.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/OPC_TreeBuilders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/OPC_TreeBuilders.cpp -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/OPC_TreeBuilders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/OPC_TreeBuilders.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/OPC_TreeCollider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/OPC_TreeCollider.cpp -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/OPC_TreeCollider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/OPC_TreeCollider.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/OPC_TriBoxOverlap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/OPC_TriBoxOverlap.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/OPC_TriTriOverlap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/OPC_TriTriOverlap.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/OPC_VolumeCollider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/OPC_VolumeCollider.cpp -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/OPC_VolumeCollider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/OPC_VolumeCollider.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/Opcode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/Opcode.cpp -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/Opcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/Opcode.h -------------------------------------------------------------------------------- /ModifyODESrc/OPCODE/Stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/OPCODE/Stdafx.h -------------------------------------------------------------------------------- /ModifyODESrc/Utils/EigenWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/Utils/EigenWrapper.cpp -------------------------------------------------------------------------------- /ModifyODESrc/Utils/MixQuaternion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/Utils/MixQuaternion.cpp -------------------------------------------------------------------------------- /ModifyODESrc/Utils/MixQuaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/Utils/MixQuaternion.h -------------------------------------------------------------------------------- /ModifyODESrc/Utils/PDControlAdd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/Utils/PDControlAdd.cpp -------------------------------------------------------------------------------- /ModifyODESrc/Utils/PDControlAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/Utils/PDControlAdd.h -------------------------------------------------------------------------------- /ModifyODESrc/Utils/QuaternionWithGrad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/Utils/QuaternionWithGrad.cpp -------------------------------------------------------------------------------- /ModifyODESrc/Utils/QuaternionWithGrad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/Utils/QuaternionWithGrad.h -------------------------------------------------------------------------------- /ModifyODESrc/Utils/inertia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/Utils/inertia.cpp -------------------------------------------------------------------------------- /ModifyODESrc/Utils/inertia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/Utils/inertia.h -------------------------------------------------------------------------------- /ModifyODESrc/Utils/joint_local_quat_batch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/Utils/joint_local_quat_batch.cpp -------------------------------------------------------------------------------- /ModifyODESrc/Utils/joint_local_quat_batch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/Utils/joint_local_quat_batch.h -------------------------------------------------------------------------------- /ModifyODESrc/VclSimuBackend.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/VclSimuBackend.pyx -------------------------------------------------------------------------------- /ModifyODESrc/ZERO_CHECK.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/ZERO_CHECK.proj -------------------------------------------------------------------------------- /ModifyODESrc/clear.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/clear.cmd -------------------------------------------------------------------------------- /ModifyODESrc/clear.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/clear.sh -------------------------------------------------------------------------------- /ModifyODESrc/drawstuff/Makefile.am: -------------------------------------------------------------------------------- 1 | if ENABLE_DRAWSTUFF 2 | SUBDIRS = src dstest 3 | EXTRA_DIST = textures 4 | endif 5 | -------------------------------------------------------------------------------- /ModifyODESrc/drawstuff/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/drawstuff/Makefile.in -------------------------------------------------------------------------------- /ModifyODESrc/drawstuff/Visualizer/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | lib 3 | -------------------------------------------------------------------------------- /ModifyODESrc/drawstuff/Visualizer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/drawstuff/Visualizer/CMakeLists.txt -------------------------------------------------------------------------------- /ModifyODESrc/drawstuff/Visualizer/drawByWorld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/drawstuff/Visualizer/drawByWorld.cpp -------------------------------------------------------------------------------- /ModifyODESrc/drawstuff/dstest/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/drawstuff/dstest/Makefile.am -------------------------------------------------------------------------------- /ModifyODESrc/drawstuff/dstest/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/drawstuff/dstest/Makefile.in -------------------------------------------------------------------------------- /ModifyODESrc/drawstuff/dstest/dstest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/drawstuff/dstest/dstest.cpp -------------------------------------------------------------------------------- /ModifyODESrc/drawstuff/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/drawstuff/src/Makefile.am -------------------------------------------------------------------------------- /ModifyODESrc/drawstuff/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/drawstuff/src/Makefile.in -------------------------------------------------------------------------------- /ModifyODESrc/drawstuff/src/drawstuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/drawstuff/src/drawstuff.cpp -------------------------------------------------------------------------------- /ModifyODESrc/drawstuff/src/drawstuffWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/drawstuff/src/drawstuffWrapper.cpp -------------------------------------------------------------------------------- /ModifyODESrc/drawstuff/src/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/drawstuff/src/internal.h -------------------------------------------------------------------------------- /ModifyODESrc/drawstuff/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/drawstuff/src/resource.h -------------------------------------------------------------------------------- /ModifyODESrc/drawstuff/src/resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/drawstuff/src/resources.rc -------------------------------------------------------------------------------- /ModifyODESrc/drawstuff/src/windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/drawstuff/src/windows.cpp -------------------------------------------------------------------------------- /ModifyODESrc/include/drawstuff/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | noinst_HEADERS = drawstuff.h version.h 3 | 4 | -------------------------------------------------------------------------------- /ModifyODESrc/include/drawstuff/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/include/drawstuff/Makefile.in -------------------------------------------------------------------------------- /ModifyODESrc/include/drawstuff/drawstuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/include/drawstuff/drawstuff.h -------------------------------------------------------------------------------- /ModifyODESrc/include/drawstuff/drawstuffWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/include/drawstuff/drawstuffWrapper.h -------------------------------------------------------------------------------- /ModifyODESrc/include/drawstuff/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/include/drawstuff/version.h -------------------------------------------------------------------------------- /ModifyODESrc/include/ode/collision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/include/ode/collision.h -------------------------------------------------------------------------------- /ModifyODESrc/include/ode/collision_space.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/include/ode/collision_space.h -------------------------------------------------------------------------------- /ModifyODESrc/include/ode/collision_trimesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/include/ode/collision_trimesh.h -------------------------------------------------------------------------------- /ModifyODESrc/include/ode/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/include/ode/common.h -------------------------------------------------------------------------------- /ModifyODESrc/include/ode/compatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/include/ode/compatibility.h -------------------------------------------------------------------------------- /ModifyODESrc/include/ode/contact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/include/ode/contact.h -------------------------------------------------------------------------------- /ModifyODESrc/include/ode/dampedstepcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/include/ode/dampedstepcommon.h -------------------------------------------------------------------------------- /ModifyODESrc/include/ode/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/include/ode/error.h -------------------------------------------------------------------------------- /ModifyODESrc/include/ode/export-dif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/include/ode/export-dif.h -------------------------------------------------------------------------------- /ModifyODESrc/include/ode/extutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/include/ode/extutils.h -------------------------------------------------------------------------------- /ModifyODESrc/include/ode/feature_info.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ModifyODESrc/include/ode/mass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/include/ode/mass.h -------------------------------------------------------------------------------- /ModifyODESrc/include/ode/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/include/ode/matrix.h -------------------------------------------------------------------------------- /ModifyODESrc/include/ode/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/include/ode/memory.h -------------------------------------------------------------------------------- /ModifyODESrc/include/ode/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/include/ode/misc.h -------------------------------------------------------------------------------- /ModifyODESrc/include/ode/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/include/ode/objects.h -------------------------------------------------------------------------------- /ModifyODESrc/include/ode/ode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/include/ode/ode.h -------------------------------------------------------------------------------- /ModifyODESrc/include/ode/odeconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/include/ode/odeconfig.h -------------------------------------------------------------------------------- /ModifyODESrc/include/ode/odecpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/include/ode/odecpp.h -------------------------------------------------------------------------------- /ModifyODESrc/include/ode/odecpp_collision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/include/ode/odecpp_collision.h -------------------------------------------------------------------------------- /ModifyODESrc/include/ode/odeinit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/include/ode/odeinit.h -------------------------------------------------------------------------------- /ModifyODESrc/include/ode/odemath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/include/ode/odemath.h -------------------------------------------------------------------------------- /ModifyODESrc/include/ode/odemath_legacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/include/ode/odemath_legacy.h -------------------------------------------------------------------------------- /ModifyODESrc/include/ode/rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/include/ode/rotation.h -------------------------------------------------------------------------------- /ModifyODESrc/include/ode/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/include/ode/timer.h -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/Makefile.am -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/Makefile.in -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/alloc.c -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/ccd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/ccd.c -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/ccd/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/ccd/alloc.h -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/ccd/ccd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/ccd/ccd.h -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/ccd/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/ccd/compiler.h -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/ccd/dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/ccd/dbg.h -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/ccd/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/ccd/list.h -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/ccd/polytope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/ccd/polytope.h -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/ccd/precision.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/ccd/precision.h.in -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/ccd/quat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/ccd/quat.h -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/ccd/simplex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/ccd/simplex.h -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/ccd/support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/ccd/support.h -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/ccd/vec3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/ccd/vec3.h -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/config.h.in -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/custom/ccdcustom/quat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/custom/ccdcustom/quat.h -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/custom/ccdcustom/vec3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/custom/ccdcustom/vec3.h -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/mpr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/mpr.c -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/polytope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/polytope.c -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/support.c -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/testsuites/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/testsuites/Makefile.am -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/testsuites/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/testsuites/Makefile.in -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/testsuites/bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/testsuites/bench.c -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/testsuites/bench2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/testsuites/bench2.c -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/testsuites/boxbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/testsuites/boxbox.c -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/testsuites/boxbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/testsuites/boxbox.h -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/testsuites/boxcyl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/testsuites/boxcyl.c -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/testsuites/boxcyl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/testsuites/boxcyl.h -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/testsuites/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/testsuites/common.c -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/testsuites/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/testsuites/common.h -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/testsuites/cu/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/testsuites/cu/COPYING -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/testsuites/cu/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/testsuites/cu/Makefile.am -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/testsuites/cu/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/testsuites/cu/Makefile.in -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/testsuites/cu/cu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/testsuites/cu/cu.c -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/testsuites/cu/cu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/testsuites/cu/cu.h -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/testsuites/cylcyl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/testsuites/cylcyl.c -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/testsuites/cylcyl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/testsuites/cylcyl.h -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/testsuites/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/testsuites/main.c -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/testsuites/mpr_boxbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/testsuites/mpr_boxbox.c -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/testsuites/mpr_boxbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/testsuites/mpr_boxbox.h -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/testsuites/mpr_boxcyl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/testsuites/mpr_boxcyl.c -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/testsuites/mpr_boxcyl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/testsuites/mpr_boxcyl.h -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/testsuites/mpr_cylcyl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/testsuites/mpr_cylcyl.c -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/testsuites/mpr_cylcyl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/testsuites/mpr_cylcyl.h -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/testsuites/polytope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/testsuites/polytope.c -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/testsuites/polytope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/testsuites/polytope.h -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/testsuites/spheresphere.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/testsuites/spheresphere.c -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/testsuites/spheresphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/testsuites/spheresphere.h -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/testsuites/support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/testsuites/support.c -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/testsuites/support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/testsuites/support.h -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/testsuites/vec3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/testsuites/vec3.c -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/testsuites/vec3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/testsuites/vec3.h -------------------------------------------------------------------------------- /ModifyODESrc/libccd/src/vec3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/libccd/src/vec3.c -------------------------------------------------------------------------------- /ModifyODESrc/readme.md: -------------------------------------------------------------------------------- 1 | Use 64 bit compiler -------------------------------------------------------------------------------- /ModifyODESrc/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/setup.py -------------------------------------------------------------------------------- /ModifyODESrc/src/.gitignore: -------------------------------------------------------------------------------- 1 | backup -------------------------------------------------------------------------------- /ModifyODESrc/src/array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/array.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/array.h -------------------------------------------------------------------------------- /ModifyODESrc/src/box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/box.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/capsule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/capsule.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/collision_cylinder_box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/collision_cylinder_box.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/collision_cylinder_plane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/collision_cylinder_plane.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/collision_cylinder_sphere.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/collision_cylinder_sphere.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/collision_cylinder_trimesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/collision_cylinder_trimesh.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/collision_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/collision_kernel.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/collision_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/collision_kernel.h -------------------------------------------------------------------------------- /ModifyODESrc/src/collision_libccd.cpp.backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/collision_libccd.cpp.backup -------------------------------------------------------------------------------- /ModifyODESrc/src/collision_libccd.h.backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/collision_libccd.h.backup -------------------------------------------------------------------------------- /ModifyODESrc/src/collision_quadtreespace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/collision_quadtreespace.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/collision_sapspace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/collision_sapspace.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/collision_space.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/collision_space.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/collision_space_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/collision_space_internal.h -------------------------------------------------------------------------------- /ModifyODESrc/src/collision_std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/collision_std.h -------------------------------------------------------------------------------- /ModifyODESrc/src/collision_transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/collision_transform.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/collision_transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/collision_transform.h -------------------------------------------------------------------------------- /ModifyODESrc/src/collision_trimesh_box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/collision_trimesh_box.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/collision_trimesh_ccylinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/collision_trimesh_ccylinder.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/collision_trimesh_colliders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/collision_trimesh_colliders.h -------------------------------------------------------------------------------- /ModifyODESrc/src/collision_trimesh_disabled.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/collision_trimesh_disabled.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/collision_trimesh_distance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/collision_trimesh_distance.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/collision_trimesh_gimpact.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/collision_trimesh_gimpact.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/collision_trimesh_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/collision_trimesh_internal.h -------------------------------------------------------------------------------- /ModifyODESrc/src/collision_trimesh_opcode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/collision_trimesh_opcode.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/collision_trimesh_plane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/collision_trimesh_plane.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/collision_trimesh_ray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/collision_trimesh_ray.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/collision_trimesh_sphere.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/collision_trimesh_sphere.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/collision_trimesh_trimesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/collision_trimesh_trimesh.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/collision_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/collision_util.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/collision_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/collision_util.h -------------------------------------------------------------------------------- /ModifyODESrc/src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/config.h -------------------------------------------------------------------------------- /ModifyODESrc/src/convex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/convex.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/cylinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/cylinder.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/dampedstep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/dampedstep.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/dampedstep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/dampedstep.h -------------------------------------------------------------------------------- /ModifyODESrc/src/dampedstepcommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/dampedstepcommon.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/dampedstepwithinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/dampedstepwithinfo.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/error.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/export-dif.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/export-dif.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/extutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/extutils.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/fastdot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/fastdot.c -------------------------------------------------------------------------------- /ModifyODESrc/src/fastldlt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/fastldlt.c -------------------------------------------------------------------------------- /ModifyODESrc/src/fastlsolve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/fastlsolve.c -------------------------------------------------------------------------------- /ModifyODESrc/src/fastltsolve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/fastltsolve.c -------------------------------------------------------------------------------- /ModifyODESrc/src/heightfield.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/heightfield.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/heightfield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/heightfield.h -------------------------------------------------------------------------------- /ModifyODESrc/src/joints/amotor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/joints/amotor.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/joints/amotor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/joints/amotor.h -------------------------------------------------------------------------------- /ModifyODESrc/src/joints/ball.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/joints/ball.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/joints/ball.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/joints/ball.h -------------------------------------------------------------------------------- /ModifyODESrc/src/joints/contact.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/joints/contact.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/joints/contact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/joints/contact.h -------------------------------------------------------------------------------- /ModifyODESrc/src/joints/contact2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/joints/contact2.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/joints/contact2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/joints/contact2.h -------------------------------------------------------------------------------- /ModifyODESrc/src/joints/contact3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/joints/contact3.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/joints/contact3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/joints/contact3.h -------------------------------------------------------------------------------- /ModifyODESrc/src/joints/contactmaxforce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/joints/contactmaxforce.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/joints/contactmaxforce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/joints/contactmaxforce.h -------------------------------------------------------------------------------- /ModifyODESrc/src/joints/emptyball.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/joints/emptyball.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/joints/emptyball.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/joints/emptyball.h -------------------------------------------------------------------------------- /ModifyODESrc/src/joints/fixed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/joints/fixed.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/joints/fixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/joints/fixed.h -------------------------------------------------------------------------------- /ModifyODESrc/src/joints/hinge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/joints/hinge.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/joints/hinge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/joints/hinge.h -------------------------------------------------------------------------------- /ModifyODESrc/src/joints/hinge2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/joints/hinge2.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/joints/hinge2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/joints/hinge2.h -------------------------------------------------------------------------------- /ModifyODESrc/src/joints/joint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/joints/joint.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/joints/joint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/joints/joint.h -------------------------------------------------------------------------------- /ModifyODESrc/src/joints/joint_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/joints/joint_internal.h -------------------------------------------------------------------------------- /ModifyODESrc/src/joints/joints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/joints/joints.h -------------------------------------------------------------------------------- /ModifyODESrc/src/joints/lmotor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/joints/lmotor.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/joints/lmotor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/joints/lmotor.h -------------------------------------------------------------------------------- /ModifyODESrc/src/joints/null.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/joints/null.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/joints/null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/joints/null.h -------------------------------------------------------------------------------- /ModifyODESrc/src/joints/piston.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/joints/piston.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/joints/piston.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/joints/piston.h -------------------------------------------------------------------------------- /ModifyODESrc/src/joints/plane2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/joints/plane2d.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/joints/plane2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/joints/plane2d.h -------------------------------------------------------------------------------- /ModifyODESrc/src/joints/pr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/joints/pr.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/joints/pr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/joints/pr.h -------------------------------------------------------------------------------- /ModifyODESrc/src/joints/pu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/joints/pu.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/joints/pu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/joints/pu.h -------------------------------------------------------------------------------- /ModifyODESrc/src/joints/slider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/joints/slider.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/joints/slider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/joints/slider.h -------------------------------------------------------------------------------- /ModifyODESrc/src/joints/universal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/joints/universal.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/joints/universal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/joints/universal.h -------------------------------------------------------------------------------- /ModifyODESrc/src/lcp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/lcp.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/lcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/lcp.h -------------------------------------------------------------------------------- /ModifyODESrc/src/mass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/mass.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/mat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/mat.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/mat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/mat.h -------------------------------------------------------------------------------- /ModifyODESrc/src/matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/matrix.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/memory.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/misc.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/nextafterf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/nextafterf.c -------------------------------------------------------------------------------- /ModifyODESrc/src/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/objects.h -------------------------------------------------------------------------------- /ModifyODESrc/src/obstack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/obstack.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/obstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/obstack.h -------------------------------------------------------------------------------- /ModifyODESrc/src/ode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/ode.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/odeinit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/odeinit.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/odemath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/odemath.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/odeou.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/odeou.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/odeou.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/odeou.h -------------------------------------------------------------------------------- /ModifyODESrc/src/odetls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/odetls.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/odetls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/odetls.h -------------------------------------------------------------------------------- /ModifyODESrc/src/plane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/plane.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/quickstep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/quickstep.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/quickstep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/quickstep.h -------------------------------------------------------------------------------- /ModifyODESrc/src/ray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/ray.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/rotation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/rotation.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/sphere.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/sphere.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/step.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/step.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/step.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/step.h -------------------------------------------------------------------------------- /ModifyODESrc/src/step_resort_joints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/step_resort_joints.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/stepwithinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/stepwithinfo.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/timer.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/util.cpp -------------------------------------------------------------------------------- /ModifyODESrc/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ModifyODESrc/src/util.h -------------------------------------------------------------------------------- /Muscle/muscle_character.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/Muscle/muscle_character.py -------------------------------------------------------------------------------- /Muscle/muscle_scene_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/Muscle/muscle_scene_loader.py -------------------------------------------------------------------------------- /MuscleVAECore/Env/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/MuscleVAECore/Env/__init__.py -------------------------------------------------------------------------------- /MuscleVAECore/Env/muscle_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/MuscleVAECore/Env/muscle_env.py -------------------------------------------------------------------------------- /MuscleVAECore/Model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/MuscleVAECore/Model/__init__.py -------------------------------------------------------------------------------- /MuscleVAECore/Model/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/MuscleVAECore/Model/modules.py -------------------------------------------------------------------------------- /MuscleVAECore/Model/musclevae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/MuscleVAECore/Model/musclevae.py -------------------------------------------------------------------------------- /MuscleVAECore/Model/trajectory_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/MuscleVAECore/Model/trajectory_collection.py -------------------------------------------------------------------------------- /MuscleVAECore/Model/world_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/MuscleVAECore/Model/world_model.py -------------------------------------------------------------------------------- /MuscleVAECore/Utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/MuscleVAECore/Utils/__init__.py -------------------------------------------------------------------------------- /MuscleVAECore/Utils/diff_quat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/MuscleVAECore/Utils/diff_quat.py -------------------------------------------------------------------------------- /MuscleVAECore/Utils/index_counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/MuscleVAECore/Utils/index_counter.py -------------------------------------------------------------------------------- /MuscleVAECore/Utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/MuscleVAECore/Utils/misc.py -------------------------------------------------------------------------------- /MuscleVAECore/Utils/motion_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/MuscleVAECore/Utils/motion_dataset.py -------------------------------------------------------------------------------- /MuscleVAECore/Utils/motion_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/MuscleVAECore/Utils/motion_utils.py -------------------------------------------------------------------------------- /MuscleVAECore/Utils/mpi_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/MuscleVAECore/Utils/mpi_utils.py -------------------------------------------------------------------------------- /MuscleVAECore/Utils/pytorch_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/MuscleVAECore/Utils/pytorch_utils.py -------------------------------------------------------------------------------- /MuscleVAECore/Utils/radam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/MuscleVAECore/Utils/radam.py -------------------------------------------------------------------------------- /MuscleVAECore/Utils/replay_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/MuscleVAECore/Utils/replay_buffer.py -------------------------------------------------------------------------------- /MuscleVAECore/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PlayGround/playground_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/PlayGround/playground_util.py -------------------------------------------------------------------------------- /PlayGround/random_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/PlayGround/random_generation.py -------------------------------------------------------------------------------- /PlayGround/track_something.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/PlayGround/track_something.py -------------------------------------------------------------------------------- /PlayGround/velocity_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/PlayGround/velocity_control.py -------------------------------------------------------------------------------- /PlayGround/visualize_world_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/PlayGround/visualize_world_model.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/README.md -------------------------------------------------------------------------------- /Script/build_motion_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/Script/build_motion_dataset.py -------------------------------------------------------------------------------- /ThirdParty/EigenExtension/EigenBindingWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/EigenExtension/EigenBindingWrapper.h -------------------------------------------------------------------------------- /ThirdParty/EigenExtension/LinearEquSolve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/EigenExtension/LinearEquSolve.cpp -------------------------------------------------------------------------------- /ThirdParty/EigenExtension/LinearEquSolve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/EigenExtension/LinearEquSolve.h -------------------------------------------------------------------------------- /ThirdParty/EigenExtension/Mat3Euler.cpp: -------------------------------------------------------------------------------- 1 | #include "Mat3Euler.h" 2 | 3 | 4 | -------------------------------------------------------------------------------- /ThirdParty/EigenExtension/Mat3Euler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/EigenExtension/Mat3Euler.h -------------------------------------------------------------------------------- /ThirdParty/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/GL/glew.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/.hgeol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/.hgeol -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/CMakeLists.txt -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/COPYING.BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/COPYING.BSD -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/COPYING.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/COPYING.GPL -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/COPYING.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/COPYING.LGPL -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/COPYING.MINPACK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/COPYING.MINPACK -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/COPYING.MPL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/COPYING.MPL2 -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/COPYING.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/COPYING.README -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/CTestConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/CTestConfig.cmake -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/CTestCustom.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/CTestCustom.cmake.in -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/CMakeLists.txt -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/Cholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/Cholesky -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/CholmodSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/CholmodSupport -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/Core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/Core -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/Dense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/Dense -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/Eigen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/Eigen -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/Eigenvalues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/Eigenvalues -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/Geometry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/Geometry -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/Householder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/Householder -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/Jacobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/Jacobi -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/LU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/LU -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/MetisSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/MetisSupport -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/OrderingMethods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/OrderingMethods -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/PaStiXSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/PaStiXSupport -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/PardisoSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/PardisoSupport -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/QR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/QR -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/QtAlignedMalloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/QtAlignedMalloc -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/SPQRSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/SPQRSupport -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/SVD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/SVD -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/Sparse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/Sparse -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/SparseCholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/SparseCholesky -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/SparseCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/SparseCore -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/SparseLU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/SparseLU -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/SparseQR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/SparseQR -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/StdDeque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/StdDeque -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/StdList: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/StdList -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/StdVector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/StdVector -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/SuperLUSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/SuperLUSupport -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/UmfPackSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/UmfPackSupport -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/src/Cholesky/LDLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/src/Cholesky/LDLT.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/src/Cholesky/LLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/src/Cholesky/LLT.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/src/Core/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/src/Core/Array.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/src/Core/ArrayBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/src/Core/ArrayBase.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/src/Core/Assign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/src/Core/Assign.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/src/Core/Block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/src/Core/Block.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/src/Core/DenseBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/src/Core/DenseBase.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/src/Core/Diagonal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/src/Core/Diagonal.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/src/Core/Dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/src/Core/Dot.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/src/Core/EigenBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/src/Core/EigenBase.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/src/Core/Fuzzy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/src/Core/Fuzzy.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/src/Core/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/src/Core/IO.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/src/Core/Inverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/src/Core/Inverse.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/src/Core/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/src/Core/Map.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/src/Core/MapBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/src/Core/MapBase.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/src/Core/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/src/Core/Matrix.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/src/Core/NoAlias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/src/Core/NoAlias.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/src/Core/NumTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/src/Core/NumTraits.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/src/Core/Product.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/src/Core/Product.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/src/Core/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/src/Core/Random.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/src/Core/Redux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/src/Core/Redux.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/src/Core/Ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/src/Core/Ref.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/src/Core/Replicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/src/Core/Replicate.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/src/Core/Reverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/src/Core/Reverse.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/src/Core/Select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/src/Core/Select.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/src/Core/Solve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/src/Core/Solve.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/src/Core/Stride.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/src/Core/Stride.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/src/Core/Swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/src/Core/Swap.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/src/Core/Transpose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/src/Core/Transpose.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/src/Core/Visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/src/Core/Visitor.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/src/Core/util/Meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/src/Core/util/Meta.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/src/Jacobi/Jacobi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/src/Jacobi/Jacobi.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/src/LU/Determinant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/src/LU/Determinant.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/src/LU/FullPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/src/LU/FullPivLU.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/src/LU/InverseImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/src/LU/InverseImpl.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/src/SVD/BDCSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/src/SVD/BDCSVD.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/src/SVD/JacobiSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/src/SVD/JacobiSVD.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/src/SVD/SVDBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/src/SVD/SVDBase.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/src/misc/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/src/misc/Image.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/src/misc/Kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/src/misc/Kernel.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/src/misc/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/src/misc/blas.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/src/misc/lapack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/src/misc/lapack.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/Eigen/src/misc/lapacke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/Eigen/src/misc/lapacke.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/INSTALL -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/README.md -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/bench/BenchSparseUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/bench/BenchSparseUtil.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/bench/BenchTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/bench/BenchTimer.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/bench/BenchUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/bench/BenchUtil.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/bench/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/bench/README.txt -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/bench/basicbench.cxxlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/bench/basicbench.cxxlist -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/bench/basicbenchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/bench/basicbenchmark.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/bench/basicbenchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/bench/basicbenchmark.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/bench/benchBlasGemm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/bench/benchBlasGemm.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/bench/benchCholesky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/bench/benchCholesky.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/bench/benchEigenSolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/bench/benchEigenSolver.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/bench/benchFFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/bench/benchFFT.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/bench/benchGeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/bench/benchGeometry.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/bench/benchVecAdd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/bench/benchVecAdd.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/bench/bench_gemm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/bench/bench_gemm.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/bench/bench_norm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/bench/bench_norm.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/bench/bench_reverse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/bench/bench_reverse.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/bench/bench_sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/bench/bench_sum.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/bench/bench_unrolling: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/bench/bench_unrolling -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/bench/benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/bench/benchmark.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/bench/benchmarkSlice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/bench/benchmarkSlice.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/bench/benchmarkX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/bench/benchmarkX.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/bench/benchmarkXcwise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/bench/benchmarkXcwise.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/bench/benchmark_suite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/bench/benchmark_suite -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/bench/btl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/bench/btl/CMakeLists.txt -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/bench/btl/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/bench/btl/COPYING -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/bench/btl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/bench/btl/README -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/bench/btl/data/go_mean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/bench/btl/data/go_mean -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/bench/btl/data/mean.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/bench/btl/data/mean.cxx -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/bench/btl/data/smooth.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/bench/btl/data/smooth.cxx -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/bench/btl/libs/BLAS/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/bench/btl/libs/BLAS/blas.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/bench/dense_solvers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/bench/dense_solvers.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/bench/eig33.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/bench/eig33.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/bench/geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/bench/geometry.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/bench/quat_slerp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/bench/quat_slerp.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/bench/quatmul.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/bench/quatmul.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/bench/sparse_cholesky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/bench/sparse_cholesky.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/bench/sparse_lu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/bench/sparse_lu.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/bench/sparse_product.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/bench/sparse_product.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/bench/sparse_setter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/bench/sparse_setter.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/bench/sparse_transpose.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/bench/sparse_transpose.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/bench/sparse_trisolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/bench/sparse_trisolver.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/bench/spbench/spbench.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/bench/spbench/spbench.dtd -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/bench/spmv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/bench/spmv.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/bench/tensors/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/bench/tensors/README -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/bench/tensors/benchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/bench/tensors/benchmark.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/bench/vdw_new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/bench/vdw_new.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/CMakeLists.txt -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/GeneralRank1Update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/GeneralRank1Update.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/README.txt -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/Rank2Update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/Rank2Update.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/common.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/complex_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/complex_double.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/complex_single.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/complex_single.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/double.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/f2c/chbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/f2c/chbmv.c -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/f2c/chpmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/f2c/chpmv.c -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/f2c/complexdots.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/f2c/complexdots.c -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/f2c/ctbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/f2c/ctbmv.c -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/f2c/d_cnjg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/f2c/d_cnjg.c -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/f2c/datatypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/f2c/datatypes.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/f2c/drotm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/f2c/drotm.c -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/f2c/drotmg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/f2c/drotmg.c -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/f2c/dsbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/f2c/dsbmv.c -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/f2c/dspmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/f2c/dspmv.c -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/f2c/dtbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/f2c/dtbmv.c -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/f2c/lsame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/f2c/lsame.c -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/f2c/r_cnjg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/f2c/r_cnjg.c -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/f2c/srotm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/f2c/srotm.c -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/f2c/srotmg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/f2c/srotmg.c -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/f2c/ssbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/f2c/ssbmv.c -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/f2c/sspmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/f2c/sspmv.c -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/f2c/stbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/f2c/stbmv.c -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/f2c/zhbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/f2c/zhbmv.c -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/f2c/zhpmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/f2c/zhpmv.c -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/f2c/ztbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/f2c/ztbmv.c -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/fortran/complexdots.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/fortran/complexdots.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/level1_cplx_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/level1_cplx_impl.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/level1_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/level1_impl.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/level1_real_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/level1_real_impl.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/level2_cplx_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/level2_cplx_impl.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/level2_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/level2_impl.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/level2_real_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/level2_real_impl.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/level3_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/level3_impl.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/single.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/single.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/testing/cblat1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/testing/cblat1.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/testing/cblat2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/testing/cblat2.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/testing/cblat3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/testing/cblat3.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/testing/dblat1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/testing/dblat1.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/testing/dblat2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/testing/dblat2.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/testing/dblat3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/testing/dblat3.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/testing/sblat1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/testing/sblat1.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/testing/sblat2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/testing/sblat2.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/testing/sblat3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/testing/sblat3.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/testing/zblat1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/testing/zblat1.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/testing/zblat2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/testing/zblat2.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/testing/zblat3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/testing/zblat3.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/blas/xerbla.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/blas/xerbla.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/cmake/EigenTesting.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/cmake/EigenTesting.cmake -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/cmake/EigenUninstall.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/cmake/EigenUninstall.cmake -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/cmake/FindAdolc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/cmake/FindAdolc.cmake -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/cmake/FindBLAS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/cmake/FindBLAS.cmake -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/cmake/FindBLASEXT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/cmake/FindBLASEXT.cmake -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/cmake/FindCholmod.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/cmake/FindCholmod.cmake -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/cmake/FindComputeCpp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/cmake/FindComputeCpp.cmake -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/cmake/FindEigen2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/cmake/FindEigen2.cmake -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/cmake/FindEigen3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/cmake/FindEigen3.cmake -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/cmake/FindFFTW.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/cmake/FindFFTW.cmake -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/cmake/FindGLEW.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/cmake/FindGLEW.cmake -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/cmake/FindGMP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/cmake/FindGMP.cmake -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/cmake/FindGSL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/cmake/FindGSL.cmake -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/cmake/FindHWLOC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/cmake/FindHWLOC.cmake -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/cmake/FindLAPACK.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/cmake/FindLAPACK.cmake -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/cmake/FindMPFR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/cmake/FindMPFR.cmake -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/cmake/FindMetis.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/cmake/FindMetis.cmake -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/cmake/FindPastix.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/cmake/FindPastix.cmake -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/cmake/FindSPQR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/cmake/FindSPQR.cmake -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/cmake/FindScotch.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/cmake/FindScotch.cmake -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/cmake/FindSuperLU.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/cmake/FindSuperLU.cmake -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/cmake/FindUmfpack.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/cmake/FindUmfpack.cmake -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/cmake/RegexUtils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/cmake/RegexUtils.cmake -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/cmake/UseEigen3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/cmake/UseEigen3.cmake -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/debug/gdb/__init__.py: -------------------------------------------------------------------------------- 1 | # Intentionally empty 2 | -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/debug/gdb/printers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/debug/gdb/printers.py -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/debug/msvc/eigen.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/debug/msvc/eigen.natvis -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/demos/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/demos/CMakeLists.txt -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/demos/mandelbrot/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/demos/mandelbrot/README -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/demos/opengl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/demos/opengl/README -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/demos/opengl/camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/demos/opengl/camera.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/demos/opengl/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/demos/opengl/camera.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/doc/CMakeLists.txt -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/doc/ClassHierarchy.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/doc/ClassHierarchy.dox -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/doc/Doxyfile.in -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/doc/HiPerformance.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/doc/HiPerformance.dox -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/doc/LeastSquares.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/doc/LeastSquares.dox -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/doc/Manual.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/doc/Manual.dox -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/doc/Overview.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/doc/Overview.dox -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/doc/PassingByValue.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/doc/PassingByValue.dox -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/doc/Pitfalls.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/doc/Pitfalls.dox -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/doc/QuickReference.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/doc/QuickReference.dox -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/doc/QuickStartGuide.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/doc/QuickStartGuide.dox -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/doc/StlContainers.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/doc/StlContainers.dox -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/doc/StorageOrders.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/doc/StorageOrders.dox -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/doc/TemplateKeyword.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/doc/TemplateKeyword.dox -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/doc/TopicAliasing.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/doc/TopicAliasing.dox -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/doc/TopicAssertions.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/doc/TopicAssertions.dox -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/doc/TopicCMakeGuide.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/doc/TopicCMakeGuide.dox -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/doc/TopicResizing.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/doc/TopicResizing.dox -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/doc/TutorialSparse.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/doc/TutorialSparse.dox -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/doc/UsingIntelMKL.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/doc/UsingIntelMKL.dox -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/doc/UsingNVCC.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/doc/UsingNVCC.dox -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/doc/eigendoxy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/doc/eigendoxy.css -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/doc/eigendoxy_tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/doc/eigendoxy_tabs.css -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/doc/examples/.krazy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/doc/examples/.krazy -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/doc/ftv2node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/doc/ftv2node.png -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/doc/ftv2pnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/doc/ftv2pnode.png -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/doc/snippets/.krazy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/doc/snippets/.krazy -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/doc/snippets/MatrixBase_cwiseSqrt.cpp: -------------------------------------------------------------------------------- 1 | Vector3d v(1,2,4); 2 | cout << v.cwiseSqrt() << endl; 3 | -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/doc/snippets/MatrixBase_identity.cpp: -------------------------------------------------------------------------------- 1 | cout << Matrix::Identity() << endl; 2 | -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/doc/snippets/MatrixBase_identity_int_int.cpp: -------------------------------------------------------------------------------- 1 | cout << MatrixXd::Identity(4, 3) << endl; 2 | -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/doc/snippets/MatrixBase_ones_int_int.cpp: -------------------------------------------------------------------------------- 1 | cout << MatrixXi::Ones(2,3) << endl; 2 | -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/doc/snippets/MatrixBase_random.cpp: -------------------------------------------------------------------------------- 1 | cout << 100 * Matrix2i::Random() << endl; 2 | -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/doc/snippets/MatrixBase_random_int.cpp: -------------------------------------------------------------------------------- 1 | cout << VectorXi::Random(2) << endl; 2 | -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/doc/snippets/MatrixBase_random_int_int.cpp: -------------------------------------------------------------------------------- 1 | cout << MatrixXi::Random(2,3) << endl; 2 | -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/doc/snippets/MatrixBase_zero_int_int.cpp: -------------------------------------------------------------------------------- 1 | cout << MatrixXi::Zero(2,3) << endl; 2 | -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/doc/tutorial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/doc/tutorial.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/eigen3.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/eigen3.pc.in -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/failtest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/failtest/CMakeLists.txt -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/failtest/bdcsvd_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/failtest/bdcsvd_int.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/failtest/ldlt_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/failtest/ldlt_int.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/failtest/llt_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/failtest/llt_int.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/failtest/qr_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/failtest/qr_int.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/failtest/ref_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/failtest/ref_1.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/failtest/ref_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/failtest/ref_2.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/failtest/ref_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/failtest/ref_3.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/failtest/ref_4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/failtest/ref_4.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/failtest/ref_5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/failtest/ref_5.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/failtest/swap_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/failtest/swap_1.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/failtest/swap_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/failtest/swap_2.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/failtest/ternary_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/failtest/ternary_1.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/failtest/ternary_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/failtest/ternary_2.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/lapack/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/lapack/CMakeLists.txt -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/lapack/cholesky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/lapack/cholesky.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/lapack/clacgv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/lapack/clacgv.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/lapack/cladiv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/lapack/cladiv.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/lapack/clarf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/lapack/clarf.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/lapack/clarfb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/lapack/clarfb.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/lapack/clarfg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/lapack/clarfg.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/lapack/clarft.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/lapack/clarft.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/lapack/dladiv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/lapack/dladiv.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/lapack/dlamch.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/lapack/dlamch.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/lapack/dlapy2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/lapack/dlapy2.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/lapack/dlapy3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/lapack/dlapy3.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/lapack/dlarf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/lapack/dlarf.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/lapack/dlarfb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/lapack/dlarfb.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/lapack/dlarfg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/lapack/dlarfg.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/lapack/dlarft.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/lapack/dlarft.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/lapack/double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/lapack/double.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/lapack/dsecnd_NONE.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/lapack/dsecnd_NONE.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/lapack/eigenvalues.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/lapack/eigenvalues.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/lapack/ilaclc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/lapack/ilaclc.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/lapack/ilaclr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/lapack/ilaclr.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/lapack/iladlc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/lapack/iladlc.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/lapack/iladlr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/lapack/iladlr.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/lapack/ilaslc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/lapack/ilaslc.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/lapack/ilaslr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/lapack/ilaslr.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/lapack/ilazlc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/lapack/ilazlc.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/lapack/ilazlr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/lapack/ilazlr.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/lapack/lapack_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/lapack/lapack_common.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/lapack/lu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/lapack/lu.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/lapack/second_NONE.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/lapack/second_NONE.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/lapack/single.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/lapack/single.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/lapack/sladiv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/lapack/sladiv.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/lapack/slamch.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/lapack/slamch.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/lapack/slapy2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/lapack/slapy2.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/lapack/slapy3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/lapack/slapy3.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/lapack/slarf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/lapack/slarf.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/lapack/slarfb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/lapack/slarfb.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/lapack/slarfg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/lapack/slarfg.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/lapack/slarft.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/lapack/slarft.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/lapack/svd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/lapack/svd.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/lapack/zlacgv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/lapack/zlacgv.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/lapack/zladiv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/lapack/zladiv.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/lapack/zlarf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/lapack/zlarf.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/lapack/zlarfb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/lapack/zlarfb.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/lapack/zlarfg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/lapack/zlarfg.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/lapack/zlarft.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/lapack/zlarft.f -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/scripts/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/scripts/CMakeLists.txt -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/scripts/buildtests.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/scripts/buildtests.in -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/scripts/check.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/scripts/check.in -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/scripts/debug.in: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cmake -DCMAKE_BUILD_TYPE=Debug . 4 | -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/scripts/eigen_gen_docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/scripts/eigen_gen_docs -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/scripts/release.in: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cmake -DCMAKE_BUILD_TYPE=Release . 4 | -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/scripts/relicense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/scripts/relicense.py -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/CMakeLists.txt -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/adjoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/adjoint.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/array.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/array_reverse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/array_reverse.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/bandmatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/bandmatrix.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/basicstuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/basicstuff.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/bdcsvd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/bdcsvd.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/bicgstab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/bicgstab.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/block.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/boostmultiprec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/boostmultiprec.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/bug1213.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/bug1213.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/bug1213.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/bug1213.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/bug1213_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/bug1213_main.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/cholesky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/cholesky.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/constructor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/constructor.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/corners.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/corners.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/ctorleak.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/ctorleak.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/cuda_basic.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/cuda_basic.cu -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/cuda_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/cuda_common.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/denseLM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/denseLM.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/dense_storage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/dense_storage.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/determinant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/determinant.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/diagonal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/diagonal.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/dontalign.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/dontalign.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/dynalloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/dynalloc.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/eigen2support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/eigen2support.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/evaluator_common.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/evaluators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/evaluators.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/exceptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/exceptions.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/fastmath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/fastmath.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/first_aligned.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/first_aligned.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/geo_alignedbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/geo_alignedbox.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/geo_hyperplane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/geo_hyperplane.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/geo_quaternion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/geo_quaternion.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/half_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/half_float.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/hessenberg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/hessenberg.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/householder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/householder.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/integer_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/integer_types.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/inverse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/inverse.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/is_same_dense.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/is_same_dense.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/jacobi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/jacobi.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/jacobisvd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/jacobisvd.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/lscg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/lscg.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/lu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/lu.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/main.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/mapped_matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/mapped_matrix.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/mapstride.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/mapstride.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/meta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/meta.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/metis_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/metis_support.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/miscmatrices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/miscmatrices.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/mixingtypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/mixingtypes.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/mpl2only.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/mpl2only.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/nesting_ops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/nesting_ops.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/nomalloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/nomalloc.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/nullary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/nullary.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/numext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/numext.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/packetmath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/packetmath.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/pastix_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/pastix_support.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/product.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/product.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/product_extra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/product_extra.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/product_large.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/product_large.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/product_mmtr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/product_mmtr.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/product_small.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/product_small.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/product_symm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/product_symm.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/product_syrk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/product_syrk.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/product_trmm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/product_trmm.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/product_trmv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/product_trmv.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/qr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/qr.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/qr_colpivoting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/qr_colpivoting.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/qtvector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/qtvector.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/rand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/rand.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/real_qz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/real_qz.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/redux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/redux.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/ref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/ref.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/resize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/resize.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/rvalue_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/rvalue_types.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/schur_complex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/schur_complex.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/schur_real.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/schur_real.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/selfadjoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/selfadjoint.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/sizeof.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/sizeof.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/sizeoverflow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/sizeoverflow.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/smallvectors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/smallvectors.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/sparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/sparse.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/sparseLM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/sparseLM.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/sparse_basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/sparse_basic.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/sparse_block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/sparse_block.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/sparse_product.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/sparse_product.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/sparse_ref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/sparse_ref.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/sparse_solver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/sparse_solver.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/sparse_solvers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/sparse_solvers.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/sparse_vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/sparse_vector.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/sparselu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/sparselu.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/sparseqr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/sparseqr.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/spqr_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/spqr_support.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/stable_norm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/stable_norm.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/stddeque.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/stddeque.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/stdlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/stdlist.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/stdvector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/stdvector.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/svd_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/svd_common.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/svd_fill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/svd_fill.h -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/swap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/swap.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/triangular.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/triangular.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/umeyama.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/umeyama.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/unalignedcount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/unalignedcount.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/vectorwiseop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/vectorwiseop.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/visitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/visitor.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/test/zerosized.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/test/zerosized.cpp -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/unsupported/Eigen/BVH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/unsupported/Eigen/BVH -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/unsupported/Eigen/FFT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/unsupported/Eigen/FFT -------------------------------------------------------------------------------- /ThirdParty/eigen-3.3.8/unsupported/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/eigen-3.3.8/unsupported/README.txt -------------------------------------------------------------------------------- /ThirdParty/glew32/glew32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/ThirdParty/glew32/glew32.lib -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchek/MuscleVAE_/HEAD/setup.py --------------------------------------------------------------------------------