├── CMakeLists.txt ├── README.md ├── example_runfiles ├── example1_2D.inp └── example2_tuning_fork.inp ├── external_libs ├── 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 └── Spectra │ ├── GenEigsBase.h │ ├── GenEigsComplexShiftSolver.h │ ├── GenEigsRealShiftSolver.h │ ├── GenEigsSolver.h │ ├── LinAlg │ ├── Arnoldi.h │ ├── BKLDLT.h │ ├── DoubleShiftQR.h │ ├── Lanczos.h │ ├── TridiagEigen.h │ ├── UpperHessenbergEigen.h │ └── UpperHessenbergQR.h │ ├── MatOp │ ├── DenseCholesky.h │ ├── DenseGenComplexShiftSolve.h │ ├── DenseGenMatProd.h │ ├── DenseGenRealShiftSolve.h │ ├── DenseSymMatProd.h │ ├── DenseSymShiftSolve.h │ ├── SparseCholesky.h │ ├── SparseGenComplexShiftSolve.h │ ├── SparseGenMatProd.h │ ├── SparseGenRealShiftSolve.h │ ├── SparseRegularInverse.h │ ├── SparseSymMatProd.h │ ├── SparseSymShiftSolve.h │ ├── SymShiftInvert.h │ └── internal │ │ ├── ArnoldiOp.h │ │ ├── SymGEigsBucklingOp.h │ │ ├── SymGEigsCayleyOp.h │ │ ├── SymGEigsCholeskyOp.h │ │ ├── SymGEigsRegInvOp.h │ │ └── SymGEigsShiftInvertOp.h │ ├── SymEigsBase.h │ ├── SymEigsShiftSolver.h │ ├── SymEigsSolver.h │ ├── SymGEigsShiftSolver.h │ ├── SymGEigsSolver.h │ ├── Util │ ├── CompInfo.h │ ├── GEigsMode.h │ ├── SelectionRule.h │ ├── SimpleRandom.h │ ├── TypeTraits.h │ └── Version.h │ └── contrib │ ├── LOBPCGSolver.h │ └── PartialSVDSolver.h ├── src ├── CMakeLists.txt ├── images │ ├── elements_available.png │ ├── example1_2D.png │ ├── example1_2D_displacement.png │ ├── example2_tuning_fork.png │ ├── example2_tuning_fork_mode1.gif │ └── example2_tuning_fork_mode4.gif ├── include │ ├── C3D10.h │ ├── C3D20.h │ ├── C3D8.h │ ├── CPS3.h │ ├── CPS4.h │ ├── Gauss.h │ ├── S3.h │ ├── contact.h │ ├── dof.h │ ├── element.h │ ├── mesh.h │ ├── mid.h │ ├── misc_string_functions.h │ ├── new_abaqus.h │ ├── node.h │ ├── output.h │ ├── pid.h │ └── set.h └── src │ ├── C3D10.cpp │ ├── C3D20.cpp │ ├── C3D8.cpp │ ├── CMakeLists.txt │ ├── CPS3.cpp │ ├── CPS4.cpp │ ├── Gauss.cpp │ ├── S3.cpp │ ├── contact.cpp │ ├── dof.cpp │ ├── element.cpp │ ├── mesh.cpp │ ├── mid.cpp │ ├── misc_string_functions.cpp │ ├── new_abaqus.cpp │ ├── node.cpp │ ├── pid.cpp │ ├── set.cpp │ └── staring_point.cpp └── tests ├── CMakeLists.txt ├── CodeCoverage.cmake ├── compile_commands.json ├── resources ├── C3D10.inp ├── C3D20.inp ├── C3D8.inp ├── CPS3.inp ├── CPS4.inp ├── S3.inp ├── difficult_to_read_inputfile.inp └── simple_inputfile.inp ├── run_clang_tidy.py └── tests.cpp /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/README.md -------------------------------------------------------------------------------- /example_runfiles/example1_2D.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/example_runfiles/example1_2D.inp -------------------------------------------------------------------------------- /example_runfiles/example2_tuning_fork.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/example_runfiles/example2_tuning_fork.inp -------------------------------------------------------------------------------- /external_libs/Eigen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/CMakeLists.txt -------------------------------------------------------------------------------- /external_libs/Eigen/Cholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/Cholesky -------------------------------------------------------------------------------- /external_libs/Eigen/CholmodSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/CholmodSupport -------------------------------------------------------------------------------- /external_libs/Eigen/Core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/Core -------------------------------------------------------------------------------- /external_libs/Eigen/Dense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/Dense -------------------------------------------------------------------------------- /external_libs/Eigen/Eigen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/Eigen -------------------------------------------------------------------------------- /external_libs/Eigen/Eigenvalues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/Eigenvalues -------------------------------------------------------------------------------- /external_libs/Eigen/Geometry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/Geometry -------------------------------------------------------------------------------- /external_libs/Eigen/Householder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/Householder -------------------------------------------------------------------------------- /external_libs/Eigen/IterativeLinearSolvers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/IterativeLinearSolvers -------------------------------------------------------------------------------- /external_libs/Eigen/Jacobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/Jacobi -------------------------------------------------------------------------------- /external_libs/Eigen/LU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/LU -------------------------------------------------------------------------------- /external_libs/Eigen/MetisSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/MetisSupport -------------------------------------------------------------------------------- /external_libs/Eigen/OrderingMethods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/OrderingMethods -------------------------------------------------------------------------------- /external_libs/Eigen/PaStiXSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/PaStiXSupport -------------------------------------------------------------------------------- /external_libs/Eigen/PardisoSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/PardisoSupport -------------------------------------------------------------------------------- /external_libs/Eigen/QR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/QR -------------------------------------------------------------------------------- /external_libs/Eigen/QtAlignedMalloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/QtAlignedMalloc -------------------------------------------------------------------------------- /external_libs/Eigen/SPQRSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/SPQRSupport -------------------------------------------------------------------------------- /external_libs/Eigen/SVD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/SVD -------------------------------------------------------------------------------- /external_libs/Eigen/Sparse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/Sparse -------------------------------------------------------------------------------- /external_libs/Eigen/SparseCholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/SparseCholesky -------------------------------------------------------------------------------- /external_libs/Eigen/SparseCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/SparseCore -------------------------------------------------------------------------------- /external_libs/Eigen/SparseLU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/SparseLU -------------------------------------------------------------------------------- /external_libs/Eigen/SparseQR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/SparseQR -------------------------------------------------------------------------------- /external_libs/Eigen/StdDeque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/StdDeque -------------------------------------------------------------------------------- /external_libs/Eigen/StdList: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/StdList -------------------------------------------------------------------------------- /external_libs/Eigen/StdVector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/StdVector -------------------------------------------------------------------------------- /external_libs/Eigen/SuperLUSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/SuperLUSupport -------------------------------------------------------------------------------- /external_libs/Eigen/UmfPackSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/UmfPackSupport -------------------------------------------------------------------------------- /external_libs/Eigen/src/Cholesky/LDLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Cholesky/LDLT.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Cholesky/LLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Cholesky/LLT.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Cholesky/LLT_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Cholesky/LLT_LAPACKE.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/CholmodSupport/CholmodSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/CholmodSupport/CholmodSupport.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/Array.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/ArrayBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/ArrayBase.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/ArrayWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/ArrayWrapper.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/Assign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/Assign.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/AssignEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/AssignEvaluator.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/Assign_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/Assign_MKL.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/BandMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/BandMatrix.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/Block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/Block.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/BooleanRedux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/BooleanRedux.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/CommaInitializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/CommaInitializer.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/ConditionEstimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/ConditionEstimator.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/CoreEvaluators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/CoreEvaluators.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/CoreIterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/CoreIterators.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/CwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/CwiseBinaryOp.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/CwiseNullaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/CwiseNullaryOp.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/CwiseTernaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/CwiseTernaryOp.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/CwiseUnaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/CwiseUnaryOp.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/CwiseUnaryView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/CwiseUnaryView.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/DenseBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/DenseBase.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/DenseCoeffsBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/DenseCoeffsBase.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/DenseStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/DenseStorage.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/Diagonal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/Diagonal.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/DiagonalMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/DiagonalMatrix.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/DiagonalProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/DiagonalProduct.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/Dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/Dot.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/EigenBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/EigenBase.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/ForceAlignedAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/ForceAlignedAccess.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/Fuzzy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/Fuzzy.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/GeneralProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/GeneralProduct.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/GenericPacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/GenericPacketMath.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/GlobalFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/GlobalFunctions.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/IO.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/Inverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/Inverse.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/Map.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/MapBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/MapBase.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/MathFunctions.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/MathFunctionsImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/MathFunctionsImpl.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/Matrix.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/MatrixBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/MatrixBase.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/NestByValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/NestByValue.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/NoAlias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/NoAlias.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/NumTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/NumTraits.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/PermutationMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/PermutationMatrix.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/PlainObjectBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/PlainObjectBase.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/Product.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/Product.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/ProductEvaluators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/ProductEvaluators.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/Random.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/Redux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/Redux.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/Ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/Ref.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/Replicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/Replicate.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/ReturnByValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/ReturnByValue.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/Reverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/Reverse.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/Select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/Select.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/SelfAdjointView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/SelfAdjointView.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/SelfCwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/SelfCwiseBinaryOp.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/Solve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/Solve.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/SolveTriangular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/SolveTriangular.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/SolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/SolverBase.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/StableNorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/StableNorm.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/Stride.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/Stride.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/Swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/Swap.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/Transpose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/Transpose.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/Transpositions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/Transpositions.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/TriangularMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/TriangularMatrix.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/VectorBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/VectorBlock.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/VectorwiseOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/VectorwiseOp.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/Visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/Visitor.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/arch/AVX/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/arch/AVX/Complex.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/arch/AVX/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/arch/AVX/MathFunctions.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/arch/AVX/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/arch/AVX/PacketMath.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/arch/AVX/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/arch/AVX/TypeCasting.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/arch/AVX512/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/arch/AVX512/MathFunctions.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/arch/AVX512/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/arch/AVX512/PacketMath.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/arch/AltiVec/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/arch/AltiVec/Complex.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/arch/AltiVec/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/arch/AltiVec/MathFunctions.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/arch/AltiVec/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/arch/AltiVec/PacketMath.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/arch/CUDA/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/arch/CUDA/Complex.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/arch/CUDA/Half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/arch/CUDA/Half.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/arch/CUDA/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/arch/CUDA/MathFunctions.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/arch/CUDA/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/arch/CUDA/PacketMath.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/arch/CUDA/PacketMathHalf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/arch/CUDA/PacketMathHalf.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/arch/CUDA/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/arch/CUDA/TypeCasting.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/arch/Default/ConjHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/arch/Default/ConjHelper.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/arch/Default/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/arch/Default/Settings.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/arch/NEON/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/arch/NEON/Complex.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/arch/NEON/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/arch/NEON/MathFunctions.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/arch/NEON/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/arch/NEON/PacketMath.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/arch/SSE/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/arch/SSE/Complex.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/arch/SSE/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/arch/SSE/MathFunctions.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/arch/SSE/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/arch/SSE/PacketMath.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/arch/SSE/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/arch/SSE/TypeCasting.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/arch/ZVector/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/arch/ZVector/Complex.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/arch/ZVector/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/arch/ZVector/MathFunctions.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/arch/ZVector/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/arch/ZVector/PacketMath.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/functors/AssignmentFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/functors/AssignmentFunctors.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/functors/BinaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/functors/BinaryFunctors.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/functors/NullaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/functors/NullaryFunctors.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/functors/StlFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/functors/StlFunctors.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/functors/TernaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/functors/TernaryFunctors.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/functors/UnaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/functors/UnaryFunctors.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/products/GeneralBlockPanelKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/products/GeneralBlockPanelKernel.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/products/GeneralMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/products/GeneralMatrixMatrix.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/products/GeneralMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/products/GeneralMatrixVector.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/products/Parallelizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/products/Parallelizer.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/products/SelfadjointMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/products/SelfadjointMatrixMatrix.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/products/SelfadjointMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/products/SelfadjointMatrixVector.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/products/SelfadjointProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/products/SelfadjointProduct.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/products/SelfadjointRank2Update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/products/SelfadjointRank2Update.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/products/TriangularMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/products/TriangularMatrixMatrix.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/products/TriangularMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/products/TriangularMatrixVector.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/products/TriangularSolverMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/products/TriangularSolverMatrix.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/products/TriangularSolverVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/products/TriangularSolverVector.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/util/BlasUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/util/BlasUtil.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/util/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/util/Constants.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/util/DisableStupidWarnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/util/DisableStupidWarnings.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/util/ForwardDeclarations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/util/ForwardDeclarations.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/util/MKL_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/util/MKL_support.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/util/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/util/Macros.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/util/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/util/Memory.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/util/Meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/util/Meta.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/util/NonMPL2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/util/NonMPL2.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/util/ReenableStupidWarnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/util/ReenableStupidWarnings.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/util/StaticAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/util/StaticAssert.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Core/util/XprHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Core/util/XprHelper.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Eigenvalues/ComplexEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Eigenvalues/ComplexEigenSolver.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Eigenvalues/ComplexSchur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Eigenvalues/ComplexSchur.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Eigenvalues/EigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Eigenvalues/EigenSolver.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Eigenvalues/HessenbergDecomposition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Eigenvalues/HessenbergDecomposition.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Eigenvalues/RealQZ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Eigenvalues/RealQZ.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Eigenvalues/RealSchur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Eigenvalues/RealSchur.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Eigenvalues/Tridiagonalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Eigenvalues/Tridiagonalization.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Geometry/AlignedBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Geometry/AlignedBox.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Geometry/AngleAxis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Geometry/AngleAxis.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Geometry/EulerAngles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Geometry/EulerAngles.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Geometry/Homogeneous.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Geometry/Homogeneous.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Geometry/Hyperplane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Geometry/Hyperplane.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Geometry/OrthoMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Geometry/OrthoMethods.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Geometry/ParametrizedLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Geometry/ParametrizedLine.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Geometry/Quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Geometry/Quaternion.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Geometry/Rotation2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Geometry/Rotation2D.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Geometry/RotationBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Geometry/RotationBase.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Geometry/Scaling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Geometry/Scaling.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Geometry/Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Geometry/Transform.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Geometry/Translation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Geometry/Translation.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Geometry/Umeyama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Geometry/Umeyama.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Geometry/arch/Geometry_SSE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Geometry/arch/Geometry_SSE.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Householder/BlockHouseholder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Householder/BlockHouseholder.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Householder/Householder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Householder/Householder.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Householder/HouseholderSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Householder/HouseholderSequence.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/Jacobi/Jacobi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/Jacobi/Jacobi.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/LU/Determinant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/LU/Determinant.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/LU/FullPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/LU/FullPivLU.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/LU/InverseImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/LU/InverseImpl.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/LU/PartialPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/LU/PartialPivLU.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/LU/PartialPivLU_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/LU/PartialPivLU_LAPACKE.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/LU/arch/Inverse_SSE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/LU/arch/Inverse_SSE.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/MetisSupport/MetisSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/MetisSupport/MetisSupport.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/OrderingMethods/Amd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/OrderingMethods/Amd.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/OrderingMethods/Eigen_Colamd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/OrderingMethods/Eigen_Colamd.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/OrderingMethods/Ordering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/OrderingMethods/Ordering.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/PaStiXSupport/PaStiXSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/PaStiXSupport/PaStiXSupport.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/PardisoSupport/PardisoSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/PardisoSupport/PardisoSupport.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/QR/ColPivHouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/QR/ColPivHouseholderQR.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/QR/CompleteOrthogonalDecomposition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/QR/CompleteOrthogonalDecomposition.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/QR/FullPivHouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/QR/FullPivHouseholderQR.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/QR/HouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/QR/HouseholderQR.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/QR/HouseholderQR_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/QR/HouseholderQR_LAPACKE.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SVD/BDCSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SVD/BDCSVD.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SVD/JacobiSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SVD/JacobiSVD.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SVD/JacobiSVD_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SVD/JacobiSVD_LAPACKE.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SVD/SVDBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SVD/SVDBase.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SVD/UpperBidiagonalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SVD/UpperBidiagonalization.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SparseCholesky/SimplicialCholesky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SparseCholesky/SimplicialCholesky.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SparseCore/AmbiVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SparseCore/AmbiVector.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SparseCore/CompressedStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SparseCore/CompressedStorage.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SparseCore/MappedSparseMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SparseCore/MappedSparseMatrix.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SparseCore/SparseAssign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SparseCore/SparseAssign.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SparseCore/SparseBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SparseCore/SparseBlock.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SparseCore/SparseColEtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SparseCore/SparseColEtree.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SparseCore/SparseCompressedBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SparseCore/SparseCompressedBase.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SparseCore/SparseCwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SparseCore/SparseCwiseBinaryOp.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SparseCore/SparseCwiseUnaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SparseCore/SparseCwiseUnaryOp.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SparseCore/SparseDenseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SparseCore/SparseDenseProduct.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SparseCore/SparseDiagonalProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SparseCore/SparseDiagonalProduct.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SparseCore/SparseDot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SparseCore/SparseDot.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SparseCore/SparseFuzzy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SparseCore/SparseFuzzy.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SparseCore/SparseMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SparseCore/SparseMap.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SparseCore/SparseMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SparseCore/SparseMatrix.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SparseCore/SparseMatrixBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SparseCore/SparseMatrixBase.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SparseCore/SparsePermutation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SparseCore/SparsePermutation.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SparseCore/SparseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SparseCore/SparseProduct.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SparseCore/SparseRedux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SparseCore/SparseRedux.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SparseCore/SparseRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SparseCore/SparseRef.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SparseCore/SparseSelfAdjointView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SparseCore/SparseSelfAdjointView.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SparseCore/SparseSolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SparseCore/SparseSolverBase.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SparseCore/SparseSparseProductWithPruning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SparseCore/SparseSparseProductWithPruning.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SparseCore/SparseTranspose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SparseCore/SparseTranspose.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SparseCore/SparseTriangularView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SparseCore/SparseTriangularView.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SparseCore/SparseUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SparseCore/SparseUtil.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SparseCore/SparseVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SparseCore/SparseVector.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SparseCore/SparseView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SparseCore/SparseView.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SparseCore/TriangularSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SparseCore/TriangularSolver.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SparseLU/SparseLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SparseLU/SparseLU.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SparseLU/SparseLUImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SparseLU/SparseLUImpl.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SparseLU/SparseLU_Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SparseLU/SparseLU_Memory.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SparseLU/SparseLU_Structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SparseLU/SparseLU_Structs.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SparseLU/SparseLU_Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SparseLU/SparseLU_Utils.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SparseLU/SparseLU_column_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SparseLU/SparseLU_column_bmod.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SparseLU/SparseLU_column_dfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SparseLU/SparseLU_column_dfs.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SparseLU/SparseLU_gemm_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SparseLU/SparseLU_gemm_kernel.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SparseLU/SparseLU_kernel_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SparseLU/SparseLU_kernel_bmod.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SparseLU/SparseLU_panel_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SparseLU/SparseLU_panel_bmod.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SparseLU/SparseLU_panel_dfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SparseLU/SparseLU_panel_dfs.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SparseLU/SparseLU_pivotL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SparseLU/SparseLU_pivotL.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SparseLU/SparseLU_pruneL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SparseLU/SparseLU_pruneL.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SparseLU/SparseLU_relax_snode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SparseLU/SparseLU_relax_snode.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SparseQR/SparseQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SparseQR/SparseQR.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/StlSupport/StdDeque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/StlSupport/StdDeque.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/StlSupport/StdList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/StlSupport/StdList.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/StlSupport/StdVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/StlSupport/StdVector.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/StlSupport/details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/StlSupport/details.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/SuperLUSupport/SuperLUSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/SuperLUSupport/SuperLUSupport.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/UmfPackSupport/UmfPackSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/UmfPackSupport/UmfPackSupport.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/misc/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/misc/Image.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/misc/Kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/misc/Kernel.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/misc/RealSvd2x2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/misc/RealSvd2x2.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/misc/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/misc/blas.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/misc/lapack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/misc/lapack.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/misc/lapacke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/misc/lapacke.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/misc/lapacke_mangling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/misc/lapacke_mangling.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/plugins/ArrayCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/plugins/ArrayCwiseBinaryOps.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/plugins/ArrayCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/plugins/ArrayCwiseUnaryOps.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/plugins/BlockMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/plugins/BlockMethods.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/plugins/CommonCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/plugins/CommonCwiseBinaryOps.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/plugins/CommonCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/plugins/CommonCwiseUnaryOps.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/plugins/MatrixCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/plugins/MatrixCwiseBinaryOps.h -------------------------------------------------------------------------------- /external_libs/Eigen/src/plugins/MatrixCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Eigen/src/plugins/MatrixCwiseUnaryOps.h -------------------------------------------------------------------------------- /external_libs/Spectra/GenEigsBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Spectra/GenEigsBase.h -------------------------------------------------------------------------------- /external_libs/Spectra/GenEigsComplexShiftSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Spectra/GenEigsComplexShiftSolver.h -------------------------------------------------------------------------------- /external_libs/Spectra/GenEigsRealShiftSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Spectra/GenEigsRealShiftSolver.h -------------------------------------------------------------------------------- /external_libs/Spectra/GenEigsSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Spectra/GenEigsSolver.h -------------------------------------------------------------------------------- /external_libs/Spectra/LinAlg/Arnoldi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Spectra/LinAlg/Arnoldi.h -------------------------------------------------------------------------------- /external_libs/Spectra/LinAlg/BKLDLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Spectra/LinAlg/BKLDLT.h -------------------------------------------------------------------------------- /external_libs/Spectra/LinAlg/DoubleShiftQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Spectra/LinAlg/DoubleShiftQR.h -------------------------------------------------------------------------------- /external_libs/Spectra/LinAlg/Lanczos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Spectra/LinAlg/Lanczos.h -------------------------------------------------------------------------------- /external_libs/Spectra/LinAlg/TridiagEigen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Spectra/LinAlg/TridiagEigen.h -------------------------------------------------------------------------------- /external_libs/Spectra/LinAlg/UpperHessenbergEigen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Spectra/LinAlg/UpperHessenbergEigen.h -------------------------------------------------------------------------------- /external_libs/Spectra/LinAlg/UpperHessenbergQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Spectra/LinAlg/UpperHessenbergQR.h -------------------------------------------------------------------------------- /external_libs/Spectra/MatOp/DenseCholesky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Spectra/MatOp/DenseCholesky.h -------------------------------------------------------------------------------- /external_libs/Spectra/MatOp/DenseGenComplexShiftSolve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Spectra/MatOp/DenseGenComplexShiftSolve.h -------------------------------------------------------------------------------- /external_libs/Spectra/MatOp/DenseGenMatProd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Spectra/MatOp/DenseGenMatProd.h -------------------------------------------------------------------------------- /external_libs/Spectra/MatOp/DenseGenRealShiftSolve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Spectra/MatOp/DenseGenRealShiftSolve.h -------------------------------------------------------------------------------- /external_libs/Spectra/MatOp/DenseSymMatProd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Spectra/MatOp/DenseSymMatProd.h -------------------------------------------------------------------------------- /external_libs/Spectra/MatOp/DenseSymShiftSolve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Spectra/MatOp/DenseSymShiftSolve.h -------------------------------------------------------------------------------- /external_libs/Spectra/MatOp/SparseCholesky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Spectra/MatOp/SparseCholesky.h -------------------------------------------------------------------------------- /external_libs/Spectra/MatOp/SparseGenComplexShiftSolve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Spectra/MatOp/SparseGenComplexShiftSolve.h -------------------------------------------------------------------------------- /external_libs/Spectra/MatOp/SparseGenMatProd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Spectra/MatOp/SparseGenMatProd.h -------------------------------------------------------------------------------- /external_libs/Spectra/MatOp/SparseGenRealShiftSolve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Spectra/MatOp/SparseGenRealShiftSolve.h -------------------------------------------------------------------------------- /external_libs/Spectra/MatOp/SparseRegularInverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Spectra/MatOp/SparseRegularInverse.h -------------------------------------------------------------------------------- /external_libs/Spectra/MatOp/SparseSymMatProd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Spectra/MatOp/SparseSymMatProd.h -------------------------------------------------------------------------------- /external_libs/Spectra/MatOp/SparseSymShiftSolve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Spectra/MatOp/SparseSymShiftSolve.h -------------------------------------------------------------------------------- /external_libs/Spectra/MatOp/SymShiftInvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Spectra/MatOp/SymShiftInvert.h -------------------------------------------------------------------------------- /external_libs/Spectra/MatOp/internal/ArnoldiOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Spectra/MatOp/internal/ArnoldiOp.h -------------------------------------------------------------------------------- /external_libs/Spectra/MatOp/internal/SymGEigsBucklingOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Spectra/MatOp/internal/SymGEigsBucklingOp.h -------------------------------------------------------------------------------- /external_libs/Spectra/MatOp/internal/SymGEigsCayleyOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Spectra/MatOp/internal/SymGEigsCayleyOp.h -------------------------------------------------------------------------------- /external_libs/Spectra/MatOp/internal/SymGEigsCholeskyOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Spectra/MatOp/internal/SymGEigsCholeskyOp.h -------------------------------------------------------------------------------- /external_libs/Spectra/MatOp/internal/SymGEigsRegInvOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Spectra/MatOp/internal/SymGEigsRegInvOp.h -------------------------------------------------------------------------------- /external_libs/Spectra/MatOp/internal/SymGEigsShiftInvertOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Spectra/MatOp/internal/SymGEigsShiftInvertOp.h -------------------------------------------------------------------------------- /external_libs/Spectra/SymEigsBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Spectra/SymEigsBase.h -------------------------------------------------------------------------------- /external_libs/Spectra/SymEigsShiftSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Spectra/SymEigsShiftSolver.h -------------------------------------------------------------------------------- /external_libs/Spectra/SymEigsSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Spectra/SymEigsSolver.h -------------------------------------------------------------------------------- /external_libs/Spectra/SymGEigsShiftSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Spectra/SymGEigsShiftSolver.h -------------------------------------------------------------------------------- /external_libs/Spectra/SymGEigsSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Spectra/SymGEigsSolver.h -------------------------------------------------------------------------------- /external_libs/Spectra/Util/CompInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Spectra/Util/CompInfo.h -------------------------------------------------------------------------------- /external_libs/Spectra/Util/GEigsMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Spectra/Util/GEigsMode.h -------------------------------------------------------------------------------- /external_libs/Spectra/Util/SelectionRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Spectra/Util/SelectionRule.h -------------------------------------------------------------------------------- /external_libs/Spectra/Util/SimpleRandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Spectra/Util/SimpleRandom.h -------------------------------------------------------------------------------- /external_libs/Spectra/Util/TypeTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Spectra/Util/TypeTraits.h -------------------------------------------------------------------------------- /external_libs/Spectra/Util/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Spectra/Util/Version.h -------------------------------------------------------------------------------- /external_libs/Spectra/contrib/LOBPCGSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Spectra/contrib/LOBPCGSolver.h -------------------------------------------------------------------------------- /external_libs/Spectra/contrib/PartialSVDSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/external_libs/Spectra/contrib/PartialSVDSolver.h -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(./src) -------------------------------------------------------------------------------- /src/images/elements_available.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/src/images/elements_available.png -------------------------------------------------------------------------------- /src/images/example1_2D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/src/images/example1_2D.png -------------------------------------------------------------------------------- /src/images/example1_2D_displacement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/src/images/example1_2D_displacement.png -------------------------------------------------------------------------------- /src/images/example2_tuning_fork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/src/images/example2_tuning_fork.png -------------------------------------------------------------------------------- /src/images/example2_tuning_fork_mode1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/src/images/example2_tuning_fork_mode1.gif -------------------------------------------------------------------------------- /src/images/example2_tuning_fork_mode4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/src/images/example2_tuning_fork_mode4.gif -------------------------------------------------------------------------------- /src/include/C3D10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/src/include/C3D10.h -------------------------------------------------------------------------------- /src/include/C3D20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/src/include/C3D20.h -------------------------------------------------------------------------------- /src/include/C3D8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/src/include/C3D8.h -------------------------------------------------------------------------------- /src/include/CPS3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/src/include/CPS3.h -------------------------------------------------------------------------------- /src/include/CPS4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/src/include/CPS4.h -------------------------------------------------------------------------------- /src/include/Gauss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/src/include/Gauss.h -------------------------------------------------------------------------------- /src/include/S3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/src/include/S3.h -------------------------------------------------------------------------------- /src/include/contact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/src/include/contact.h -------------------------------------------------------------------------------- /src/include/dof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/src/include/dof.h -------------------------------------------------------------------------------- /src/include/element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/src/include/element.h -------------------------------------------------------------------------------- /src/include/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/src/include/mesh.h -------------------------------------------------------------------------------- /src/include/mid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/src/include/mid.h -------------------------------------------------------------------------------- /src/include/misc_string_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/src/include/misc_string_functions.h -------------------------------------------------------------------------------- /src/include/new_abaqus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/src/include/new_abaqus.h -------------------------------------------------------------------------------- /src/include/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/src/include/node.h -------------------------------------------------------------------------------- /src/include/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/src/include/output.h -------------------------------------------------------------------------------- /src/include/pid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/src/include/pid.h -------------------------------------------------------------------------------- /src/include/set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/src/include/set.h -------------------------------------------------------------------------------- /src/src/C3D10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/src/src/C3D10.cpp -------------------------------------------------------------------------------- /src/src/C3D20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/src/src/C3D20.cpp -------------------------------------------------------------------------------- /src/src/C3D8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/src/src/C3D8.cpp -------------------------------------------------------------------------------- /src/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/src/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/src/CPS3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/src/src/CPS3.cpp -------------------------------------------------------------------------------- /src/src/CPS4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/src/src/CPS4.cpp -------------------------------------------------------------------------------- /src/src/Gauss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/src/src/Gauss.cpp -------------------------------------------------------------------------------- /src/src/S3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/src/src/S3.cpp -------------------------------------------------------------------------------- /src/src/contact.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/src/src/contact.cpp -------------------------------------------------------------------------------- /src/src/dof.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/src/src/dof.cpp -------------------------------------------------------------------------------- /src/src/element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/src/src/element.cpp -------------------------------------------------------------------------------- /src/src/mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/src/src/mesh.cpp -------------------------------------------------------------------------------- /src/src/mid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/src/src/mid.cpp -------------------------------------------------------------------------------- /src/src/misc_string_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/src/src/misc_string_functions.cpp -------------------------------------------------------------------------------- /src/src/new_abaqus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/src/src/new_abaqus.cpp -------------------------------------------------------------------------------- /src/src/node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/src/src/node.cpp -------------------------------------------------------------------------------- /src/src/pid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/src/src/pid.cpp -------------------------------------------------------------------------------- /src/src/set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/src/src/set.cpp -------------------------------------------------------------------------------- /src/src/staring_point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/src/src/staring_point.cpp -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/CodeCoverage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/tests/CodeCoverage.cmake -------------------------------------------------------------------------------- /tests/compile_commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/tests/compile_commands.json -------------------------------------------------------------------------------- /tests/resources/C3D10.inp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/C3D20.inp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/C3D8.inp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/CPS3.inp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/CPS4.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/tests/resources/CPS4.inp -------------------------------------------------------------------------------- /tests/resources/S3.inp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/difficult_to_read_inputfile.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/tests/resources/difficult_to_read_inputfile.inp -------------------------------------------------------------------------------- /tests/resources/simple_inputfile.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/tests/resources/simple_inputfile.inp -------------------------------------------------------------------------------- /tests/run_clang_tidy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/tests/run_clang_tidy.py -------------------------------------------------------------------------------- /tests/tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparlund/new_abaqus/HEAD/tests/tests.cpp --------------------------------------------------------------------------------