├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── attprop.cpp ├── bin └── emptyfile.txt ├── data ├── atmosphere │ └── JB2008 │ │ ├── DSTFILE.TXT │ │ ├── DTCFILE.TXT │ │ └── SOLFSMY.TXT ├── cspice │ ├── earth_000101_200719_200427.bpc │ ├── earth_000101_220328_220103.bpc │ ├── earth_000101_220814_220522.bpc │ ├── naif0012.tls │ └── pck00010.tpc ├── eop │ └── igs00p03.erp ├── gravityfield │ ├── EIGEN-6S.gfc │ ├── GGM02C.gfc │ └── GGM03S.gfc ├── magneticfield │ ├── IGRF │ │ ├── IGRF13.COF │ │ └── igrf13coeffs.txt │ └── WMM │ │ ├── README-WMM-COEFS.txt │ │ ├── WMM2020.COF │ │ ├── WMM2020_TEST_VALUES.txt │ │ └── WMM2020testvalues.pdf └── spaceweather │ ├── CssiSpaceWeather_format.txt │ └── CssiSpaceWeather_indices.txt ├── doc ├── Atmosphere │ ├── AIAA_2008-6438_JB2008_Model.pdf │ └── NRLMSISE-00_2002JA009430.pdf ├── GeomagneticField │ ├── IGRF12.pdf │ └── WMM2015v2_TechnicalNote.pdf ├── GravityField │ ├── Foerste-et-al-EGU_2011-01.pdf │ ├── Foerste-et-al-EIGEN-6S4.pdf │ ├── GGM02_Notes.pdf │ └── poster-eigen-gl04c.pdf ├── Profiling │ ├── callgrind.out.AttitudePropagatorAllPerturbations_1day │ └── callgrind.out.OrbitPropagatorAllPerturbations_1day ├── SGP4 │ ├── AIAA-2006-6753-Rev1.pdf │ ├── AIAA-2008-6770.pdf │ ├── TLE_format.jpg │ ├── TLE_format.png │ └── sgp4_CodeReadme.pdf ├── SPICE │ ├── abcorr.req │ ├── brief.ug │ ├── cells.req │ ├── chronos.ug │ ├── ck.req │ ├── ckbrief.ug │ ├── commnt.ug │ ├── convert.ug │ ├── cspice.idx │ ├── cspice.req │ ├── daf.req │ ├── das.req │ ├── dla.req │ ├── dscriptn.txt │ ├── dsk.req │ ├── dskbrief.ug │ ├── dskexp.ug │ ├── ek.req │ ├── ellipses.req │ ├── error.req │ ├── frames.req │ ├── frmdiff.ug │ ├── gf.req │ ├── html │ │ └── cspice │ │ │ └── CSPICE_symbols.txt │ ├── inspekt.ug │ ├── kernel.req │ ├── mkdsk.ug │ ├── mkspk.ug │ ├── msopck.ug │ ├── naif_ids.req │ ├── pck.req │ ├── pdf │ │ ├── 12_preparing_for_programming.pdf │ │ ├── 17_frames_and_coordinate_systems.pdf │ │ ├── SPICE_Tutorials_Merged.pdf │ │ ├── abcorr.req │ │ ├── brief.ug │ │ ├── cells.req │ │ ├── chronos.ug │ │ ├── ck.req │ │ ├── ckbrief.ug │ │ ├── commnt.ug │ │ ├── convert.ug │ │ ├── cspice.idx │ │ ├── cspice.req │ │ ├── daf.req │ │ ├── das.req │ │ ├── dla.req │ │ ├── dscriptn.txt │ │ ├── dsk.req │ │ ├── dskbrief.ug │ │ ├── dskexp.ug │ │ ├── ek.req │ │ ├── ellipses.req │ │ ├── error.req │ │ ├── frames.req │ │ ├── frmdiff.ug │ │ ├── gf.req │ │ ├── html │ │ │ └── cspice │ │ │ │ └── CSPICE_symbols.txt │ │ ├── inspekt.ug │ │ ├── kernel.req │ │ ├── mkdsk.ug │ │ ├── mkspk.ug │ │ ├── msopck.ug │ │ ├── naif_and_spice-1.pdf │ │ ├── naif_ids.req │ │ ├── pck.req │ │ ├── planes.req │ │ ├── problems.req │ │ ├── rotation.req │ │ ├── scanning.req │ │ ├── sclk.req │ │ ├── sets.req │ │ ├── simple.ug │ │ ├── spacit.ug │ │ ├── spc.req │ │ ├── spk.req │ │ ├── spkdiff.ug │ │ ├── spkmerge.ug │ │ ├── states.ug │ │ ├── subpt.ug │ │ ├── symbols.req │ │ ├── tictoc.ug │ │ ├── time.req │ │ ├── tobin.ug │ │ ├── toxfr.ug │ │ ├── version.txt │ │ ├── version.ug │ │ ├── whats.new │ │ ├── windows.req │ │ └── workshop.pdf │ ├── planes.req │ ├── problems.req │ ├── rotation.req │ ├── scanning.req │ ├── sclk.req │ ├── sets.req │ ├── simple.ug │ ├── spacit.ug │ ├── spc.req │ ├── spk.req │ ├── spkdiff.ug │ ├── spkmerge.ug │ ├── states.ug │ ├── subpt.ug │ ├── symbols.req │ ├── tictoc.ug │ ├── time.req │ ├── tobin.ug │ ├── toxfr.ug │ ├── version.txt │ ├── version.ug │ ├── whats.new │ └── windows.req ├── UserGuide │ ├── SPOCK_UserGuide.pdf │ └── doxydoc │ │ └── Doxyfile ├── Validation │ └── OrbitPropagator │ │ ├── abs_posvel_SpockvsFreeFlyer.jpg │ │ ├── abs_posvel_SpockvsOrekit.jpg │ │ ├── orbel_inplane_SpockvsFreeFlyer.jpg │ │ ├── orbel_inplane_SpockvsOrekit.jpg │ │ ├── orbel_outplane_SpockvsFreeFlyer.jpg │ │ ├── orbel_outplane_SpockvsOrekit.jpg │ │ ├── posRTN_SpockvsFreeFlyer.jpg │ │ ├── posRTN_SpockvsOrekit.jpg │ │ ├── posRTN_TR-NR_SpockvsFreeFlyer.jpg │ │ ├── posRTN_TR-NR_SpockvsOrekit.jpg │ │ ├── velRTN_SpockvsFreeFlyer.jpg │ │ └── velRTN_SpockvsOrekit.jpg └── libxsd │ ├── custom-literals.xsd │ ├── cxx │ ├── parser │ │ └── guide │ │ │ ├── cxx-parser-guide.pdf │ │ │ ├── cxx-parser-guide.ps │ │ │ └── index.xhtml │ └── tree │ │ ├── guide │ │ ├── cxx-tree-guide.pdf │ │ ├── cxx-tree-guide.ps │ │ └── index.xhtml │ │ ├── manual │ │ ├── cxx-tree-manual.pdf │ │ ├── cxx-tree-manual.ps │ │ └── index.xhtml │ │ └── reference │ │ ├── libxsd.doxygen │ │ └── makefile │ ├── default.css │ ├── xsd.1 │ └── xsd.xhtml ├── eventscomp.cpp ├── extlib ├── Atmosphere │ ├── JB2008 │ │ ├── DTCMAKEDR.for │ │ ├── JB2008.f │ │ ├── Readfiles.f │ │ └── test_driver │ │ │ └── JB08DRVY2K.for │ └── NRLMSISE-00 │ │ └── FORTRAN │ │ ├── nrlmsise00_driver.for │ │ ├── nrlmsise00_output.txt │ │ ├── nrlmsise00_sub.for │ │ └── readme.txt ├── Eigen │ ├── Cholesky │ ├── CholmodSupport │ ├── Core │ ├── Dense │ ├── Eigen │ ├── Eigenvalues │ ├── Geometry │ ├── Householder │ ├── IterativeLinearSolvers │ ├── Jacobi │ ├── KLUSupport │ ├── LU │ ├── MetisSupport │ ├── OrderingMethods │ ├── PaStiXSupport │ ├── PardisoSupport │ ├── QR │ ├── QtAlignedMalloc │ ├── SPQRSupport │ ├── SVD │ ├── Sparse │ ├── SparseCholesky │ ├── SparseCore │ ├── SparseLU │ ├── SparseQR │ ├── StdDeque │ ├── StdList │ ├── StdVector │ ├── SuperLUSupport │ ├── UmfPackSupport │ └── src │ │ ├── Cholesky │ │ ├── LDLT.h │ │ ├── LLT.h │ │ └── LLT_LAPACKE.h │ │ ├── CholmodSupport │ │ └── CholmodSupport.h │ │ ├── Core │ │ ├── ArithmeticSequence.h │ │ ├── Array.h │ │ ├── ArrayBase.h │ │ ├── ArrayWrapper.h │ │ ├── Assign.h │ │ ├── AssignEvaluator.h │ │ ├── Assign_MKL.h │ │ ├── BandMatrix.h │ │ ├── Block.h │ │ ├── BooleanRedux.h │ │ ├── CommaInitializer.h │ │ ├── ConditionEstimator.h │ │ ├── CoreEvaluators.h │ │ ├── CoreIterators.h │ │ ├── CwiseBinaryOp.h │ │ ├── CwiseNullaryOp.h │ │ ├── CwiseTernaryOp.h │ │ ├── CwiseUnaryOp.h │ │ ├── CwiseUnaryView.h │ │ ├── DenseBase.h │ │ ├── DenseCoeffsBase.h │ │ ├── DenseStorage.h │ │ ├── Diagonal.h │ │ ├── DiagonalMatrix.h │ │ ├── DiagonalProduct.h │ │ ├── Dot.h │ │ ├── EigenBase.h │ │ ├── ForceAlignedAccess.h │ │ ├── Fuzzy.h │ │ ├── GeneralProduct.h │ │ ├── GenericPacketMath.h │ │ ├── GlobalFunctions.h │ │ ├── IO.h │ │ ├── IndexedView.h │ │ ├── Inverse.h │ │ ├── Map.h │ │ ├── MapBase.h │ │ ├── MathFunctions.h │ │ ├── MathFunctionsImpl.h │ │ ├── Matrix.h │ │ ├── MatrixBase.h │ │ ├── NestByValue.h │ │ ├── NoAlias.h │ │ ├── NumTraits.h │ │ ├── PartialReduxEvaluator.h │ │ ├── PermutationMatrix.h │ │ ├── PlainObjectBase.h │ │ ├── Product.h │ │ ├── ProductEvaluators.h │ │ ├── Random.h │ │ ├── Redux.h │ │ ├── Ref.h │ │ ├── Replicate.h │ │ ├── Reshaped.h │ │ ├── ReturnByValue.h │ │ ├── Reverse.h │ │ ├── Select.h │ │ ├── SelfAdjointView.h │ │ ├── SelfCwiseBinaryOp.h │ │ ├── Solve.h │ │ ├── SolveTriangular.h │ │ ├── SolverBase.h │ │ ├── StableNorm.h │ │ ├── StlIterators.h │ │ ├── Stride.h │ │ ├── Swap.h │ │ ├── Transpose.h │ │ ├── Transpositions.h │ │ ├── TriangularMatrix.h │ │ ├── VectorBlock.h │ │ ├── VectorwiseOp.h │ │ ├── Visitor.h │ │ ├── arch │ │ │ ├── AVX │ │ │ │ ├── Complex.h │ │ │ │ ├── MathFunctions.h │ │ │ │ ├── PacketMath.h │ │ │ │ └── TypeCasting.h │ │ │ ├── AVX512 │ │ │ │ ├── Complex.h │ │ │ │ ├── MathFunctions.h │ │ │ │ ├── PacketMath.h │ │ │ │ └── TypeCasting.h │ │ │ ├── AltiVec │ │ │ │ ├── Complex.h │ │ │ │ ├── MathFunctions.h │ │ │ │ ├── MatrixProduct.h │ │ │ │ ├── MatrixProductCommon.h │ │ │ │ ├── MatrixProductMMA.h │ │ │ │ └── PacketMath.h │ │ │ ├── CUDA │ │ │ │ └── Complex.h │ │ │ ├── Default │ │ │ │ ├── BFloat16.h │ │ │ │ ├── ConjHelper.h │ │ │ │ ├── GenericPacketMathFunctions.h │ │ │ │ ├── GenericPacketMathFunctionsFwd.h │ │ │ │ ├── Half.h │ │ │ │ ├── Settings.h │ │ │ │ └── TypeCasting.h │ │ │ ├── GPU │ │ │ │ ├── MathFunctions.h │ │ │ │ ├── PacketMath.h │ │ │ │ └── TypeCasting.h │ │ │ ├── HIP │ │ │ │ └── hcc │ │ │ │ │ └── math_constants.h │ │ │ ├── MSA │ │ │ │ ├── Complex.h │ │ │ │ ├── MathFunctions.h │ │ │ │ └── PacketMath.h │ │ │ ├── NEON │ │ │ │ ├── Complex.h │ │ │ │ ├── GeneralBlockPanelKernel.h │ │ │ │ ├── MathFunctions.h │ │ │ │ ├── PacketMath.h │ │ │ │ └── TypeCasting.h │ │ │ ├── SSE │ │ │ │ ├── Complex.h │ │ │ │ ├── MathFunctions.h │ │ │ │ ├── PacketMath.h │ │ │ │ └── TypeCasting.h │ │ │ ├── SVE │ │ │ │ ├── MathFunctions.h │ │ │ │ ├── PacketMath.h │ │ │ │ └── TypeCasting.h │ │ │ ├── SYCL │ │ │ │ ├── InteropHeaders.h │ │ │ │ ├── MathFunctions.h │ │ │ │ ├── PacketMath.h │ │ │ │ ├── SyclMemoryModel.h │ │ │ │ └── TypeCasting.h │ │ │ └── ZVector │ │ │ │ ├── Complex.h │ │ │ │ ├── MathFunctions.h │ │ │ │ └── PacketMath.h │ │ ├── functors │ │ │ ├── AssignmentFunctors.h │ │ │ ├── BinaryFunctors.h │ │ │ ├── NullaryFunctors.h │ │ │ ├── StlFunctors.h │ │ │ ├── TernaryFunctors.h │ │ │ └── UnaryFunctors.h │ │ ├── products │ │ │ ├── GeneralBlockPanelKernel.h │ │ │ ├── GeneralMatrixMatrix.h │ │ │ ├── GeneralMatrixMatrixTriangular.h │ │ │ ├── GeneralMatrixMatrixTriangular_BLAS.h │ │ │ ├── GeneralMatrixMatrix_BLAS.h │ │ │ ├── GeneralMatrixVector.h │ │ │ ├── GeneralMatrixVector_BLAS.h │ │ │ ├── Parallelizer.h │ │ │ ├── SelfadjointMatrixMatrix.h │ │ │ ├── SelfadjointMatrixMatrix_BLAS.h │ │ │ ├── SelfadjointMatrixVector.h │ │ │ ├── SelfadjointMatrixVector_BLAS.h │ │ │ ├── SelfadjointProduct.h │ │ │ ├── SelfadjointRank2Update.h │ │ │ ├── TriangularMatrixMatrix.h │ │ │ ├── TriangularMatrixMatrix_BLAS.h │ │ │ ├── TriangularMatrixVector.h │ │ │ ├── TriangularMatrixVector_BLAS.h │ │ │ ├── TriangularSolverMatrix.h │ │ │ ├── TriangularSolverMatrix_BLAS.h │ │ │ └── TriangularSolverVector.h │ │ └── util │ │ │ ├── BlasUtil.h │ │ │ ├── ConfigureVectorization.h │ │ │ ├── Constants.h │ │ │ ├── DisableStupidWarnings.h │ │ │ ├── ForwardDeclarations.h │ │ │ ├── IndexedViewHelper.h │ │ │ ├── IntegralConstant.h │ │ │ ├── MKL_support.h │ │ │ ├── Macros.h │ │ │ ├── Memory.h │ │ │ ├── Meta.h │ │ │ ├── NonMPL2.h │ │ │ ├── ReenableStupidWarnings.h │ │ │ ├── ReshapedHelper.h │ │ │ ├── StaticAssert.h │ │ │ ├── SymbolicIndex.h │ │ │ └── XprHelper.h │ │ ├── Eigenvalues │ │ ├── ComplexEigenSolver.h │ │ ├── ComplexSchur.h │ │ ├── ComplexSchur_LAPACKE.h │ │ ├── EigenSolver.h │ │ ├── GeneralizedEigenSolver.h │ │ ├── GeneralizedSelfAdjointEigenSolver.h │ │ ├── HessenbergDecomposition.h │ │ ├── MatrixBaseEigenvalues.h │ │ ├── RealQZ.h │ │ ├── RealSchur.h │ │ ├── RealSchur_LAPACKE.h │ │ ├── SelfAdjointEigenSolver.h │ │ ├── SelfAdjointEigenSolver_LAPACKE.h │ │ └── Tridiagonalization.h │ │ ├── Geometry │ │ ├── AlignedBox.h │ │ ├── AngleAxis.h │ │ ├── EulerAngles.h │ │ ├── Homogeneous.h │ │ ├── Hyperplane.h │ │ ├── OrthoMethods.h │ │ ├── ParametrizedLine.h │ │ ├── Quaternion.h │ │ ├── Rotation2D.h │ │ ├── RotationBase.h │ │ ├── Scaling.h │ │ ├── Transform.h │ │ ├── Translation.h │ │ ├── Umeyama.h │ │ └── arch │ │ │ └── Geometry_SIMD.h │ │ ├── Householder │ │ ├── BlockHouseholder.h │ │ ├── Householder.h │ │ └── HouseholderSequence.h │ │ ├── IterativeLinearSolvers │ │ ├── BasicPreconditioners.h │ │ ├── BiCGSTAB.h │ │ ├── ConjugateGradient.h │ │ ├── IncompleteCholesky.h │ │ ├── IncompleteLUT.h │ │ ├── IterativeSolverBase.h │ │ ├── LeastSquareConjugateGradient.h │ │ └── SolveWithGuess.h │ │ ├── Jacobi │ │ └── Jacobi.h │ │ ├── KLUSupport │ │ └── KLUSupport.h │ │ ├── LU │ │ ├── Determinant.h │ │ ├── FullPivLU.h │ │ ├── InverseImpl.h │ │ ├── PartialPivLU.h │ │ ├── PartialPivLU_LAPACKE.h │ │ └── arch │ │ │ └── InverseSize4.h │ │ ├── MetisSupport │ │ └── MetisSupport.h │ │ ├── OrderingMethods │ │ ├── Amd.h │ │ ├── Eigen_Colamd.h │ │ └── Ordering.h │ │ ├── PaStiXSupport │ │ └── PaStiXSupport.h │ │ ├── PardisoSupport │ │ └── PardisoSupport.h │ │ ├── QR │ │ ├── ColPivHouseholderQR.h │ │ ├── ColPivHouseholderQR_LAPACKE.h │ │ ├── CompleteOrthogonalDecomposition.h │ │ ├── FullPivHouseholderQR.h │ │ ├── HouseholderQR.h │ │ └── HouseholderQR_LAPACKE.h │ │ ├── SPQRSupport │ │ └── SuiteSparseQRSupport.h │ │ ├── SVD │ │ ├── BDCSVD.h │ │ ├── JacobiSVD.h │ │ ├── JacobiSVD_LAPACKE.h │ │ ├── SVDBase.h │ │ └── UpperBidiagonalization.h │ │ ├── SparseCholesky │ │ ├── SimplicialCholesky.h │ │ └── SimplicialCholesky_impl.h │ │ ├── SparseCore │ │ ├── AmbiVector.h │ │ ├── CompressedStorage.h │ │ ├── ConservativeSparseSparseProduct.h │ │ ├── MappedSparseMatrix.h │ │ ├── SparseAssign.h │ │ ├── SparseBlock.h │ │ ├── SparseColEtree.h │ │ ├── SparseCompressedBase.h │ │ ├── SparseCwiseBinaryOp.h │ │ ├── SparseCwiseUnaryOp.h │ │ ├── SparseDenseProduct.h │ │ ├── SparseDiagonalProduct.h │ │ ├── SparseDot.h │ │ ├── SparseFuzzy.h │ │ ├── SparseMap.h │ │ ├── SparseMatrix.h │ │ ├── SparseMatrixBase.h │ │ ├── SparsePermutation.h │ │ ├── SparseProduct.h │ │ ├── SparseRedux.h │ │ ├── SparseRef.h │ │ ├── SparseSelfAdjointView.h │ │ ├── SparseSolverBase.h │ │ ├── SparseSparseProductWithPruning.h │ │ ├── SparseTranspose.h │ │ ├── SparseTriangularView.h │ │ ├── SparseUtil.h │ │ ├── SparseVector.h │ │ ├── SparseView.h │ │ └── TriangularSolver.h │ │ ├── SparseLU │ │ ├── SparseLU.h │ │ ├── SparseLUImpl.h │ │ ├── SparseLU_Memory.h │ │ ├── SparseLU_Structs.h │ │ ├── SparseLU_SupernodalMatrix.h │ │ ├── SparseLU_Utils.h │ │ ├── SparseLU_column_bmod.h │ │ ├── SparseLU_column_dfs.h │ │ ├── SparseLU_copy_to_ucol.h │ │ ├── SparseLU_gemm_kernel.h │ │ ├── SparseLU_heap_relax_snode.h │ │ ├── SparseLU_kernel_bmod.h │ │ ├── SparseLU_panel_bmod.h │ │ ├── SparseLU_panel_dfs.h │ │ ├── SparseLU_pivotL.h │ │ ├── SparseLU_pruneL.h │ │ └── SparseLU_relax_snode.h │ │ ├── SparseQR │ │ └── SparseQR.h │ │ ├── StlSupport │ │ ├── StdDeque.h │ │ ├── StdList.h │ │ ├── StdVector.h │ │ └── details.h │ │ ├── SuperLUSupport │ │ └── SuperLUSupport.h │ │ ├── UmfPackSupport │ │ └── UmfPackSupport.h │ │ ├── misc │ │ ├── Image.h │ │ ├── Kernel.h │ │ ├── RealSvd2x2.h │ │ ├── blas.h │ │ ├── lapack.h │ │ ├── lapacke.h │ │ └── lapacke_mangling.h │ │ └── plugins │ │ ├── ArrayCwiseBinaryOps.h │ │ ├── ArrayCwiseUnaryOps.h │ │ ├── BlockMethods.h │ │ ├── CommonCwiseBinaryOps.h │ │ ├── CommonCwiseUnaryOps.h │ │ ├── IndexedViewMethods.h │ │ ├── MatrixCwiseBinaryOps.h │ │ ├── MatrixCwiseUnaryOps.h │ │ └── ReshapedMethods.h ├── MagneticField │ ├── IGRF │ │ └── FORTRAN │ │ │ └── igrf13.f │ ├── WMM │ │ └── FORTRAN │ │ │ ├── bin │ │ │ ├── geomdr.for │ │ │ ├── geomdr_linux.exe │ │ │ ├── magpoint.for │ │ │ └── magpoint_linux.exe │ │ │ ├── geomag.for │ │ │ └── geomag.for.original │ └── make.mk ├── SGP4 │ ├── make.mk │ ├── sgp4ext.cpp │ ├── sgp4ext.h │ ├── sgp4io.cpp │ ├── sgp4io.h │ ├── sgp4unit.cpp │ └── sgp4unit.h ├── cspice │ ├── data │ │ ├── cook_01.tc │ │ ├── cook_01.tls │ │ ├── cook_01.tpc │ │ ├── cook_01.tsc │ │ ├── cook_01.tsp │ │ ├── cook_02.tc │ │ ├── cook_02.tsp │ │ └── geophysical.ker │ ├── include │ │ ├── SpiceCK.h │ │ ├── SpiceCel.h │ │ ├── SpiceDAS.h │ │ ├── SpiceDLA.h │ │ ├── SpiceDSK.h │ │ ├── SpiceDtl.h │ │ ├── SpiceEK.h │ │ ├── SpiceEll.h │ │ ├── SpiceErr.h │ │ ├── SpiceFrm.h │ │ ├── SpiceGF.h │ │ ├── SpiceOccult.h │ │ ├── SpiceOsc.h │ │ ├── SpicePln.h │ │ ├── SpiceSCLK.h │ │ ├── SpiceSPK.h │ │ ├── SpiceSrf.h │ │ ├── SpiceUsr.h │ │ ├── SpiceZad.h │ │ ├── SpiceZdf.h │ │ ├── SpiceZfc.h │ │ ├── SpiceZim.h │ │ ├── SpiceZmc.h │ │ ├── SpiceZpl.h │ │ ├── SpiceZpr.h │ │ ├── SpiceZrnm.h │ │ ├── SpiceZst.h │ │ ├── f2c.h │ │ ├── f2cMang.h │ │ ├── fio.h │ │ ├── fmt.h │ │ ├── fp.h │ │ ├── lio.h │ │ ├── make.mk │ │ ├── rawio.h │ │ ├── signal1.h │ │ ├── zzalloc.h │ │ └── zzerror.h │ ├── lib │ │ ├── cspice.a │ │ └── csupport.a │ └── make.mk ├── libxsd │ ├── FLOSSE │ ├── GPLv2 │ ├── LICENSE │ ├── README │ ├── make.mk │ └── xsd │ │ ├── cxx │ │ ├── auto-array.hxx │ │ ├── compilers │ │ │ └── vc-8 │ │ │ │ ├── post.hxx │ │ │ │ └── pre.hxx │ │ ├── config.hxx │ │ ├── exceptions.hxx │ │ ├── make.mk │ │ ├── parser │ │ │ ├── document.hxx │ │ │ ├── document.txx │ │ │ ├── elements.hxx │ │ │ ├── elements.txx │ │ │ ├── error-handler.hxx │ │ │ ├── error-handler.txx │ │ │ ├── exceptions.hxx │ │ │ ├── exceptions.ixx │ │ │ ├── exceptions.txx │ │ │ ├── expat │ │ │ │ ├── elements.hxx │ │ │ │ └── elements.txx │ │ │ ├── map.hxx │ │ │ ├── map.ixx │ │ │ ├── map.txx │ │ │ ├── non-validating │ │ │ │ ├── parser.hxx │ │ │ │ ├── parser.txx │ │ │ │ ├── xml-schema-pimpl.hxx │ │ │ │ ├── xml-schema-pimpl.ixx │ │ │ │ ├── xml-schema-pimpl.txx │ │ │ │ ├── xml-schema-pskel.hxx │ │ │ │ ├── xml-schema-pskel.ixx │ │ │ │ └── xml-schema-pskel.txx │ │ │ ├── schema-exceptions.hxx │ │ │ ├── schema-exceptions.ixx │ │ │ ├── schema-exceptions.txx │ │ │ ├── substitution-map.hxx │ │ │ ├── substitution-map.txx │ │ │ ├── validating │ │ │ │ ├── exceptions.hxx │ │ │ │ ├── exceptions.ixx │ │ │ │ ├── exceptions.txx │ │ │ │ ├── inheritance-map.hxx │ │ │ │ ├── inheritance-map.txx │ │ │ │ ├── parser.hxx │ │ │ │ ├── parser.txx │ │ │ │ ├── xml-schema-pimpl.hxx │ │ │ │ ├── xml-schema-pimpl.ixx │ │ │ │ ├── xml-schema-pimpl.txx │ │ │ │ ├── xml-schema-pskel.hxx │ │ │ │ ├── xml-schema-pskel.ixx │ │ │ │ └── xml-schema-pskel.txx │ │ │ ├── xerces │ │ │ │ ├── elements.hxx │ │ │ │ └── elements.txx │ │ │ ├── xml-schema.hxx │ │ │ ├── xml-schema.ixx │ │ │ └── xml-schema.txx │ │ ├── post.hxx │ │ ├── pre.hxx │ │ ├── ro-string.hxx │ │ ├── ro-string.txx │ │ ├── tree │ │ │ ├── ace-cdr-stream-common.hxx │ │ │ ├── ace-cdr-stream-extraction.hxx │ │ │ ├── ace-cdr-stream-insertion.hxx │ │ │ ├── bits │ │ │ │ ├── literals.hxx │ │ │ │ └── literals.ixx │ │ │ ├── buffer.hxx │ │ │ ├── buffer.txx │ │ │ ├── comparison-map.hxx │ │ │ ├── comparison-map.txx │ │ │ ├── containers-wildcard.hxx │ │ │ ├── containers.hxx │ │ │ ├── containers.txx │ │ │ ├── date-time-extraction.txx │ │ │ ├── date-time-insertion.txx │ │ │ ├── date-time-ostream.txx │ │ │ ├── date-time.hxx │ │ │ ├── date-time.ixx │ │ │ ├── date-time.txx │ │ │ ├── element-map.hxx │ │ │ ├── element-map.txx │ │ │ ├── elements.hxx │ │ │ ├── elements.ixx │ │ │ ├── elements.txx │ │ │ ├── error-handler.hxx │ │ │ ├── error-handler.txx │ │ │ ├── exceptions.hxx │ │ │ ├── exceptions.txx │ │ │ ├── facet.hxx │ │ │ ├── istream-fwd.hxx │ │ │ ├── istream.hxx │ │ │ ├── iterator-adapter.hxx │ │ │ ├── list.hxx │ │ │ ├── ostream.hxx │ │ │ ├── parsing.hxx │ │ │ ├── parsing.txx │ │ │ ├── parsing │ │ │ │ ├── boolean.hxx │ │ │ │ ├── byte.hxx │ │ │ │ ├── date-time.txx │ │ │ │ ├── decimal.hxx │ │ │ │ ├── double.hxx │ │ │ │ ├── element-map.txx │ │ │ │ ├── float.hxx │ │ │ │ ├── int.hxx │ │ │ │ ├── long.hxx │ │ │ │ ├── short.hxx │ │ │ │ ├── unsigned-byte.hxx │ │ │ │ ├── unsigned-int.hxx │ │ │ │ ├── unsigned-long.hxx │ │ │ │ └── unsigned-short.hxx │ │ │ ├── serialization.hxx │ │ │ ├── serialization.txx │ │ │ ├── serialization │ │ │ │ ├── boolean.hxx │ │ │ │ ├── byte.hxx │ │ │ │ ├── date-time.txx │ │ │ │ ├── decimal.hxx │ │ │ │ ├── double.hxx │ │ │ │ ├── element-map.txx │ │ │ │ ├── float.hxx │ │ │ │ ├── int.hxx │ │ │ │ ├── long.hxx │ │ │ │ ├── short.hxx │ │ │ │ ├── unsigned-byte.hxx │ │ │ │ ├── unsigned-int.hxx │ │ │ │ ├── unsigned-long.hxx │ │ │ │ └── unsigned-short.hxx │ │ │ ├── std-ostream-map.hxx │ │ │ ├── std-ostream-map.txx │ │ │ ├── std-ostream-operators.hxx │ │ │ ├── stream-extraction-map.hxx │ │ │ ├── stream-extraction-map.txx │ │ │ ├── stream-extraction.hxx │ │ │ ├── stream-insertion-map.hxx │ │ │ ├── stream-insertion-map.txx │ │ │ ├── stream-insertion.hxx │ │ │ ├── text.hxx │ │ │ ├── text.txx │ │ │ ├── type-factory-map.hxx │ │ │ ├── type-factory-map.txx │ │ │ ├── type-serializer-map.hxx │ │ │ ├── type-serializer-map.txx │ │ │ ├── types.hxx │ │ │ ├── types.txx │ │ │ ├── xdr-stream-common.hxx │ │ │ ├── xdr-stream-extraction.hxx │ │ │ └── xdr-stream-insertion.hxx │ │ ├── version.hxx │ │ ├── xml │ │ │ ├── bits │ │ │ │ ├── literals.hxx │ │ │ │ └── literals.ixx │ │ │ ├── char-iso8859-1.hxx │ │ │ ├── char-iso8859-1.txx │ │ │ ├── char-lcp.hxx │ │ │ ├── char-lcp.txx │ │ │ ├── char-utf8.hxx │ │ │ ├── char-utf8.txx │ │ │ ├── dom │ │ │ │ ├── auto-ptr.hxx │ │ │ │ ├── bits │ │ │ │ │ ├── error-handler-proxy.hxx │ │ │ │ │ └── error-handler-proxy.txx │ │ │ │ ├── elements.hxx │ │ │ │ ├── elements.txx │ │ │ │ ├── parsing-header.hxx │ │ │ │ ├── parsing-source.hxx │ │ │ │ ├── parsing-source.txx │ │ │ │ ├── serialization-header.hxx │ │ │ │ ├── serialization-header.txx │ │ │ │ ├── serialization-source.hxx │ │ │ │ ├── serialization-source.txx │ │ │ │ ├── wildcard-source.hxx │ │ │ │ └── wildcard-source.txx │ │ │ ├── elements.hxx │ │ │ ├── elements.txx │ │ │ ├── error-handler.hxx │ │ │ ├── exceptions.hxx │ │ │ ├── make.mk │ │ │ ├── qualified-name.hxx │ │ │ ├── sax │ │ │ │ ├── bits │ │ │ │ │ ├── error-handler-proxy.hxx │ │ │ │ │ └── error-handler-proxy.txx │ │ │ │ └── std-input-source.hxx │ │ │ ├── std-memory-manager.hxx │ │ │ ├── string.hxx │ │ │ ├── string.ixx │ │ │ ├── string.txx │ │ │ └── xercesc │ │ │ │ ├── NLS │ │ │ │ ├── EN_US │ │ │ │ │ └── XMLErrList_EN_US.Xml │ │ │ │ └── XMLErrList.dtd │ │ │ │ ├── dom │ │ │ │ ├── DOM.hpp │ │ │ │ ├── DOMAttr.hpp │ │ │ │ ├── DOMCDATASection.hpp │ │ │ │ ├── DOMCharacterData.hpp │ │ │ │ ├── DOMComment.hpp │ │ │ │ ├── DOMConfiguration.hpp │ │ │ │ ├── DOMDocument.hpp │ │ │ │ ├── DOMDocumentFragment.hpp │ │ │ │ ├── DOMDocumentRange.hpp │ │ │ │ ├── DOMDocumentTraversal.hpp │ │ │ │ ├── DOMDocumentType.hpp │ │ │ │ ├── DOMElement.hpp │ │ │ │ ├── DOMEntity.hpp │ │ │ │ ├── DOMEntityReference.hpp │ │ │ │ ├── DOMError.hpp │ │ │ │ ├── DOMErrorHandler.hpp │ │ │ │ ├── DOMException.cpp │ │ │ │ ├── DOMException.hpp │ │ │ │ ├── DOMImplementation.hpp │ │ │ │ ├── DOMImplementationLS.hpp │ │ │ │ ├── DOMImplementationList.hpp │ │ │ │ ├── DOMImplementationRegistry.hpp │ │ │ │ ├── DOMImplementationSource.hpp │ │ │ │ ├── DOMLSException.cpp │ │ │ │ ├── DOMLSException.hpp │ │ │ │ ├── DOMLSInput.hpp │ │ │ │ ├── DOMLSOutput.hpp │ │ │ │ ├── DOMLSParser.hpp │ │ │ │ ├── DOMLSParserFilter.hpp │ │ │ │ ├── DOMLSResourceResolver.hpp │ │ │ │ ├── DOMLSSerializer.hpp │ │ │ │ ├── DOMLSSerializerFilter.hpp │ │ │ │ ├── DOMLocator.hpp │ │ │ │ ├── DOMMemoryManager.hpp │ │ │ │ ├── DOMNamedNodeMap.hpp │ │ │ │ ├── DOMNode.hpp │ │ │ │ ├── DOMNodeFilter.hpp │ │ │ │ ├── DOMNodeIterator.hpp │ │ │ │ ├── DOMNodeList.hpp │ │ │ │ ├── DOMNotation.hpp │ │ │ │ ├── DOMPSVITypeInfo.hpp │ │ │ │ ├── DOMProcessingInstruction.hpp │ │ │ │ ├── DOMRange.hpp │ │ │ │ ├── DOMRangeException.cpp │ │ │ │ ├── DOMRangeException.hpp │ │ │ │ ├── DOMStringList.hpp │ │ │ │ ├── DOMText.hpp │ │ │ │ ├── DOMTreeWalker.hpp │ │ │ │ ├── DOMTypeInfo.hpp │ │ │ │ ├── DOMUserDataHandler.hpp │ │ │ │ ├── DOMXPathEvaluator.hpp │ │ │ │ ├── DOMXPathException.cpp │ │ │ │ ├── DOMXPathException.hpp │ │ │ │ ├── DOMXPathExpression.hpp │ │ │ │ ├── DOMXPathNSResolver.hpp │ │ │ │ ├── DOMXPathNamespace.hpp │ │ │ │ ├── DOMXPathResult.hpp │ │ │ │ ├── StDOMNode.hpp │ │ │ │ └── impl │ │ │ │ │ ├── DOMAttrImpl.cpp │ │ │ │ │ ├── DOMAttrImpl.hpp │ │ │ │ │ ├── DOMAttrMapImpl.cpp │ │ │ │ │ ├── DOMAttrMapImpl.hpp │ │ │ │ │ ├── DOMAttrNSImpl.cpp │ │ │ │ │ ├── DOMAttrNSImpl.hpp │ │ │ │ │ ├── DOMCDATASectionImpl.cpp │ │ │ │ │ ├── DOMCDATASectionImpl.hpp │ │ │ │ │ ├── DOMCasts.hpp │ │ │ │ │ ├── DOMCharacterDataImpl.cpp │ │ │ │ │ ├── DOMCharacterDataImpl.hpp │ │ │ │ │ ├── DOMChildNode.cpp │ │ │ │ │ ├── DOMChildNode.hpp │ │ │ │ │ ├── DOMCommentImpl.cpp │ │ │ │ │ ├── DOMCommentImpl.hpp │ │ │ │ │ ├── DOMConfigurationImpl.cpp │ │ │ │ │ ├── DOMConfigurationImpl.hpp │ │ │ │ │ ├── DOMDeepNodeListImpl.cpp │ │ │ │ │ ├── DOMDeepNodeListImpl.hpp │ │ │ │ │ ├── DOMDeepNodeListPool.c │ │ │ │ │ ├── DOMDeepNodeListPool.hpp │ │ │ │ │ ├── DOMDocumentFragmentImpl.cpp │ │ │ │ │ ├── DOMDocumentFragmentImpl.hpp │ │ │ │ │ ├── DOMDocumentImpl.cpp │ │ │ │ │ ├── DOMDocumentImpl.hpp │ │ │ │ │ ├── DOMDocumentTypeImpl.cpp │ │ │ │ │ ├── DOMDocumentTypeImpl.hpp │ │ │ │ │ ├── DOMElementImpl.cpp │ │ │ │ │ ├── DOMElementImpl.hpp │ │ │ │ │ ├── DOMElementNSImpl.cpp │ │ │ │ │ ├── DOMElementNSImpl.hpp │ │ │ │ │ ├── DOMEntityImpl.cpp │ │ │ │ │ ├── DOMEntityImpl.hpp │ │ │ │ │ ├── DOMEntityReferenceImpl.cpp │ │ │ │ │ ├── DOMEntityReferenceImpl.hpp │ │ │ │ │ ├── DOMErrorImpl.cpp │ │ │ │ │ ├── DOMErrorImpl.hpp │ │ │ │ │ ├── DOMImplementationImpl.cpp │ │ │ │ │ ├── DOMImplementationImpl.hpp │ │ │ │ │ ├── DOMImplementationListImpl.cpp │ │ │ │ │ ├── DOMImplementationListImpl.hpp │ │ │ │ │ ├── DOMImplementationRegistry.cpp │ │ │ │ │ ├── DOMLSInputImpl.cpp │ │ │ │ │ ├── DOMLSInputImpl.hpp │ │ │ │ │ ├── DOMLSOutputImpl.cpp │ │ │ │ │ ├── DOMLSOutputImpl.hpp │ │ │ │ │ ├── DOMLSSerializerImpl.cpp │ │ │ │ │ ├── DOMLSSerializerImpl.hpp │ │ │ │ │ ├── DOMLocatorImpl.cpp │ │ │ │ │ ├── DOMLocatorImpl.hpp │ │ │ │ │ ├── DOMNamedNodeMapImpl.cpp │ │ │ │ │ ├── DOMNamedNodeMapImpl.hpp │ │ │ │ │ ├── DOMNodeBase.hpp │ │ │ │ │ ├── DOMNodeIDMap.cpp │ │ │ │ │ ├── DOMNodeIDMap.hpp │ │ │ │ │ ├── DOMNodeImpl.cpp │ │ │ │ │ ├── DOMNodeImpl.hpp │ │ │ │ │ ├── DOMNodeIteratorImpl.cpp │ │ │ │ │ ├── DOMNodeIteratorImpl.hpp │ │ │ │ │ ├── DOMNodeListImpl.cpp │ │ │ │ │ ├── DOMNodeListImpl.hpp │ │ │ │ │ ├── DOMNodeVector.cpp │ │ │ │ │ ├── DOMNodeVector.hpp │ │ │ │ │ ├── DOMNormalizer.cpp │ │ │ │ │ ├── DOMNormalizer.hpp │ │ │ │ │ ├── DOMNotationImpl.cpp │ │ │ │ │ ├── DOMNotationImpl.hpp │ │ │ │ │ ├── DOMParentNode.cpp │ │ │ │ │ ├── DOMParentNode.hpp │ │ │ │ │ ├── DOMProcessingInstructionImpl.cpp │ │ │ │ │ ├── DOMProcessingInstructionImpl.hpp │ │ │ │ │ ├── DOMRangeImpl.cpp │ │ │ │ │ ├── DOMRangeImpl.hpp │ │ │ │ │ ├── DOMStringListImpl.cpp │ │ │ │ │ ├── DOMStringListImpl.hpp │ │ │ │ │ ├── DOMStringPool.cpp │ │ │ │ │ ├── DOMStringPool.hpp │ │ │ │ │ ├── DOMTextImpl.cpp │ │ │ │ │ ├── DOMTextImpl.hpp │ │ │ │ │ ├── DOMTreeWalkerImpl.cpp │ │ │ │ │ ├── DOMTreeWalkerImpl.hpp │ │ │ │ │ ├── DOMTypeInfoImpl.cpp │ │ │ │ │ ├── DOMTypeInfoImpl.hpp │ │ │ │ │ ├── DOMXPathExpressionImpl.cpp │ │ │ │ │ ├── DOMXPathExpressionImpl.hpp │ │ │ │ │ ├── DOMXPathNSResolverImpl.cpp │ │ │ │ │ ├── DOMXPathNSResolverImpl.hpp │ │ │ │ │ ├── DOMXPathResultImpl.cpp │ │ │ │ │ ├── DOMXPathResultImpl.hpp │ │ │ │ │ ├── XSDElementNSImpl.cpp │ │ │ │ │ └── XSDElementNSImpl.hpp │ │ │ │ ├── framework │ │ │ │ ├── BinOutputStream.cpp │ │ │ │ ├── BinOutputStream.hpp │ │ │ │ ├── LocalFileFormatTarget.cpp │ │ │ │ ├── LocalFileFormatTarget.hpp │ │ │ │ ├── LocalFileInputSource.cpp │ │ │ │ ├── LocalFileInputSource.hpp │ │ │ │ ├── MemBufFormatTarget.cpp │ │ │ │ ├── MemBufFormatTarget.hpp │ │ │ │ ├── MemBufInputSource.cpp │ │ │ │ ├── MemBufInputSource.hpp │ │ │ │ ├── MemoryManager.hpp │ │ │ │ ├── StdInInputSource.cpp │ │ │ │ ├── StdInInputSource.hpp │ │ │ │ ├── StdOutFormatTarget.cpp │ │ │ │ ├── StdOutFormatTarget.hpp │ │ │ │ ├── URLInputSource.cpp │ │ │ │ ├── URLInputSource.hpp │ │ │ │ ├── ValidationContext.hpp │ │ │ │ ├── Wrapper4DOMLSInput.cpp │ │ │ │ ├── Wrapper4DOMLSInput.hpp │ │ │ │ ├── Wrapper4InputSource.cpp │ │ │ │ ├── Wrapper4InputSource.hpp │ │ │ │ ├── XMLAttDef.cpp │ │ │ │ ├── XMLAttDef.hpp │ │ │ │ ├── XMLAttDefList.cpp │ │ │ │ ├── XMLAttDefList.hpp │ │ │ │ ├── XMLAttr.cpp │ │ │ │ ├── XMLAttr.hpp │ │ │ │ ├── XMLBuffer.cpp │ │ │ │ ├── XMLBuffer.hpp │ │ │ │ ├── XMLBufferMgr.cpp │ │ │ │ ├── XMLBufferMgr.hpp │ │ │ │ ├── XMLContentModel.cpp │ │ │ │ ├── XMLContentModel.hpp │ │ │ │ ├── XMLDTDDescription.cpp │ │ │ │ ├── XMLDTDDescription.hpp │ │ │ │ ├── XMLDocumentHandler.hpp │ │ │ │ ├── XMLElementDecl.cpp │ │ │ │ ├── XMLElementDecl.hpp │ │ │ │ ├── XMLEntityDecl.cpp │ │ │ │ ├── XMLEntityDecl.hpp │ │ │ │ ├── XMLEntityHandler.hpp │ │ │ │ ├── XMLErrorCodes.hpp │ │ │ │ ├── XMLErrorReporter.hpp │ │ │ │ ├── XMLFormatter.cpp │ │ │ │ ├── XMLFormatter.hpp │ │ │ │ ├── XMLGrammarDescription.cpp │ │ │ │ ├── XMLGrammarDescription.hpp │ │ │ │ ├── XMLGrammarPool.hpp │ │ │ │ ├── XMLGrammarPoolImpl.cpp │ │ │ │ ├── XMLGrammarPoolImpl.hpp │ │ │ │ ├── XMLNotationDecl.cpp │ │ │ │ ├── XMLNotationDecl.hpp │ │ │ │ ├── XMLPScanToken.hpp │ │ │ │ ├── XMLRecognizer.cpp │ │ │ │ ├── XMLRecognizer.hpp │ │ │ │ ├── XMLRefInfo.cpp │ │ │ │ ├── XMLRefInfo.hpp │ │ │ │ ├── XMLSchemaDescription.cpp │ │ │ │ ├── XMLSchemaDescription.hpp │ │ │ │ ├── XMLValidator.cpp │ │ │ │ ├── XMLValidator.hpp │ │ │ │ ├── XMLValidityCodes.hpp │ │ │ │ └── psvi │ │ │ │ │ ├── PSVIAttribute.cpp │ │ │ │ │ ├── PSVIAttribute.hpp │ │ │ │ │ ├── PSVIAttributeList.cpp │ │ │ │ │ ├── PSVIAttributeList.hpp │ │ │ │ │ ├── PSVIElement.cpp │ │ │ │ │ ├── PSVIElement.hpp │ │ │ │ │ ├── PSVIHandler.hpp │ │ │ │ │ ├── PSVIItem.cpp │ │ │ │ │ ├── PSVIItem.hpp │ │ │ │ │ ├── XSAnnotation.cpp │ │ │ │ │ ├── XSAnnotation.hpp │ │ │ │ │ ├── XSAttributeDeclaration.cpp │ │ │ │ │ ├── XSAttributeDeclaration.hpp │ │ │ │ │ ├── XSAttributeGroupDefinition.cpp │ │ │ │ │ ├── XSAttributeGroupDefinition.hpp │ │ │ │ │ ├── XSAttributeUse.cpp │ │ │ │ │ ├── XSAttributeUse.hpp │ │ │ │ │ ├── XSComplexTypeDefinition.cpp │ │ │ │ │ ├── XSComplexTypeDefinition.hpp │ │ │ │ │ ├── XSConstants.hpp │ │ │ │ │ ├── XSElementDeclaration.cpp │ │ │ │ │ ├── XSElementDeclaration.hpp │ │ │ │ │ ├── XSFacet.cpp │ │ │ │ │ ├── XSFacet.hpp │ │ │ │ │ ├── XSIDCDefinition.cpp │ │ │ │ │ ├── XSIDCDefinition.hpp │ │ │ │ │ ├── XSModel.cpp │ │ │ │ │ ├── XSModel.hpp │ │ │ │ │ ├── XSModelGroup.cpp │ │ │ │ │ ├── XSModelGroup.hpp │ │ │ │ │ ├── XSModelGroupDefinition.cpp │ │ │ │ │ ├── XSModelGroupDefinition.hpp │ │ │ │ │ ├── XSMultiValueFacet.cpp │ │ │ │ │ ├── XSMultiValueFacet.hpp │ │ │ │ │ ├── XSNamedMap.c │ │ │ │ │ ├── XSNamedMap.hpp │ │ │ │ │ ├── XSNamespaceItem.cpp │ │ │ │ │ ├── XSNamespaceItem.hpp │ │ │ │ │ ├── XSNotationDeclaration.cpp │ │ │ │ │ ├── XSNotationDeclaration.hpp │ │ │ │ │ ├── XSObject.cpp │ │ │ │ │ ├── XSObject.hpp │ │ │ │ │ ├── XSParticle.cpp │ │ │ │ │ ├── XSParticle.hpp │ │ │ │ │ ├── XSSimpleTypeDefinition.cpp │ │ │ │ │ ├── XSSimpleTypeDefinition.hpp │ │ │ │ │ ├── XSTypeDefinition.cpp │ │ │ │ │ ├── XSTypeDefinition.hpp │ │ │ │ │ ├── XSValue.cpp │ │ │ │ │ ├── XSValue.hpp │ │ │ │ │ ├── XSWildcard.cpp │ │ │ │ │ └── XSWildcard.hpp │ │ │ │ ├── internal │ │ │ │ ├── BinFileOutputStream.cpp │ │ │ │ ├── BinFileOutputStream.hpp │ │ │ │ ├── BinMemOutputStream.cpp │ │ │ │ ├── BinMemOutputStream.hpp │ │ │ │ ├── CharTypeTables.hpp │ │ │ │ ├── DGXMLScanner.cpp │ │ │ │ ├── DGXMLScanner.hpp │ │ │ │ ├── ElemStack.cpp │ │ │ │ ├── ElemStack.hpp │ │ │ │ ├── EndOfEntityException.hpp │ │ │ │ ├── IANAEncodings.hpp │ │ │ │ ├── IGXMLScanner.cpp │ │ │ │ ├── IGXMLScanner.hpp │ │ │ │ ├── IGXMLScanner2.cpp │ │ │ │ ├── MemoryManagerImpl.cpp │ │ │ │ ├── MemoryManagerImpl.hpp │ │ │ │ ├── ReaderMgr.cpp │ │ │ │ ├── ReaderMgr.hpp │ │ │ │ ├── SGXMLScanner.cpp │ │ │ │ ├── SGXMLScanner.hpp │ │ │ │ ├── ValidationContextImpl.cpp │ │ │ │ ├── ValidationContextImpl.hpp │ │ │ │ ├── VecAttrListImpl.cpp │ │ │ │ ├── VecAttrListImpl.hpp │ │ │ │ ├── VecAttributesImpl.cpp │ │ │ │ ├── VecAttributesImpl.hpp │ │ │ │ ├── WFXMLScanner.cpp │ │ │ │ ├── WFXMLScanner.hpp │ │ │ │ ├── XMLInternalErrorHandler.hpp │ │ │ │ ├── XMLReader.cpp │ │ │ │ ├── XMLReader.hpp │ │ │ │ ├── XMLScanner.cpp │ │ │ │ ├── XMLScanner.hpp │ │ │ │ ├── XMLScannerResolver.cpp │ │ │ │ ├── XMLScannerResolver.hpp │ │ │ │ ├── XProtoType.cpp │ │ │ │ ├── XProtoType.hpp │ │ │ │ ├── XSAXMLScanner.cpp │ │ │ │ ├── XSAXMLScanner.hpp │ │ │ │ ├── XSObjectFactory.cpp │ │ │ │ ├── XSObjectFactory.hpp │ │ │ │ ├── XSerializable.hpp │ │ │ │ ├── XSerializationException.hpp │ │ │ │ ├── XSerializeEngine.cpp │ │ │ │ ├── XSerializeEngine.hpp │ │ │ │ ├── XTemplateSerializer.cpp │ │ │ │ └── XTemplateSerializer.hpp │ │ │ │ ├── parsers │ │ │ │ ├── AbstractDOMParser.cpp │ │ │ │ ├── AbstractDOMParser.hpp │ │ │ │ ├── DOMLSParserImpl.cpp │ │ │ │ ├── DOMLSParserImpl.hpp │ │ │ │ ├── SAX2XMLFilterImpl.cpp │ │ │ │ ├── SAX2XMLFilterImpl.hpp │ │ │ │ ├── SAX2XMLReaderImpl.cpp │ │ │ │ ├── SAX2XMLReaderImpl.hpp │ │ │ │ ├── SAXParser.cpp │ │ │ │ ├── SAXParser.hpp │ │ │ │ ├── XercesDOMParser.cpp │ │ │ │ └── XercesDOMParser.hpp │ │ │ │ ├── sax │ │ │ │ ├── AttributeList.hpp │ │ │ │ ├── DTDHandler.hpp │ │ │ │ ├── DocumentHandler.hpp │ │ │ │ ├── Dummy.cpp │ │ │ │ ├── EntityResolver.hpp │ │ │ │ ├── ErrorHandler.hpp │ │ │ │ ├── HandlerBase.hpp │ │ │ │ ├── InputSource.cpp │ │ │ │ ├── InputSource.hpp │ │ │ │ ├── Locator.hpp │ │ │ │ ├── Parser.hpp │ │ │ │ ├── SAXException.cpp │ │ │ │ ├── SAXException.hpp │ │ │ │ ├── SAXParseException.cpp │ │ │ │ └── SAXParseException.hpp │ │ │ │ ├── sax2 │ │ │ │ ├── Attributes.hpp │ │ │ │ ├── ContentHandler.hpp │ │ │ │ ├── DeclHandler.hpp │ │ │ │ ├── DefaultHandler.hpp │ │ │ │ ├── LexicalHandler.hpp │ │ │ │ ├── SAX2XMLFilter.hpp │ │ │ │ ├── SAX2XMLReader.hpp │ │ │ │ ├── XMLReaderFactory.hpp │ │ │ │ └── sax2Dummy.cpp │ │ │ │ ├── util │ │ │ │ ├── ArrayIndexOutOfBoundsException.hpp │ │ │ │ ├── Base64.cpp │ │ │ │ ├── Base64.hpp │ │ │ │ ├── BaseRefVectorOf.c │ │ │ │ ├── BaseRefVectorOf.hpp │ │ │ │ ├── BinFileInputStream.cpp │ │ │ │ ├── BinFileInputStream.hpp │ │ │ │ ├── BinInputStream.cpp │ │ │ │ ├── BinInputStream.hpp │ │ │ │ ├── BinMemInputStream.cpp │ │ │ │ ├── BinMemInputStream.hpp │ │ │ │ ├── BitOps.hpp │ │ │ │ ├── BitSet.cpp │ │ │ │ ├── BitSet.hpp │ │ │ │ ├── CountedPointer.c │ │ │ │ ├── CountedPointer.hpp │ │ │ │ ├── DefaultPanicHandler.cpp │ │ │ │ ├── DefaultPanicHandler.hpp │ │ │ │ ├── EmptyStackException.hpp │ │ │ │ ├── EncodingValidator.cpp │ │ │ │ ├── EncodingValidator.hpp │ │ │ │ ├── FileManagers │ │ │ │ │ ├── PosixFileMgr.cpp │ │ │ │ │ ├── PosixFileMgr.hpp │ │ │ │ │ ├── WindowsFileMgr.cpp │ │ │ │ │ └── WindowsFileMgr.hpp │ │ │ │ ├── FlagJanitor.c │ │ │ │ ├── FlagJanitor.hpp │ │ │ │ ├── Hash2KeysSetOf.c │ │ │ │ ├── Hash2KeysSetOf.hpp │ │ │ │ ├── Hashers.hpp │ │ │ │ ├── HeaderDummy.cpp │ │ │ │ ├── HexBin.cpp │ │ │ │ ├── HexBin.hpp │ │ │ │ ├── IOException.hpp │ │ │ │ ├── IllegalArgumentException.hpp │ │ │ │ ├── InvalidCastException.hpp │ │ │ │ ├── Janitor.c │ │ │ │ ├── Janitor.hpp │ │ │ │ ├── JanitorExports.cpp │ │ │ │ ├── KVStringPair.cpp │ │ │ │ ├── KVStringPair.hpp │ │ │ │ ├── KeyRefPair.c │ │ │ │ ├── KeyRefPair.hpp │ │ │ │ ├── KeyValuePair.c │ │ │ │ ├── KeyValuePair.hpp │ │ │ │ ├── LogicalPath.c │ │ │ │ ├── MsgLoaders │ │ │ │ │ ├── ICU │ │ │ │ │ │ ├── ICUMsgLoader.cpp │ │ │ │ │ │ ├── ICUMsgLoader.hpp │ │ │ │ │ │ └── resources │ │ │ │ │ │ │ ├── res-file-list.txt │ │ │ │ │ │ │ └── root.txt │ │ │ │ │ ├── InMemory │ │ │ │ │ │ ├── InMemMsgLoader.cpp │ │ │ │ │ │ ├── InMemMsgLoader.hpp │ │ │ │ │ │ └── XercesMessages_en_US.hpp │ │ │ │ │ └── MsgCatalog │ │ │ │ │ │ ├── MsgCatalogLoader.cpp │ │ │ │ │ │ ├── MsgCatalogLoader.hpp │ │ │ │ │ │ ├── XMLMsgCat_Ids.hpp │ │ │ │ │ │ └── XercesMessages_en_US.Msg │ │ │ │ ├── MutexManagers │ │ │ │ │ ├── NoThreadMutexMgr.cpp │ │ │ │ │ ├── NoThreadMutexMgr.hpp │ │ │ │ │ ├── PosixMutexMgr.cpp │ │ │ │ │ ├── PosixMutexMgr.hpp │ │ │ │ │ ├── StdMutexMgr.cpp │ │ │ │ │ ├── StdMutexMgr.hpp │ │ │ │ │ ├── WindowsMutexMgr.cpp │ │ │ │ │ └── WindowsMutexMgr.hpp │ │ │ │ ├── Mutexes.cpp │ │ │ │ ├── Mutexes.hpp │ │ │ │ ├── NameIdPool.c │ │ │ │ ├── NameIdPool.hpp │ │ │ │ ├── NetAccessors │ │ │ │ │ ├── BinHTTPInputStreamCommon.cpp │ │ │ │ │ ├── BinHTTPInputStreamCommon.hpp │ │ │ │ │ ├── Curl │ │ │ │ │ │ ├── CurlNetAccessor.cpp │ │ │ │ │ │ ├── CurlNetAccessor.hpp │ │ │ │ │ │ ├── CurlURLInputStream.cpp │ │ │ │ │ │ └── CurlURLInputStream.hpp │ │ │ │ │ ├── MacOSURLAccessCF │ │ │ │ │ │ ├── MacOSURLAccessCF.cpp │ │ │ │ │ │ ├── MacOSURLAccessCF.hpp │ │ │ │ │ │ ├── URLAccessCFBinInputStream.cpp │ │ │ │ │ │ └── URLAccessCFBinInputStream.hpp │ │ │ │ │ ├── Socket │ │ │ │ │ │ ├── SocketNetAccessor.cpp │ │ │ │ │ │ ├── SocketNetAccessor.hpp │ │ │ │ │ │ ├── UnixHTTPURLInputStream.cpp │ │ │ │ │ │ └── UnixHTTPURLInputStream.hpp │ │ │ │ │ └── WinSock │ │ │ │ │ │ ├── BinHTTPURLInputStream.cpp │ │ │ │ │ │ ├── BinHTTPURLInputStream.hpp │ │ │ │ │ │ ├── WinSockNetAccessor.cpp │ │ │ │ │ │ └── WinSockNetAccessor.hpp │ │ │ │ ├── NoSuchElementException.hpp │ │ │ │ ├── NullPointerException.hpp │ │ │ │ ├── NumberFormatException.hpp │ │ │ │ ├── OutOfMemoryException.hpp │ │ │ │ ├── PSVIUni.cpp │ │ │ │ ├── PSVIUni.hpp │ │ │ │ ├── PanicHandler.cpp │ │ │ │ ├── PanicHandler.hpp │ │ │ │ ├── ParseException.hpp │ │ │ │ ├── PlatformUtils.cpp │ │ │ │ ├── PlatformUtils.hpp │ │ │ │ ├── QName.cpp │ │ │ │ ├── QName.hpp │ │ │ │ ├── RefArrayOf.c │ │ │ │ ├── RefArrayOf.hpp │ │ │ │ ├── RefArrayVectorOf.c │ │ │ │ ├── RefArrayVectorOf.hpp │ │ │ │ ├── RefHash2KeysTableOf.c │ │ │ │ ├── RefHash2KeysTableOf.hpp │ │ │ │ ├── RefHash3KeysIdPool.c │ │ │ │ ├── RefHash3KeysIdPool.hpp │ │ │ │ ├── RefHashTableOf.c │ │ │ │ ├── RefHashTableOf.hpp │ │ │ │ ├── RefStackOf.c │ │ │ │ ├── RefStackOf.hpp │ │ │ │ ├── RefVectorOf.c │ │ │ │ ├── RefVectorOf.hpp │ │ │ │ ├── RuntimeException.hpp │ │ │ │ ├── SchemaDateTimeException.hpp │ │ │ │ ├── SecurityManager.hpp │ │ │ │ ├── StringPool.cpp │ │ │ │ ├── StringPool.hpp │ │ │ │ ├── SynchronizedStringPool.cpp │ │ │ │ ├── SynchronizedStringPool.hpp │ │ │ │ ├── TransENameMap.c │ │ │ │ ├── TransENameMap.hpp │ │ │ │ ├── TransService.cpp │ │ │ │ ├── TransService.hpp │ │ │ │ ├── Transcoders │ │ │ │ │ ├── ICU │ │ │ │ │ │ ├── ICUTransService.cpp │ │ │ │ │ │ └── ICUTransService.hpp │ │ │ │ │ ├── Iconv │ │ │ │ │ │ ├── IconvTransService.cpp │ │ │ │ │ │ └── IconvTransService.hpp │ │ │ │ │ ├── IconvGNU │ │ │ │ │ │ ├── IconvGNUTransService.cpp │ │ │ │ │ │ └── IconvGNUTransService.hpp │ │ │ │ │ ├── MacOSUnicodeConverter │ │ │ │ │ │ ├── MacOSUnicodeConverter.cpp │ │ │ │ │ │ └── MacOSUnicodeConverter.hpp │ │ │ │ │ └── Win32 │ │ │ │ │ │ ├── Win32TransService.cpp │ │ │ │ │ │ └── Win32TransService.hpp │ │ │ │ ├── TranscodingException.hpp │ │ │ │ ├── UTFDataFormatException.hpp │ │ │ │ ├── UnexpectedEOFException.hpp │ │ │ │ ├── UnsupportedEncodingException.hpp │ │ │ │ ├── ValueArrayOf.c │ │ │ │ ├── ValueArrayOf.hpp │ │ │ │ ├── ValueHashTableOf.c │ │ │ │ ├── ValueHashTableOf.hpp │ │ │ │ ├── ValueStackOf.c │ │ │ │ ├── ValueStackOf.hpp │ │ │ │ ├── ValueVectorOf.c │ │ │ │ ├── ValueVectorOf.hpp │ │ │ │ ├── XML256TableTranscoder.cpp │ │ │ │ ├── XML256TableTranscoder.hpp │ │ │ │ ├── XML88591Transcoder.cpp │ │ │ │ ├── XML88591Transcoder.hpp │ │ │ │ ├── XMLASCIITranscoder.cpp │ │ │ │ ├── XMLASCIITranscoder.hpp │ │ │ │ ├── XMLAbstractDoubleFloat.cpp │ │ │ │ ├── XMLAbstractDoubleFloat.hpp │ │ │ │ ├── XMLBigDecimal.cpp │ │ │ │ ├── XMLBigDecimal.hpp │ │ │ │ ├── XMLBigInteger.cpp │ │ │ │ ├── XMLBigInteger.hpp │ │ │ │ ├── XMLChTranscoder.cpp │ │ │ │ ├── XMLChTranscoder.hpp │ │ │ │ ├── XMLChar.cpp │ │ │ │ ├── XMLChar.hpp │ │ │ │ ├── XMLDOMMsg.hpp │ │ │ │ ├── XMLDateTime.cpp │ │ │ │ ├── XMLDateTime.hpp │ │ │ │ ├── XMLDouble.cpp │ │ │ │ ├── XMLDouble.hpp │ │ │ │ ├── XMLEBCDICTranscoder.cpp │ │ │ │ ├── XMLEBCDICTranscoder.hpp │ │ │ │ ├── XMLEntityResolver.hpp │ │ │ │ ├── XMLEnumerator.hpp │ │ │ │ ├── XMLExceptMsgs.hpp │ │ │ │ ├── XMLException.cpp │ │ │ │ ├── XMLException.hpp │ │ │ │ ├── XMLFileMgr.hpp │ │ │ │ ├── XMLFloat.cpp │ │ │ │ ├── XMLFloat.hpp │ │ │ │ ├── XMLIBM1047Transcoder.cpp │ │ │ │ ├── XMLIBM1047Transcoder.hpp │ │ │ │ ├── XMLIBM1140Transcoder.cpp │ │ │ │ ├── XMLIBM1140Transcoder.hpp │ │ │ │ ├── XMLInitializer.cpp │ │ │ │ ├── XMLInitializer.hpp │ │ │ │ ├── XMLInteger.hpp │ │ │ │ ├── XMLMsgLoader.cpp │ │ │ │ ├── XMLMsgLoader.hpp │ │ │ │ ├── XMLMutexMgr.hpp │ │ │ │ ├── XMLNetAccessor.hpp │ │ │ │ ├── XMLNumber.cpp │ │ │ │ ├── XMLNumber.hpp │ │ │ │ ├── XMLResourceIdentifier.hpp │ │ │ │ ├── XMLString.cpp │ │ │ │ ├── XMLString.hpp │ │ │ │ ├── XMLStringTokenizer.cpp │ │ │ │ ├── XMLStringTokenizer.hpp │ │ │ │ ├── XMLUCS4Transcoder.cpp │ │ │ │ ├── XMLUCS4Transcoder.hpp │ │ │ │ ├── XMLURL.cpp │ │ │ │ ├── XMLURL.hpp │ │ │ │ ├── XMLUTF16Transcoder.cpp │ │ │ │ ├── XMLUTF16Transcoder.hpp │ │ │ │ ├── XMLUTF8Transcoder.cpp │ │ │ │ ├── XMLUTF8Transcoder.hpp │ │ │ │ ├── XMLUni.cpp │ │ │ │ ├── XMLUni.hpp │ │ │ │ ├── XMLUniDefs.hpp │ │ │ │ ├── XMLUri.cpp │ │ │ │ ├── XMLUri.hpp │ │ │ │ ├── XMLWin1252Transcoder.cpp │ │ │ │ ├── XMLWin1252Transcoder.hpp │ │ │ │ ├── XMemory.cpp │ │ │ │ ├── XMemory.hpp │ │ │ │ ├── XercesDefs.hpp │ │ │ │ ├── XercesVersion.hpp.cmake.in │ │ │ │ ├── XercesVersion.hpp.in │ │ │ │ ├── Xerces_autoconf_config.hpp.cmake.in │ │ │ │ ├── Xerces_autoconf_config.hpp.in │ │ │ │ ├── regx │ │ │ │ │ ├── ASCIIRangeFactory.cpp │ │ │ │ │ ├── ASCIIRangeFactory.hpp │ │ │ │ │ ├── BMPattern.cpp │ │ │ │ │ ├── BMPattern.hpp │ │ │ │ │ ├── BlockRangeFactory.cpp │ │ │ │ │ ├── BlockRangeFactory.hpp │ │ │ │ │ ├── CharToken.cpp │ │ │ │ │ ├── CharToken.hpp │ │ │ │ │ ├── ClosureToken.cpp │ │ │ │ │ ├── ClosureToken.hpp │ │ │ │ │ ├── ConcatToken.cpp │ │ │ │ │ ├── ConcatToken.hpp │ │ │ │ │ ├── Match.cpp │ │ │ │ │ ├── Match.hpp │ │ │ │ │ ├── Op.cpp │ │ │ │ │ ├── Op.hpp │ │ │ │ │ ├── OpFactory.cpp │ │ │ │ │ ├── OpFactory.hpp │ │ │ │ │ ├── ParenToken.cpp │ │ │ │ │ ├── ParenToken.hpp │ │ │ │ │ ├── ParserForXMLSchema.cpp │ │ │ │ │ ├── ParserForXMLSchema.hpp │ │ │ │ │ ├── RangeFactory.cpp │ │ │ │ │ ├── RangeFactory.hpp │ │ │ │ │ ├── RangeToken.cpp │ │ │ │ │ ├── RangeToken.hpp │ │ │ │ │ ├── RangeTokenMap.cpp │ │ │ │ │ ├── RangeTokenMap.hpp │ │ │ │ │ ├── RegularExpression.cpp │ │ │ │ │ ├── RegularExpression.hpp │ │ │ │ │ ├── RegxDefs.hpp │ │ │ │ │ ├── RegxParser.cpp │ │ │ │ │ ├── RegxParser.hpp │ │ │ │ │ ├── RegxUtil.cpp │ │ │ │ │ ├── RegxUtil.hpp │ │ │ │ │ ├── StringToken.cpp │ │ │ │ │ ├── StringToken.hpp │ │ │ │ │ ├── Token.cpp │ │ │ │ │ ├── Token.hpp │ │ │ │ │ ├── TokenFactory.cpp │ │ │ │ │ ├── TokenFactory.hpp │ │ │ │ │ ├── TokenInc.hpp │ │ │ │ │ ├── UniCharTable.hpp │ │ │ │ │ ├── UnicodeRangeFactory.cpp │ │ │ │ │ ├── UnicodeRangeFactory.hpp │ │ │ │ │ ├── UnionToken.cpp │ │ │ │ │ ├── UnionToken.hpp │ │ │ │ │ ├── XMLRangeFactory.cpp │ │ │ │ │ ├── XMLRangeFactory.hpp │ │ │ │ │ ├── XMLUniCharacter.cpp │ │ │ │ │ └── XMLUniCharacter.hpp │ │ │ │ └── version.rc.cmake.in │ │ │ │ ├── validators │ │ │ │ ├── DTD │ │ │ │ │ ├── DTDAttDef.cpp │ │ │ │ │ ├── DTDAttDef.hpp │ │ │ │ │ ├── DTDAttDefList.cpp │ │ │ │ │ ├── DTDAttDefList.hpp │ │ │ │ │ ├── DTDElementDecl.cpp │ │ │ │ │ ├── DTDElementDecl.hpp │ │ │ │ │ ├── DTDEntityDecl.cpp │ │ │ │ │ ├── DTDEntityDecl.hpp │ │ │ │ │ ├── DTDGrammar.cpp │ │ │ │ │ ├── DTDGrammar.hpp │ │ │ │ │ ├── DTDScanner.cpp │ │ │ │ │ ├── DTDScanner.hpp │ │ │ │ │ ├── DTDValidator.cpp │ │ │ │ │ ├── DTDValidator.hpp │ │ │ │ │ ├── DocTypeHandler.hpp │ │ │ │ │ ├── XMLDTDDescriptionImpl.cpp │ │ │ │ │ └── XMLDTDDescriptionImpl.hpp │ │ │ │ ├── common │ │ │ │ │ ├── AllContentModel.cpp │ │ │ │ │ ├── AllContentModel.hpp │ │ │ │ │ ├── CMAny.cpp │ │ │ │ │ ├── CMAny.hpp │ │ │ │ │ ├── CMBinaryOp.cpp │ │ │ │ │ ├── CMBinaryOp.hpp │ │ │ │ │ ├── CMLeaf.hpp │ │ │ │ │ ├── CMNode.hpp │ │ │ │ │ ├── CMRepeatingLeaf.hpp │ │ │ │ │ ├── CMStateSet.hpp │ │ │ │ │ ├── CMUnaryOp.cpp │ │ │ │ │ ├── CMUnaryOp.hpp │ │ │ │ │ ├── ContentLeafNameTypeVector.cpp │ │ │ │ │ ├── ContentLeafNameTypeVector.hpp │ │ │ │ │ ├── ContentSpecNode.cpp │ │ │ │ │ ├── ContentSpecNode.hpp │ │ │ │ │ ├── DFAContentModel.cpp │ │ │ │ │ ├── DFAContentModel.hpp │ │ │ │ │ ├── Grammar.cpp │ │ │ │ │ ├── Grammar.hpp │ │ │ │ │ ├── GrammarResolver.cpp │ │ │ │ │ ├── GrammarResolver.hpp │ │ │ │ │ ├── MixedContentModel.cpp │ │ │ │ │ ├── MixedContentModel.hpp │ │ │ │ │ ├── SimpleContentModel.cpp │ │ │ │ │ └── SimpleContentModel.hpp │ │ │ │ ├── datatype │ │ │ │ │ ├── AbstractNumericFacetValidator.cpp │ │ │ │ │ ├── AbstractNumericFacetValidator.hpp │ │ │ │ │ ├── AbstractNumericValidator.cpp │ │ │ │ │ ├── AbstractNumericValidator.hpp │ │ │ │ │ ├── AbstractStringValidator.cpp │ │ │ │ │ ├── AbstractStringValidator.hpp │ │ │ │ │ ├── AnySimpleTypeDatatypeValidator.cpp │ │ │ │ │ ├── AnySimpleTypeDatatypeValidator.hpp │ │ │ │ │ ├── AnyURIDatatypeValidator.cpp │ │ │ │ │ ├── AnyURIDatatypeValidator.hpp │ │ │ │ │ ├── Base64BinaryDatatypeValidator.cpp │ │ │ │ │ ├── Base64BinaryDatatypeValidator.hpp │ │ │ │ │ ├── BooleanDatatypeValidator.cpp │ │ │ │ │ ├── BooleanDatatypeValidator.hpp │ │ │ │ │ ├── DatatypeValidator.cpp │ │ │ │ │ ├── DatatypeValidator.hpp │ │ │ │ │ ├── DatatypeValidatorFactory.cpp │ │ │ │ │ ├── DatatypeValidatorFactory.hpp │ │ │ │ │ ├── DateDatatypeValidator.cpp │ │ │ │ │ ├── DateDatatypeValidator.hpp │ │ │ │ │ ├── DateTimeDatatypeValidator.cpp │ │ │ │ │ ├── DateTimeDatatypeValidator.hpp │ │ │ │ │ ├── DateTimeValidator.cpp │ │ │ │ │ ├── DateTimeValidator.hpp │ │ │ │ │ ├── DayDatatypeValidator.cpp │ │ │ │ │ ├── DayDatatypeValidator.hpp │ │ │ │ │ ├── DecimalDatatypeValidator.cpp │ │ │ │ │ ├── DecimalDatatypeValidator.hpp │ │ │ │ │ ├── DoubleDatatypeValidator.cpp │ │ │ │ │ ├── DoubleDatatypeValidator.hpp │ │ │ │ │ ├── DurationDatatypeValidator.cpp │ │ │ │ │ ├── DurationDatatypeValidator.hpp │ │ │ │ │ ├── ENTITYDatatypeValidator.cpp │ │ │ │ │ ├── ENTITYDatatypeValidator.hpp │ │ │ │ │ ├── FloatDatatypeValidator.cpp │ │ │ │ │ ├── FloatDatatypeValidator.hpp │ │ │ │ │ ├── HexBinaryDatatypeValidator.cpp │ │ │ │ │ ├── HexBinaryDatatypeValidator.hpp │ │ │ │ │ ├── IDDatatypeValidator.cpp │ │ │ │ │ ├── IDDatatypeValidator.hpp │ │ │ │ │ ├── IDREFDatatypeValidator.cpp │ │ │ │ │ ├── IDREFDatatypeValidator.hpp │ │ │ │ │ ├── InvalidDatatypeFacetException.hpp │ │ │ │ │ ├── InvalidDatatypeValueException.hpp │ │ │ │ │ ├── ListDatatypeValidator.cpp │ │ │ │ │ ├── ListDatatypeValidator.hpp │ │ │ │ │ ├── MonthDatatypeValidator.cpp │ │ │ │ │ ├── MonthDatatypeValidator.hpp │ │ │ │ │ ├── MonthDayDatatypeValidator.cpp │ │ │ │ │ ├── MonthDayDatatypeValidator.hpp │ │ │ │ │ ├── NCNameDatatypeValidator.cpp │ │ │ │ │ ├── NCNameDatatypeValidator.hpp │ │ │ │ │ ├── NOTATIONDatatypeValidator.cpp │ │ │ │ │ ├── NOTATIONDatatypeValidator.hpp │ │ │ │ │ ├── NameDatatypeValidator.cpp │ │ │ │ │ ├── NameDatatypeValidator.hpp │ │ │ │ │ ├── QNameDatatypeValidator.cpp │ │ │ │ │ ├── QNameDatatypeValidator.hpp │ │ │ │ │ ├── StringDatatypeValidator.cpp │ │ │ │ │ ├── StringDatatypeValidator.hpp │ │ │ │ │ ├── TimeDatatypeValidator.cpp │ │ │ │ │ ├── TimeDatatypeValidator.hpp │ │ │ │ │ ├── UnionDatatypeValidator.cpp │ │ │ │ │ ├── UnionDatatypeValidator.hpp │ │ │ │ │ ├── XMLCanRepGroup.cpp │ │ │ │ │ ├── XMLCanRepGroup.hpp │ │ │ │ │ ├── YearDatatypeValidator.cpp │ │ │ │ │ ├── YearDatatypeValidator.hpp │ │ │ │ │ ├── YearMonthDatatypeValidator.cpp │ │ │ │ │ └── YearMonthDatatypeValidator.hpp │ │ │ │ └── schema │ │ │ │ │ ├── ComplexTypeInfo.cpp │ │ │ │ │ ├── ComplexTypeInfo.hpp │ │ │ │ │ ├── GeneralAttributeCheck.cpp │ │ │ │ │ ├── GeneralAttributeCheck.hpp │ │ │ │ │ ├── NamespaceScope.cpp │ │ │ │ │ ├── NamespaceScope.hpp │ │ │ │ │ ├── PSVIDefs.hpp │ │ │ │ │ ├── SchemaAttDef.cpp │ │ │ │ │ ├── SchemaAttDef.hpp │ │ │ │ │ ├── SchemaAttDefList.cpp │ │ │ │ │ ├── SchemaAttDefList.hpp │ │ │ │ │ ├── SchemaElementDecl.cpp │ │ │ │ │ ├── SchemaElementDecl.hpp │ │ │ │ │ ├── SchemaGrammar.cpp │ │ │ │ │ ├── SchemaGrammar.hpp │ │ │ │ │ ├── SchemaInfo.cpp │ │ │ │ │ ├── SchemaInfo.hpp │ │ │ │ │ ├── SchemaSymbols.cpp │ │ │ │ │ ├── SchemaSymbols.hpp │ │ │ │ │ ├── SchemaValidator.cpp │ │ │ │ │ ├── SchemaValidator.hpp │ │ │ │ │ ├── SubstitutionGroupComparator.cpp │ │ │ │ │ ├── SubstitutionGroupComparator.hpp │ │ │ │ │ ├── TraverseSchema.cpp │ │ │ │ │ ├── TraverseSchema.hpp │ │ │ │ │ ├── XMLSchemaDescriptionImpl.cpp │ │ │ │ │ ├── XMLSchemaDescriptionImpl.hpp │ │ │ │ │ ├── XSDDOMParser.cpp │ │ │ │ │ ├── XSDDOMParser.hpp │ │ │ │ │ ├── XSDErrorReporter.cpp │ │ │ │ │ ├── XSDErrorReporter.hpp │ │ │ │ │ ├── XSDLocator.cpp │ │ │ │ │ ├── XSDLocator.hpp │ │ │ │ │ ├── XUtil.cpp │ │ │ │ │ ├── XUtil.hpp │ │ │ │ │ ├── XercesAttGroupInfo.cpp │ │ │ │ │ ├── XercesAttGroupInfo.hpp │ │ │ │ │ ├── XercesElementWildcard.cpp │ │ │ │ │ ├── XercesElementWildcard.hpp │ │ │ │ │ ├── XercesGroupInfo.cpp │ │ │ │ │ ├── XercesGroupInfo.hpp │ │ │ │ │ └── identity │ │ │ │ │ ├── FieldActivator.cpp │ │ │ │ │ ├── FieldActivator.hpp │ │ │ │ │ ├── FieldValueMap.cpp │ │ │ │ │ ├── FieldValueMap.hpp │ │ │ │ │ ├── IC_Field.cpp │ │ │ │ │ ├── IC_Field.hpp │ │ │ │ │ ├── IC_Key.cpp │ │ │ │ │ ├── IC_Key.hpp │ │ │ │ │ ├── IC_KeyRef.cpp │ │ │ │ │ ├── IC_KeyRef.hpp │ │ │ │ │ ├── IC_Selector.cpp │ │ │ │ │ ├── IC_Selector.hpp │ │ │ │ │ ├── IC_Unique.cpp │ │ │ │ │ ├── IC_Unique.hpp │ │ │ │ │ ├── IdentityConstraint.cpp │ │ │ │ │ ├── IdentityConstraint.hpp │ │ │ │ │ ├── IdentityConstraintHandler.cpp │ │ │ │ │ ├── IdentityConstraintHandler.hpp │ │ │ │ │ ├── ValueStore.cpp │ │ │ │ │ ├── ValueStore.hpp │ │ │ │ │ ├── ValueStoreCache.cpp │ │ │ │ │ ├── ValueStoreCache.hpp │ │ │ │ │ ├── XPathException.hpp │ │ │ │ │ ├── XPathMatcher.cpp │ │ │ │ │ ├── XPathMatcher.hpp │ │ │ │ │ ├── XPathMatcherStack.cpp │ │ │ │ │ ├── XPathMatcherStack.hpp │ │ │ │ │ ├── XPathSymbols.cpp │ │ │ │ │ ├── XPathSymbols.hpp │ │ │ │ │ ├── XercesXPath.cpp │ │ │ │ │ └── XercesXPath.hpp │ │ │ │ └── xinclude │ │ │ │ ├── XIncludeDOMDocumentProcessor.cpp │ │ │ │ ├── XIncludeDOMDocumentProcessor.hpp │ │ │ │ ├── XIncludeLocation.cpp │ │ │ │ ├── XIncludeLocation.hpp │ │ │ │ ├── XIncludeUtils.cpp │ │ │ │ └── XIncludeUtils.hpp │ │ ├── zc-istream.hxx │ │ └── zc-istream.txx │ │ └── make.mk └── make.mk ├── input ├── AttitudeEphemerides │ ├── Attitude.csv │ └── AttitudeQuaternions.csv ├── OrbitEphemerides │ └── EmptyFile.txt └── SimulationParameters │ ├── eventsparam_sample.xml │ ├── simparam_sample.xml │ └── simparam_schema.xsd ├── lib ├── Astrodynamics │ ├── Constants.h │ ├── Environment │ │ ├── Atmosphere.cpp │ │ ├── Atmosphere.h │ │ ├── GGM03C.h │ │ ├── Gravity.cpp │ │ ├── Gravity.h │ │ ├── HarrisPriester.h │ │ ├── MagneticField.cpp │ │ ├── MagneticField.h │ │ ├── SolarRadiation.cpp │ │ ├── SolarRadiation.h │ │ ├── Solarsys.cpp │ │ ├── Solarsys.h │ │ ├── SpaceEnvironment.cpp │ │ ├── SpaceEnvironment.h │ │ ├── ThirdBody.cpp │ │ ├── ThirdBody.h │ │ └── make.mk │ ├── Propagation │ │ ├── AnalyticalModels.cpp │ │ ├── AnalyticalModels.h │ │ ├── Attitude.cpp │ │ ├── Attitude.h │ │ ├── AttitudeQ.cpp │ │ ├── AttitudeQ.h │ │ ├── Orbit.cpp │ │ ├── Orbit.h │ │ ├── Propagator.cpp │ │ ├── Propagator.h │ │ └── make.mk │ ├── Transformations │ │ ├── NutCoeff.h │ │ ├── Transformations.cpp │ │ ├── Transformations.h │ │ └── make.mk │ └── make.mk ├── Events │ ├── Events.cpp │ ├── Events.h │ └── make.mk ├── HWIF │ ├── HIL_interface.cpp │ ├── HIL_interface.h │ ├── HIL_interface.hpp │ └── make.mk ├── IO │ ├── IO_utils.cpp │ ├── IO_utils.h │ ├── XML_Parser │ │ ├── make.mk │ │ ├── simparam_schema-pimpl.cpp │ │ ├── simparam_schema-pimpl.h │ │ ├── simparam_schema-pskel.cpp │ │ └── simparam_schema-pskel.h │ └── make.mk ├── Math │ ├── Interpolation.cpp │ └── Interpolation.h ├── Spacecraft │ ├── EarthSunSensor.cpp │ ├── EarthSunSensor.h │ ├── Magneto.cpp │ ├── Magneto.h │ ├── Orbpropulsion.cpp │ ├── Orbpropulsion.h │ ├── SolarPanel.cpp │ ├── SolarPanel.h │ ├── Subsystem.cpp │ ├── Subsystem.h │ ├── WheelMR.cpp │ ├── WheelMR.h │ └── make.mk ├── VarTypes.h └── make.mk ├── make.mk ├── orbprop.cpp ├── output ├── AttitudeEphemerides │ ├── Attitude.csv │ └── Attitude_Quaternions.csv ├── Dynamics │ ├── Accelerations.csv │ ├── Torques.csv │ └── Torques_EnvironmentRTN.csv ├── Eclipses │ ├── AllEclipse_times.csv │ └── S1-P1_Eclipse_times.csv ├── GS_Contacts │ ├── All_GScontacts_RO.csv │ └── S1-P1_GS_contacts.csv ├── OrbitEphemerides │ ├── P00_S01_3days_10s_20190409_100115_GGM02C_allpert.csv │ └── P00_S01_RO_3days_10s_20190409_100115_GGM02C.csv ├── Sensors │ └── SensorsOutput.csv └── TG_Contacts │ ├── All_Contacts_RO.csv │ └── S1-P1_TG_contacts.csv └── sgp4prop.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/README.md -------------------------------------------------------------------------------- /attprop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/attprop.cpp -------------------------------------------------------------------------------- /bin/emptyfile.txt: -------------------------------------------------------------------------------- 1 | Empty file 2 | -------------------------------------------------------------------------------- /data/atmosphere/JB2008/DSTFILE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/data/atmosphere/JB2008/DSTFILE.TXT -------------------------------------------------------------------------------- /data/atmosphere/JB2008/DTCFILE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/data/atmosphere/JB2008/DTCFILE.TXT -------------------------------------------------------------------------------- /data/atmosphere/JB2008/SOLFSMY.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/data/atmosphere/JB2008/SOLFSMY.TXT -------------------------------------------------------------------------------- /data/cspice/earth_000101_200719_200427.bpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/data/cspice/earth_000101_200719_200427.bpc -------------------------------------------------------------------------------- /data/cspice/earth_000101_220328_220103.bpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/data/cspice/earth_000101_220328_220103.bpc -------------------------------------------------------------------------------- /data/cspice/earth_000101_220814_220522.bpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/data/cspice/earth_000101_220814_220522.bpc -------------------------------------------------------------------------------- /data/cspice/naif0012.tls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/data/cspice/naif0012.tls -------------------------------------------------------------------------------- /data/cspice/pck00010.tpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/data/cspice/pck00010.tpc -------------------------------------------------------------------------------- /data/eop/igs00p03.erp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/data/eop/igs00p03.erp -------------------------------------------------------------------------------- /data/gravityfield/EIGEN-6S.gfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/data/gravityfield/EIGEN-6S.gfc -------------------------------------------------------------------------------- /data/gravityfield/GGM02C.gfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/data/gravityfield/GGM02C.gfc -------------------------------------------------------------------------------- /data/gravityfield/GGM03S.gfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/data/gravityfield/GGM03S.gfc -------------------------------------------------------------------------------- /data/magneticfield/IGRF/IGRF13.COF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/data/magneticfield/IGRF/IGRF13.COF -------------------------------------------------------------------------------- /data/magneticfield/IGRF/igrf13coeffs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/data/magneticfield/IGRF/igrf13coeffs.txt -------------------------------------------------------------------------------- /data/magneticfield/WMM/README-WMM-COEFS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/data/magneticfield/WMM/README-WMM-COEFS.txt -------------------------------------------------------------------------------- /data/magneticfield/WMM/WMM2020.COF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/data/magneticfield/WMM/WMM2020.COF -------------------------------------------------------------------------------- /data/magneticfield/WMM/WMM2020_TEST_VALUES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/data/magneticfield/WMM/WMM2020_TEST_VALUES.txt -------------------------------------------------------------------------------- /data/magneticfield/WMM/WMM2020testvalues.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/data/magneticfield/WMM/WMM2020testvalues.pdf -------------------------------------------------------------------------------- /data/spaceweather/CssiSpaceWeather_format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/data/spaceweather/CssiSpaceWeather_format.txt -------------------------------------------------------------------------------- /data/spaceweather/CssiSpaceWeather_indices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/data/spaceweather/CssiSpaceWeather_indices.txt -------------------------------------------------------------------------------- /doc/Atmosphere/AIAA_2008-6438_JB2008_Model.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/Atmosphere/AIAA_2008-6438_JB2008_Model.pdf -------------------------------------------------------------------------------- /doc/Atmosphere/NRLMSISE-00_2002JA009430.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/Atmosphere/NRLMSISE-00_2002JA009430.pdf -------------------------------------------------------------------------------- /doc/GeomagneticField/IGRF12.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/GeomagneticField/IGRF12.pdf -------------------------------------------------------------------------------- /doc/GeomagneticField/WMM2015v2_TechnicalNote.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/GeomagneticField/WMM2015v2_TechnicalNote.pdf -------------------------------------------------------------------------------- /doc/GravityField/Foerste-et-al-EGU_2011-01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/GravityField/Foerste-et-al-EGU_2011-01.pdf -------------------------------------------------------------------------------- /doc/GravityField/Foerste-et-al-EIGEN-6S4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/GravityField/Foerste-et-al-EIGEN-6S4.pdf -------------------------------------------------------------------------------- /doc/GravityField/GGM02_Notes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/GravityField/GGM02_Notes.pdf -------------------------------------------------------------------------------- /doc/GravityField/poster-eigen-gl04c.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/GravityField/poster-eigen-gl04c.pdf -------------------------------------------------------------------------------- /doc/SGP4/AIAA-2006-6753-Rev1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SGP4/AIAA-2006-6753-Rev1.pdf -------------------------------------------------------------------------------- /doc/SGP4/AIAA-2008-6770.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SGP4/AIAA-2008-6770.pdf -------------------------------------------------------------------------------- /doc/SGP4/TLE_format.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SGP4/TLE_format.jpg -------------------------------------------------------------------------------- /doc/SGP4/TLE_format.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SGP4/TLE_format.png -------------------------------------------------------------------------------- /doc/SGP4/sgp4_CodeReadme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SGP4/sgp4_CodeReadme.pdf -------------------------------------------------------------------------------- /doc/SPICE/abcorr.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/abcorr.req -------------------------------------------------------------------------------- /doc/SPICE/brief.ug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/brief.ug -------------------------------------------------------------------------------- /doc/SPICE/cells.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/cells.req -------------------------------------------------------------------------------- /doc/SPICE/chronos.ug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/chronos.ug -------------------------------------------------------------------------------- /doc/SPICE/ck.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/ck.req -------------------------------------------------------------------------------- /doc/SPICE/ckbrief.ug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/ckbrief.ug -------------------------------------------------------------------------------- /doc/SPICE/commnt.ug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/commnt.ug -------------------------------------------------------------------------------- /doc/SPICE/convert.ug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/convert.ug -------------------------------------------------------------------------------- /doc/SPICE/cspice.idx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/cspice.idx -------------------------------------------------------------------------------- /doc/SPICE/cspice.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/cspice.req -------------------------------------------------------------------------------- /doc/SPICE/daf.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/daf.req -------------------------------------------------------------------------------- /doc/SPICE/das.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/das.req -------------------------------------------------------------------------------- /doc/SPICE/dla.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/dla.req -------------------------------------------------------------------------------- /doc/SPICE/dscriptn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/dscriptn.txt -------------------------------------------------------------------------------- /doc/SPICE/dsk.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/dsk.req -------------------------------------------------------------------------------- /doc/SPICE/dskbrief.ug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/dskbrief.ug -------------------------------------------------------------------------------- /doc/SPICE/dskexp.ug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/dskexp.ug -------------------------------------------------------------------------------- /doc/SPICE/ek.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/ek.req -------------------------------------------------------------------------------- /doc/SPICE/ellipses.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/ellipses.req -------------------------------------------------------------------------------- /doc/SPICE/error.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/error.req -------------------------------------------------------------------------------- /doc/SPICE/frames.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/frames.req -------------------------------------------------------------------------------- /doc/SPICE/frmdiff.ug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/frmdiff.ug -------------------------------------------------------------------------------- /doc/SPICE/gf.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/gf.req -------------------------------------------------------------------------------- /doc/SPICE/html/cspice/CSPICE_symbols.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/html/cspice/CSPICE_symbols.txt -------------------------------------------------------------------------------- /doc/SPICE/inspekt.ug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/inspekt.ug -------------------------------------------------------------------------------- /doc/SPICE/kernel.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/kernel.req -------------------------------------------------------------------------------- /doc/SPICE/mkdsk.ug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/mkdsk.ug -------------------------------------------------------------------------------- /doc/SPICE/mkspk.ug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/mkspk.ug -------------------------------------------------------------------------------- /doc/SPICE/msopck.ug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/msopck.ug -------------------------------------------------------------------------------- /doc/SPICE/naif_ids.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/naif_ids.req -------------------------------------------------------------------------------- /doc/SPICE/pck.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pck.req -------------------------------------------------------------------------------- /doc/SPICE/pdf/12_preparing_for_programming.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/12_preparing_for_programming.pdf -------------------------------------------------------------------------------- /doc/SPICE/pdf/17_frames_and_coordinate_systems.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/17_frames_and_coordinate_systems.pdf -------------------------------------------------------------------------------- /doc/SPICE/pdf/SPICE_Tutorials_Merged.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/SPICE_Tutorials_Merged.pdf -------------------------------------------------------------------------------- /doc/SPICE/pdf/abcorr.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/abcorr.req -------------------------------------------------------------------------------- /doc/SPICE/pdf/brief.ug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/brief.ug -------------------------------------------------------------------------------- /doc/SPICE/pdf/cells.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/cells.req -------------------------------------------------------------------------------- /doc/SPICE/pdf/chronos.ug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/chronos.ug -------------------------------------------------------------------------------- /doc/SPICE/pdf/ck.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/ck.req -------------------------------------------------------------------------------- /doc/SPICE/pdf/ckbrief.ug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/ckbrief.ug -------------------------------------------------------------------------------- /doc/SPICE/pdf/commnt.ug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/commnt.ug -------------------------------------------------------------------------------- /doc/SPICE/pdf/convert.ug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/convert.ug -------------------------------------------------------------------------------- /doc/SPICE/pdf/cspice.idx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/cspice.idx -------------------------------------------------------------------------------- /doc/SPICE/pdf/cspice.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/cspice.req -------------------------------------------------------------------------------- /doc/SPICE/pdf/daf.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/daf.req -------------------------------------------------------------------------------- /doc/SPICE/pdf/das.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/das.req -------------------------------------------------------------------------------- /doc/SPICE/pdf/dla.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/dla.req -------------------------------------------------------------------------------- /doc/SPICE/pdf/dscriptn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/dscriptn.txt -------------------------------------------------------------------------------- /doc/SPICE/pdf/dsk.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/dsk.req -------------------------------------------------------------------------------- /doc/SPICE/pdf/dskbrief.ug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/dskbrief.ug -------------------------------------------------------------------------------- /doc/SPICE/pdf/dskexp.ug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/dskexp.ug -------------------------------------------------------------------------------- /doc/SPICE/pdf/ek.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/ek.req -------------------------------------------------------------------------------- /doc/SPICE/pdf/ellipses.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/ellipses.req -------------------------------------------------------------------------------- /doc/SPICE/pdf/error.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/error.req -------------------------------------------------------------------------------- /doc/SPICE/pdf/frames.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/frames.req -------------------------------------------------------------------------------- /doc/SPICE/pdf/frmdiff.ug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/frmdiff.ug -------------------------------------------------------------------------------- /doc/SPICE/pdf/gf.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/gf.req -------------------------------------------------------------------------------- /doc/SPICE/pdf/html/cspice/CSPICE_symbols.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/html/cspice/CSPICE_symbols.txt -------------------------------------------------------------------------------- /doc/SPICE/pdf/inspekt.ug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/inspekt.ug -------------------------------------------------------------------------------- /doc/SPICE/pdf/kernel.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/kernel.req -------------------------------------------------------------------------------- /doc/SPICE/pdf/mkdsk.ug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/mkdsk.ug -------------------------------------------------------------------------------- /doc/SPICE/pdf/mkspk.ug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/mkspk.ug -------------------------------------------------------------------------------- /doc/SPICE/pdf/msopck.ug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/msopck.ug -------------------------------------------------------------------------------- /doc/SPICE/pdf/naif_and_spice-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/naif_and_spice-1.pdf -------------------------------------------------------------------------------- /doc/SPICE/pdf/naif_ids.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/naif_ids.req -------------------------------------------------------------------------------- /doc/SPICE/pdf/pck.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/pck.req -------------------------------------------------------------------------------- /doc/SPICE/pdf/planes.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/planes.req -------------------------------------------------------------------------------- /doc/SPICE/pdf/problems.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/problems.req -------------------------------------------------------------------------------- /doc/SPICE/pdf/rotation.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/rotation.req -------------------------------------------------------------------------------- /doc/SPICE/pdf/scanning.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/scanning.req -------------------------------------------------------------------------------- /doc/SPICE/pdf/sclk.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/sclk.req -------------------------------------------------------------------------------- /doc/SPICE/pdf/sets.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/sets.req -------------------------------------------------------------------------------- /doc/SPICE/pdf/simple.ug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/simple.ug -------------------------------------------------------------------------------- /doc/SPICE/pdf/spacit.ug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/spacit.ug -------------------------------------------------------------------------------- /doc/SPICE/pdf/spc.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/spc.req -------------------------------------------------------------------------------- /doc/SPICE/pdf/spk.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/spk.req -------------------------------------------------------------------------------- /doc/SPICE/pdf/spkdiff.ug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/spkdiff.ug -------------------------------------------------------------------------------- /doc/SPICE/pdf/spkmerge.ug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/spkmerge.ug -------------------------------------------------------------------------------- /doc/SPICE/pdf/states.ug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/states.ug -------------------------------------------------------------------------------- /doc/SPICE/pdf/subpt.ug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/subpt.ug -------------------------------------------------------------------------------- /doc/SPICE/pdf/symbols.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/symbols.req -------------------------------------------------------------------------------- /doc/SPICE/pdf/tictoc.ug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/tictoc.ug -------------------------------------------------------------------------------- /doc/SPICE/pdf/time.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/time.req -------------------------------------------------------------------------------- /doc/SPICE/pdf/tobin.ug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/tobin.ug -------------------------------------------------------------------------------- /doc/SPICE/pdf/toxfr.ug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/toxfr.ug -------------------------------------------------------------------------------- /doc/SPICE/pdf/version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/version.txt -------------------------------------------------------------------------------- /doc/SPICE/pdf/version.ug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/version.ug -------------------------------------------------------------------------------- /doc/SPICE/pdf/whats.new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/whats.new -------------------------------------------------------------------------------- /doc/SPICE/pdf/windows.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/windows.req -------------------------------------------------------------------------------- /doc/SPICE/pdf/workshop.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/pdf/workshop.pdf -------------------------------------------------------------------------------- /doc/SPICE/planes.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/planes.req -------------------------------------------------------------------------------- /doc/SPICE/problems.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/problems.req -------------------------------------------------------------------------------- /doc/SPICE/rotation.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/rotation.req -------------------------------------------------------------------------------- /doc/SPICE/scanning.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/scanning.req -------------------------------------------------------------------------------- /doc/SPICE/sclk.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/sclk.req -------------------------------------------------------------------------------- /doc/SPICE/sets.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/sets.req -------------------------------------------------------------------------------- /doc/SPICE/simple.ug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/simple.ug -------------------------------------------------------------------------------- /doc/SPICE/spacit.ug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/spacit.ug -------------------------------------------------------------------------------- /doc/SPICE/spc.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/spc.req -------------------------------------------------------------------------------- /doc/SPICE/spk.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/spk.req -------------------------------------------------------------------------------- /doc/SPICE/spkdiff.ug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/spkdiff.ug -------------------------------------------------------------------------------- /doc/SPICE/spkmerge.ug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/spkmerge.ug -------------------------------------------------------------------------------- /doc/SPICE/states.ug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/states.ug -------------------------------------------------------------------------------- /doc/SPICE/subpt.ug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/subpt.ug -------------------------------------------------------------------------------- /doc/SPICE/symbols.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/symbols.req -------------------------------------------------------------------------------- /doc/SPICE/tictoc.ug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/tictoc.ug -------------------------------------------------------------------------------- /doc/SPICE/time.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/time.req -------------------------------------------------------------------------------- /doc/SPICE/tobin.ug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/tobin.ug -------------------------------------------------------------------------------- /doc/SPICE/toxfr.ug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/toxfr.ug -------------------------------------------------------------------------------- /doc/SPICE/version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/version.txt -------------------------------------------------------------------------------- /doc/SPICE/version.ug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/version.ug -------------------------------------------------------------------------------- /doc/SPICE/whats.new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/whats.new -------------------------------------------------------------------------------- /doc/SPICE/windows.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/SPICE/windows.req -------------------------------------------------------------------------------- /doc/UserGuide/SPOCK_UserGuide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/UserGuide/SPOCK_UserGuide.pdf -------------------------------------------------------------------------------- /doc/UserGuide/doxydoc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/UserGuide/doxydoc/Doxyfile -------------------------------------------------------------------------------- /doc/libxsd/custom-literals.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/libxsd/custom-literals.xsd -------------------------------------------------------------------------------- /doc/libxsd/cxx/parser/guide/cxx-parser-guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/libxsd/cxx/parser/guide/cxx-parser-guide.pdf -------------------------------------------------------------------------------- /doc/libxsd/cxx/parser/guide/cxx-parser-guide.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/libxsd/cxx/parser/guide/cxx-parser-guide.ps -------------------------------------------------------------------------------- /doc/libxsd/cxx/parser/guide/index.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/libxsd/cxx/parser/guide/index.xhtml -------------------------------------------------------------------------------- /doc/libxsd/cxx/tree/guide/cxx-tree-guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/libxsd/cxx/tree/guide/cxx-tree-guide.pdf -------------------------------------------------------------------------------- /doc/libxsd/cxx/tree/guide/cxx-tree-guide.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/libxsd/cxx/tree/guide/cxx-tree-guide.ps -------------------------------------------------------------------------------- /doc/libxsd/cxx/tree/guide/index.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/libxsd/cxx/tree/guide/index.xhtml -------------------------------------------------------------------------------- /doc/libxsd/cxx/tree/manual/cxx-tree-manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/libxsd/cxx/tree/manual/cxx-tree-manual.pdf -------------------------------------------------------------------------------- /doc/libxsd/cxx/tree/manual/cxx-tree-manual.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/libxsd/cxx/tree/manual/cxx-tree-manual.ps -------------------------------------------------------------------------------- /doc/libxsd/cxx/tree/manual/index.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/libxsd/cxx/tree/manual/index.xhtml -------------------------------------------------------------------------------- /doc/libxsd/cxx/tree/reference/libxsd.doxygen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/libxsd/cxx/tree/reference/libxsd.doxygen -------------------------------------------------------------------------------- /doc/libxsd/cxx/tree/reference/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/libxsd/cxx/tree/reference/makefile -------------------------------------------------------------------------------- /doc/libxsd/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/libxsd/default.css -------------------------------------------------------------------------------- /doc/libxsd/xsd.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/libxsd/xsd.1 -------------------------------------------------------------------------------- /doc/libxsd/xsd.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/doc/libxsd/xsd.xhtml -------------------------------------------------------------------------------- /eventscomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/eventscomp.cpp -------------------------------------------------------------------------------- /extlib/Atmosphere/JB2008/DTCMAKEDR.for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Atmosphere/JB2008/DTCMAKEDR.for -------------------------------------------------------------------------------- /extlib/Atmosphere/JB2008/JB2008.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Atmosphere/JB2008/JB2008.f -------------------------------------------------------------------------------- /extlib/Atmosphere/JB2008/Readfiles.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Atmosphere/JB2008/Readfiles.f -------------------------------------------------------------------------------- /extlib/Atmosphere/JB2008/test_driver/JB08DRVY2K.for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Atmosphere/JB2008/test_driver/JB08DRVY2K.for -------------------------------------------------------------------------------- /extlib/Atmosphere/NRLMSISE-00/FORTRAN/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Atmosphere/NRLMSISE-00/FORTRAN/readme.txt -------------------------------------------------------------------------------- /extlib/Eigen/Cholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/Cholesky -------------------------------------------------------------------------------- /extlib/Eigen/CholmodSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/CholmodSupport -------------------------------------------------------------------------------- /extlib/Eigen/Core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/Core -------------------------------------------------------------------------------- /extlib/Eigen/Dense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/Dense -------------------------------------------------------------------------------- /extlib/Eigen/Eigen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/Eigen -------------------------------------------------------------------------------- /extlib/Eigen/Eigenvalues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/Eigenvalues -------------------------------------------------------------------------------- /extlib/Eigen/Geometry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/Geometry -------------------------------------------------------------------------------- /extlib/Eigen/Householder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/Householder -------------------------------------------------------------------------------- /extlib/Eigen/IterativeLinearSolvers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/IterativeLinearSolvers -------------------------------------------------------------------------------- /extlib/Eigen/Jacobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/Jacobi -------------------------------------------------------------------------------- /extlib/Eigen/KLUSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/KLUSupport -------------------------------------------------------------------------------- /extlib/Eigen/LU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/LU -------------------------------------------------------------------------------- /extlib/Eigen/MetisSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/MetisSupport -------------------------------------------------------------------------------- /extlib/Eigen/OrderingMethods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/OrderingMethods -------------------------------------------------------------------------------- /extlib/Eigen/PaStiXSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/PaStiXSupport -------------------------------------------------------------------------------- /extlib/Eigen/PardisoSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/PardisoSupport -------------------------------------------------------------------------------- /extlib/Eigen/QR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/QR -------------------------------------------------------------------------------- /extlib/Eigen/QtAlignedMalloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/QtAlignedMalloc -------------------------------------------------------------------------------- /extlib/Eigen/SPQRSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/SPQRSupport -------------------------------------------------------------------------------- /extlib/Eigen/SVD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/SVD -------------------------------------------------------------------------------- /extlib/Eigen/Sparse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/Sparse -------------------------------------------------------------------------------- /extlib/Eigen/SparseCholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/SparseCholesky -------------------------------------------------------------------------------- /extlib/Eigen/SparseCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/SparseCore -------------------------------------------------------------------------------- /extlib/Eigen/SparseLU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/SparseLU -------------------------------------------------------------------------------- /extlib/Eigen/SparseQR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/SparseQR -------------------------------------------------------------------------------- /extlib/Eigen/StdDeque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/StdDeque -------------------------------------------------------------------------------- /extlib/Eigen/StdList: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/StdList -------------------------------------------------------------------------------- /extlib/Eigen/StdVector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/StdVector -------------------------------------------------------------------------------- /extlib/Eigen/SuperLUSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/SuperLUSupport -------------------------------------------------------------------------------- /extlib/Eigen/UmfPackSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/UmfPackSupport -------------------------------------------------------------------------------- /extlib/Eigen/src/Cholesky/LDLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Cholesky/LDLT.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Cholesky/LLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Cholesky/LLT.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Cholesky/LLT_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Cholesky/LLT_LAPACKE.h -------------------------------------------------------------------------------- /extlib/Eigen/src/CholmodSupport/CholmodSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/CholmodSupport/CholmodSupport.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/ArithmeticSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/ArithmeticSequence.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/Array.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/ArrayBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/ArrayBase.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/ArrayWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/ArrayWrapper.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/Assign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/Assign.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/AssignEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/AssignEvaluator.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/Assign_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/Assign_MKL.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/BandMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/BandMatrix.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/Block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/Block.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/BooleanRedux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/BooleanRedux.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/CommaInitializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/CommaInitializer.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/ConditionEstimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/ConditionEstimator.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/CoreEvaluators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/CoreEvaluators.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/CoreIterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/CoreIterators.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/CwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/CwiseBinaryOp.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/CwiseNullaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/CwiseNullaryOp.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/CwiseTernaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/CwiseTernaryOp.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/CwiseUnaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/CwiseUnaryOp.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/CwiseUnaryView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/CwiseUnaryView.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/DenseBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/DenseBase.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/DenseCoeffsBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/DenseCoeffsBase.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/DenseStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/DenseStorage.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/Diagonal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/Diagonal.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/DiagonalMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/DiagonalMatrix.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/DiagonalProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/DiagonalProduct.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/Dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/Dot.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/EigenBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/EigenBase.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/ForceAlignedAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/ForceAlignedAccess.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/Fuzzy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/Fuzzy.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/GeneralProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/GeneralProduct.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/GenericPacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/GenericPacketMath.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/GlobalFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/GlobalFunctions.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/IO.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/IndexedView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/IndexedView.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/Inverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/Inverse.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/Map.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/MapBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/MapBase.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/MathFunctions.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/MathFunctionsImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/MathFunctionsImpl.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/Matrix.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/MatrixBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/MatrixBase.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/NestByValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/NestByValue.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/NoAlias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/NoAlias.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/NumTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/NumTraits.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/PartialReduxEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/PartialReduxEvaluator.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/PermutationMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/PermutationMatrix.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/PlainObjectBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/PlainObjectBase.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/Product.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/Product.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/ProductEvaluators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/ProductEvaluators.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/Random.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/Redux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/Redux.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/Ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/Ref.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/Replicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/Replicate.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/Reshaped.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/Reshaped.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/ReturnByValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/ReturnByValue.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/Reverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/Reverse.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/Select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/Select.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/SelfAdjointView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/SelfAdjointView.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/SelfCwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/SelfCwiseBinaryOp.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/Solve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/Solve.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/SolveTriangular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/SolveTriangular.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/SolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/SolverBase.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/StableNorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/StableNorm.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/StlIterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/StlIterators.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/Stride.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/Stride.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/Swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/Swap.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/Transpose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/Transpose.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/Transpositions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/Transpositions.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/TriangularMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/TriangularMatrix.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/VectorBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/VectorBlock.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/VectorwiseOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/VectorwiseOp.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/Visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/Visitor.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/arch/AVX/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/arch/AVX/Complex.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/arch/AVX/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/arch/AVX/MathFunctions.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/arch/AVX/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/arch/AVX/PacketMath.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/arch/AVX/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/arch/AVX/TypeCasting.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/arch/AVX512/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/arch/AVX512/Complex.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/arch/AVX512/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/arch/AVX512/MathFunctions.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/arch/AVX512/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/arch/AVX512/PacketMath.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/arch/AVX512/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/arch/AVX512/TypeCasting.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/arch/AltiVec/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/arch/AltiVec/Complex.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/arch/AltiVec/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/arch/AltiVec/MathFunctions.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/arch/AltiVec/MatrixProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/arch/AltiVec/MatrixProduct.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/arch/AltiVec/MatrixProductMMA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/arch/AltiVec/MatrixProductMMA.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/arch/AltiVec/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/arch/AltiVec/PacketMath.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/arch/CUDA/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/arch/CUDA/Complex.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/arch/Default/BFloat16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/arch/Default/BFloat16.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/arch/Default/ConjHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/arch/Default/ConjHelper.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/arch/Default/Half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/arch/Default/Half.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/arch/Default/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/arch/Default/Settings.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/arch/Default/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/arch/Default/TypeCasting.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/arch/GPU/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/arch/GPU/MathFunctions.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/arch/GPU/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/arch/GPU/PacketMath.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/arch/GPU/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/arch/GPU/TypeCasting.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/arch/HIP/hcc/math_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/arch/HIP/hcc/math_constants.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/arch/MSA/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/arch/MSA/Complex.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/arch/MSA/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/arch/MSA/MathFunctions.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/arch/MSA/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/arch/MSA/PacketMath.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/arch/NEON/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/arch/NEON/Complex.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/arch/NEON/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/arch/NEON/MathFunctions.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/arch/NEON/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/arch/NEON/PacketMath.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/arch/NEON/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/arch/NEON/TypeCasting.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/arch/SSE/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/arch/SSE/Complex.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/arch/SSE/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/arch/SSE/MathFunctions.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/arch/SSE/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/arch/SSE/PacketMath.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/arch/SSE/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/arch/SSE/TypeCasting.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/arch/SVE/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/arch/SVE/MathFunctions.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/arch/SVE/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/arch/SVE/PacketMath.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/arch/SVE/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/arch/SVE/TypeCasting.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/arch/SYCL/InteropHeaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/arch/SYCL/InteropHeaders.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/arch/SYCL/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/arch/SYCL/MathFunctions.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/arch/SYCL/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/arch/SYCL/PacketMath.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/arch/SYCL/SyclMemoryModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/arch/SYCL/SyclMemoryModel.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/arch/SYCL/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/arch/SYCL/TypeCasting.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/arch/ZVector/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/arch/ZVector/Complex.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/arch/ZVector/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/arch/ZVector/MathFunctions.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/arch/ZVector/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/arch/ZVector/PacketMath.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/functors/AssignmentFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/functors/AssignmentFunctors.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/functors/BinaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/functors/BinaryFunctors.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/functors/NullaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/functors/NullaryFunctors.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/functors/StlFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/functors/StlFunctors.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/functors/TernaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/functors/TernaryFunctors.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/functors/UnaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/functors/UnaryFunctors.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/products/GeneralMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/products/GeneralMatrixMatrix.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/products/GeneralMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/products/GeneralMatrixVector.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/products/Parallelizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/products/Parallelizer.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/products/SelfadjointProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/products/SelfadjointProduct.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/util/BlasUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/util/BlasUtil.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/util/ConfigureVectorization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/util/ConfigureVectorization.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/util/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/util/Constants.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/util/DisableStupidWarnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/util/DisableStupidWarnings.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/util/ForwardDeclarations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/util/ForwardDeclarations.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/util/IndexedViewHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/util/IndexedViewHelper.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/util/IntegralConstant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/util/IntegralConstant.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/util/MKL_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/util/MKL_support.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/util/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/util/Macros.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/util/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/util/Memory.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/util/Meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/util/Meta.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/util/NonMPL2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/util/NonMPL2.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/util/ReenableStupidWarnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/util/ReenableStupidWarnings.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/util/ReshapedHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/util/ReshapedHelper.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/util/StaticAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/util/StaticAssert.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/util/SymbolicIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/util/SymbolicIndex.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Core/util/XprHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Core/util/XprHelper.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Eigenvalues/ComplexEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Eigenvalues/ComplexEigenSolver.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Eigenvalues/ComplexSchur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Eigenvalues/ComplexSchur.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Eigenvalues/EigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Eigenvalues/EigenSolver.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Eigenvalues/HessenbergDecomposition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Eigenvalues/HessenbergDecomposition.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Eigenvalues/RealQZ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Eigenvalues/RealQZ.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Eigenvalues/RealSchur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Eigenvalues/RealSchur.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Eigenvalues/Tridiagonalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Eigenvalues/Tridiagonalization.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Geometry/AlignedBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Geometry/AlignedBox.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Geometry/AngleAxis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Geometry/AngleAxis.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Geometry/EulerAngles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Geometry/EulerAngles.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Geometry/Homogeneous.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Geometry/Homogeneous.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Geometry/Hyperplane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Geometry/Hyperplane.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Geometry/OrthoMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Geometry/OrthoMethods.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Geometry/ParametrizedLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Geometry/ParametrizedLine.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Geometry/Quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Geometry/Quaternion.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Geometry/Rotation2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Geometry/Rotation2D.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Geometry/RotationBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Geometry/RotationBase.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Geometry/Scaling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Geometry/Scaling.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Geometry/Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Geometry/Transform.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Geometry/Translation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Geometry/Translation.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Geometry/Umeyama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Geometry/Umeyama.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Geometry/arch/Geometry_SIMD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Geometry/arch/Geometry_SIMD.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Householder/BlockHouseholder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Householder/BlockHouseholder.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Householder/Householder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Householder/Householder.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Householder/HouseholderSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Householder/HouseholderSequence.h -------------------------------------------------------------------------------- /extlib/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h -------------------------------------------------------------------------------- /extlib/Eigen/src/Jacobi/Jacobi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/Jacobi/Jacobi.h -------------------------------------------------------------------------------- /extlib/Eigen/src/KLUSupport/KLUSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/KLUSupport/KLUSupport.h -------------------------------------------------------------------------------- /extlib/Eigen/src/LU/Determinant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/LU/Determinant.h -------------------------------------------------------------------------------- /extlib/Eigen/src/LU/FullPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/LU/FullPivLU.h -------------------------------------------------------------------------------- /extlib/Eigen/src/LU/InverseImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/LU/InverseImpl.h -------------------------------------------------------------------------------- /extlib/Eigen/src/LU/PartialPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/LU/PartialPivLU.h -------------------------------------------------------------------------------- /extlib/Eigen/src/LU/PartialPivLU_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/LU/PartialPivLU_LAPACKE.h -------------------------------------------------------------------------------- /extlib/Eigen/src/LU/arch/InverseSize4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/LU/arch/InverseSize4.h -------------------------------------------------------------------------------- /extlib/Eigen/src/MetisSupport/MetisSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/MetisSupport/MetisSupport.h -------------------------------------------------------------------------------- /extlib/Eigen/src/OrderingMethods/Amd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/OrderingMethods/Amd.h -------------------------------------------------------------------------------- /extlib/Eigen/src/OrderingMethods/Eigen_Colamd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/OrderingMethods/Eigen_Colamd.h -------------------------------------------------------------------------------- /extlib/Eigen/src/OrderingMethods/Ordering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/OrderingMethods/Ordering.h -------------------------------------------------------------------------------- /extlib/Eigen/src/PaStiXSupport/PaStiXSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/PaStiXSupport/PaStiXSupport.h -------------------------------------------------------------------------------- /extlib/Eigen/src/PardisoSupport/PardisoSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/PardisoSupport/PardisoSupport.h -------------------------------------------------------------------------------- /extlib/Eigen/src/QR/ColPivHouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/QR/ColPivHouseholderQR.h -------------------------------------------------------------------------------- /extlib/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h -------------------------------------------------------------------------------- /extlib/Eigen/src/QR/CompleteOrthogonalDecomposition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/QR/CompleteOrthogonalDecomposition.h -------------------------------------------------------------------------------- /extlib/Eigen/src/QR/FullPivHouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/QR/FullPivHouseholderQR.h -------------------------------------------------------------------------------- /extlib/Eigen/src/QR/HouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/QR/HouseholderQR.h -------------------------------------------------------------------------------- /extlib/Eigen/src/QR/HouseholderQR_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/QR/HouseholderQR_LAPACKE.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SVD/BDCSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SVD/BDCSVD.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SVD/JacobiSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SVD/JacobiSVD.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SVD/JacobiSVD_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SVD/JacobiSVD_LAPACKE.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SVD/SVDBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SVD/SVDBase.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SVD/UpperBidiagonalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SVD/UpperBidiagonalization.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SparseCholesky/SimplicialCholesky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SparseCholesky/SimplicialCholesky.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SparseCore/AmbiVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SparseCore/AmbiVector.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SparseCore/CompressedStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SparseCore/CompressedStorage.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SparseCore/MappedSparseMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SparseCore/MappedSparseMatrix.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SparseCore/SparseAssign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SparseCore/SparseAssign.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SparseCore/SparseBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SparseCore/SparseBlock.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SparseCore/SparseColEtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SparseCore/SparseColEtree.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SparseCore/SparseCompressedBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SparseCore/SparseCompressedBase.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SparseCore/SparseCwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SparseCore/SparseCwiseBinaryOp.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SparseCore/SparseCwiseUnaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SparseCore/SparseCwiseUnaryOp.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SparseCore/SparseDenseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SparseCore/SparseDenseProduct.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SparseCore/SparseDiagonalProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SparseCore/SparseDiagonalProduct.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SparseCore/SparseDot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SparseCore/SparseDot.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SparseCore/SparseFuzzy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SparseCore/SparseFuzzy.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SparseCore/SparseMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SparseCore/SparseMap.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SparseCore/SparseMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SparseCore/SparseMatrix.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SparseCore/SparseMatrixBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SparseCore/SparseMatrixBase.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SparseCore/SparsePermutation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SparseCore/SparsePermutation.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SparseCore/SparseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SparseCore/SparseProduct.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SparseCore/SparseRedux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SparseCore/SparseRedux.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SparseCore/SparseRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SparseCore/SparseRef.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SparseCore/SparseSelfAdjointView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SparseCore/SparseSelfAdjointView.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SparseCore/SparseSolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SparseCore/SparseSolverBase.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SparseCore/SparseTranspose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SparseCore/SparseTranspose.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SparseCore/SparseTriangularView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SparseCore/SparseTriangularView.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SparseCore/SparseUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SparseCore/SparseUtil.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SparseCore/SparseVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SparseCore/SparseVector.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SparseCore/SparseView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SparseCore/SparseView.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SparseCore/TriangularSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SparseCore/TriangularSolver.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SparseLU/SparseLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SparseLU/SparseLU.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SparseLU/SparseLUImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SparseLU/SparseLUImpl.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SparseLU/SparseLU_Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SparseLU/SparseLU_Memory.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SparseLU/SparseLU_Structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SparseLU/SparseLU_Structs.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SparseLU/SparseLU_Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SparseLU/SparseLU_Utils.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SparseLU/SparseLU_column_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SparseLU/SparseLU_column_bmod.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SparseLU/SparseLU_column_dfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SparseLU/SparseLU_column_dfs.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SparseLU/SparseLU_gemm_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SparseLU/SparseLU_gemm_kernel.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SparseLU/SparseLU_kernel_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SparseLU/SparseLU_kernel_bmod.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SparseLU/SparseLU_panel_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SparseLU/SparseLU_panel_bmod.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SparseLU/SparseLU_panel_dfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SparseLU/SparseLU_panel_dfs.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SparseLU/SparseLU_pivotL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SparseLU/SparseLU_pivotL.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SparseLU/SparseLU_pruneL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SparseLU/SparseLU_pruneL.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SparseLU/SparseLU_relax_snode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SparseLU/SparseLU_relax_snode.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SparseQR/SparseQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SparseQR/SparseQR.h -------------------------------------------------------------------------------- /extlib/Eigen/src/StlSupport/StdDeque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/StlSupport/StdDeque.h -------------------------------------------------------------------------------- /extlib/Eigen/src/StlSupport/StdList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/StlSupport/StdList.h -------------------------------------------------------------------------------- /extlib/Eigen/src/StlSupport/StdVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/StlSupport/StdVector.h -------------------------------------------------------------------------------- /extlib/Eigen/src/StlSupport/details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/StlSupport/details.h -------------------------------------------------------------------------------- /extlib/Eigen/src/SuperLUSupport/SuperLUSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/SuperLUSupport/SuperLUSupport.h -------------------------------------------------------------------------------- /extlib/Eigen/src/UmfPackSupport/UmfPackSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/UmfPackSupport/UmfPackSupport.h -------------------------------------------------------------------------------- /extlib/Eigen/src/misc/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/misc/Image.h -------------------------------------------------------------------------------- /extlib/Eigen/src/misc/Kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/misc/Kernel.h -------------------------------------------------------------------------------- /extlib/Eigen/src/misc/RealSvd2x2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/misc/RealSvd2x2.h -------------------------------------------------------------------------------- /extlib/Eigen/src/misc/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/misc/blas.h -------------------------------------------------------------------------------- /extlib/Eigen/src/misc/lapack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/misc/lapack.h -------------------------------------------------------------------------------- /extlib/Eigen/src/misc/lapacke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/misc/lapacke.h -------------------------------------------------------------------------------- /extlib/Eigen/src/misc/lapacke_mangling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/misc/lapacke_mangling.h -------------------------------------------------------------------------------- /extlib/Eigen/src/plugins/ArrayCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/plugins/ArrayCwiseBinaryOps.h -------------------------------------------------------------------------------- /extlib/Eigen/src/plugins/ArrayCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/plugins/ArrayCwiseUnaryOps.h -------------------------------------------------------------------------------- /extlib/Eigen/src/plugins/BlockMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/plugins/BlockMethods.h -------------------------------------------------------------------------------- /extlib/Eigen/src/plugins/CommonCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/plugins/CommonCwiseBinaryOps.h -------------------------------------------------------------------------------- /extlib/Eigen/src/plugins/CommonCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/plugins/CommonCwiseUnaryOps.h -------------------------------------------------------------------------------- /extlib/Eigen/src/plugins/IndexedViewMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/plugins/IndexedViewMethods.h -------------------------------------------------------------------------------- /extlib/Eigen/src/plugins/MatrixCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/plugins/MatrixCwiseBinaryOps.h -------------------------------------------------------------------------------- /extlib/Eigen/src/plugins/MatrixCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/plugins/MatrixCwiseUnaryOps.h -------------------------------------------------------------------------------- /extlib/Eigen/src/plugins/ReshapedMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/Eigen/src/plugins/ReshapedMethods.h -------------------------------------------------------------------------------- /extlib/MagneticField/IGRF/FORTRAN/igrf13.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/MagneticField/IGRF/FORTRAN/igrf13.f -------------------------------------------------------------------------------- /extlib/MagneticField/WMM/FORTRAN/bin/geomdr.for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/MagneticField/WMM/FORTRAN/bin/geomdr.for -------------------------------------------------------------------------------- /extlib/MagneticField/WMM/FORTRAN/bin/geomdr_linux.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/MagneticField/WMM/FORTRAN/bin/geomdr_linux.exe -------------------------------------------------------------------------------- /extlib/MagneticField/WMM/FORTRAN/bin/magpoint.for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/MagneticField/WMM/FORTRAN/bin/magpoint.for -------------------------------------------------------------------------------- /extlib/MagneticField/WMM/FORTRAN/geomag.for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/MagneticField/WMM/FORTRAN/geomag.for -------------------------------------------------------------------------------- /extlib/MagneticField/WMM/FORTRAN/geomag.for.original: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/MagneticField/WMM/FORTRAN/geomag.for.original -------------------------------------------------------------------------------- /extlib/MagneticField/make.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/MagneticField/make.mk -------------------------------------------------------------------------------- /extlib/SGP4/make.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/SGP4/make.mk -------------------------------------------------------------------------------- /extlib/SGP4/sgp4ext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/SGP4/sgp4ext.cpp -------------------------------------------------------------------------------- /extlib/SGP4/sgp4ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/SGP4/sgp4ext.h -------------------------------------------------------------------------------- /extlib/SGP4/sgp4io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/SGP4/sgp4io.cpp -------------------------------------------------------------------------------- /extlib/SGP4/sgp4io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/SGP4/sgp4io.h -------------------------------------------------------------------------------- /extlib/SGP4/sgp4unit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/SGP4/sgp4unit.cpp -------------------------------------------------------------------------------- /extlib/SGP4/sgp4unit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/SGP4/sgp4unit.h -------------------------------------------------------------------------------- /extlib/cspice/data/cook_01.tc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/cspice/data/cook_01.tc -------------------------------------------------------------------------------- /extlib/cspice/data/cook_01.tls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/cspice/data/cook_01.tls -------------------------------------------------------------------------------- /extlib/cspice/data/cook_01.tpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/cspice/data/cook_01.tpc -------------------------------------------------------------------------------- /extlib/cspice/data/cook_01.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/cspice/data/cook_01.tsc -------------------------------------------------------------------------------- /extlib/cspice/data/cook_01.tsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/cspice/data/cook_01.tsp -------------------------------------------------------------------------------- /extlib/cspice/data/cook_02.tc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/cspice/data/cook_02.tc -------------------------------------------------------------------------------- /extlib/cspice/data/cook_02.tsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/cspice/data/cook_02.tsp -------------------------------------------------------------------------------- /extlib/cspice/data/geophysical.ker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/cspice/data/geophysical.ker -------------------------------------------------------------------------------- /extlib/cspice/include/SpiceCK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/cspice/include/SpiceCK.h -------------------------------------------------------------------------------- /extlib/cspice/include/SpiceCel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/cspice/include/SpiceCel.h -------------------------------------------------------------------------------- /extlib/cspice/include/SpiceDAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/cspice/include/SpiceDAS.h -------------------------------------------------------------------------------- /extlib/cspice/include/SpiceDLA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/cspice/include/SpiceDLA.h -------------------------------------------------------------------------------- /extlib/cspice/include/SpiceDSK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/cspice/include/SpiceDSK.h -------------------------------------------------------------------------------- /extlib/cspice/include/SpiceDtl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/cspice/include/SpiceDtl.h -------------------------------------------------------------------------------- /extlib/cspice/include/SpiceEK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/cspice/include/SpiceEK.h -------------------------------------------------------------------------------- /extlib/cspice/include/SpiceEll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/cspice/include/SpiceEll.h -------------------------------------------------------------------------------- /extlib/cspice/include/SpiceErr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/cspice/include/SpiceErr.h -------------------------------------------------------------------------------- /extlib/cspice/include/SpiceFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/cspice/include/SpiceFrm.h -------------------------------------------------------------------------------- /extlib/cspice/include/SpiceGF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/cspice/include/SpiceGF.h -------------------------------------------------------------------------------- /extlib/cspice/include/SpiceOccult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/cspice/include/SpiceOccult.h -------------------------------------------------------------------------------- /extlib/cspice/include/SpiceOsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/cspice/include/SpiceOsc.h -------------------------------------------------------------------------------- /extlib/cspice/include/SpicePln.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/cspice/include/SpicePln.h -------------------------------------------------------------------------------- /extlib/cspice/include/SpiceSCLK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/cspice/include/SpiceSCLK.h -------------------------------------------------------------------------------- /extlib/cspice/include/SpiceSPK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/cspice/include/SpiceSPK.h -------------------------------------------------------------------------------- /extlib/cspice/include/SpiceSrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/cspice/include/SpiceSrf.h -------------------------------------------------------------------------------- /extlib/cspice/include/SpiceUsr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/cspice/include/SpiceUsr.h -------------------------------------------------------------------------------- /extlib/cspice/include/SpiceZad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/cspice/include/SpiceZad.h -------------------------------------------------------------------------------- /extlib/cspice/include/SpiceZdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/cspice/include/SpiceZdf.h -------------------------------------------------------------------------------- /extlib/cspice/include/SpiceZfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/cspice/include/SpiceZfc.h -------------------------------------------------------------------------------- /extlib/cspice/include/SpiceZim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/cspice/include/SpiceZim.h -------------------------------------------------------------------------------- /extlib/cspice/include/SpiceZmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/cspice/include/SpiceZmc.h -------------------------------------------------------------------------------- /extlib/cspice/include/SpiceZpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/cspice/include/SpiceZpl.h -------------------------------------------------------------------------------- /extlib/cspice/include/SpiceZpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/cspice/include/SpiceZpr.h -------------------------------------------------------------------------------- /extlib/cspice/include/SpiceZrnm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/cspice/include/SpiceZrnm.h -------------------------------------------------------------------------------- /extlib/cspice/include/SpiceZst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/cspice/include/SpiceZst.h -------------------------------------------------------------------------------- /extlib/cspice/include/f2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/cspice/include/f2c.h -------------------------------------------------------------------------------- /extlib/cspice/include/f2cMang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/cspice/include/f2cMang.h -------------------------------------------------------------------------------- /extlib/cspice/include/fio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/cspice/include/fio.h -------------------------------------------------------------------------------- /extlib/cspice/include/fmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/cspice/include/fmt.h -------------------------------------------------------------------------------- /extlib/cspice/include/fp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/cspice/include/fp.h -------------------------------------------------------------------------------- /extlib/cspice/include/lio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/cspice/include/lio.h -------------------------------------------------------------------------------- /extlib/cspice/include/make.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/cspice/include/make.mk -------------------------------------------------------------------------------- /extlib/cspice/include/rawio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/cspice/include/rawio.h -------------------------------------------------------------------------------- /extlib/cspice/include/signal1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/cspice/include/signal1.h -------------------------------------------------------------------------------- /extlib/cspice/include/zzalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/cspice/include/zzalloc.h -------------------------------------------------------------------------------- /extlib/cspice/include/zzerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/cspice/include/zzerror.h -------------------------------------------------------------------------------- /extlib/cspice/lib/cspice.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/cspice/lib/cspice.a -------------------------------------------------------------------------------- /extlib/cspice/lib/csupport.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/cspice/lib/csupport.a -------------------------------------------------------------------------------- /extlib/cspice/make.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/cspice/make.mk -------------------------------------------------------------------------------- /extlib/libxsd/FLOSSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/FLOSSE -------------------------------------------------------------------------------- /extlib/libxsd/GPLv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/GPLv2 -------------------------------------------------------------------------------- /extlib/libxsd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/LICENSE -------------------------------------------------------------------------------- /extlib/libxsd/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/README -------------------------------------------------------------------------------- /extlib/libxsd/make.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/make.mk -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/auto-array.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/auto-array.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/compilers/vc-8/post.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/compilers/vc-8/post.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/compilers/vc-8/pre.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/compilers/vc-8/pre.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/config.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/config.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/exceptions.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/exceptions.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/make.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/make.mk -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/parser/document.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/parser/document.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/parser/document.txx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/parser/document.txx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/parser/elements.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/parser/elements.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/parser/elements.txx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/parser/elements.txx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/parser/error-handler.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/parser/error-handler.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/parser/error-handler.txx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/parser/error-handler.txx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/parser/exceptions.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/parser/exceptions.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/parser/exceptions.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/parser/exceptions.ixx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/parser/exceptions.txx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/parser/exceptions.txx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/parser/expat/elements.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/parser/expat/elements.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/parser/expat/elements.txx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/parser/expat/elements.txx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/parser/map.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/parser/map.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/parser/map.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/parser/map.ixx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/parser/map.txx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/parser/map.txx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/parser/non-validating/parser.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/parser/non-validating/parser.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/parser/non-validating/parser.txx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/parser/non-validating/parser.txx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/parser/schema-exceptions.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/parser/schema-exceptions.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/parser/schema-exceptions.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/parser/schema-exceptions.ixx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/parser/schema-exceptions.txx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/parser/schema-exceptions.txx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/parser/substitution-map.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/parser/substitution-map.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/parser/substitution-map.txx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/parser/substitution-map.txx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/parser/validating/exceptions.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/parser/validating/exceptions.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/parser/validating/exceptions.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/parser/validating/exceptions.ixx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/parser/validating/exceptions.txx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/parser/validating/exceptions.txx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/parser/validating/parser.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/parser/validating/parser.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/parser/validating/parser.txx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/parser/validating/parser.txx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/parser/xerces/elements.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/parser/xerces/elements.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/parser/xerces/elements.txx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/parser/xerces/elements.txx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/parser/xml-schema.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/parser/xml-schema.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/parser/xml-schema.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/parser/xml-schema.ixx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/parser/xml-schema.txx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/parser/xml-schema.txx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/post.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/post.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/pre.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/pre.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/ro-string.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/ro-string.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/ro-string.txx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/ro-string.txx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/ace-cdr-stream-common.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/ace-cdr-stream-common.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/bits/literals.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/bits/literals.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/bits/literals.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/bits/literals.ixx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/buffer.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/buffer.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/buffer.txx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/buffer.txx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/comparison-map.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/comparison-map.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/comparison-map.txx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/comparison-map.txx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/containers-wildcard.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/containers-wildcard.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/containers.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/containers.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/containers.txx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/containers.txx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/date-time-extraction.txx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/date-time-extraction.txx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/date-time-insertion.txx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/date-time-insertion.txx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/date-time-ostream.txx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/date-time-ostream.txx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/date-time.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/date-time.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/date-time.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/date-time.ixx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/date-time.txx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/date-time.txx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/element-map.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/element-map.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/element-map.txx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/element-map.txx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/elements.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/elements.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/elements.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/elements.ixx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/elements.txx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/elements.txx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/error-handler.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/error-handler.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/error-handler.txx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/error-handler.txx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/exceptions.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/exceptions.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/exceptions.txx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/exceptions.txx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/facet.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/facet.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/istream-fwd.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/istream-fwd.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/istream.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/istream.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/iterator-adapter.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/iterator-adapter.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/list.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/list.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/ostream.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/ostream.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/parsing.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/parsing.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/parsing.txx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/parsing.txx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/parsing/boolean.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/parsing/boolean.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/parsing/byte.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/parsing/byte.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/parsing/date-time.txx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/parsing/date-time.txx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/parsing/decimal.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/parsing/decimal.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/parsing/double.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/parsing/double.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/parsing/element-map.txx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/parsing/element-map.txx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/parsing/float.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/parsing/float.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/parsing/int.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/parsing/int.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/parsing/long.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/parsing/long.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/parsing/short.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/parsing/short.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/parsing/unsigned-byte.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/parsing/unsigned-byte.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/parsing/unsigned-int.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/parsing/unsigned-int.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/parsing/unsigned-long.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/parsing/unsigned-long.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/parsing/unsigned-short.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/parsing/unsigned-short.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/serialization.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/serialization.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/serialization.txx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/serialization.txx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/serialization/boolean.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/serialization/boolean.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/serialization/byte.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/serialization/byte.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/serialization/date-time.txx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/serialization/date-time.txx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/serialization/decimal.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/serialization/decimal.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/serialization/double.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/serialization/double.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/serialization/float.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/serialization/float.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/serialization/int.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/serialization/int.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/serialization/long.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/serialization/long.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/serialization/short.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/serialization/short.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/std-ostream-map.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/std-ostream-map.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/std-ostream-map.txx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/std-ostream-map.txx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/std-ostream-operators.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/std-ostream-operators.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/stream-extraction-map.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/stream-extraction-map.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/stream-extraction-map.txx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/stream-extraction-map.txx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/stream-extraction.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/stream-extraction.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/stream-insertion-map.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/stream-insertion-map.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/stream-insertion-map.txx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/stream-insertion-map.txx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/stream-insertion.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/stream-insertion.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/text.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/text.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/text.txx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/text.txx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/type-factory-map.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/type-factory-map.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/type-factory-map.txx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/type-factory-map.txx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/type-serializer-map.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/type-serializer-map.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/type-serializer-map.txx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/type-serializer-map.txx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/types.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/types.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/types.txx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/types.txx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/xdr-stream-common.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/xdr-stream-common.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/xdr-stream-extraction.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/xdr-stream-extraction.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/tree/xdr-stream-insertion.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/tree/xdr-stream-insertion.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/version.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/version.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/bits/literals.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/bits/literals.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/bits/literals.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/bits/literals.ixx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/char-iso8859-1.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/char-iso8859-1.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/char-iso8859-1.txx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/char-iso8859-1.txx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/char-lcp.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/char-lcp.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/char-lcp.txx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/char-lcp.txx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/char-utf8.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/char-utf8.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/char-utf8.txx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/char-utf8.txx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/dom/auto-ptr.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/dom/auto-ptr.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/dom/elements.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/dom/elements.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/dom/elements.txx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/dom/elements.txx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/dom/parsing-header.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/dom/parsing-header.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/dom/parsing-source.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/dom/parsing-source.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/dom/parsing-source.txx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/dom/parsing-source.txx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/dom/serialization-header.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/dom/serialization-header.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/dom/serialization-header.txx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/dom/serialization-header.txx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/dom/serialization-source.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/dom/serialization-source.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/dom/serialization-source.txx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/dom/serialization-source.txx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/dom/wildcard-source.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/dom/wildcard-source.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/dom/wildcard-source.txx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/dom/wildcard-source.txx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/elements.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/elements.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/elements.txx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/elements.txx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/error-handler.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/error-handler.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/exceptions.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/exceptions.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/make.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/make.mk -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/qualified-name.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/qualified-name.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/sax/std-input-source.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/sax/std-input-source.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/std-memory-manager.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/std-memory-manager.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/string.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/string.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/string.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/string.ixx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/string.txx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/string.txx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/NLS/XMLErrList.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/NLS/XMLErrList.dtd -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/dom/DOM.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/dom/DOM.hpp -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/dom/DOMAttr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/dom/DOMAttr.hpp -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/dom/DOMComment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/dom/DOMComment.hpp -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/dom/DOMDocument.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/dom/DOMDocument.hpp -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/dom/DOMElement.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/dom/DOMElement.hpp -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/dom/DOMEntity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/dom/DOMEntity.hpp -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/dom/DOMError.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/dom/DOMError.hpp -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/dom/DOMException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/dom/DOMException.cpp -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/dom/DOMException.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/dom/DOMException.hpp -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/dom/DOMNode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/dom/DOMNode.hpp -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/dom/DOMRange.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/dom/DOMRange.hpp -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/dom/DOMText.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/dom/DOMText.hpp -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/dom/StDOMNode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/dom/StDOMNode.hpp -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/sax/Dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/sax/Dummy.cpp -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/sax/Locator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/sax/Locator.hpp -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/sax/Parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/sax/Parser.hpp -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/util/Base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/util/Base64.cpp -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/util/Base64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/util/Base64.hpp -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/util/BitOps.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/util/BitOps.hpp -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/util/BitSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/util/BitSet.cpp -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/util/BitSet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/util/BitSet.hpp -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/util/Hashers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/util/Hashers.hpp -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/util/HexBin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/util/HexBin.cpp -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/util/HexBin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/util/HexBin.hpp -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/util/Janitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/util/Janitor.c -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/util/Janitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/util/Janitor.hpp -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/util/KeyRefPair.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/util/KeyRefPair.c -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/util/MsgLoaders/ICU/resources/res-file-list.txt: -------------------------------------------------------------------------------- 1 | root.res 2 | -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/util/Mutexes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/util/Mutexes.cpp -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/util/Mutexes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/util/Mutexes.hpp -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/util/NameIdPool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/util/NameIdPool.c -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/util/PSVIUni.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/util/PSVIUni.cpp -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/util/PSVIUni.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/util/PSVIUni.hpp -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/util/QName.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/util/QName.cpp -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/util/QName.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/util/QName.hpp -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/util/RefArrayOf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/util/RefArrayOf.c -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/util/RefStackOf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/util/RefStackOf.c -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/util/XMLChar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/util/XMLChar.cpp -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/util/XMLChar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/util/XMLChar.hpp -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/util/XMLFloat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/util/XMLFloat.cpp -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/util/XMLFloat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/util/XMLFloat.hpp -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/util/XMLURL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/util/XMLURL.cpp -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/util/XMLURL.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/util/XMLURL.hpp -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/util/XMLUni.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/util/XMLUni.cpp -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/util/XMLUni.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/util/XMLUni.hpp -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/util/XMLUri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/util/XMLUri.cpp -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/util/XMLUri.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/util/XMLUri.hpp -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/util/XMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/util/XMemory.cpp -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/util/XMemory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/util/XMemory.hpp -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/util/regx/Op.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/util/regx/Op.cpp -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/xml/xercesc/util/regx/Op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/xml/xercesc/util/regx/Op.hpp -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/zc-istream.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/zc-istream.hxx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/cxx/zc-istream.txx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/cxx/zc-istream.txx -------------------------------------------------------------------------------- /extlib/libxsd/xsd/make.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/libxsd/xsd/make.mk -------------------------------------------------------------------------------- /extlib/make.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/extlib/make.mk -------------------------------------------------------------------------------- /input/AttitudeEphemerides/Attitude.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /input/AttitudeEphemerides/AttitudeQuaternions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/input/AttitudeEphemerides/AttitudeQuaternions.csv -------------------------------------------------------------------------------- /input/OrbitEphemerides/EmptyFile.txt: -------------------------------------------------------------------------------- 1 | Empty file 2 | -------------------------------------------------------------------------------- /input/SimulationParameters/eventsparam_sample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/input/SimulationParameters/eventsparam_sample.xml -------------------------------------------------------------------------------- /input/SimulationParameters/simparam_sample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/input/SimulationParameters/simparam_sample.xml -------------------------------------------------------------------------------- /input/SimulationParameters/simparam_schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/input/SimulationParameters/simparam_schema.xsd -------------------------------------------------------------------------------- /lib/Astrodynamics/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Astrodynamics/Constants.h -------------------------------------------------------------------------------- /lib/Astrodynamics/Environment/Atmosphere.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Astrodynamics/Environment/Atmosphere.cpp -------------------------------------------------------------------------------- /lib/Astrodynamics/Environment/Atmosphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Astrodynamics/Environment/Atmosphere.h -------------------------------------------------------------------------------- /lib/Astrodynamics/Environment/GGM03C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Astrodynamics/Environment/GGM03C.h -------------------------------------------------------------------------------- /lib/Astrodynamics/Environment/Gravity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Astrodynamics/Environment/Gravity.cpp -------------------------------------------------------------------------------- /lib/Astrodynamics/Environment/Gravity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Astrodynamics/Environment/Gravity.h -------------------------------------------------------------------------------- /lib/Astrodynamics/Environment/HarrisPriester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Astrodynamics/Environment/HarrisPriester.h -------------------------------------------------------------------------------- /lib/Astrodynamics/Environment/MagneticField.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Astrodynamics/Environment/MagneticField.cpp -------------------------------------------------------------------------------- /lib/Astrodynamics/Environment/MagneticField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Astrodynamics/Environment/MagneticField.h -------------------------------------------------------------------------------- /lib/Astrodynamics/Environment/SolarRadiation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Astrodynamics/Environment/SolarRadiation.cpp -------------------------------------------------------------------------------- /lib/Astrodynamics/Environment/SolarRadiation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Astrodynamics/Environment/SolarRadiation.h -------------------------------------------------------------------------------- /lib/Astrodynamics/Environment/Solarsys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Astrodynamics/Environment/Solarsys.cpp -------------------------------------------------------------------------------- /lib/Astrodynamics/Environment/Solarsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Astrodynamics/Environment/Solarsys.h -------------------------------------------------------------------------------- /lib/Astrodynamics/Environment/SpaceEnvironment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Astrodynamics/Environment/SpaceEnvironment.cpp -------------------------------------------------------------------------------- /lib/Astrodynamics/Environment/SpaceEnvironment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Astrodynamics/Environment/SpaceEnvironment.h -------------------------------------------------------------------------------- /lib/Astrodynamics/Environment/ThirdBody.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Astrodynamics/Environment/ThirdBody.cpp -------------------------------------------------------------------------------- /lib/Astrodynamics/Environment/ThirdBody.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Astrodynamics/Environment/ThirdBody.h -------------------------------------------------------------------------------- /lib/Astrodynamics/Environment/make.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Astrodynamics/Environment/make.mk -------------------------------------------------------------------------------- /lib/Astrodynamics/Propagation/AnalyticalModels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Astrodynamics/Propagation/AnalyticalModels.cpp -------------------------------------------------------------------------------- /lib/Astrodynamics/Propagation/AnalyticalModels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Astrodynamics/Propagation/AnalyticalModels.h -------------------------------------------------------------------------------- /lib/Astrodynamics/Propagation/Attitude.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Astrodynamics/Propagation/Attitude.cpp -------------------------------------------------------------------------------- /lib/Astrodynamics/Propagation/Attitude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Astrodynamics/Propagation/Attitude.h -------------------------------------------------------------------------------- /lib/Astrodynamics/Propagation/AttitudeQ.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Astrodynamics/Propagation/AttitudeQ.cpp -------------------------------------------------------------------------------- /lib/Astrodynamics/Propagation/AttitudeQ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Astrodynamics/Propagation/AttitudeQ.h -------------------------------------------------------------------------------- /lib/Astrodynamics/Propagation/Orbit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Astrodynamics/Propagation/Orbit.cpp -------------------------------------------------------------------------------- /lib/Astrodynamics/Propagation/Orbit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Astrodynamics/Propagation/Orbit.h -------------------------------------------------------------------------------- /lib/Astrodynamics/Propagation/Propagator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Astrodynamics/Propagation/Propagator.cpp -------------------------------------------------------------------------------- /lib/Astrodynamics/Propagation/Propagator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Astrodynamics/Propagation/Propagator.h -------------------------------------------------------------------------------- /lib/Astrodynamics/Propagation/make.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Astrodynamics/Propagation/make.mk -------------------------------------------------------------------------------- /lib/Astrodynamics/Transformations/NutCoeff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Astrodynamics/Transformations/NutCoeff.h -------------------------------------------------------------------------------- /lib/Astrodynamics/Transformations/Transformations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Astrodynamics/Transformations/Transformations.h -------------------------------------------------------------------------------- /lib/Astrodynamics/Transformations/make.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Astrodynamics/Transformations/make.mk -------------------------------------------------------------------------------- /lib/Astrodynamics/make.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Astrodynamics/make.mk -------------------------------------------------------------------------------- /lib/Events/Events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Events/Events.cpp -------------------------------------------------------------------------------- /lib/Events/Events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Events/Events.h -------------------------------------------------------------------------------- /lib/Events/make.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Events/make.mk -------------------------------------------------------------------------------- /lib/HWIF/HIL_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/HWIF/HIL_interface.cpp -------------------------------------------------------------------------------- /lib/HWIF/HIL_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/HWIF/HIL_interface.h -------------------------------------------------------------------------------- /lib/HWIF/HIL_interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/HWIF/HIL_interface.hpp -------------------------------------------------------------------------------- /lib/HWIF/make.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/HWIF/make.mk -------------------------------------------------------------------------------- /lib/IO/IO_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/IO/IO_utils.cpp -------------------------------------------------------------------------------- /lib/IO/IO_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/IO/IO_utils.h -------------------------------------------------------------------------------- /lib/IO/XML_Parser/make.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/IO/XML_Parser/make.mk -------------------------------------------------------------------------------- /lib/IO/XML_Parser/simparam_schema-pimpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/IO/XML_Parser/simparam_schema-pimpl.cpp -------------------------------------------------------------------------------- /lib/IO/XML_Parser/simparam_schema-pimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/IO/XML_Parser/simparam_schema-pimpl.h -------------------------------------------------------------------------------- /lib/IO/XML_Parser/simparam_schema-pskel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/IO/XML_Parser/simparam_schema-pskel.cpp -------------------------------------------------------------------------------- /lib/IO/XML_Parser/simparam_schema-pskel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/IO/XML_Parser/simparam_schema-pskel.h -------------------------------------------------------------------------------- /lib/IO/make.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/IO/make.mk -------------------------------------------------------------------------------- /lib/Math/Interpolation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Math/Interpolation.cpp -------------------------------------------------------------------------------- /lib/Math/Interpolation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Math/Interpolation.h -------------------------------------------------------------------------------- /lib/Spacecraft/EarthSunSensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Spacecraft/EarthSunSensor.cpp -------------------------------------------------------------------------------- /lib/Spacecraft/EarthSunSensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Spacecraft/EarthSunSensor.h -------------------------------------------------------------------------------- /lib/Spacecraft/Magneto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Spacecraft/Magneto.cpp -------------------------------------------------------------------------------- /lib/Spacecraft/Magneto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Spacecraft/Magneto.h -------------------------------------------------------------------------------- /lib/Spacecraft/Orbpropulsion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Spacecraft/Orbpropulsion.cpp -------------------------------------------------------------------------------- /lib/Spacecraft/Orbpropulsion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Spacecraft/Orbpropulsion.h -------------------------------------------------------------------------------- /lib/Spacecraft/SolarPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Spacecraft/SolarPanel.cpp -------------------------------------------------------------------------------- /lib/Spacecraft/SolarPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Spacecraft/SolarPanel.h -------------------------------------------------------------------------------- /lib/Spacecraft/Subsystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Spacecraft/Subsystem.cpp -------------------------------------------------------------------------------- /lib/Spacecraft/Subsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Spacecraft/Subsystem.h -------------------------------------------------------------------------------- /lib/Spacecraft/WheelMR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Spacecraft/WheelMR.cpp -------------------------------------------------------------------------------- /lib/Spacecraft/WheelMR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Spacecraft/WheelMR.h -------------------------------------------------------------------------------- /lib/Spacecraft/make.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/Spacecraft/make.mk -------------------------------------------------------------------------------- /lib/VarTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/VarTypes.h -------------------------------------------------------------------------------- /lib/make.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/lib/make.mk -------------------------------------------------------------------------------- /make.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/make.mk -------------------------------------------------------------------------------- /orbprop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/orbprop.cpp -------------------------------------------------------------------------------- /output/AttitudeEphemerides/Attitude.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /output/AttitudeEphemerides/Attitude_Quaternions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/output/AttitudeEphemerides/Attitude_Quaternions.csv -------------------------------------------------------------------------------- /output/Dynamics/Accelerations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/output/Dynamics/Accelerations.csv -------------------------------------------------------------------------------- /output/Dynamics/Torques.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/output/Dynamics/Torques.csv -------------------------------------------------------------------------------- /output/Dynamics/Torques_EnvironmentRTN.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/output/Dynamics/Torques_EnvironmentRTN.csv -------------------------------------------------------------------------------- /output/Eclipses/AllEclipse_times.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/output/Eclipses/AllEclipse_times.csv -------------------------------------------------------------------------------- /output/Eclipses/S1-P1_Eclipse_times.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/output/Eclipses/S1-P1_Eclipse_times.csv -------------------------------------------------------------------------------- /output/GS_Contacts/All_GScontacts_RO.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/output/GS_Contacts/All_GScontacts_RO.csv -------------------------------------------------------------------------------- /output/GS_Contacts/S1-P1_GS_contacts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/output/GS_Contacts/S1-P1_GS_contacts.csv -------------------------------------------------------------------------------- /output/Sensors/SensorsOutput.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/output/Sensors/SensorsOutput.csv -------------------------------------------------------------------------------- /output/TG_Contacts/All_Contacts_RO.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/output/TG_Contacts/All_Contacts_RO.csv -------------------------------------------------------------------------------- /output/TG_Contacts/S1-P1_TG_contacts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/output/TG_Contacts/S1-P1_TG_contacts.csv -------------------------------------------------------------------------------- /sgp4prop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deflorio/SpOCK/HEAD/sgp4prop.cpp --------------------------------------------------------------------------------