├── .gitignore ├── .gitmodules ├── ColorMaps ├── BlackBody.xml ├── BlueToYellow.xml ├── Grayscale.xml ├── Rainbow.xml └── diverging.xml ├── DeveloperEmailAddresses ├── README.md ├── Testing ├── double │ ├── Linux │ │ ├── BulletCutSurfaceP2Baseline.png │ │ ├── BulletCutSurfaceP2WithFacesBaseline.png │ │ ├── BulletCutSurfaceP3Baseline.png │ │ ├── IsosurfaceBullet1Baseline.png │ │ ├── IsosurfacePaperFigure10BBaseline.png │ │ ├── IsosurfacePaperFigure4ABaseline.png │ │ ├── IsosurfacePaperFigure5BBaseline.png │ │ ├── IsosurfacePaperFigure6BBaseline.png │ │ ├── IsosurfacePaperFigure9ABaseline.png │ │ ├── IsosurfacePaperFigure9BBaseline.png │ │ ├── NektarPlusPlusColorMapSphereBaseline.png │ │ ├── NektarPlusPlusVolumeRenderSphere_Type1Baseline.png │ │ ├── NektarPlusPlusVolumeRenderSphere_Type1_h.01Baseline.png │ │ ├── NektarPlusPlusVolumeRenderSphere_Type1_h.1Baseline.png │ │ ├── VolumeRenderBulletFullBaseline.png │ │ ├── VolumeRenderBulletRiemannBaseline.png │ │ ├── VolumeRenderBulletTrapezoidalBaseline.png │ │ ├── naca_Euler2d_CurvedAdapt_Q3_P2_Baseline.png │ │ ├── naca_Euler2d_Q2_P0_Baseline.png │ │ ├── naca_Euler2d_Q2_P1_Baseline.png │ │ └── naca_Euler2d_Q2_P2_Baseline.png │ └── Windows │ │ ├── BulletCutSurfaceP2Baseline.png │ │ ├── BulletCutSurfaceP2WithFacesBaseline.png │ │ ├── BulletCutSurfaceP3Baseline.png │ │ ├── IsosurfaceBullet1Baseline.png │ │ ├── VolumeRenderBulletFullBaseline.png │ │ ├── VolumeRenderBulletRiemannBaseline.png │ │ └── VolumeRenderBulletTrapezoidalBaseline.png └── float │ ├── Linux │ ├── BulletCutSurfaceP2Baseline.png │ ├── BulletCutSurfaceP2WithFacesBaseline.png │ ├── BulletCutSurfaceP3Baseline.png │ ├── IsosurfaceBullet1Baseline.png │ ├── NektarPlusPlusColorMapSphereBaseline.png │ ├── NektarPlusPlusVolumeRenderSphere_Type1Baseline.png │ ├── NektarPlusPlusVolumeRenderSphere_Type1_h.01Baseline.png │ ├── NektarPlusPlusVolumeRenderSphere_Type1_h.1Baseline.png │ ├── VolumeRenderBulletFullBaseline.png │ ├── VolumeRenderBulletRiemannBaseline.png │ └── VolumeRenderBulletTrapezoidalBaseline.png │ └── Windows │ ├── BulletCutSurfaceP2Baseline.png │ ├── BulletCutSurfaceP2WithFacesBaseline.png │ ├── BulletCutSurfaceP3Baseline.png │ ├── IsosurfaceBullet1Baseline.png │ ├── VolumeRenderBulletFullBaseline.png │ ├── VolumeRenderBulletRiemannBaseline.png │ └── VolumeRenderBulletTrapezoidalBaseline.png ├── ThirdParty ├── INSTALL.txt ├── glut-3.7.6-win32.tar ├── glut-3.7.6-win32.tar.gz ├── libpng-1.5.10.tar.gz └── zlib-1.2.6.tar.gz ├── ViewingParameters ├── IsosurfacePaper_10b.bin ├── IsosurfacePaper_10b.xml ├── IsosurfacePaper_4a.bin ├── IsosurfacePaper_4a.xml ├── IsosurfacePaper_5b.bin ├── IsosurfacePaper_5b.xml ├── IsosurfacePaper_6b.bin ├── IsosurfacePaper_6b.xml ├── IsosurfacePaper_9a.bin ├── IsosurfacePaper_9a.xml ├── IsosurfacePaper_9b.bin └── IsosurfacePaper_9b.xml ├── doc └── INSTALL.txt ├── src ├── CMake │ ├── BoostTest.cmake │ ├── CallGrind.cmake │ ├── CompilerFlags.cmake │ ├── Coverage.cmake │ ├── ElVisCommon.cmake │ ├── ElVisConfig.cmake.in │ ├── FindCUDA.cmake │ ├── FindCUDA │ │ ├── make2cmake.cmake │ │ ├── parse_cubin.cmake │ │ └── run_nvcc.cmake │ ├── FindGLEW.cmake │ ├── FindOptiX.cmake │ ├── QTest.cmake │ ├── SetCompiler.cmake │ ├── SetupOptiX.cmake │ ├── UnitTest.cmake │ ├── Valgrind.cmake │ ├── XCodeFileGlob.cmake │ ├── cuda_compute_capability.c │ └── main_boost_btest.cpp ├── CMakeLists.txt ├── Doxyfile ├── ElVis │ ├── CMakeLists.txt │ ├── Core │ │ ├── CMakeLists.txt │ │ ├── CMakeLists.txt.bak │ │ ├── Camera.cpp │ │ ├── Camera.h │ │ ├── Camera.pb.cc │ │ ├── Camera.pb.h │ │ ├── Camera.proto │ │ ├── Color.cpp │ │ ├── Color.h │ │ ├── Color.pb.cc │ │ ├── Color.pb.h │ │ ├── Color.proto │ │ ├── ColorMap.cpp │ │ ├── ColorMap.h │ │ ├── ColorMap.pb.cc │ │ ├── ColorMap.pb.h │ │ ├── ColorMap.proto │ │ ├── ColorMapperModule.cpp │ │ ├── ColorMapperModule.h │ │ ├── ColorMapperModule.pb.cc │ │ ├── ColorMapperModule.pb.h │ │ ├── ColorMapperModule.proto │ │ ├── ConvertToColor.cu │ │ ├── Cuda.h │ │ ├── CutCylinder.cu │ │ ├── CutSphere.cu │ │ ├── CutSurfaceContourModule.cpp │ │ ├── CutSurfaceContourModule.cu │ │ ├── CutSurfaceContourModule.h │ │ ├── CutSurfaceMeshModule.cpp │ │ ├── CutSurfaceMeshModule.h │ │ ├── CutSurfacePayloads.cu │ │ ├── Cylinder.cpp │ │ ├── Cylinder.h │ │ ├── DiffuseLighting.cu │ │ ├── DynamicLib.cpp │ │ ├── DynamicLib.h │ │ ├── ElVisConfig.cmake.in │ │ ├── ElVisConfig.cpp.in │ │ ├── ElVisConfig.h │ │ ├── ElVisDeclspec.h │ │ ├── ElVisOptiX.cu.in │ │ ├── ElementId.h │ │ ├── ElementTraversal.cu │ │ ├── ExtensionPTXConfig.cpp.in │ │ ├── ExtensionPTXConfig.h.in │ │ ├── FaceInfo.h │ │ ├── FaceIntersection.cu │ │ ├── FaceObject.cpp │ │ ├── FaceObject.h │ │ ├── FieldEvaluator.cu │ │ ├── FieldInfo.h │ │ ├── FieldTrapezoidalIntegration.cu │ │ ├── FindElement.cu │ │ ├── Float.cu.in │ │ ├── Float.h.in │ │ ├── GaussKronrod.cu │ │ ├── HostTransferFunction.h │ │ ├── InnerIntegralAdaptiveTrapezoidal.cu │ │ ├── InnerIntegralFunctor.cu │ │ ├── Interval.hpp │ │ ├── IntervalMatrix.cu │ │ ├── IntervalPoint.cu │ │ ├── IsosurfaceModule.cpp │ │ ├── IsosurfaceModule.h │ │ ├── IsosurfaceModule.pb.cc │ │ ├── IsosurfaceModule.pb.h │ │ ├── IsosurfaceModule.proto │ │ ├── IsosurfaceModuleCuda.cu │ │ ├── IsosurfaceOptiXModule.cu │ │ ├── Jacobi.hpp │ │ ├── Light.cpp │ │ ├── Light.h │ │ ├── LightingModule.cpp │ │ ├── LightingModule.h │ │ ├── LightingModule.pb.cc │ │ ├── LightingModule.pb.h │ │ ├── LightingModule.proto │ │ ├── Model.cpp │ │ ├── Model.h │ │ ├── MonomialConversionTables.txt │ │ ├── Nodes.txt │ │ ├── Object.cpp │ │ ├── Object.h │ │ ├── Octree.hpp │ │ ├── OpenGL.h │ │ ├── OpenGLLighting.cu │ │ ├── OptiXBuffer.hpp │ │ ├── OptiXExtensions.hpp │ │ ├── OptiXSynchedObject.hpp │ │ ├── OptixVariables.cu │ │ ├── OuterIntegralAdaptiveTrapezoidal.cu │ │ ├── PlanarFaceIntersection.cu │ │ ├── Plane.cpp │ │ ├── Plane.cu │ │ ├── Plane.h │ │ ├── Plugin.cpp │ │ ├── Plugin.h │ │ ├── Point.hpp │ │ ├── Point.pb.cc │ │ ├── Point.pb.h │ │ ├── Point.proto │ │ ├── PrimaryRayGenerator.cu │ │ ├── PrimaryRayModule.cpp │ │ ├── PrimaryRayModule.cu │ │ ├── PrimaryRayModule.h │ │ ├── PrimaryRayModule.pb.cc │ │ ├── PrimaryRayModule.pb.h │ │ ├── PrimaryRayModule.proto │ │ ├── PrimaryRayObject.cpp │ │ ├── PrimaryRayObject.h │ │ ├── Printf.cu │ │ ├── PtxManager.cpp │ │ ├── PtxManager.h │ │ ├── RayGeneratorProgram.h │ │ ├── ReentrantAdaptiveTrapezoidal.cu │ │ ├── ReferencePointParameter.h │ │ ├── RenderModule.cpp │ │ ├── RenderModule.h │ │ ├── RenderModule.pb.cc │ │ ├── RenderModule.pb.h │ │ ├── RenderModule.proto │ │ ├── RenderModuleFactory.cpp │ │ ├── RenderModuleFactory.h │ │ ├── SampleFaceObject.cpp │ │ ├── SampleFaceObject.h │ │ ├── SampleOntoNrrdModule.cpp │ │ ├── SampleOntoNrrdModule.h │ │ ├── SampleVolumeSamplerObject.cpp │ │ ├── SampleVolumeSamplerObject.cu │ │ ├── SampleVolumeSamplerObject.h │ │ ├── Scene.cpp │ │ ├── Scene.h │ │ ├── SceneView.cpp │ │ ├── SceneView.h │ │ ├── SceneView.pb.cc │ │ ├── SceneView.pb.h │ │ ├── SceneView.proto │ │ ├── SceneViewProjection.h │ │ ├── SetupOptix.h │ │ ├── Spaces.h │ │ ├── Stat.h │ │ ├── SurfaceObject.cpp │ │ ├── SurfaceObject.cu │ │ ├── SurfaceObject.h │ │ ├── SynchedObject.hpp │ │ ├── TextureColorMap.cu │ │ ├── ThrustInterface.cu │ │ ├── Timer.cpp │ │ ├── Timer.h │ │ ├── TransferFunction.cpp │ │ ├── TransferFunction.h │ │ ├── Triangle.cpp │ │ ├── Triangle.h │ │ ├── TwoDPrimaryElements.cpp │ │ ├── TwoDPrimaryElements.h │ │ ├── TwoDPrimaryElementsPrimaryObject.cpp │ │ ├── TwoDPrimaryElementsPrimaryObject.h │ │ ├── Util.cpp │ │ ├── Util.hpp │ │ ├── Vector.hpp │ │ ├── VolumeRendering.cu │ │ ├── VolumeRenderingFull.cu │ │ ├── VolumeRenderingIntegrationCategory.h │ │ ├── VolumeRenderingModule.cpp │ │ ├── VolumeRenderingModule.h │ │ ├── VolumeRenderingModule.pb.cc │ │ ├── VolumeRenderingModule.pb.h │ │ ├── VolumeRenderingModule.proto │ │ ├── VolumeRenderingOptiXModule.cu │ │ ├── VolumeRenderingPayload.cu │ │ ├── VolumeRenderingSingleRayPerSegment.cu │ │ ├── VolumeRendering_AdaptiveTrapezoidalImpl.cu │ │ ├── Weights.txt │ │ ├── jacobi.cu │ │ ├── matrix.cu │ │ ├── prism.cu │ │ ├── sutil.h │ │ ├── triangle.cu │ │ ├── typedefs.cu │ │ ├── unitCore │ │ │ ├── CMakeLists.txt │ │ │ ├── ColorMap_btest.cpp │ │ │ └── Color_btest.cpp │ │ └── util.cu │ ├── ElVisCLI │ │ ├── CMakeLists.txt │ │ ├── CMakeLists.txt.bak │ │ ├── NewApproachCanister.cpp │ │ ├── NewApproachCanister.h │ │ ├── ViewSettingsRendering.cpp │ │ ├── ViewSettingsRendering.h │ │ ├── VolumeRendering.cpp │ │ ├── VolumeRendering.h │ │ └── main.cpp │ ├── Extensions │ │ ├── CMakeLists.txt │ │ ├── JacobiExtension │ │ │ ├── CMakeLists.txt │ │ │ ├── CastAndFilterIterator.hpp │ │ │ ├── Common.cu │ │ │ ├── Declspec.h │ │ │ ├── Edge.cpp │ │ │ ├── Edge.h │ │ │ ├── EndianConvert.h │ │ │ ├── ExtensionOptiXInterface.cu │ │ │ ├── Face.cpp │ │ │ ├── Face.h │ │ │ ├── FiniteElementMath.cpp │ │ │ ├── FiniteElementMath.h │ │ │ ├── FiniteElementVolume.cpp │ │ │ ├── FiniteElementVolume.h │ │ │ ├── Hexahedron.cpp │ │ │ ├── Hexahedron.cu │ │ │ ├── Hexahedron.h │ │ │ ├── HexahedronCommon.cu │ │ │ ├── IPolyhedron.h │ │ │ ├── Isosurface.cpp │ │ │ ├── Isosurface.h │ │ │ ├── Jacobi.hpp │ │ │ ├── JacobiExtensionElVisModel.cpp │ │ │ ├── JacobiExtensionElVisModel.h │ │ │ ├── JacobiFace.cpp │ │ │ ├── JacobiFace.h │ │ │ ├── NumericalIntegration.h │ │ │ ├── NumericalIntegration.hpp │ │ │ ├── OptiXHexahedron.cu │ │ │ ├── OptiXPrism.cu │ │ │ ├── PluginInterface.cpp │ │ │ ├── PluginInterface.h │ │ │ ├── Point.hpp │ │ │ ├── PointTransformations.cpp │ │ │ ├── PointTransformations.hpp │ │ │ ├── Polyhedra.cpp │ │ │ ├── Polyhedra.h │ │ │ ├── PolyhedraBoundingBox.cpp │ │ │ ├── PolyhedraBoundingBox.h │ │ │ ├── Polylib.cpp │ │ │ ├── Polylib.h │ │ │ ├── Polynomial.cpp │ │ │ ├── Polynomial.h │ │ │ ├── Polynomial.hpp │ │ │ ├── PolynomialInterpolation.h │ │ │ ├── PolynomialInterpolation.hpp │ │ │ ├── Prism.cpp │ │ │ ├── Prism.h │ │ │ ├── PrismCommon.cu │ │ │ ├── Pyramid.cpp │ │ │ ├── Pyramid.h │ │ │ ├── RayTracerDialog.cpp │ │ │ ├── SimpleMatrix.hpp │ │ │ ├── Spaces.h │ │ │ ├── Tetrahedron.cpp │ │ │ ├── Tetrahedron.h │ │ │ ├── Typedefs.h │ │ │ ├── Vector.hpp │ │ │ ├── Writers.cpp │ │ │ └── Writers.h │ │ ├── NektarExtension │ │ │ ├── CMakeLists.txt │ │ │ ├── Declspec.h │ │ │ ├── ExtensionInterface.cu │ │ │ ├── Flags │ │ │ │ ├── AIX.inc │ │ │ │ ├── CRAYPVP.inc │ │ │ │ ├── DECAXP.inc │ │ │ │ ├── Darwin.inc │ │ │ │ ├── GCC.inc │ │ │ │ ├── HP-UX.inc │ │ │ │ ├── IRIX.inc │ │ │ │ ├── IRIX64.inc │ │ │ │ ├── Linux-concorde.inc │ │ │ │ ├── Linux-cx1.inc │ │ │ │ ├── Linux-ia64.inc │ │ │ │ ├── Linux.inc │ │ │ │ ├── SPP-UX.inc │ │ │ │ ├── SunOS.inc │ │ │ │ ├── T3D.inc │ │ │ │ ├── T3E.inc │ │ │ │ ├── ap3000.inc │ │ │ │ ├── i860.inc │ │ │ │ └── sim860.inc │ │ │ ├── Hlib │ │ │ │ ├── BlkMat │ │ │ │ │ ├── BlkMat.cpp │ │ │ │ │ ├── BlkMat.h │ │ │ │ │ ├── BlkSubMat.h │ │ │ │ │ ├── BlkVec.h │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── SCdemo.cpp │ │ │ │ │ └── demo.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── MakeHybrid │ │ │ │ ├── Makefile │ │ │ │ ├── MatSolve │ │ │ │ │ ├── GMatrix.cpp │ │ │ │ │ ├── GMatrix.h │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── MatSolve.cpp │ │ │ │ │ ├── MatSolve.h │ │ │ │ │ └── SClevel.h │ │ │ │ └── src │ │ │ │ │ ├── Basis.C │ │ │ │ │ ├── Boundary.C │ │ │ │ │ ├── Coords.C │ │ │ │ │ ├── Curvi.C │ │ │ │ │ ├── Dbutils.C │ │ │ │ │ ├── Deriv.C │ │ │ │ │ ├── EigenMatrix.C │ │ │ │ │ ├── Element.C │ │ │ │ │ ├── Element_List.C │ │ │ │ │ ├── Felisa.C │ │ │ │ │ ├── FelisaF.F │ │ │ │ │ ├── Fieldfiles.C │ │ │ │ │ ├── Geofac.C │ │ │ │ │ ├── Gradient.C │ │ │ │ │ ├── HOSurf.C │ │ │ │ │ ├── Hex.C │ │ │ │ │ ├── InnerProd.C │ │ │ │ │ ├── Integrate.C │ │ │ │ │ ├── Interp.C │ │ │ │ │ ├── Interp_point.C │ │ │ │ │ ├── Matrix.C │ │ │ │ │ ├── MatrixR.C │ │ │ │ │ ├── Matrix_Stokes.C │ │ │ │ │ ├── Memory.C │ │ │ │ │ ├── Misc.C │ │ │ │ │ ├── Mrhs.C │ │ │ │ │ ├── Nekvec.C │ │ │ │ │ ├── Norms.C │ │ │ │ │ ├── Nums.C │ │ │ │ │ ├── Overlap.C │ │ │ │ │ ├── OverlapFull.C │ │ │ │ │ ├── Parallel.C │ │ │ │ │ ├── Particle.C │ │ │ │ │ ├── Prism.C │ │ │ │ │ ├── Pyr.C │ │ │ │ │ ├── Quad.C │ │ │ │ │ ├── Refine.C │ │ │ │ │ ├── SMatrix.C │ │ │ │ │ ├── Solve.C │ │ │ │ │ ├── SolveR.C │ │ │ │ │ ├── Solve_Stokes.C │ │ │ │ │ ├── Solve_cg.C │ │ │ │ │ ├── Tet.C │ │ │ │ │ ├── Transforms.C │ │ │ │ │ ├── Tri.C │ │ │ │ │ ├── Utilities.C │ │ │ │ │ ├── manager.c │ │ │ │ │ ├── manager.y │ │ │ │ │ ├── polylib.C │ │ │ │ │ ├── spline.C │ │ │ │ │ └── tree.c │ │ │ ├── Nektar3d │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── MakeNek │ │ │ │ ├── Makefile │ │ │ │ └── src │ │ │ │ │ ├── analyser.C │ │ │ │ │ ├── analyser_sjs.C │ │ │ │ │ ├── bessels_test.C │ │ │ │ │ ├── bwoptim.C │ │ │ │ │ ├── cfl.C │ │ │ │ │ ├── comm.C │ │ │ │ │ ├── convective.C │ │ │ │ │ ├── dgalerkin.C │ │ │ │ │ ├── drive.C │ │ │ │ │ ├── forces.C │ │ │ │ │ ├── forces_sjs.C │ │ │ │ │ ├── io.C │ │ │ │ │ ├── mlevel.C │ │ │ │ │ ├── mpinektar.C │ │ │ │ │ ├── prepost.C │ │ │ │ │ ├── pressure.C │ │ │ │ │ ├── recurrSC.C │ │ │ │ │ ├── rotational.C │ │ │ │ │ ├── sections.C │ │ │ │ │ ├── stokes.C │ │ │ │ │ ├── subcycle.C │ │ │ │ │ ├── velinterp.C │ │ │ │ │ ├── wannier.C │ │ │ │ │ └── womersley.C │ │ │ ├── NektarConverter │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── NektarConverter.cpp │ │ │ │ ├── NektarConverter.h │ │ │ │ └── NektarConverterDeclspec.h │ │ │ ├── NektarModel.cpp │ │ │ ├── NektarModel.cu │ │ │ ├── NektarModel.h │ │ │ ├── PluginInterface.cpp │ │ │ ├── PluginInterface.h │ │ │ ├── Veclib │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── conversion │ │ │ │ │ ├── vdble.c │ │ │ │ │ ├── vsngl.c │ │ │ │ │ ├── xbrev.c │ │ │ │ │ ├── xvcmplx.c │ │ │ │ │ ├── xvfloa.c │ │ │ │ │ ├── xvimag.c │ │ │ │ │ └── xvreal.c │ │ │ │ ├── math │ │ │ │ │ ├── xfft.c │ │ │ │ │ ├── xfill.c │ │ │ │ │ ├── xneg.c │ │ │ │ │ ├── xrand.c │ │ │ │ │ ├── xsadd.c │ │ │ │ │ ├── xsdiv.c │ │ │ │ │ ├── xsmul.c │ │ │ │ │ ├── xvabs.c │ │ │ │ │ ├── xvadd.c │ │ │ │ │ ├── xvamax.c │ │ │ │ │ ├── xvcos.c │ │ │ │ │ ├── xvdiv.c │ │ │ │ │ ├── xvexp.c │ │ │ │ │ ├── xvlg10.c │ │ │ │ │ ├── xvmul.c │ │ │ │ │ ├── xvneg.c │ │ │ │ │ ├── xvrand.c │ │ │ │ │ ├── xvrecp.c │ │ │ │ │ ├── xvsin.c │ │ │ │ │ ├── xvsqrt.c │ │ │ │ │ ├── xvsub.c │ │ │ │ │ └── xzero.c │ │ │ │ ├── memory │ │ │ │ │ ├── dmatrix.c │ │ │ │ │ ├── dvector.c │ │ │ │ │ ├── icopy.c │ │ │ │ │ ├── imatrix.c │ │ │ │ │ ├── ivector.c │ │ │ │ │ ├── matrix.c │ │ │ │ │ ├── util.c │ │ │ │ │ ├── vector.c │ │ │ │ │ ├── xmatrix.c │ │ │ │ │ └── xvector.c │ │ │ │ ├── misc │ │ │ │ │ ├── dclock.c │ │ │ │ │ ├── errhandler.c │ │ │ │ │ ├── fftdf.f │ │ │ │ │ ├── mach.c │ │ │ │ │ ├── mxm.c │ │ │ │ │ ├── mxv.c │ │ │ │ │ ├── mxva.c │ │ │ │ │ ├── polint.c │ │ │ │ │ ├── spline.c │ │ │ │ │ ├── veclib.c │ │ │ │ │ ├── xcndst.c │ │ │ │ │ ├── xgathr.c │ │ │ │ │ ├── xmask.c │ │ │ │ │ ├── xramp.c │ │ │ │ │ ├── xscatr.c │ │ │ │ │ ├── xvpoly.c │ │ │ │ │ ├── zbesj.f │ │ │ │ │ ├── zbesj_cray.f │ │ │ │ │ └── zbesj_sgi.f │ │ │ │ ├── reduction │ │ │ │ │ ├── icount.c │ │ │ │ │ ├── ifirst.c │ │ │ │ │ ├── ixmax.c │ │ │ │ │ ├── ixmin.c │ │ │ │ │ └── xsum.c │ │ │ │ ├── relational │ │ │ │ │ ├── xseq.c │ │ │ │ │ ├── xsge.c │ │ │ │ │ ├── xsle.c │ │ │ │ │ ├── xslt.c │ │ │ │ │ └── xsne.c │ │ │ │ └── triads │ │ │ │ │ ├── xsvtsp.c │ │ │ │ │ ├── xsvtvm.c │ │ │ │ │ ├── xsvtvp.c │ │ │ │ │ ├── xsvvmt.c │ │ │ │ │ ├── xsvvpt.c │ │ │ │ │ ├── xsvvtm.c │ │ │ │ │ ├── xsvvtp.c │ │ │ │ │ ├── xvvmvt.c │ │ │ │ │ ├── xvvpvt.c │ │ │ │ │ ├── xvvtvm.c │ │ │ │ │ ├── xvvtvp.c │ │ │ │ │ └── xvvvtm.c │ │ │ └── include │ │ │ │ ├── Blas.h │ │ │ │ ├── BlkMat.h │ │ │ │ ├── BlkSubMat.h │ │ │ │ ├── BlkVec.h │ │ │ │ ├── DG_Helm.h │ │ │ │ ├── Fourier_List.h │ │ │ │ ├── GMatrix.h │ │ │ │ ├── Hex.h │ │ │ │ ├── Lapack.h │ │ │ │ ├── MatSolve.h │ │ │ │ ├── NekError.h │ │ │ │ ├── Prism.h │ │ │ │ ├── Pyr.h │ │ │ │ ├── Quad.h │ │ │ │ ├── SCMatrix.h │ │ │ │ ├── SClevel.h │ │ │ │ ├── Tet.h │ │ │ │ ├── TransF77.h │ │ │ │ ├── Tri.h │ │ │ │ ├── Vmath.h │ │ │ │ ├── aix_trans.h │ │ │ │ ├── complex.h │ │ │ │ ├── contour_utils.h │ │ │ │ ├── dbutils.h │ │ │ │ ├── felisa.h │ │ │ │ ├── fftw.h │ │ │ │ ├── gen_utils.h │ │ │ │ ├── gs.h │ │ │ │ ├── homesh.h │ │ │ │ ├── hotel.h │ │ │ │ ├── hstruct.h │ │ │ │ ├── irix_trans.h │ │ │ │ ├── konst.h │ │ │ │ ├── linpack.h │ │ │ │ ├── macros.h │ │ │ │ ├── memcheck.h │ │ │ │ ├── metisproto.h │ │ │ │ ├── nekcomp.h │ │ │ │ ├── nekscal.h │ │ │ │ ├── nekstruct.h │ │ │ │ ├── nektar.h │ │ │ │ ├── nektarF.h │ │ │ │ ├── nektarG.h │ │ │ │ ├── polylib.h │ │ │ │ ├── proto.h │ │ │ │ ├── rfftw.h │ │ │ │ ├── smart_ptr.hpp │ │ │ │ ├── stochastic.h │ │ │ │ ├── stokes_solve.h │ │ │ │ ├── stokes_solve_F.h │ │ │ │ ├── tree.h │ │ │ │ ├── varv.h │ │ │ │ ├── vecerr.h │ │ │ │ ├── veclib.h │ │ │ │ ├── work.h │ │ │ │ └── zbesj.h │ │ ├── NektarPlusPlusExtension │ │ │ ├── CMakeLists.txt │ │ │ ├── Declspec.h │ │ │ ├── Expansions.cu │ │ │ ├── ExtensionOptiXInterface.cu │ │ │ ├── FieldInfo.h │ │ │ ├── Hexahedron.cu │ │ │ ├── NektarModel.cpp │ │ │ ├── NektarModel.cu │ │ │ ├── NektarModel.h │ │ │ ├── OptixHexahedron.cu │ │ │ ├── OptixQuad.cu │ │ │ ├── OptixTriangle.cu │ │ │ ├── PluginInterface.cpp │ │ │ ├── PluginInterface.h │ │ │ ├── Prism.cu │ │ │ ├── Quadrilateral.cu │ │ │ └── typedefs.cu │ │ ├── ProjectXExtension │ │ │ ├── CMakeLists.txt │ │ │ ├── ExtensionOptiXInterface.cu │ │ │ ├── LEDAConfig.cmake │ │ │ ├── PXCoordinates_Elvis.cu │ │ │ ├── PXCutCell_ElVis.cu │ │ │ ├── PXModel.cpp │ │ │ ├── PXModel.h │ │ │ ├── PXNormal_Elvis.cu │ │ │ ├── PXOptiXCudaCommon.cu │ │ │ ├── PXPlanarFace.h │ │ │ ├── PXQuadReference_Elvis.cu │ │ │ ├── PXShape_Elvis.cu │ │ │ ├── PXShape_USE.h │ │ │ ├── PXSimplex.cu │ │ │ ├── PXStructDefinitions.h │ │ │ └── ProjectXConfig.cmake │ │ └── RuntimeExtensionTemplate │ │ │ ├── CMakeLists.txt │ │ │ ├── CMakeLists.txt.in │ │ │ ├── Declspec.h.in │ │ │ ├── ExtensionCudaInterface.cu.in │ │ │ ├── ExtensionOptiXInterface.cu.in │ │ │ ├── Model.cpp │ │ │ ├── Model.cpp.in │ │ │ ├── Model.h.in │ │ │ ├── PluginInterface.cpp.in │ │ │ └── PluginInterface.h.in │ ├── Gui │ │ ├── ApplicationState.cpp │ │ ├── ApplicationState.h │ │ ├── BreakpointPropertyManager.h │ │ ├── Breakpoints.cpp │ │ ├── Breakpoints.h │ │ ├── CMakeLists.txt │ │ ├── CMakeLists.txt.bak │ │ ├── CameraPropertyManager.h │ │ ├── ColorMapEditorWidget.cpp │ │ ├── ColorMapEditorWidget.h │ │ ├── ColorMapRect.cpp │ │ ├── ColorMapRect.h │ │ ├── ColorMapWidget.cpp │ │ ├── ColorMapWidget.h │ │ ├── ColorPropertyManager.h │ │ ├── ContourDockWidget.cpp │ │ ├── ContourDockWidget.h │ │ ├── DebugSettingsDockWidget.cpp │ │ ├── DebugSettingsDockWidget.h │ │ ├── ElVis.qss │ │ ├── ElVis.ui │ │ ├── ElVisUI.cpp │ │ ├── ElVisUI.h │ │ ├── ElementFaceRenderingDockWidget.cpp │ │ ├── ElementFaceRenderingDockWidget.h │ │ ├── IsosurfaceDockWidget.cpp │ │ ├── IsosurfaceDockWidget.h │ │ ├── LightingDockWidget.cpp │ │ ├── LightingDockWidget.h │ │ ├── ModelInspectorWidget.cpp │ │ ├── ModelInspectorWidget.h │ │ ├── ObjectInspectorUI.cpp │ │ ├── ObjectInspectorUI.h │ │ ├── PlanePropertyManager.h │ │ ├── PointPropertyManager.h │ │ ├── Property.hpp │ │ ├── RenderSettingsDockWidget.cpp │ │ ├── RenderSettingsDockWidget.h │ │ ├── SampleOntoNrrdDockWidget.cpp │ │ ├── SampleOntoNrrdDockWidget.h │ │ ├── SceneItemsDockWidget.cpp │ │ ├── SceneItemsDockWidget.h │ │ ├── SceneViewWidget.cpp │ │ ├── SceneViewWidget.h │ │ ├── VectorPropertyManager.h │ │ ├── ViewSettingsUI.cpp │ │ ├── ViewSettingsUI.h │ │ ├── VolumeRenderingSettingsWidget.cpp │ │ ├── VolumeRenderingSettingsWidget.h │ │ ├── main.cpp │ │ └── unitGui │ │ │ ├── CMakeLists.txt │ │ │ ├── Example_btest.cpp │ │ │ └── qstring_qtest.cpp │ ├── Math │ │ ├── AdaptiveQuadrature.hpp │ │ ├── CMakeLists.txt │ │ ├── GaussLegendreQuadrature.cpp │ │ ├── GaussLegendreQuadrature.hpp │ │ ├── Integration.cpp │ │ ├── Integration.hpp │ │ ├── Jacobi.hpp │ │ ├── Polynomial.hpp │ │ ├── PolynomialProjection.hpp │ │ └── TrapezoidalIntegration.hpp │ ├── ModelConversion │ │ ├── CMakeLists.txt │ │ ├── Converter │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── FunctionProjection │ │ │ ├── CMakeLists.txt │ │ │ ├── FunctionProjection.cpp │ │ │ ├── FunctionProjection.h │ │ │ └── FunctionProjectionDeclspec.h │ │ ├── Interface │ │ │ ├── CMakeLists.txt │ │ │ ├── DynamicLib.cpp │ │ │ ├── DynamicLib.h │ │ │ ├── IElVisModelConverter.cpp │ │ │ └── IElVisModelConverter.h │ │ ├── JacobiExtensionConverter │ │ │ ├── CMakeLists.txt │ │ │ ├── IsosurfaceConverter.cpp │ │ │ ├── IsosurfaceConverter.h │ │ │ └── IsosurfaceConverterDeclspec.h │ │ └── NektarConversion │ │ │ ├── CMakeLists.txt │ │ │ ├── Flags │ │ │ ├── AIX.inc │ │ │ ├── CRAYPVP.inc │ │ │ ├── DECAXP.inc │ │ │ ├── Darwin.inc │ │ │ ├── GCC.inc │ │ │ ├── HP-UX.inc │ │ │ ├── IRIX.inc │ │ │ ├── IRIX64.inc │ │ │ ├── Linux-concorde.inc │ │ │ ├── Linux-cx1.inc │ │ │ ├── Linux-ia64.inc │ │ │ ├── Linux.inc │ │ │ ├── SPP-UX.inc │ │ │ ├── SunOS.inc │ │ │ ├── T3D.inc │ │ │ ├── T3E.inc │ │ │ ├── ap3000.inc │ │ │ ├── i860.inc │ │ │ └── sim860.inc │ │ │ ├── Hlib │ │ │ ├── BlkMat │ │ │ │ ├── BlkMat.cpp │ │ │ │ ├── BlkMat.h │ │ │ │ ├── BlkSubMat.h │ │ │ │ ├── BlkVec.h │ │ │ │ ├── Makefile │ │ │ │ ├── SCdemo.cpp │ │ │ │ └── demo.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── MakeHybrid │ │ │ ├── Makefile │ │ │ ├── MatSolve │ │ │ │ ├── GMatrix.cpp │ │ │ │ ├── GMatrix.h │ │ │ │ ├── Makefile │ │ │ │ ├── MatSolve.cpp │ │ │ │ ├── MatSolve.h │ │ │ │ └── SClevel.h │ │ │ └── src │ │ │ │ ├── Basis.C │ │ │ │ ├── Boundary.C │ │ │ │ ├── Coords.C │ │ │ │ ├── Curvi.C │ │ │ │ ├── Dbutils.C │ │ │ │ ├── Deriv.C │ │ │ │ ├── EigenMatrix.C │ │ │ │ ├── Element.C │ │ │ │ ├── Element_List.C │ │ │ │ ├── Felisa.C │ │ │ │ ├── FelisaF.F │ │ │ │ ├── Fieldfiles.C │ │ │ │ ├── Geofac.C │ │ │ │ ├── Gradient.C │ │ │ │ ├── HOSurf.C │ │ │ │ ├── Hex.C │ │ │ │ ├── InnerProd.C │ │ │ │ ├── Integrate.C │ │ │ │ ├── Interp.C │ │ │ │ ├── Interp_point.C │ │ │ │ ├── Matrix.C │ │ │ │ ├── MatrixR.C │ │ │ │ ├── Matrix_Stokes.C │ │ │ │ ├── Memory.C │ │ │ │ ├── Misc.C │ │ │ │ ├── Mrhs.C │ │ │ │ ├── Nekvec.C │ │ │ │ ├── Norms.C │ │ │ │ ├── Nums.C │ │ │ │ ├── Overlap.C │ │ │ │ ├── OverlapFull.C │ │ │ │ ├── Parallel.C │ │ │ │ ├── Particle.C │ │ │ │ ├── Prism.C │ │ │ │ ├── Pyr.C │ │ │ │ ├── Quad.C │ │ │ │ ├── Refine.C │ │ │ │ ├── SMatrix.C │ │ │ │ ├── Solve.C │ │ │ │ ├── SolveR.C │ │ │ │ ├── Solve_Stokes.C │ │ │ │ ├── Solve_cg.C │ │ │ │ ├── Tet.C │ │ │ │ ├── Transforms.C │ │ │ │ ├── Tri.C │ │ │ │ ├── Utilities.C │ │ │ │ ├── manager.c │ │ │ │ ├── manager.y │ │ │ │ ├── polylib.C │ │ │ │ ├── spline.C │ │ │ │ └── tree.c │ │ │ ├── Nektar3d │ │ │ ├── CMakeLists.txt │ │ │ ├── MakeNek │ │ │ ├── Makefile │ │ │ └── src │ │ │ │ ├── analyser.C │ │ │ │ ├── analyser_sjs.C │ │ │ │ ├── bessels_test.C │ │ │ │ ├── bwoptim.C │ │ │ │ ├── cfl.C │ │ │ │ ├── comm.C │ │ │ │ ├── convective.C │ │ │ │ ├── dgalerkin.C │ │ │ │ ├── drive.C │ │ │ │ ├── forces.C │ │ │ │ ├── forces_sjs.C │ │ │ │ ├── io.C │ │ │ │ ├── mlevel.C │ │ │ │ ├── mpinektar.C │ │ │ │ ├── prepost.C │ │ │ │ ├── pressure.C │ │ │ │ ├── recurrSC.C │ │ │ │ ├── rotational.C │ │ │ │ ├── sections.C │ │ │ │ ├── stokes.C │ │ │ │ ├── subcycle.C │ │ │ │ ├── velinterp.C │ │ │ │ ├── wannier.C │ │ │ │ └── womersley.C │ │ │ ├── NektarConverter │ │ │ ├── CMakeLists.txt │ │ │ ├── NektarConverter.cpp │ │ │ ├── NektarConverter.h │ │ │ └── NektarConverterDeclspec.h │ │ │ ├── Veclib │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── conversion │ │ │ │ ├── vdble.c │ │ │ │ ├── vsngl.c │ │ │ │ ├── xbrev.c │ │ │ │ ├── xvcmplx.c │ │ │ │ ├── xvfloa.c │ │ │ │ ├── xvimag.c │ │ │ │ └── xvreal.c │ │ │ ├── math │ │ │ │ ├── xfft.c │ │ │ │ ├── xfill.c │ │ │ │ ├── xneg.c │ │ │ │ ├── xrand.c │ │ │ │ ├── xsadd.c │ │ │ │ ├── xsdiv.c │ │ │ │ ├── xsmul.c │ │ │ │ ├── xvabs.c │ │ │ │ ├── xvadd.c │ │ │ │ ├── xvamax.c │ │ │ │ ├── xvcos.c │ │ │ │ ├── xvdiv.c │ │ │ │ ├── xvexp.c │ │ │ │ ├── xvlg10.c │ │ │ │ ├── xvmul.c │ │ │ │ ├── xvneg.c │ │ │ │ ├── xvrand.c │ │ │ │ ├── xvrecp.c │ │ │ │ ├── xvsin.c │ │ │ │ ├── xvsqrt.c │ │ │ │ ├── xvsub.c │ │ │ │ └── xzero.c │ │ │ ├── memory │ │ │ │ ├── dmatrix.c │ │ │ │ ├── dvector.c │ │ │ │ ├── icopy.c │ │ │ │ ├── imatrix.c │ │ │ │ ├── ivector.c │ │ │ │ ├── matrix.c │ │ │ │ ├── util.c │ │ │ │ ├── vector.c │ │ │ │ ├── xmatrix.c │ │ │ │ └── xvector.c │ │ │ ├── misc │ │ │ │ ├── dclock.c │ │ │ │ ├── errhandler.c │ │ │ │ ├── fftdf.f │ │ │ │ ├── mach.c │ │ │ │ ├── mxm.c │ │ │ │ ├── mxv.c │ │ │ │ ├── mxva.c │ │ │ │ ├── polint.c │ │ │ │ ├── spline.c │ │ │ │ ├── veclib.c │ │ │ │ ├── xcndst.c │ │ │ │ ├── xgathr.c │ │ │ │ ├── xmask.c │ │ │ │ ├── xramp.c │ │ │ │ ├── xscatr.c │ │ │ │ ├── xvpoly.c │ │ │ │ ├── zbesj.f │ │ │ │ ├── zbesj_cray.f │ │ │ │ └── zbesj_sgi.f │ │ │ ├── reduction │ │ │ │ ├── icount.c │ │ │ │ ├── ifirst.c │ │ │ │ ├── ixmax.c │ │ │ │ ├── ixmin.c │ │ │ │ └── xsum.c │ │ │ ├── relational │ │ │ │ ├── xseq.c │ │ │ │ ├── xsge.c │ │ │ │ ├── xsle.c │ │ │ │ ├── xslt.c │ │ │ │ └── xsne.c │ │ │ └── triads │ │ │ │ ├── xsvtsp.c │ │ │ │ ├── xsvtvm.c │ │ │ │ ├── xsvtvp.c │ │ │ │ ├── xsvvmt.c │ │ │ │ ├── xsvvpt.c │ │ │ │ ├── xsvvtm.c │ │ │ │ ├── xsvvtp.c │ │ │ │ ├── xvvmvt.c │ │ │ │ ├── xvvpvt.c │ │ │ │ ├── xvvtvm.c │ │ │ │ ├── xvvtvp.c │ │ │ │ └── xvvvtm.c │ │ │ └── include │ │ │ ├── Blas.h │ │ │ ├── BlkMat.h │ │ │ ├── BlkSubMat.h │ │ │ ├── BlkVec.h │ │ │ ├── DG_Helm.h │ │ │ ├── Fourier_List.h │ │ │ ├── GMatrix.h │ │ │ ├── Hex.h │ │ │ ├── Lapack.h │ │ │ ├── MatSolve.h │ │ │ ├── NekError.h │ │ │ ├── Prism.h │ │ │ ├── Pyr.h │ │ │ ├── Quad.h │ │ │ ├── SCMatrix.h │ │ │ ├── SClevel.h │ │ │ ├── Tet.h │ │ │ ├── TransF77.h │ │ │ ├── Tri.h │ │ │ ├── Vmath.h │ │ │ ├── aix_trans.h │ │ │ ├── complex.h │ │ │ ├── contour_utils.h │ │ │ ├── dbutils.h │ │ │ ├── felisa.h │ │ │ ├── fftw.h │ │ │ ├── gen_utils.h │ │ │ ├── gs.h │ │ │ ├── homesh.h │ │ │ ├── hotel.h │ │ │ ├── hstruct.h │ │ │ ├── irix_trans.h │ │ │ ├── konst.h │ │ │ ├── linpack.h │ │ │ ├── macros.h │ │ │ ├── memcheck.h │ │ │ ├── metisproto.h │ │ │ ├── nekcomp.h │ │ │ ├── nekscal.h │ │ │ ├── nekstruct.h │ │ │ ├── nektar.h │ │ │ ├── nektarF.h │ │ │ ├── nektarG.h │ │ │ ├── polylib.h │ │ │ ├── proto.h │ │ │ ├── rfftw.h │ │ │ ├── smart_ptr.hpp │ │ │ ├── stochastic.h │ │ │ ├── stokes_solve.h │ │ │ ├── stokes_solve_F.h │ │ │ ├── tree.h │ │ │ ├── varv.h │ │ │ ├── vecerr.h │ │ │ ├── veclib.h │ │ │ ├── work.h │ │ │ └── zbesj.h │ └── QtPropertyBrowser │ │ ├── CMakeLists.txt │ │ ├── CMakeLists.txt.bak │ │ ├── MemberProperty.hpp │ │ ├── MemberPropertyManager.hpp │ │ ├── QtAbstractEditorFactoryBase │ │ ├── QtAbstractPropertyBrowser │ │ ├── QtAbstractPropertyManager │ │ ├── QtBoolPropertyManager │ │ ├── QtBrowserItem │ │ ├── QtButtonPropertyBrowser │ │ ├── QtCharEditorFactory │ │ ├── QtCharPropertyManager │ │ ├── QtCheckBoxFactory │ │ ├── QtColorEditorFactory │ │ ├── QtColorPropertyManager │ │ ├── QtCursorEditorFactory │ │ ├── QtCursorPropertyManager │ │ ├── QtDateEditFactory │ │ ├── QtDatePropertyManager │ │ ├── QtDateTimeEditFactory │ │ ├── QtDateTimePropertyManager │ │ ├── QtDoublePropertyManager │ │ ├── QtDoubleSpinBoxFactory │ │ ├── QtEnumEditorFactory │ │ ├── QtEnumPropertyManager │ │ ├── QtFlagPropertyManager │ │ ├── QtFontEditorFactory │ │ ├── QtFontPropertyManager │ │ ├── QtGroupBoxPropertyBrowser │ │ ├── QtGroupPropertyManager │ │ ├── QtIntPropertyManager │ │ ├── QtKeySequenceEditorFactory │ │ ├── QtKeySequencePropertyManager │ │ ├── QtLineEditFactory │ │ ├── QtLocalePropertyManager │ │ ├── QtPointFPropertyManager │ │ ├── QtPointPropertyManager │ │ ├── QtProperty │ │ ├── QtRectFPropertyManager │ │ ├── QtRectPropertyManager │ │ ├── QtScrollBarFactory │ │ ├── QtSizeFPropertyManager │ │ ├── QtSizePolicyPropertyManager │ │ ├── QtSizePropertyManager │ │ ├── QtSliderFactory │ │ ├── QtSpinBoxFactory │ │ ├── QtStringPropertyManager │ │ ├── QtTimeEditFactory │ │ ├── QtTimePropertyManager │ │ ├── QtTreePropertyBrowser │ │ ├── QtVariantEditorFactory │ │ ├── QtVariantProperty │ │ ├── QtVariantPropertyManager │ │ ├── images │ │ ├── cursor-arrow.png │ │ ├── cursor-busy.png │ │ ├── cursor-closedhand.png │ │ ├── cursor-cross.png │ │ ├── cursor-forbidden.png │ │ ├── cursor-hand.png │ │ ├── cursor-hsplit.png │ │ ├── cursor-ibeam.png │ │ ├── cursor-openhand.png │ │ ├── cursor-sizeall.png │ │ ├── cursor-sizeb.png │ │ ├── cursor-sizef.png │ │ ├── cursor-sizeh.png │ │ ├── cursor-sizev.png │ │ ├── cursor-uparrow.png │ │ ├── cursor-vsplit.png │ │ ├── cursor-wait.png │ │ └── cursor-whatsthis.png │ │ ├── qtbuttonpropertybrowser.cpp │ │ ├── qtbuttonpropertybrowser.h │ │ ├── qteditorfactory.cpp │ │ ├── qteditorfactory.h │ │ ├── qtgroupboxpropertybrowser.cpp │ │ ├── qtgroupboxpropertybrowser.h │ │ ├── qtpropertybrowser.cpp │ │ ├── qtpropertybrowser.h │ │ ├── qtpropertybrowser.pri │ │ ├── qtpropertybrowser.qrc │ │ ├── qtpropertybrowserutils.cpp │ │ ├── qtpropertybrowserutils_p.h │ │ ├── qtpropertymanager.cpp │ │ ├── qtpropertymanager.h │ │ ├── qttreepropertybrowser.cpp │ │ ├── qttreepropertybrowser.h │ │ ├── qtvariantproperty.cpp │ │ └── qtvariantproperty.h ├── Externals │ ├── CMakeLists.txt │ ├── boost │ │ ├── CMakeLists.txt │ │ ├── LICENSE_1_0.txt │ │ ├── Modifications.txt │ │ ├── boost │ │ │ ├── accumulators │ │ │ │ ├── accumulators.hpp │ │ │ │ ├── accumulators_fwd.hpp │ │ │ │ ├── framework │ │ │ │ │ ├── accumulator_base.hpp │ │ │ │ │ ├── accumulator_concept.hpp │ │ │ │ │ ├── accumulator_set.hpp │ │ │ │ │ ├── accumulators │ │ │ │ │ │ ├── droppable_accumulator.hpp │ │ │ │ │ │ ├── external_accumulator.hpp │ │ │ │ │ │ ├── reference_accumulator.hpp │ │ │ │ │ │ └── value_accumulator.hpp │ │ │ │ │ ├── depends_on.hpp │ │ │ │ │ ├── external.hpp │ │ │ │ │ ├── extractor.hpp │ │ │ │ │ ├── features.hpp │ │ │ │ │ └── parameters │ │ │ │ │ │ ├── accumulator.hpp │ │ │ │ │ │ ├── sample.hpp │ │ │ │ │ │ ├── weight.hpp │ │ │ │ │ │ └── weights.hpp │ │ │ │ ├── numeric │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── function1.hpp │ │ │ │ │ │ ├── function2.hpp │ │ │ │ │ │ ├── function3.hpp │ │ │ │ │ │ ├── function4.hpp │ │ │ │ │ │ ├── function_n.hpp │ │ │ │ │ │ └── pod_singleton.hpp │ │ │ │ │ ├── functional.hpp │ │ │ │ │ ├── functional │ │ │ │ │ │ ├── complex.hpp │ │ │ │ │ │ ├── valarray.hpp │ │ │ │ │ │ └── vector.hpp │ │ │ │ │ └── functional_fwd.hpp │ │ │ │ ├── statistics.hpp │ │ │ │ ├── statistics │ │ │ │ │ ├── count.hpp │ │ │ │ │ ├── covariance.hpp │ │ │ │ │ ├── density.hpp │ │ │ │ │ ├── error_of.hpp │ │ │ │ │ ├── error_of_mean.hpp │ │ │ │ │ ├── extended_p_square.hpp │ │ │ │ │ ├── extended_p_square_quantile.hpp │ │ │ │ │ ├── kurtosis.hpp │ │ │ │ │ ├── max.hpp │ │ │ │ │ ├── mean.hpp │ │ │ │ │ ├── median.hpp │ │ │ │ │ ├── min.hpp │ │ │ │ │ ├── moment.hpp │ │ │ │ │ ├── p_square_cumul_dist.hpp │ │ │ │ │ ├── p_square_cumulative_distribution.hpp │ │ │ │ │ ├── p_square_quantile.hpp │ │ │ │ │ ├── parameters │ │ │ │ │ │ └── quantile_probability.hpp │ │ │ │ │ ├── peaks_over_threshold.hpp │ │ │ │ │ ├── pot_quantile.hpp │ │ │ │ │ ├── pot_tail_mean.hpp │ │ │ │ │ ├── rolling_count.hpp │ │ │ │ │ ├── rolling_mean.hpp │ │ │ │ │ ├── rolling_sum.hpp │ │ │ │ │ ├── rolling_window.hpp │ │ │ │ │ ├── skewness.hpp │ │ │ │ │ ├── stats.hpp │ │ │ │ │ ├── sum.hpp │ │ │ │ │ ├── sum_kahan.hpp │ │ │ │ │ ├── tail.hpp │ │ │ │ │ ├── tail_mean.hpp │ │ │ │ │ ├── tail_quantile.hpp │ │ │ │ │ ├── tail_variate.hpp │ │ │ │ │ ├── tail_variate_means.hpp │ │ │ │ │ ├── times2_iterator.hpp │ │ │ │ │ ├── variance.hpp │ │ │ │ │ ├── variates │ │ │ │ │ │ └── covariate.hpp │ │ │ │ │ ├── weighted_covariance.hpp │ │ │ │ │ ├── weighted_density.hpp │ │ │ │ │ ├── weighted_extended_p_square.hpp │ │ │ │ │ ├── weighted_kurtosis.hpp │ │ │ │ │ ├── weighted_mean.hpp │ │ │ │ │ ├── weighted_median.hpp │ │ │ │ │ ├── weighted_moment.hpp │ │ │ │ │ ├── weighted_p_square_cumul_dist.hpp │ │ │ │ │ ├── weighted_p_square_cumulative_distribution.hpp │ │ │ │ │ ├── weighted_p_square_quantile.hpp │ │ │ │ │ ├── weighted_peaks_over_threshold.hpp │ │ │ │ │ ├── weighted_skewness.hpp │ │ │ │ │ ├── weighted_sum.hpp │ │ │ │ │ ├── weighted_sum_kahan.hpp │ │ │ │ │ ├── weighted_tail_mean.hpp │ │ │ │ │ ├── weighted_tail_quantile.hpp │ │ │ │ │ ├── weighted_tail_variate_means.hpp │ │ │ │ │ ├── weighted_variance.hpp │ │ │ │ │ └── with_error.hpp │ │ │ │ └── statistics_fwd.hpp │ │ │ ├── algorithm │ │ │ │ ├── clamp.hpp │ │ │ │ ├── cxx11 │ │ │ │ │ ├── all_of.hpp │ │ │ │ │ ├── any_of.hpp │ │ │ │ │ ├── copy_if.hpp │ │ │ │ │ ├── copy_n.hpp │ │ │ │ │ ├── find_if_not.hpp │ │ │ │ │ ├── iota.hpp │ │ │ │ │ ├── is_partitioned.hpp │ │ │ │ │ ├── is_permutation.hpp │ │ │ │ │ ├── is_sorted.hpp │ │ │ │ │ ├── none_of.hpp │ │ │ │ │ ├── one_of.hpp │ │ │ │ │ ├── partition_copy.hpp │ │ │ │ │ └── partition_point.hpp │ │ │ │ ├── cxx14 │ │ │ │ │ ├── equal.hpp │ │ │ │ │ ├── is_permutation.hpp │ │ │ │ │ └── mismatch.hpp │ │ │ │ ├── gather.hpp │ │ │ │ ├── hex.hpp │ │ │ │ ├── minmax.hpp │ │ │ │ ├── minmax_element.hpp │ │ │ │ ├── searching │ │ │ │ │ ├── boyer_moore.hpp │ │ │ │ │ ├── boyer_moore_horspool.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── bm_traits.hpp │ │ │ │ │ │ └── debugging.hpp │ │ │ │ │ └── knuth_morris_pratt.hpp │ │ │ │ ├── string.hpp │ │ │ │ ├── string │ │ │ │ │ ├── case_conv.hpp │ │ │ │ │ ├── classification.hpp │ │ │ │ │ ├── compare.hpp │ │ │ │ │ ├── concept.hpp │ │ │ │ │ ├── config.hpp │ │ │ │ │ ├── constants.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── case_conv.hpp │ │ │ │ │ │ ├── classification.hpp │ │ │ │ │ │ ├── find_format.hpp │ │ │ │ │ │ ├── find_format_all.hpp │ │ │ │ │ │ ├── find_format_store.hpp │ │ │ │ │ │ ├── find_iterator.hpp │ │ │ │ │ │ ├── finder.hpp │ │ │ │ │ │ ├── finder_regex.hpp │ │ │ │ │ │ ├── formatter.hpp │ │ │ │ │ │ ├── formatter_regex.hpp │ │ │ │ │ │ ├── predicate.hpp │ │ │ │ │ │ ├── replace_storage.hpp │ │ │ │ │ │ ├── sequence.hpp │ │ │ │ │ │ ├── trim.hpp │ │ │ │ │ │ └── util.hpp │ │ │ │ │ ├── erase.hpp │ │ │ │ │ ├── find.hpp │ │ │ │ │ ├── find_format.hpp │ │ │ │ │ ├── find_iterator.hpp │ │ │ │ │ ├── finder.hpp │ │ │ │ │ ├── formatter.hpp │ │ │ │ │ ├── iter_find.hpp │ │ │ │ │ ├── join.hpp │ │ │ │ │ ├── predicate.hpp │ │ │ │ │ ├── predicate_facade.hpp │ │ │ │ │ ├── regex.hpp │ │ │ │ │ ├── regex_find_format.hpp │ │ │ │ │ ├── replace.hpp │ │ │ │ │ ├── sequence_traits.hpp │ │ │ │ │ ├── split.hpp │ │ │ │ │ ├── std │ │ │ │ │ │ ├── list_traits.hpp │ │ │ │ │ │ ├── rope_traits.hpp │ │ │ │ │ │ ├── slist_traits.hpp │ │ │ │ │ │ └── string_traits.hpp │ │ │ │ │ ├── std_containers_traits.hpp │ │ │ │ │ ├── trim.hpp │ │ │ │ │ ├── trim_all.hpp │ │ │ │ │ └── yes_no_type.hpp │ │ │ │ └── string_regex.hpp │ │ │ ├── aligned_storage.hpp │ │ │ ├── any.hpp │ │ │ ├── archive │ │ │ │ ├── add_facet.hpp │ │ │ │ ├── archive_exception.hpp │ │ │ │ ├── basic_archive.hpp │ │ │ │ ├── basic_binary_iarchive.hpp │ │ │ │ ├── basic_binary_iprimitive.hpp │ │ │ │ ├── basic_binary_oarchive.hpp │ │ │ │ ├── basic_binary_oprimitive.hpp │ │ │ │ ├── basic_streambuf_locale_saver.hpp │ │ │ │ ├── basic_text_iarchive.hpp │ │ │ │ ├── basic_text_iprimitive.hpp │ │ │ │ ├── basic_text_oarchive.hpp │ │ │ │ ├── basic_text_oprimitive.hpp │ │ │ │ ├── basic_xml_archive.hpp │ │ │ │ ├── basic_xml_iarchive.hpp │ │ │ │ ├── basic_xml_oarchive.hpp │ │ │ │ ├── binary_iarchive.hpp │ │ │ │ ├── binary_iarchive_impl.hpp │ │ │ │ ├── binary_oarchive.hpp │ │ │ │ ├── binary_oarchive_impl.hpp │ │ │ │ ├── binary_wiarchive.hpp │ │ │ │ ├── binary_woarchive.hpp │ │ │ │ ├── codecvt_null.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── abi_prefix.hpp │ │ │ │ │ ├── abi_suffix.hpp │ │ │ │ │ ├── archive_serializer_map.hpp │ │ │ │ │ ├── auto_link_archive.hpp │ │ │ │ │ ├── auto_link_warchive.hpp │ │ │ │ │ ├── basic_archive_impl.hpp │ │ │ │ │ ├── basic_config.hpp │ │ │ │ │ ├── basic_iarchive.hpp │ │ │ │ │ ├── basic_iserializer.hpp │ │ │ │ │ ├── basic_oarchive.hpp │ │ │ │ │ ├── basic_oserializer.hpp │ │ │ │ │ ├── basic_pointer_iserializer.hpp │ │ │ │ │ ├── basic_pointer_oserializer.hpp │ │ │ │ │ ├── basic_serializer.hpp │ │ │ │ │ ├── basic_serializer_map.hpp │ │ │ │ │ ├── check.hpp │ │ │ │ │ ├── common_iarchive.hpp │ │ │ │ │ ├── common_oarchive.hpp │ │ │ │ │ ├── decl.hpp │ │ │ │ │ ├── interface_iarchive.hpp │ │ │ │ │ ├── interface_oarchive.hpp │ │ │ │ │ ├── iserializer.hpp │ │ │ │ │ ├── oserializer.hpp │ │ │ │ │ ├── polymorphic_iarchive_route.hpp │ │ │ │ │ ├── polymorphic_oarchive_route.hpp │ │ │ │ │ ├── register_archive.hpp │ │ │ │ │ └── utf8_codecvt_facet.hpp │ │ │ │ ├── dinkumware.hpp │ │ │ │ ├── impl │ │ │ │ │ ├── archive_serializer_map.ipp │ │ │ │ │ ├── basic_binary_iarchive.ipp │ │ │ │ │ ├── basic_binary_iprimitive.ipp │ │ │ │ │ ├── basic_binary_oarchive.ipp │ │ │ │ │ ├── basic_binary_oprimitive.ipp │ │ │ │ │ ├── basic_text_iarchive.ipp │ │ │ │ │ ├── basic_text_iprimitive.ipp │ │ │ │ │ ├── basic_text_oarchive.ipp │ │ │ │ │ ├── basic_text_oprimitive.ipp │ │ │ │ │ ├── basic_xml_grammar.hpp │ │ │ │ │ ├── basic_xml_iarchive.ipp │ │ │ │ │ ├── basic_xml_oarchive.ipp │ │ │ │ │ ├── text_iarchive_impl.ipp │ │ │ │ │ ├── text_oarchive_impl.ipp │ │ │ │ │ ├── text_wiarchive_impl.ipp │ │ │ │ │ ├── text_woarchive_impl.ipp │ │ │ │ │ ├── xml_iarchive_impl.ipp │ │ │ │ │ ├── xml_oarchive_impl.ipp │ │ │ │ │ ├── xml_wiarchive_impl.ipp │ │ │ │ │ └── xml_woarchive_impl.ipp │ │ │ │ ├── iterators │ │ │ │ │ ├── base64_exception.hpp │ │ │ │ │ ├── base64_from_binary.hpp │ │ │ │ │ ├── binary_from_base64.hpp │ │ │ │ │ ├── dataflow.hpp │ │ │ │ │ ├── dataflow_exception.hpp │ │ │ │ │ ├── escape.hpp │ │ │ │ │ ├── head_iterator.hpp │ │ │ │ │ ├── insert_linebreaks.hpp │ │ │ │ │ ├── istream_iterator.hpp │ │ │ │ │ ├── mb_from_wchar.hpp │ │ │ │ │ ├── ostream_iterator.hpp │ │ │ │ │ ├── remove_whitespace.hpp │ │ │ │ │ ├── transform_width.hpp │ │ │ │ │ ├── unescape.hpp │ │ │ │ │ ├── wchar_from_mb.hpp │ │ │ │ │ ├── xml_escape.hpp │ │ │ │ │ ├── xml_unescape.hpp │ │ │ │ │ └── xml_unescape_exception.hpp │ │ │ │ ├── polymorphic_binary_iarchive.hpp │ │ │ │ ├── polymorphic_binary_oarchive.hpp │ │ │ │ ├── polymorphic_iarchive.hpp │ │ │ │ ├── polymorphic_oarchive.hpp │ │ │ │ ├── polymorphic_text_iarchive.hpp │ │ │ │ ├── polymorphic_text_oarchive.hpp │ │ │ │ ├── polymorphic_text_wiarchive.hpp │ │ │ │ ├── polymorphic_text_woarchive.hpp │ │ │ │ ├── polymorphic_xml_iarchive.hpp │ │ │ │ ├── polymorphic_xml_oarchive.hpp │ │ │ │ ├── polymorphic_xml_wiarchive.hpp │ │ │ │ ├── polymorphic_xml_woarchive.hpp │ │ │ │ ├── shared_ptr_helper.hpp │ │ │ │ ├── text_iarchive.hpp │ │ │ │ ├── text_oarchive.hpp │ │ │ │ ├── text_wiarchive.hpp │ │ │ │ ├── text_woarchive.hpp │ │ │ │ ├── tmpdir.hpp │ │ │ │ ├── wcslen.hpp │ │ │ │ ├── xml_archive_exception.hpp │ │ │ │ ├── xml_iarchive.hpp │ │ │ │ ├── xml_oarchive.hpp │ │ │ │ ├── xml_wiarchive.hpp │ │ │ │ └── xml_woarchive.hpp │ │ │ ├── array.hpp │ │ │ ├── asio.hpp │ │ │ ├── asio │ │ │ │ ├── async_result.hpp │ │ │ │ ├── basic_datagram_socket.hpp │ │ │ │ ├── basic_deadline_timer.hpp │ │ │ │ ├── basic_io_object.hpp │ │ │ │ ├── basic_raw_socket.hpp │ │ │ │ ├── basic_seq_packet_socket.hpp │ │ │ │ ├── basic_serial_port.hpp │ │ │ │ ├── basic_signal_set.hpp │ │ │ │ ├── basic_socket.hpp │ │ │ │ ├── basic_socket_acceptor.hpp │ │ │ │ ├── basic_socket_iostream.hpp │ │ │ │ ├── basic_socket_streambuf.hpp │ │ │ │ ├── basic_stream_socket.hpp │ │ │ │ ├── basic_streambuf.hpp │ │ │ │ ├── basic_streambuf_fwd.hpp │ │ │ │ ├── basic_waitable_timer.hpp │ │ │ │ ├── buffer.hpp │ │ │ │ ├── buffered_read_stream.hpp │ │ │ │ ├── buffered_read_stream_fwd.hpp │ │ │ │ ├── buffered_stream.hpp │ │ │ │ ├── buffered_stream_fwd.hpp │ │ │ │ ├── buffered_write_stream.hpp │ │ │ │ ├── buffered_write_stream_fwd.hpp │ │ │ │ ├── buffers_iterator.hpp │ │ │ │ ├── completion_condition.hpp │ │ │ │ ├── connect.hpp │ │ │ │ ├── coroutine.hpp │ │ │ │ ├── datagram_socket_service.hpp │ │ │ │ ├── deadline_timer.hpp │ │ │ │ ├── deadline_timer_service.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── addressof.hpp │ │ │ │ │ ├── array.hpp │ │ │ │ │ ├── array_fwd.hpp │ │ │ │ │ ├── assert.hpp │ │ │ │ │ ├── atomic_count.hpp │ │ │ │ │ ├── base_from_completion_cond.hpp │ │ │ │ │ ├── bind_handler.hpp │ │ │ │ │ ├── buffer_resize_guard.hpp │ │ │ │ │ ├── buffer_sequence_adapter.hpp │ │ │ │ │ ├── buffered_stream_storage.hpp │ │ │ │ │ ├── call_stack.hpp │ │ │ │ │ ├── chrono_time_traits.hpp │ │ │ │ │ ├── completion_handler.hpp │ │ │ │ │ ├── config.hpp │ │ │ │ │ ├── consuming_buffers.hpp │ │ │ │ │ ├── cstdint.hpp │ │ │ │ │ ├── date_time_fwd.hpp │ │ │ │ │ ├── deadline_timer_service.hpp │ │ │ │ │ ├── dependent_type.hpp │ │ │ │ │ ├── descriptor_ops.hpp │ │ │ │ │ ├── descriptor_read_op.hpp │ │ │ │ │ ├── descriptor_write_op.hpp │ │ │ │ │ ├── dev_poll_reactor.hpp │ │ │ │ │ ├── dev_poll_reactor_fwd.hpp │ │ │ │ │ ├── epoll_reactor.hpp │ │ │ │ │ ├── epoll_reactor_fwd.hpp │ │ │ │ │ ├── event.hpp │ │ │ │ │ ├── eventfd_select_interrupter.hpp │ │ │ │ │ ├── fd_set_adapter.hpp │ │ │ │ │ ├── fenced_block.hpp │ │ │ │ │ ├── function.hpp │ │ │ │ │ ├── gcc_arm_fenced_block.hpp │ │ │ │ │ ├── gcc_hppa_fenced_block.hpp │ │ │ │ │ ├── gcc_sync_fenced_block.hpp │ │ │ │ │ ├── gcc_x86_fenced_block.hpp │ │ │ │ │ ├── handler_alloc_helpers.hpp │ │ │ │ │ ├── handler_cont_helpers.hpp │ │ │ │ │ ├── handler_invoke_helpers.hpp │ │ │ │ │ ├── handler_tracking.hpp │ │ │ │ │ ├── handler_type_requirements.hpp │ │ │ │ │ ├── hash_map.hpp │ │ │ │ │ ├── impl │ │ │ │ │ │ ├── descriptor_ops.ipp │ │ │ │ │ │ ├── dev_poll_reactor.hpp │ │ │ │ │ │ ├── dev_poll_reactor.ipp │ │ │ │ │ │ ├── epoll_reactor.hpp │ │ │ │ │ │ ├── epoll_reactor.ipp │ │ │ │ │ │ ├── eventfd_select_interrupter.ipp │ │ │ │ │ │ ├── handler_tracking.ipp │ │ │ │ │ │ ├── kqueue_reactor.hpp │ │ │ │ │ │ ├── kqueue_reactor.ipp │ │ │ │ │ │ ├── pipe_select_interrupter.ipp │ │ │ │ │ │ ├── posix_event.ipp │ │ │ │ │ │ ├── posix_mutex.ipp │ │ │ │ │ │ ├── posix_thread.ipp │ │ │ │ │ │ ├── posix_tss_ptr.ipp │ │ │ │ │ │ ├── reactive_descriptor_service.ipp │ │ │ │ │ │ ├── reactive_serial_port_service.ipp │ │ │ │ │ │ ├── reactive_socket_service_base.ipp │ │ │ │ │ │ ├── resolver_service_base.ipp │ │ │ │ │ │ ├── select_reactor.hpp │ │ │ │ │ │ ├── select_reactor.ipp │ │ │ │ │ │ ├── service_registry.hpp │ │ │ │ │ │ ├── service_registry.ipp │ │ │ │ │ │ ├── signal_set_service.ipp │ │ │ │ │ │ ├── socket_ops.ipp │ │ │ │ │ │ ├── socket_select_interrupter.ipp │ │ │ │ │ │ ├── strand_service.hpp │ │ │ │ │ │ ├── strand_service.ipp │ │ │ │ │ │ ├── task_io_service.hpp │ │ │ │ │ │ ├── task_io_service.ipp │ │ │ │ │ │ ├── throw_error.ipp │ │ │ │ │ │ ├── timer_queue_ptime.ipp │ │ │ │ │ │ ├── timer_queue_set.ipp │ │ │ │ │ │ ├── win_event.ipp │ │ │ │ │ │ ├── win_iocp_handle_service.ipp │ │ │ │ │ │ ├── win_iocp_io_service.hpp │ │ │ │ │ │ ├── win_iocp_io_service.ipp │ │ │ │ │ │ ├── win_iocp_serial_port_service.ipp │ │ │ │ │ │ ├── win_iocp_socket_service_base.ipp │ │ │ │ │ │ ├── win_mutex.ipp │ │ │ │ │ │ ├── win_object_handle_service.ipp │ │ │ │ │ │ ├── win_static_mutex.ipp │ │ │ │ │ │ ├── win_thread.ipp │ │ │ │ │ │ ├── win_tss_ptr.ipp │ │ │ │ │ │ └── winsock_init.ipp │ │ │ │ │ ├── io_control.hpp │ │ │ │ │ ├── keyword_tss_ptr.hpp │ │ │ │ │ ├── kqueue_reactor.hpp │ │ │ │ │ ├── kqueue_reactor_fwd.hpp │ │ │ │ │ ├── limits.hpp │ │ │ │ │ ├── local_free_on_block_exit.hpp │ │ │ │ │ ├── macos_fenced_block.hpp │ │ │ │ │ ├── mutex.hpp │ │ │ │ │ ├── noncopyable.hpp │ │ │ │ │ ├── null_event.hpp │ │ │ │ │ ├── null_fenced_block.hpp │ │ │ │ │ ├── null_mutex.hpp │ │ │ │ │ ├── null_signal_blocker.hpp │ │ │ │ │ ├── null_static_mutex.hpp │ │ │ │ │ ├── null_thread.hpp │ │ │ │ │ ├── null_tss_ptr.hpp │ │ │ │ │ ├── object_pool.hpp │ │ │ │ │ ├── old_win_sdk_compat.hpp │ │ │ │ │ ├── op_queue.hpp │ │ │ │ │ ├── operation.hpp │ │ │ │ │ ├── pipe_select_interrupter.hpp │ │ │ │ │ ├── pop_options.hpp │ │ │ │ │ ├── posix_event.hpp │ │ │ │ │ ├── posix_fd_set_adapter.hpp │ │ │ │ │ ├── posix_mutex.hpp │ │ │ │ │ ├── posix_signal_blocker.hpp │ │ │ │ │ ├── posix_static_mutex.hpp │ │ │ │ │ ├── posix_thread.hpp │ │ │ │ │ ├── posix_tss_ptr.hpp │ │ │ │ │ ├── push_options.hpp │ │ │ │ │ ├── reactive_descriptor_service.hpp │ │ │ │ │ ├── reactive_null_buffers_op.hpp │ │ │ │ │ ├── reactive_serial_port_service.hpp │ │ │ │ │ ├── reactive_socket_accept_op.hpp │ │ │ │ │ ├── reactive_socket_connect_op.hpp │ │ │ │ │ ├── reactive_socket_recv_op.hpp │ │ │ │ │ ├── reactive_socket_recvfrom_op.hpp │ │ │ │ │ ├── reactive_socket_recvmsg_op.hpp │ │ │ │ │ ├── reactive_socket_send_op.hpp │ │ │ │ │ ├── reactive_socket_sendto_op.hpp │ │ │ │ │ ├── reactive_socket_service.hpp │ │ │ │ │ ├── reactive_socket_service_base.hpp │ │ │ │ │ ├── reactor.hpp │ │ │ │ │ ├── reactor_fwd.hpp │ │ │ │ │ ├── reactor_op.hpp │ │ │ │ │ ├── reactor_op_queue.hpp │ │ │ │ │ ├── regex_fwd.hpp │ │ │ │ │ ├── resolve_endpoint_op.hpp │ │ │ │ │ ├── resolve_op.hpp │ │ │ │ │ ├── resolver_service.hpp │ │ │ │ │ ├── resolver_service_base.hpp │ │ │ │ │ ├── scoped_lock.hpp │ │ │ │ │ ├── scoped_ptr.hpp │ │ │ │ │ ├── select_interrupter.hpp │ │ │ │ │ ├── select_reactor.hpp │ │ │ │ │ ├── select_reactor_fwd.hpp │ │ │ │ │ ├── service_registry.hpp │ │ │ │ │ ├── service_registry_fwd.hpp │ │ │ │ │ ├── shared_ptr.hpp │ │ │ │ │ ├── signal_blocker.hpp │ │ │ │ │ ├── signal_handler.hpp │ │ │ │ │ ├── signal_init.hpp │ │ │ │ │ ├── signal_op.hpp │ │ │ │ │ ├── signal_set_service.hpp │ │ │ │ │ ├── socket_holder.hpp │ │ │ │ │ ├── socket_ops.hpp │ │ │ │ │ ├── socket_option.hpp │ │ │ │ │ ├── socket_select_interrupter.hpp │ │ │ │ │ ├── socket_types.hpp │ │ │ │ │ ├── solaris_fenced_block.hpp │ │ │ │ │ ├── static_mutex.hpp │ │ │ │ │ ├── strand_service.hpp │ │ │ │ │ ├── task_io_service.hpp │ │ │ │ │ ├── task_io_service_fwd.hpp │ │ │ │ │ ├── task_io_service_operation.hpp │ │ │ │ │ ├── task_io_service_thread_info.hpp │ │ │ │ │ ├── thread.hpp │ │ │ │ │ ├── thread_info_base.hpp │ │ │ │ │ ├── throw_error.hpp │ │ │ │ │ ├── throw_exception.hpp │ │ │ │ │ ├── timer_queue.hpp │ │ │ │ │ ├── timer_queue_base.hpp │ │ │ │ │ ├── timer_queue_fwd.hpp │ │ │ │ │ ├── timer_queue_ptime.hpp │ │ │ │ │ ├── timer_queue_set.hpp │ │ │ │ │ ├── timer_scheduler.hpp │ │ │ │ │ ├── timer_scheduler_fwd.hpp │ │ │ │ │ ├── tss_ptr.hpp │ │ │ │ │ ├── type_traits.hpp │ │ │ │ │ ├── wait_handler.hpp │ │ │ │ │ ├── wait_op.hpp │ │ │ │ │ ├── weak_ptr.hpp │ │ │ │ │ ├── win_event.hpp │ │ │ │ │ ├── win_fd_set_adapter.hpp │ │ │ │ │ ├── win_fenced_block.hpp │ │ │ │ │ ├── win_iocp_handle_read_op.hpp │ │ │ │ │ ├── win_iocp_handle_service.hpp │ │ │ │ │ ├── win_iocp_handle_write_op.hpp │ │ │ │ │ ├── win_iocp_io_service.hpp │ │ │ │ │ ├── win_iocp_io_service_fwd.hpp │ │ │ │ │ ├── win_iocp_null_buffers_op.hpp │ │ │ │ │ ├── win_iocp_operation.hpp │ │ │ │ │ ├── win_iocp_overlapped_op.hpp │ │ │ │ │ ├── win_iocp_overlapped_ptr.hpp │ │ │ │ │ ├── win_iocp_serial_port_service.hpp │ │ │ │ │ ├── win_iocp_socket_accept_op.hpp │ │ │ │ │ ├── win_iocp_socket_recv_op.hpp │ │ │ │ │ ├── win_iocp_socket_recvfrom_op.hpp │ │ │ │ │ ├── win_iocp_socket_recvmsg_op.hpp │ │ │ │ │ ├── win_iocp_socket_send_op.hpp │ │ │ │ │ ├── win_iocp_socket_service.hpp │ │ │ │ │ ├── win_iocp_socket_service_base.hpp │ │ │ │ │ ├── win_iocp_thread_info.hpp │ │ │ │ │ ├── win_mutex.hpp │ │ │ │ │ ├── win_object_handle_service.hpp │ │ │ │ │ ├── win_static_mutex.hpp │ │ │ │ │ ├── win_thread.hpp │ │ │ │ │ ├── win_tss_ptr.hpp │ │ │ │ │ ├── wince_thread.hpp │ │ │ │ │ ├── winsock_init.hpp │ │ │ │ │ └── wrapped_handler.hpp │ │ │ │ ├── error.hpp │ │ │ │ ├── generic │ │ │ │ │ ├── basic_endpoint.hpp │ │ │ │ │ ├── datagram_protocol.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── endpoint.hpp │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ └── endpoint.ipp │ │ │ │ │ ├── raw_protocol.hpp │ │ │ │ │ ├── seq_packet_protocol.hpp │ │ │ │ │ └── stream_protocol.hpp │ │ │ │ ├── handler_alloc_hook.hpp │ │ │ │ ├── handler_continuation_hook.hpp │ │ │ │ ├── handler_invoke_hook.hpp │ │ │ │ ├── handler_type.hpp │ │ │ │ ├── high_resolution_timer.hpp │ │ │ │ ├── impl │ │ │ │ │ ├── connect.hpp │ │ │ │ │ ├── error.ipp │ │ │ │ │ ├── handler_alloc_hook.ipp │ │ │ │ │ ├── io_service.hpp │ │ │ │ │ ├── io_service.ipp │ │ │ │ │ ├── read.hpp │ │ │ │ │ ├── read_at.hpp │ │ │ │ │ ├── read_until.hpp │ │ │ │ │ ├── serial_port_base.hpp │ │ │ │ │ ├── serial_port_base.ipp │ │ │ │ │ ├── spawn.hpp │ │ │ │ │ ├── src.cpp │ │ │ │ │ ├── src.hpp │ │ │ │ │ ├── use_future.hpp │ │ │ │ │ ├── write.hpp │ │ │ │ │ └── write_at.hpp │ │ │ │ ├── io_service.hpp │ │ │ │ ├── ip │ │ │ │ │ ├── address.hpp │ │ │ │ │ ├── address_v4.hpp │ │ │ │ │ ├── address_v6.hpp │ │ │ │ │ ├── basic_endpoint.hpp │ │ │ │ │ ├── basic_resolver.hpp │ │ │ │ │ ├── basic_resolver_entry.hpp │ │ │ │ │ ├── basic_resolver_iterator.hpp │ │ │ │ │ ├── basic_resolver_query.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── endpoint.hpp │ │ │ │ │ │ ├── impl │ │ │ │ │ │ │ └── endpoint.ipp │ │ │ │ │ │ └── socket_option.hpp │ │ │ │ │ ├── host_name.hpp │ │ │ │ │ ├── icmp.hpp │ │ │ │ │ ├── impl │ │ │ │ │ │ ├── address.hpp │ │ │ │ │ │ ├── address.ipp │ │ │ │ │ │ ├── address_v4.hpp │ │ │ │ │ │ ├── address_v4.ipp │ │ │ │ │ │ ├── address_v6.hpp │ │ │ │ │ │ ├── address_v6.ipp │ │ │ │ │ │ ├── basic_endpoint.hpp │ │ │ │ │ │ └── host_name.ipp │ │ │ │ │ ├── multicast.hpp │ │ │ │ │ ├── resolver_query_base.hpp │ │ │ │ │ ├── resolver_service.hpp │ │ │ │ │ ├── tcp.hpp │ │ │ │ │ ├── udp.hpp │ │ │ │ │ ├── unicast.hpp │ │ │ │ │ └── v6_only.hpp │ │ │ │ ├── is_read_buffered.hpp │ │ │ │ ├── is_write_buffered.hpp │ │ │ │ ├── local │ │ │ │ │ ├── basic_endpoint.hpp │ │ │ │ │ ├── connect_pair.hpp │ │ │ │ │ ├── datagram_protocol.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── endpoint.hpp │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ └── endpoint.ipp │ │ │ │ │ └── stream_protocol.hpp │ │ │ │ ├── placeholders.hpp │ │ │ │ ├── posix │ │ │ │ │ ├── basic_descriptor.hpp │ │ │ │ │ ├── basic_stream_descriptor.hpp │ │ │ │ │ ├── descriptor_base.hpp │ │ │ │ │ ├── stream_descriptor.hpp │ │ │ │ │ └── stream_descriptor_service.hpp │ │ │ │ ├── raw_socket_service.hpp │ │ │ │ ├── read.hpp │ │ │ │ ├── read_at.hpp │ │ │ │ ├── read_until.hpp │ │ │ │ ├── seq_packet_socket_service.hpp │ │ │ │ ├── serial_port.hpp │ │ │ │ ├── serial_port_base.hpp │ │ │ │ ├── serial_port_service.hpp │ │ │ │ ├── signal_set.hpp │ │ │ │ ├── signal_set_service.hpp │ │ │ │ ├── socket_acceptor_service.hpp │ │ │ │ ├── socket_base.hpp │ │ │ │ ├── spawn.hpp │ │ │ │ ├── ssl.hpp │ │ │ │ ├── ssl │ │ │ │ │ ├── basic_context.hpp │ │ │ │ │ ├── context.hpp │ │ │ │ │ ├── context_base.hpp │ │ │ │ │ ├── context_service.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── buffered_handshake_op.hpp │ │ │ │ │ │ ├── engine.hpp │ │ │ │ │ │ ├── handshake_op.hpp │ │ │ │ │ │ ├── impl │ │ │ │ │ │ │ ├── engine.ipp │ │ │ │ │ │ │ └── openssl_init.ipp │ │ │ │ │ │ ├── io.hpp │ │ │ │ │ │ ├── openssl_init.hpp │ │ │ │ │ │ ├── openssl_types.hpp │ │ │ │ │ │ ├── password_callback.hpp │ │ │ │ │ │ ├── read_op.hpp │ │ │ │ │ │ ├── shutdown_op.hpp │ │ │ │ │ │ ├── stream_core.hpp │ │ │ │ │ │ ├── verify_callback.hpp │ │ │ │ │ │ └── write_op.hpp │ │ │ │ │ ├── error.hpp │ │ │ │ │ ├── impl │ │ │ │ │ │ ├── context.hpp │ │ │ │ │ │ ├── context.ipp │ │ │ │ │ │ ├── error.ipp │ │ │ │ │ │ ├── rfc2818_verification.ipp │ │ │ │ │ │ └── src.hpp │ │ │ │ │ ├── old │ │ │ │ │ │ ├── basic_context.hpp │ │ │ │ │ │ ├── context_service.hpp │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ ├── openssl_context_service.hpp │ │ │ │ │ │ │ ├── openssl_operation.hpp │ │ │ │ │ │ │ └── openssl_stream_service.hpp │ │ │ │ │ │ ├── stream.hpp │ │ │ │ │ │ └── stream_service.hpp │ │ │ │ │ ├── rfc2818_verification.hpp │ │ │ │ │ ├── stream.hpp │ │ │ │ │ ├── stream_base.hpp │ │ │ │ │ ├── stream_service.hpp │ │ │ │ │ ├── verify_context.hpp │ │ │ │ │ └── verify_mode.hpp │ │ │ │ ├── steady_timer.hpp │ │ │ │ ├── strand.hpp │ │ │ │ ├── stream_socket_service.hpp │ │ │ │ ├── streambuf.hpp │ │ │ │ ├── system_timer.hpp │ │ │ │ ├── time_traits.hpp │ │ │ │ ├── unyield.hpp │ │ │ │ ├── use_future.hpp │ │ │ │ ├── version.hpp │ │ │ │ ├── wait_traits.hpp │ │ │ │ ├── waitable_timer_service.hpp │ │ │ │ ├── windows │ │ │ │ │ ├── basic_handle.hpp │ │ │ │ │ ├── basic_object_handle.hpp │ │ │ │ │ ├── basic_random_access_handle.hpp │ │ │ │ │ ├── basic_stream_handle.hpp │ │ │ │ │ ├── object_handle.hpp │ │ │ │ │ ├── object_handle_service.hpp │ │ │ │ │ ├── overlapped_ptr.hpp │ │ │ │ │ ├── random_access_handle.hpp │ │ │ │ │ ├── random_access_handle_service.hpp │ │ │ │ │ ├── stream_handle.hpp │ │ │ │ │ └── stream_handle_service.hpp │ │ │ │ ├── write.hpp │ │ │ │ ├── write_at.hpp │ │ │ │ └── yield.hpp │ │ │ ├── assert.hpp │ │ │ ├── assign.hpp │ │ │ ├── assign │ │ │ │ ├── assignment_exception.hpp │ │ │ │ ├── list_inserter.hpp │ │ │ │ ├── list_of.hpp │ │ │ │ ├── ptr_list_inserter.hpp │ │ │ │ ├── ptr_list_of.hpp │ │ │ │ ├── ptr_map_inserter.hpp │ │ │ │ ├── std.hpp │ │ │ │ └── std │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── queue.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── slist.hpp │ │ │ │ │ ├── stack.hpp │ │ │ │ │ └── vector.hpp │ │ │ ├── atomic.hpp │ │ │ ├── atomic │ │ │ │ ├── atomic.hpp │ │ │ │ └── detail │ │ │ │ │ ├── base.hpp │ │ │ │ │ ├── cas32strong.hpp │ │ │ │ │ ├── cas32weak.hpp │ │ │ │ │ ├── cas64strong.hpp │ │ │ │ │ ├── config.hpp │ │ │ │ │ ├── gcc-alpha.hpp │ │ │ │ │ ├── gcc-armv6plus.hpp │ │ │ │ │ ├── gcc-cas.hpp │ │ │ │ │ ├── gcc-ppc.hpp │ │ │ │ │ ├── gcc-sparcv9.hpp │ │ │ │ │ ├── gcc-x86.hpp │ │ │ │ │ ├── generic-cas.hpp │ │ │ │ │ ├── interlocked.hpp │ │ │ │ │ ├── linux-arm.hpp │ │ │ │ │ ├── lockpool.hpp │ │ │ │ │ ├── platform.hpp │ │ │ │ │ ├── type-classification.hpp │ │ │ │ │ └── windows.hpp │ │ │ ├── bimap.hpp │ │ │ ├── bimap │ │ │ │ ├── bimap.hpp │ │ │ │ ├── container_adaptor │ │ │ │ │ ├── associative_container_adaptor.hpp │ │ │ │ │ ├── container_adaptor.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── comparison_adaptor.hpp │ │ │ │ │ │ ├── functor_bag.hpp │ │ │ │ │ │ ├── identity_converters.hpp │ │ │ │ │ │ ├── key_extractor.hpp │ │ │ │ │ │ └── non_unique_container_helper.hpp │ │ │ │ │ ├── list_adaptor.hpp │ │ │ │ │ ├── list_map_adaptor.hpp │ │ │ │ │ ├── map_adaptor.hpp │ │ │ │ │ ├── multimap_adaptor.hpp │ │ │ │ │ ├── multiset_adaptor.hpp │ │ │ │ │ ├── ordered_associative_container_adaptor.hpp │ │ │ │ │ ├── sequence_container_adaptor.hpp │ │ │ │ │ ├── set_adaptor.hpp │ │ │ │ │ ├── support │ │ │ │ │ │ └── iterator_facade_converters.hpp │ │ │ │ │ ├── unordered_associative_container_adaptor.hpp │ │ │ │ │ ├── unordered_map_adaptor.hpp │ │ │ │ │ ├── unordered_multimap_adaptor.hpp │ │ │ │ │ ├── unordered_multiset_adaptor.hpp │ │ │ │ │ ├── unordered_set_adaptor.hpp │ │ │ │ │ ├── vector_adaptor.hpp │ │ │ │ │ └── vector_map_adaptor.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── bimap_core.hpp │ │ │ │ │ ├── concept_tags.hpp │ │ │ │ │ ├── debug │ │ │ │ │ │ └── static_error.hpp │ │ │ │ │ ├── generate_index_binder.hpp │ │ │ │ │ ├── generate_relation_binder.hpp │ │ │ │ │ ├── generate_view_binder.hpp │ │ │ │ │ ├── is_set_type_of.hpp │ │ │ │ │ ├── manage_additional_parameters.hpp │ │ │ │ │ ├── manage_bimap_key.hpp │ │ │ │ │ ├── map_view_base.hpp │ │ │ │ │ ├── map_view_iterator.hpp │ │ │ │ │ ├── modifier_adaptor.hpp │ │ │ │ │ ├── non_unique_views_helper.hpp │ │ │ │ │ ├── set_view_base.hpp │ │ │ │ │ ├── set_view_iterator.hpp │ │ │ │ │ ├── test │ │ │ │ │ │ └── check_metadata.hpp │ │ │ │ │ └── user_interface_config.hpp │ │ │ │ ├── list_of.hpp │ │ │ │ ├── multiset_of.hpp │ │ │ │ ├── property_map │ │ │ │ │ ├── set_support.hpp │ │ │ │ │ └── unordered_set_support.hpp │ │ │ │ ├── relation │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── access_builder.hpp │ │ │ │ │ │ ├── metadata_access_builder.hpp │ │ │ │ │ │ ├── mutant.hpp │ │ │ │ │ │ ├── static_access_builder.hpp │ │ │ │ │ │ └── to_mutable_relation_functor.hpp │ │ │ │ │ ├── member_at.hpp │ │ │ │ │ ├── mutant_relation.hpp │ │ │ │ │ ├── pair_layout.hpp │ │ │ │ │ ├── structured_pair.hpp │ │ │ │ │ ├── support │ │ │ │ │ │ ├── data_extractor.hpp │ │ │ │ │ │ ├── get.hpp │ │ │ │ │ │ ├── get_pair_functor.hpp │ │ │ │ │ │ ├── is_tag_of_member_at.hpp │ │ │ │ │ │ ├── member_with_tag.hpp │ │ │ │ │ │ ├── opposite_tag.hpp │ │ │ │ │ │ ├── pair_by.hpp │ │ │ │ │ │ ├── pair_type_by.hpp │ │ │ │ │ │ └── value_type_of.hpp │ │ │ │ │ └── symmetrical_base.hpp │ │ │ │ ├── set_of.hpp │ │ │ │ ├── support │ │ │ │ │ ├── data_type_by.hpp │ │ │ │ │ ├── iterator_type_by.hpp │ │ │ │ │ ├── key_type_by.hpp │ │ │ │ │ ├── lambda.hpp │ │ │ │ │ ├── map_by.hpp │ │ │ │ │ ├── map_type_by.hpp │ │ │ │ │ └── value_type_by.hpp │ │ │ │ ├── tags │ │ │ │ │ ├── support │ │ │ │ │ │ ├── apply_to_value_type.hpp │ │ │ │ │ │ ├── default_tagged.hpp │ │ │ │ │ │ ├── is_tagged.hpp │ │ │ │ │ │ ├── overwrite_tagged.hpp │ │ │ │ │ │ ├── tag_of.hpp │ │ │ │ │ │ └── value_type_of.hpp │ │ │ │ │ └── tagged.hpp │ │ │ │ ├── unconstrained_set_of.hpp │ │ │ │ ├── unordered_multiset_of.hpp │ │ │ │ ├── unordered_set_of.hpp │ │ │ │ ├── vector_of.hpp │ │ │ │ └── views │ │ │ │ │ ├── list_map_view.hpp │ │ │ │ │ ├── list_set_view.hpp │ │ │ │ │ ├── map_view.hpp │ │ │ │ │ ├── multimap_view.hpp │ │ │ │ │ ├── multiset_view.hpp │ │ │ │ │ ├── set_view.hpp │ │ │ │ │ ├── unconstrained_map_view.hpp │ │ │ │ │ ├── unconstrained_set_view.hpp │ │ │ │ │ ├── unordered_map_view.hpp │ │ │ │ │ ├── unordered_multimap_view.hpp │ │ │ │ │ ├── unordered_multiset_view.hpp │ │ │ │ │ ├── unordered_set_view.hpp │ │ │ │ │ ├── vector_map_view.hpp │ │ │ │ │ └── vector_set_view.hpp │ │ │ ├── bind.hpp │ │ │ ├── bind │ │ │ │ ├── apply.hpp │ │ │ │ ├── arg.hpp │ │ │ │ ├── bind.hpp │ │ │ │ ├── bind_cc.hpp │ │ │ │ ├── bind_mf2_cc.hpp │ │ │ │ ├── bind_mf_cc.hpp │ │ │ │ ├── bind_template.hpp │ │ │ │ ├── make_adaptable.hpp │ │ │ │ ├── mem_fn.hpp │ │ │ │ ├── mem_fn_cc.hpp │ │ │ │ ├── mem_fn_template.hpp │ │ │ │ ├── mem_fn_vw.hpp │ │ │ │ ├── placeholders.hpp │ │ │ │ ├── protect.hpp │ │ │ │ └── storage.hpp │ │ │ ├── blank.hpp │ │ │ ├── blank_fwd.hpp │ │ │ ├── call_traits.hpp │ │ │ ├── cast.hpp │ │ │ ├── cerrno.hpp │ │ │ ├── checked_delete.hpp │ │ │ ├── chrono.hpp │ │ │ ├── chrono │ │ │ │ ├── ceil.hpp │ │ │ │ ├── chrono.hpp │ │ │ │ ├── chrono_io.hpp │ │ │ │ ├── clock_string.hpp │ │ │ │ ├── config.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── inlined │ │ │ │ │ │ ├── chrono.hpp │ │ │ │ │ │ ├── mac │ │ │ │ │ │ │ ├── chrono.hpp │ │ │ │ │ │ │ ├── process_cpu_clocks.hpp │ │ │ │ │ │ │ └── thread_clock.hpp │ │ │ │ │ │ ├── posix │ │ │ │ │ │ │ ├── chrono.hpp │ │ │ │ │ │ │ ├── process_cpu_clocks.hpp │ │ │ │ │ │ │ └── thread_clock.hpp │ │ │ │ │ │ ├── process_cpu_clocks.hpp │ │ │ │ │ │ ├── thread_clock.hpp │ │ │ │ │ │ └── win │ │ │ │ │ │ │ ├── chrono.hpp │ │ │ │ │ │ │ ├── process_cpu_clocks.hpp │ │ │ │ │ │ │ └── thread_clock.hpp │ │ │ │ │ ├── is_evenly_divisible_by.hpp │ │ │ │ │ ├── no_warning │ │ │ │ │ │ └── signed_unsigned_cmp.hpp │ │ │ │ │ ├── scan_keyword.hpp │ │ │ │ │ ├── static_assert.hpp │ │ │ │ │ └── system.hpp │ │ │ │ ├── duration.hpp │ │ │ │ ├── floor.hpp │ │ │ │ ├── include.hpp │ │ │ │ ├── io │ │ │ │ │ ├── duration_get.hpp │ │ │ │ │ ├── duration_io.hpp │ │ │ │ │ ├── duration_put.hpp │ │ │ │ │ ├── duration_style.hpp │ │ │ │ │ ├── duration_units.hpp │ │ │ │ │ ├── ios_base_state.hpp │ │ │ │ │ ├── time_point_get.hpp │ │ │ │ │ ├── time_point_io.hpp │ │ │ │ │ ├── time_point_put.hpp │ │ │ │ │ ├── time_point_units.hpp │ │ │ │ │ ├── timezone.hpp │ │ │ │ │ └── utility │ │ │ │ │ │ ├── ios_base_state_ptr.hpp │ │ │ │ │ │ ├── manip_base.hpp │ │ │ │ │ │ └── to_string.hpp │ │ │ │ ├── io_v1 │ │ │ │ │ └── chrono_io.hpp │ │ │ │ ├── process_cpu_clocks.hpp │ │ │ │ ├── round.hpp │ │ │ │ ├── system_clocks.hpp │ │ │ │ ├── thread_clock.hpp │ │ │ │ ├── time_point.hpp │ │ │ │ └── typeof │ │ │ │ │ └── boost │ │ │ │ │ ├── chrono │ │ │ │ │ └── chrono.hpp │ │ │ │ │ └── ratio.hpp │ │ │ ├── circular_buffer.hpp │ │ │ ├── circular_buffer │ │ │ │ ├── base.hpp │ │ │ │ ├── debug.hpp │ │ │ │ ├── details.hpp │ │ │ │ └── space_optimized.hpp │ │ │ ├── circular_buffer_fwd.hpp │ │ │ ├── compatibility │ │ │ │ └── cpp_c_headers │ │ │ │ │ ├── cassert │ │ │ │ │ ├── cctype │ │ │ │ │ ├── cerrno │ │ │ │ │ ├── cfloat │ │ │ │ │ ├── climits │ │ │ │ │ ├── clocale │ │ │ │ │ ├── cmath │ │ │ │ │ ├── csetjmp │ │ │ │ │ ├── csignal │ │ │ │ │ ├── cstdarg │ │ │ │ │ ├── cstddef │ │ │ │ │ ├── cstdio │ │ │ │ │ ├── cstdlib │ │ │ │ │ ├── cstring │ │ │ │ │ ├── ctime │ │ │ │ │ ├── cwchar │ │ │ │ │ └── cwctype │ │ │ ├── compressed_pair.hpp │ │ │ ├── concept │ │ │ │ ├── assert.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── backward_compatibility.hpp │ │ │ │ │ ├── borland.hpp │ │ │ │ │ ├── concept_def.hpp │ │ │ │ │ ├── concept_undef.hpp │ │ │ │ │ ├── general.hpp │ │ │ │ │ ├── has_constraints.hpp │ │ │ │ │ └── msvc.hpp │ │ │ │ ├── requires.hpp │ │ │ │ └── usage.hpp │ │ │ ├── concept_archetype.hpp │ │ │ ├── concept_check.hpp │ │ │ ├── concept_check │ │ │ │ ├── borland.hpp │ │ │ │ ├── general.hpp │ │ │ │ ├── has_constraints.hpp │ │ │ │ └── msvc.hpp │ │ │ ├── config.hpp │ │ │ ├── config │ │ │ │ ├── abi │ │ │ │ │ ├── borland_prefix.hpp │ │ │ │ │ ├── borland_suffix.hpp │ │ │ │ │ ├── msvc_prefix.hpp │ │ │ │ │ └── msvc_suffix.hpp │ │ │ │ ├── abi_prefix.hpp │ │ │ │ ├── abi_suffix.hpp │ │ │ │ ├── auto_link.hpp │ │ │ │ ├── compiler │ │ │ │ │ ├── borland.hpp │ │ │ │ │ ├── clang.hpp │ │ │ │ │ ├── codegear.hpp │ │ │ │ │ ├── comeau.hpp │ │ │ │ │ ├── common_edg.hpp │ │ │ │ │ ├── compaq_cxx.hpp │ │ │ │ │ ├── cray.hpp │ │ │ │ │ ├── digitalmars.hpp │ │ │ │ │ ├── gcc.hpp │ │ │ │ │ ├── gcc_xml.hpp │ │ │ │ │ ├── greenhills.hpp │ │ │ │ │ ├── hp_acc.hpp │ │ │ │ │ ├── intel.hpp │ │ │ │ │ ├── kai.hpp │ │ │ │ │ ├── metrowerks.hpp │ │ │ │ │ ├── mpw.hpp │ │ │ │ │ ├── nvcc.hpp │ │ │ │ │ ├── pathscale.hpp │ │ │ │ │ ├── pgi.hpp │ │ │ │ │ ├── sgi_mipspro.hpp │ │ │ │ │ ├── sunpro_cc.hpp │ │ │ │ │ ├── vacpp.hpp │ │ │ │ │ └── visualc.hpp │ │ │ │ ├── no_tr1 │ │ │ │ │ ├── cmath.hpp │ │ │ │ │ ├── complex.hpp │ │ │ │ │ ├── functional.hpp │ │ │ │ │ ├── memory.hpp │ │ │ │ │ └── utility.hpp │ │ │ │ ├── platform │ │ │ │ │ ├── aix.hpp │ │ │ │ │ ├── amigaos.hpp │ │ │ │ │ ├── beos.hpp │ │ │ │ │ ├── bsd.hpp │ │ │ │ │ ├── cray.hpp │ │ │ │ │ ├── cygwin.hpp │ │ │ │ │ ├── hpux.hpp │ │ │ │ │ ├── irix.hpp │ │ │ │ │ ├── linux.hpp │ │ │ │ │ ├── macos.hpp │ │ │ │ │ ├── qnxnto.hpp │ │ │ │ │ ├── solaris.hpp │ │ │ │ │ ├── symbian.hpp │ │ │ │ │ ├── vms.hpp │ │ │ │ │ ├── vxworks.hpp │ │ │ │ │ └── win32.hpp │ │ │ │ ├── posix_features.hpp │ │ │ │ ├── requires_threads.hpp │ │ │ │ ├── select_compiler_config.hpp │ │ │ │ ├── select_platform_config.hpp │ │ │ │ ├── select_stdlib_config.hpp │ │ │ │ ├── stdlib │ │ │ │ │ ├── dinkumware.hpp │ │ │ │ │ ├── libcomo.hpp │ │ │ │ │ ├── libcpp.hpp │ │ │ │ │ ├── libstdcpp3.hpp │ │ │ │ │ ├── modena.hpp │ │ │ │ │ ├── msl.hpp │ │ │ │ │ ├── roguewave.hpp │ │ │ │ │ ├── sgi.hpp │ │ │ │ │ ├── stlport.hpp │ │ │ │ │ └── vacpp.hpp │ │ │ │ ├── suffix.hpp │ │ │ │ ├── user.hpp │ │ │ │ └── warning_disable.hpp │ │ │ ├── container │ │ │ │ ├── allocator_traits.hpp │ │ │ │ ├── container_fwd.hpp │ │ │ │ ├── deque.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── adaptive_node_pool_impl.hpp │ │ │ │ │ ├── advanced_insert_int.hpp │ │ │ │ │ ├── algorithms.hpp │ │ │ │ │ ├── allocation_type.hpp │ │ │ │ │ ├── allocator_version_traits.hpp │ │ │ │ │ ├── config_begin.hpp │ │ │ │ │ ├── config_end.hpp │ │ │ │ │ ├── destroyers.hpp │ │ │ │ │ ├── flat_tree.hpp │ │ │ │ │ ├── function_detector.hpp │ │ │ │ │ ├── iterators.hpp │ │ │ │ │ ├── math_functions.hpp │ │ │ │ │ ├── memory_util.hpp │ │ │ │ │ ├── mpl.hpp │ │ │ │ │ ├── multiallocation_chain.hpp │ │ │ │ │ ├── node_alloc_holder.hpp │ │ │ │ │ ├── node_pool_impl.hpp │ │ │ │ │ ├── pair.hpp │ │ │ │ │ ├── pool_common.hpp │ │ │ │ │ ├── preprocessor.hpp │ │ │ │ │ ├── transform_iterator.hpp │ │ │ │ │ ├── tree.hpp │ │ │ │ │ ├── type_traits.hpp │ │ │ │ │ ├── utilities.hpp │ │ │ │ │ ├── value_init.hpp │ │ │ │ │ ├── variadic_templates_tools.hpp │ │ │ │ │ ├── version_type.hpp │ │ │ │ │ └── workaround.hpp │ │ │ │ ├── flat_map.hpp │ │ │ │ ├── flat_set.hpp │ │ │ │ ├── list.hpp │ │ │ │ ├── map.hpp │ │ │ │ ├── scoped_allocator.hpp │ │ │ │ ├── scoped_allocator_fwd.hpp │ │ │ │ ├── set.hpp │ │ │ │ ├── slist.hpp │ │ │ │ ├── stable_vector.hpp │ │ │ │ ├── static_vector.hpp │ │ │ │ ├── string.hpp │ │ │ │ ├── throw_exception.hpp │ │ │ │ └── vector.hpp │ │ │ ├── context │ │ │ │ ├── all.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── config.hpp │ │ │ │ │ ├── fcontext_arm.hpp │ │ │ │ │ ├── fcontext_i386.hpp │ │ │ │ │ ├── fcontext_i386_win.hpp │ │ │ │ │ ├── fcontext_mips.hpp │ │ │ │ │ ├── fcontext_ppc.hpp │ │ │ │ │ ├── fcontext_sparc.hpp │ │ │ │ │ ├── fcontext_x86_64.hpp │ │ │ │ │ └── fcontext_x86_64_win.hpp │ │ │ │ └── fcontext.hpp │ │ │ ├── coroutine │ │ │ │ ├── all.hpp │ │ │ │ ├── attributes.hpp │ │ │ │ ├── checkpoint.hpp │ │ │ │ ├── coroutine.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── config.hpp │ │ │ │ │ ├── coroutine_context.hpp │ │ │ │ │ ├── exceptions.hpp │ │ │ │ │ ├── flags.hpp │ │ │ │ │ ├── holder.hpp │ │ │ │ │ ├── param.hpp │ │ │ │ │ ├── segmented_stack_allocator.hpp │ │ │ │ │ └── standard_stack_allocator.hpp │ │ │ │ ├── flags.hpp │ │ │ │ ├── stack_allocator.hpp │ │ │ │ ├── stack_context.hpp │ │ │ │ ├── v1 │ │ │ │ │ ├── coroutine.hpp │ │ │ │ │ └── detail │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ ├── coroutine_base.hpp │ │ │ │ │ │ ├── coroutine_base_resume.hpp │ │ │ │ │ │ ├── coroutine_caller.hpp │ │ │ │ │ │ ├── coroutine_get.hpp │ │ │ │ │ │ ├── coroutine_object.hpp │ │ │ │ │ │ ├── coroutine_object_result_0.ipp │ │ │ │ │ │ ├── coroutine_object_result_1.ipp │ │ │ │ │ │ ├── coroutine_object_result_arity.ipp │ │ │ │ │ │ ├── coroutine_object_void_0.ipp │ │ │ │ │ │ ├── coroutine_object_void_1.ipp │ │ │ │ │ │ ├── coroutine_object_void_arity.ipp │ │ │ │ │ │ └── coroutine_op.hpp │ │ │ │ └── v2 │ │ │ │ │ ├── detail │ │ │ │ │ └── coroutine_object.hpp │ │ │ │ │ ├── pull_corotuine.hpp │ │ │ │ │ └── push_coroutine.hpp │ │ │ ├── crc.hpp │ │ │ ├── cregex.hpp │ │ │ ├── cstdint.hpp │ │ │ ├── cstdlib.hpp │ │ │ ├── current_function.hpp │ │ │ ├── date_time.hpp │ │ │ ├── date_time │ │ │ │ ├── adjust_functors.hpp │ │ │ │ ├── c_local_time_adjustor.hpp │ │ │ │ ├── c_time.hpp │ │ │ │ ├── compiler_config.hpp │ │ │ │ ├── constrained_value.hpp │ │ │ │ ├── date.hpp │ │ │ │ ├── date_clock_device.hpp │ │ │ │ ├── date_defs.hpp │ │ │ │ ├── date_duration.hpp │ │ │ │ ├── date_duration_types.hpp │ │ │ │ ├── date_facet.hpp │ │ │ │ ├── date_format_simple.hpp │ │ │ │ ├── date_formatting.hpp │ │ │ │ ├── date_formatting_limited.hpp │ │ │ │ ├── date_formatting_locales.hpp │ │ │ │ ├── date_generator_formatter.hpp │ │ │ │ ├── date_generator_parser.hpp │ │ │ │ ├── date_generators.hpp │ │ │ │ ├── date_iterator.hpp │ │ │ │ ├── date_names_put.hpp │ │ │ │ ├── date_parsing.hpp │ │ │ │ ├── dst_rules.hpp │ │ │ │ ├── dst_transition_generators.hpp │ │ │ │ ├── filetime_functions.hpp │ │ │ │ ├── format_date_parser.hpp │ │ │ │ ├── gregorian │ │ │ │ │ ├── conversion.hpp │ │ │ │ │ ├── formatters.hpp │ │ │ │ │ ├── formatters_limited.hpp │ │ │ │ │ ├── greg_calendar.hpp │ │ │ │ │ ├── greg_date.hpp │ │ │ │ │ ├── greg_day.hpp │ │ │ │ │ ├── greg_day_of_year.hpp │ │ │ │ │ ├── greg_duration.hpp │ │ │ │ │ ├── greg_duration_types.hpp │ │ │ │ │ ├── greg_facet.hpp │ │ │ │ │ ├── greg_month.hpp │ │ │ │ │ ├── greg_serialize.hpp │ │ │ │ │ ├── greg_weekday.hpp │ │ │ │ │ ├── greg_year.hpp │ │ │ │ │ ├── greg_ymd.hpp │ │ │ │ │ ├── gregorian.hpp │ │ │ │ │ ├── gregorian_io.hpp │ │ │ │ │ ├── gregorian_types.hpp │ │ │ │ │ └── parsers.hpp │ │ │ │ ├── gregorian_calendar.hpp │ │ │ │ ├── gregorian_calendar.ipp │ │ │ │ ├── int_adapter.hpp │ │ │ │ ├── iso_format.hpp │ │ │ │ ├── local_time │ │ │ │ │ ├── conversion.hpp │ │ │ │ │ ├── custom_time_zone.hpp │ │ │ │ │ ├── date_duration_operators.hpp │ │ │ │ │ ├── dst_transition_day_rules.hpp │ │ │ │ │ ├── local_date_time.hpp │ │ │ │ │ ├── local_time.hpp │ │ │ │ │ ├── local_time_io.hpp │ │ │ │ │ ├── local_time_types.hpp │ │ │ │ │ ├── posix_time_zone.hpp │ │ │ │ │ └── tz_database.hpp │ │ │ │ ├── local_time_adjustor.hpp │ │ │ │ ├── local_timezone_defs.hpp │ │ │ │ ├── locale_config.hpp │ │ │ │ ├── microsec_time_clock.hpp │ │ │ │ ├── parse_format_base.hpp │ │ │ │ ├── period.hpp │ │ │ │ ├── period_formatter.hpp │ │ │ │ ├── period_parser.hpp │ │ │ │ ├── posix_time │ │ │ │ │ ├── conversion.hpp │ │ │ │ │ ├── date_duration_operators.hpp │ │ │ │ │ ├── posix_time.hpp │ │ │ │ │ ├── posix_time_config.hpp │ │ │ │ │ ├── posix_time_duration.hpp │ │ │ │ │ ├── posix_time_io.hpp │ │ │ │ │ ├── posix_time_legacy_io.hpp │ │ │ │ │ ├── posix_time_system.hpp │ │ │ │ │ ├── posix_time_types.hpp │ │ │ │ │ ├── ptime.hpp │ │ │ │ │ ├── time_formatters.hpp │ │ │ │ │ ├── time_formatters_limited.hpp │ │ │ │ │ ├── time_parsers.hpp │ │ │ │ │ ├── time_period.hpp │ │ │ │ │ └── time_serialize.hpp │ │ │ │ ├── special_defs.hpp │ │ │ │ ├── special_values_formatter.hpp │ │ │ │ ├── special_values_parser.hpp │ │ │ │ ├── string_convert.hpp │ │ │ │ ├── string_parse_tree.hpp │ │ │ │ ├── strings_from_facet.hpp │ │ │ │ ├── time.hpp │ │ │ │ ├── time_clock.hpp │ │ │ │ ├── time_defs.hpp │ │ │ │ ├── time_duration.hpp │ │ │ │ ├── time_facet.hpp │ │ │ │ ├── time_formatting_streams.hpp │ │ │ │ ├── time_iterator.hpp │ │ │ │ ├── time_parsing.hpp │ │ │ │ ├── time_resolution_traits.hpp │ │ │ │ ├── time_system_counted.hpp │ │ │ │ ├── time_system_split.hpp │ │ │ │ ├── time_zone_base.hpp │ │ │ │ ├── time_zone_names.hpp │ │ │ │ ├── tz_db_base.hpp │ │ │ │ ├── wrapping_int.hpp │ │ │ │ └── year_month_day.hpp │ │ │ ├── detail │ │ │ │ ├── algorithm.hpp │ │ │ │ ├── allocator_utilities.hpp │ │ │ │ ├── atomic_count.hpp │ │ │ │ ├── atomic_redef_macros.hpp │ │ │ │ ├── atomic_undef_macros.hpp │ │ │ │ ├── binary_search.hpp │ │ │ │ ├── bitmask.hpp │ │ │ │ ├── call_traits.hpp │ │ │ │ ├── catch_exceptions.hpp │ │ │ │ ├── compressed_pair.hpp │ │ │ │ ├── container_fwd.hpp │ │ │ │ ├── dynamic_bitset.hpp │ │ │ │ ├── endian.hpp │ │ │ │ ├── fenv.hpp │ │ │ │ ├── has_default_constructor.hpp │ │ │ │ ├── identifier.hpp │ │ │ │ ├── indirect_traits.hpp │ │ │ │ ├── interlocked.hpp │ │ │ │ ├── is_function_ref_tester.hpp │ │ │ │ ├── is_incrementable.hpp │ │ │ │ ├── is_sorted.hpp │ │ │ │ ├── is_xxx.hpp │ │ │ │ ├── iterator.hpp │ │ │ │ ├── lcast_precision.hpp │ │ │ │ ├── lightweight_main.hpp │ │ │ │ ├── lightweight_mutex.hpp │ │ │ │ ├── lightweight_test.hpp │ │ │ │ ├── lightweight_thread.hpp │ │ │ │ ├── limits.hpp │ │ │ │ ├── named_template_params.hpp │ │ │ │ ├── no_exceptions_support.hpp │ │ │ │ ├── none_t.hpp │ │ │ │ ├── numeric_traits.hpp │ │ │ │ ├── ob_call_traits.hpp │ │ │ │ ├── ob_compressed_pair.hpp │ │ │ │ ├── quick_allocator.hpp │ │ │ │ ├── reference_content.hpp │ │ │ │ ├── scoped_enum_emulation.hpp │ │ │ │ ├── select_type.hpp │ │ │ │ ├── sp_typeinfo.hpp │ │ │ │ ├── templated_streams.hpp │ │ │ │ ├── utf8_codecvt_facet.hpp │ │ │ │ ├── utf8_codecvt_facet.ipp │ │ │ │ ├── win │ │ │ │ │ ├── GetCurrentProcess.hpp │ │ │ │ │ ├── GetCurrentThread.hpp │ │ │ │ │ ├── GetLastError.hpp │ │ │ │ │ ├── GetProcessTimes.hpp │ │ │ │ │ ├── GetThreadTimes.hpp │ │ │ │ │ ├── LocalFree.hpp │ │ │ │ │ ├── basic_types.hpp │ │ │ │ │ ├── directory_management.hpp │ │ │ │ │ ├── dll.hpp │ │ │ │ │ ├── error_handling.hpp │ │ │ │ │ ├── file_management.hpp │ │ │ │ │ ├── handles.hpp │ │ │ │ │ ├── memory.hpp │ │ │ │ │ ├── process.hpp │ │ │ │ │ ├── security.hpp │ │ │ │ │ ├── synchronization.hpp │ │ │ │ │ ├── system.hpp │ │ │ │ │ ├── thread.hpp │ │ │ │ │ ├── time.hpp │ │ │ │ │ └── timers.hpp │ │ │ │ └── workaround.hpp │ │ │ ├── dynamic_bitset.hpp │ │ │ ├── dynamic_bitset │ │ │ │ ├── config.hpp │ │ │ │ └── dynamic_bitset.hpp │ │ │ ├── dynamic_bitset_fwd.hpp │ │ │ ├── enable_shared_from_this.hpp │ │ │ ├── exception.hpp │ │ │ ├── exception │ │ │ │ ├── all.hpp │ │ │ │ ├── current_exception_cast.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── attribute_noreturn.hpp │ │ │ │ │ ├── clone_current_exception.hpp │ │ │ │ │ ├── error_info_impl.hpp │ │ │ │ │ ├── exception_ptr.hpp │ │ │ │ │ ├── is_output_streamable.hpp │ │ │ │ │ ├── object_hex_dump.hpp │ │ │ │ │ └── type_info.hpp │ │ │ │ ├── diagnostic_information.hpp │ │ │ │ ├── enable_current_exception.hpp │ │ │ │ ├── enable_error_info.hpp │ │ │ │ ├── errinfo_api_function.hpp │ │ │ │ ├── errinfo_at_line.hpp │ │ │ │ ├── errinfo_errno.hpp │ │ │ │ ├── errinfo_file_handle.hpp │ │ │ │ ├── errinfo_file_name.hpp │ │ │ │ ├── errinfo_file_open_mode.hpp │ │ │ │ ├── errinfo_nested_exception.hpp │ │ │ │ ├── errinfo_type_info_name.hpp │ │ │ │ ├── error_info.hpp │ │ │ │ ├── exception.hpp │ │ │ │ ├── get_error_info.hpp │ │ │ │ ├── info.hpp │ │ │ │ ├── info_tuple.hpp │ │ │ │ ├── to_string.hpp │ │ │ │ └── to_string_stub.hpp │ │ │ ├── exception_ptr.hpp │ │ │ ├── filesystem.hpp │ │ │ ├── filesystem │ │ │ │ ├── config.hpp │ │ │ │ ├── convenience.hpp │ │ │ │ ├── detail │ │ │ │ │ └── utf8_codecvt_facet.hpp │ │ │ │ ├── exception.hpp │ │ │ │ ├── fstream.hpp │ │ │ │ ├── operations.hpp │ │ │ │ ├── path.hpp │ │ │ │ └── path_traits.hpp │ │ │ ├── flyweight.hpp │ │ │ ├── flyweight │ │ │ │ ├── assoc_container_factory.hpp │ │ │ │ ├── assoc_container_factory_fwd.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── default_value_policy.hpp │ │ │ │ │ ├── dyn_perfect_fwd.hpp │ │ │ │ │ ├── flyweight_core.hpp │ │ │ │ │ ├── is_placeholder_expr.hpp │ │ │ │ │ ├── nested_xxx_if_not_ph.hpp │ │ │ │ │ ├── not_placeholder_expr.hpp │ │ │ │ │ ├── perfect_fwd.hpp │ │ │ │ │ ├── pp_perfect_fwd.hpp │ │ │ │ │ ├── recursive_lw_mutex.hpp │ │ │ │ │ └── value_tag.hpp │ │ │ │ ├── factory_tag.hpp │ │ │ │ ├── flyweight.hpp │ │ │ │ ├── flyweight_fwd.hpp │ │ │ │ ├── hashed_factory.hpp │ │ │ │ ├── hashed_factory_fwd.hpp │ │ │ │ ├── holder_tag.hpp │ │ │ │ ├── intermodule_holder.hpp │ │ │ │ ├── intermodule_holder_fwd.hpp │ │ │ │ ├── key_value.hpp │ │ │ │ ├── key_value_fwd.hpp │ │ │ │ ├── locking_tag.hpp │ │ │ │ ├── no_locking.hpp │ │ │ │ ├── no_locking_fwd.hpp │ │ │ │ ├── no_tracking.hpp │ │ │ │ ├── no_tracking_fwd.hpp │ │ │ │ ├── refcounted.hpp │ │ │ │ ├── refcounted_fwd.hpp │ │ │ │ ├── set_factory.hpp │ │ │ │ ├── set_factory_fwd.hpp │ │ │ │ ├── simple_locking.hpp │ │ │ │ ├── simple_locking_fwd.hpp │ │ │ │ ├── static_holder.hpp │ │ │ │ ├── static_holder_fwd.hpp │ │ │ │ ├── tag.hpp │ │ │ │ └── tracking_tag.hpp │ │ │ ├── foreach.hpp │ │ │ ├── foreach_fwd.hpp │ │ │ ├── format.hpp │ │ │ ├── format │ │ │ │ ├── alt_sstream.hpp │ │ │ │ ├── alt_sstream_impl.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── compat_workarounds.hpp │ │ │ │ │ ├── config_macros.hpp │ │ │ │ │ ├── msvc_disambiguater.hpp │ │ │ │ │ ├── unset_macros.hpp │ │ │ │ │ ├── workarounds_gcc-2_95.hpp │ │ │ │ │ └── workarounds_stlport.hpp │ │ │ │ ├── exceptions.hpp │ │ │ │ ├── feed_args.hpp │ │ │ │ ├── format_class.hpp │ │ │ │ ├── format_fwd.hpp │ │ │ │ ├── format_implementation.hpp │ │ │ │ ├── free_funcs.hpp │ │ │ │ ├── group.hpp │ │ │ │ ├── internals.hpp │ │ │ │ ├── internals_fwd.hpp │ │ │ │ └── parsing.hpp │ │ │ ├── function.hpp │ │ │ ├── function │ │ │ │ ├── detail │ │ │ │ │ ├── function_iterate.hpp │ │ │ │ │ ├── gen_maybe_include.pl │ │ │ │ │ ├── maybe_include.hpp │ │ │ │ │ └── prologue.hpp │ │ │ │ ├── function0.hpp │ │ │ │ ├── function1.hpp │ │ │ │ ├── function10.hpp │ │ │ │ ├── function2.hpp │ │ │ │ ├── function3.hpp │ │ │ │ ├── function4.hpp │ │ │ │ ├── function5.hpp │ │ │ │ ├── function6.hpp │ │ │ │ ├── function7.hpp │ │ │ │ ├── function8.hpp │ │ │ │ ├── function9.hpp │ │ │ │ ├── function_base.hpp │ │ │ │ ├── function_fwd.hpp │ │ │ │ ├── function_template.hpp │ │ │ │ ├── function_typeof.hpp │ │ │ │ └── gen_function_N.pl │ │ │ ├── function_equal.hpp │ │ │ ├── function_output_iterator.hpp │ │ │ ├── function_types │ │ │ │ ├── components.hpp │ │ │ │ ├── config │ │ │ │ │ ├── cc_names.hpp │ │ │ │ │ ├── compiler.hpp │ │ │ │ │ └── config.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── class_transform.hpp │ │ │ │ │ ├── classifier.hpp │ │ │ │ │ ├── classifier_impl │ │ │ │ │ │ ├── arity10_0.hpp │ │ │ │ │ │ ├── arity10_1.hpp │ │ │ │ │ │ ├── arity20_0.hpp │ │ │ │ │ │ ├── arity20_1.hpp │ │ │ │ │ │ ├── arity30_0.hpp │ │ │ │ │ │ ├── arity30_1.hpp │ │ │ │ │ │ ├── arity40_0.hpp │ │ │ │ │ │ ├── arity40_1.hpp │ │ │ │ │ │ ├── arity50_0.hpp │ │ │ │ │ │ ├── arity50_1.hpp │ │ │ │ │ │ └── master.hpp │ │ │ │ │ ├── components_as_mpl_sequence.hpp │ │ │ │ │ ├── components_impl │ │ │ │ │ │ ├── arity10_0.hpp │ │ │ │ │ │ ├── arity10_1.hpp │ │ │ │ │ │ ├── arity20_0.hpp │ │ │ │ │ │ ├── arity20_1.hpp │ │ │ │ │ │ ├── arity30_0.hpp │ │ │ │ │ │ ├── arity30_1.hpp │ │ │ │ │ │ ├── arity40_0.hpp │ │ │ │ │ │ ├── arity40_1.hpp │ │ │ │ │ │ ├── arity50_0.hpp │ │ │ │ │ │ ├── arity50_1.hpp │ │ │ │ │ │ └── master.hpp │ │ │ │ │ ├── cv_traits.hpp │ │ │ │ │ ├── encoding │ │ │ │ │ │ ├── aliases_def.hpp │ │ │ │ │ │ ├── aliases_undef.hpp │ │ │ │ │ │ ├── def.hpp │ │ │ │ │ │ └── undef.hpp │ │ │ │ │ ├── pp_arity_loop.hpp │ │ │ │ │ ├── pp_cc_loop │ │ │ │ │ │ ├── master.hpp │ │ │ │ │ │ └── preprocessed.hpp │ │ │ │ │ ├── pp_loop.hpp │ │ │ │ │ ├── pp_retag_default_cc │ │ │ │ │ │ ├── master.hpp │ │ │ │ │ │ └── preprocessed.hpp │ │ │ │ │ ├── pp_tags │ │ │ │ │ │ ├── cc_tag.hpp │ │ │ │ │ │ ├── master.hpp │ │ │ │ │ │ └── preprocessed.hpp │ │ │ │ │ ├── pp_variate_loop │ │ │ │ │ │ ├── master.hpp │ │ │ │ │ │ └── preprocessed.hpp │ │ │ │ │ ├── retag_default_cc.hpp │ │ │ │ │ ├── synthesize.hpp │ │ │ │ │ ├── synthesize_impl │ │ │ │ │ │ ├── arity10_0.hpp │ │ │ │ │ │ ├── arity10_1.hpp │ │ │ │ │ │ ├── arity20_0.hpp │ │ │ │ │ │ ├── arity20_1.hpp │ │ │ │ │ │ ├── arity30_0.hpp │ │ │ │ │ │ ├── arity30_1.hpp │ │ │ │ │ │ ├── arity40_0.hpp │ │ │ │ │ │ ├── arity40_1.hpp │ │ │ │ │ │ ├── arity50_0.hpp │ │ │ │ │ │ ├── arity50_1.hpp │ │ │ │ │ │ └── master.hpp │ │ │ │ │ └── to_sequence.hpp │ │ │ │ ├── function_arity.hpp │ │ │ │ ├── function_pointer.hpp │ │ │ │ ├── function_reference.hpp │ │ │ │ ├── function_type.hpp │ │ │ │ ├── is_callable_builtin.hpp │ │ │ │ ├── is_function.hpp │ │ │ │ ├── is_function_pointer.hpp │ │ │ │ ├── is_function_reference.hpp │ │ │ │ ├── is_member_function_pointer.hpp │ │ │ │ ├── is_member_object_pointer.hpp │ │ │ │ ├── is_member_pointer.hpp │ │ │ │ ├── is_nonmember_callable_builtin.hpp │ │ │ │ ├── member_function_pointer.hpp │ │ │ │ ├── member_object_pointer.hpp │ │ │ │ ├── parameter_types.hpp │ │ │ │ ├── property_tags.hpp │ │ │ │ └── result_type.hpp │ │ │ ├── functional.hpp │ │ │ ├── functional │ │ │ │ ├── factory.hpp │ │ │ │ ├── forward_adapter.hpp │ │ │ │ ├── hash.hpp │ │ │ │ ├── hash │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── float_functions.hpp │ │ │ │ │ │ ├── hash_float.hpp │ │ │ │ │ │ └── limits.hpp │ │ │ │ │ ├── extensions.hpp │ │ │ │ │ ├── hash.hpp │ │ │ │ │ └── hash_fwd.hpp │ │ │ │ ├── hash_fwd.hpp │ │ │ │ ├── lightweight_forward_adapter.hpp │ │ │ │ ├── overloaded_function.hpp │ │ │ │ ├── overloaded_function │ │ │ │ │ ├── config.hpp │ │ │ │ │ └── detail │ │ │ │ │ │ ├── base.hpp │ │ │ │ │ │ └── function_type.hpp │ │ │ │ └── value_factory.hpp │ │ │ ├── fusion │ │ │ │ ├── adapted.hpp │ │ │ │ ├── adapted │ │ │ │ │ ├── adt.hpp │ │ │ │ │ ├── adt │ │ │ │ │ │ ├── adapt_adt.hpp │ │ │ │ │ │ ├── adapt_adt_named.hpp │ │ │ │ │ │ ├── adapt_assoc_adt.hpp │ │ │ │ │ │ ├── adapt_assoc_adt_named.hpp │ │ │ │ │ │ └── detail │ │ │ │ │ │ │ ├── adapt_base.hpp │ │ │ │ │ │ │ └── extension.hpp │ │ │ │ │ ├── array.hpp │ │ │ │ │ ├── array │ │ │ │ │ │ ├── at_impl.hpp │ │ │ │ │ │ ├── begin_impl.hpp │ │ │ │ │ │ ├── category_of_impl.hpp │ │ │ │ │ │ ├── deref_impl.hpp │ │ │ │ │ │ ├── end_impl.hpp │ │ │ │ │ │ ├── is_sequence_impl.hpp │ │ │ │ │ │ ├── is_view_impl.hpp │ │ │ │ │ │ ├── size_impl.hpp │ │ │ │ │ │ ├── tag_of.hpp │ │ │ │ │ │ ├── value_at_impl.hpp │ │ │ │ │ │ └── value_of_impl.hpp │ │ │ │ │ ├── boost_array.hpp │ │ │ │ │ ├── boost_array │ │ │ │ │ │ ├── array_iterator.hpp │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ ├── at_impl.hpp │ │ │ │ │ │ │ ├── begin_impl.hpp │ │ │ │ │ │ │ ├── category_of_impl.hpp │ │ │ │ │ │ │ ├── end_impl.hpp │ │ │ │ │ │ │ ├── is_sequence_impl.hpp │ │ │ │ │ │ │ ├── is_view_impl.hpp │ │ │ │ │ │ │ ├── size_impl.hpp │ │ │ │ │ │ │ └── value_at_impl.hpp │ │ │ │ │ │ └── tag_of.hpp │ │ │ │ │ ├── boost_tuple.hpp │ │ │ │ │ ├── boost_tuple │ │ │ │ │ │ ├── boost_tuple_iterator.hpp │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ ├── at_impl.hpp │ │ │ │ │ │ │ ├── begin_impl.hpp │ │ │ │ │ │ │ ├── category_of_impl.hpp │ │ │ │ │ │ │ ├── end_impl.hpp │ │ │ │ │ │ │ ├── is_sequence_impl.hpp │ │ │ │ │ │ │ ├── is_view_impl.hpp │ │ │ │ │ │ │ ├── size_impl.hpp │ │ │ │ │ │ │ └── value_at_impl.hpp │ │ │ │ │ │ └── tag_of.hpp │ │ │ │ │ ├── mpl.hpp │ │ │ │ │ ├── mpl │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ ├── at_impl.hpp │ │ │ │ │ │ │ ├── begin_impl.hpp │ │ │ │ │ │ │ ├── category_of_impl.hpp │ │ │ │ │ │ │ ├── empty_impl.hpp │ │ │ │ │ │ │ ├── end_impl.hpp │ │ │ │ │ │ │ ├── has_key_impl.hpp │ │ │ │ │ │ │ ├── is_sequence_impl.hpp │ │ │ │ │ │ │ ├── is_view_impl.hpp │ │ │ │ │ │ │ ├── size_impl.hpp │ │ │ │ │ │ │ └── value_at_impl.hpp │ │ │ │ │ │ └── mpl_iterator.hpp │ │ │ │ │ ├── std_pair.hpp │ │ │ │ │ ├── std_tuple.hpp │ │ │ │ │ ├── std_tuple │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ ├── at_impl.hpp │ │ │ │ │ │ │ ├── begin_impl.hpp │ │ │ │ │ │ │ ├── category_of_impl.hpp │ │ │ │ │ │ │ ├── end_impl.hpp │ │ │ │ │ │ │ ├── is_sequence_impl.hpp │ │ │ │ │ │ │ ├── is_view_impl.hpp │ │ │ │ │ │ │ ├── size_impl.hpp │ │ │ │ │ │ │ └── value_at_impl.hpp │ │ │ │ │ │ ├── std_tuple_iterator.hpp │ │ │ │ │ │ └── tag_of.hpp │ │ │ │ │ ├── struct.hpp │ │ │ │ │ └── struct │ │ │ │ │ │ ├── adapt_assoc_struct.hpp │ │ │ │ │ │ ├── adapt_assoc_struct_named.hpp │ │ │ │ │ │ ├── adapt_struct.hpp │ │ │ │ │ │ ├── adapt_struct_named.hpp │ │ │ │ │ │ ├── define_assoc_struct.hpp │ │ │ │ │ │ ├── define_struct.hpp │ │ │ │ │ │ ├── define_struct_inline.hpp │ │ │ │ │ │ └── detail │ │ │ │ │ │ ├── adapt_base.hpp │ │ │ │ │ │ ├── at_impl.hpp │ │ │ │ │ │ ├── begin_impl.hpp │ │ │ │ │ │ ├── category_of_impl.hpp │ │ │ │ │ │ ├── define_struct.hpp │ │ │ │ │ │ ├── define_struct_inline.hpp │ │ │ │ │ │ ├── deref_data_impl.hpp │ │ │ │ │ │ ├── deref_impl.hpp │ │ │ │ │ │ ├── end_impl.hpp │ │ │ │ │ │ ├── extension.hpp │ │ │ │ │ │ ├── is_sequence_impl.hpp │ │ │ │ │ │ ├── is_view_impl.hpp │ │ │ │ │ │ ├── key_of_impl.hpp │ │ │ │ │ │ ├── namespace.hpp │ │ │ │ │ │ ├── proxy_type.hpp │ │ │ │ │ │ ├── size_impl.hpp │ │ │ │ │ │ ├── value_at_impl.hpp │ │ │ │ │ │ ├── value_of_data_impl.hpp │ │ │ │ │ │ └── value_of_impl.hpp │ │ │ │ ├── algorithm.hpp │ │ │ │ ├── algorithm │ │ │ │ │ ├── auxiliary.hpp │ │ │ │ │ ├── auxiliary │ │ │ │ │ │ └── copy.hpp │ │ │ │ │ ├── iteration.hpp │ │ │ │ │ ├── iteration │ │ │ │ │ │ ├── accumulate.hpp │ │ │ │ │ │ ├── accumulate_fwd.hpp │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ ├── fold.hpp │ │ │ │ │ │ │ ├── for_each.hpp │ │ │ │ │ │ │ ├── preprocessed │ │ │ │ │ │ │ │ ├── fold.hpp │ │ │ │ │ │ │ │ ├── iter_fold.hpp │ │ │ │ │ │ │ │ ├── reverse_fold.hpp │ │ │ │ │ │ │ │ └── reverse_iter_fold.hpp │ │ │ │ │ │ │ ├── segmented_fold.hpp │ │ │ │ │ │ │ └── segmented_for_each.hpp │ │ │ │ │ │ ├── fold.hpp │ │ │ │ │ │ ├── fold_fwd.hpp │ │ │ │ │ │ ├── for_each.hpp │ │ │ │ │ │ ├── for_each_fwd.hpp │ │ │ │ │ │ ├── iter_fold.hpp │ │ │ │ │ │ ├── iter_fold_fwd.hpp │ │ │ │ │ │ ├── reverse_fold.hpp │ │ │ │ │ │ ├── reverse_fold_fwd.hpp │ │ │ │ │ │ ├── reverse_iter_fold.hpp │ │ │ │ │ │ └── reverse_iter_fold_fwd.hpp │ │ │ │ │ ├── query.hpp │ │ │ │ │ ├── query │ │ │ │ │ │ ├── all.hpp │ │ │ │ │ │ ├── any.hpp │ │ │ │ │ │ ├── count.hpp │ │ │ │ │ │ ├── count_if.hpp │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ ├── all.hpp │ │ │ │ │ │ │ ├── any.hpp │ │ │ │ │ │ │ ├── count.hpp │ │ │ │ │ │ │ ├── count_if.hpp │ │ │ │ │ │ │ ├── find_if.hpp │ │ │ │ │ │ │ ├── segmented_find.hpp │ │ │ │ │ │ │ └── segmented_find_if.hpp │ │ │ │ │ │ ├── find.hpp │ │ │ │ │ │ ├── find_fwd.hpp │ │ │ │ │ │ ├── find_if.hpp │ │ │ │ │ │ ├── find_if_fwd.hpp │ │ │ │ │ │ └── none.hpp │ │ │ │ │ ├── transformation.hpp │ │ │ │ │ └── transformation │ │ │ │ │ │ ├── clear.hpp │ │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── preprocessed │ │ │ │ │ │ │ ├── zip.hpp │ │ │ │ │ │ │ ├── zip10.hpp │ │ │ │ │ │ │ ├── zip20.hpp │ │ │ │ │ │ │ ├── zip30.hpp │ │ │ │ │ │ │ ├── zip40.hpp │ │ │ │ │ │ │ └── zip50.hpp │ │ │ │ │ │ ├── replace.hpp │ │ │ │ │ │ └── replace_if.hpp │ │ │ │ │ │ ├── erase.hpp │ │ │ │ │ │ ├── erase_key.hpp │ │ │ │ │ │ ├── filter.hpp │ │ │ │ │ │ ├── filter_if.hpp │ │ │ │ │ │ ├── insert.hpp │ │ │ │ │ │ ├── insert_range.hpp │ │ │ │ │ │ ├── join.hpp │ │ │ │ │ │ ├── pop_back.hpp │ │ │ │ │ │ ├── pop_front.hpp │ │ │ │ │ │ ├── push_back.hpp │ │ │ │ │ │ ├── push_front.hpp │ │ │ │ │ │ ├── remove.hpp │ │ │ │ │ │ ├── remove_if.hpp │ │ │ │ │ │ ├── replace.hpp │ │ │ │ │ │ ├── replace_if.hpp │ │ │ │ │ │ ├── reverse.hpp │ │ │ │ │ │ ├── transform.hpp │ │ │ │ │ │ └── zip.hpp │ │ │ │ ├── container.hpp │ │ │ │ ├── container │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── deque │ │ │ │ │ │ ├── back_extended_deque.hpp │ │ │ │ │ │ ├── convert.hpp │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ ├── deque_fwd.hpp │ │ │ │ │ │ ├── deque_iterator.hpp │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ ├── as_deque.hpp │ │ │ │ │ │ │ ├── at_impl.hpp │ │ │ │ │ │ │ ├── begin_impl.hpp │ │ │ │ │ │ │ ├── convert_impl.hpp │ │ │ │ │ │ │ ├── deque_forward_ctor.hpp │ │ │ │ │ │ │ ├── deque_initial_size.hpp │ │ │ │ │ │ │ ├── deque_keyed_values_call.hpp │ │ │ │ │ │ │ ├── end_impl.hpp │ │ │ │ │ │ │ ├── is_sequence_impl.hpp │ │ │ │ │ │ │ ├── keyed_element.hpp │ │ │ │ │ │ │ ├── pp_deque.hpp │ │ │ │ │ │ │ ├── pp_deque_fwd.hpp │ │ │ │ │ │ │ ├── pp_deque_keyed_values.hpp │ │ │ │ │ │ │ ├── preprocessed │ │ │ │ │ │ │ │ ├── as_deque.hpp │ │ │ │ │ │ │ │ ├── as_deque10.hpp │ │ │ │ │ │ │ │ ├── as_deque20.hpp │ │ │ │ │ │ │ │ ├── as_deque30.hpp │ │ │ │ │ │ │ │ ├── as_deque40.hpp │ │ │ │ │ │ │ │ ├── as_deque50.hpp │ │ │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ │ │ ├── deque10.hpp │ │ │ │ │ │ │ │ ├── deque10_fwd.hpp │ │ │ │ │ │ │ │ ├── deque20.hpp │ │ │ │ │ │ │ │ ├── deque20_fwd.hpp │ │ │ │ │ │ │ │ ├── deque30.hpp │ │ │ │ │ │ │ │ ├── deque30_fwd.hpp │ │ │ │ │ │ │ │ ├── deque40.hpp │ │ │ │ │ │ │ │ ├── deque40_fwd.hpp │ │ │ │ │ │ │ │ ├── deque50.hpp │ │ │ │ │ │ │ │ ├── deque50_fwd.hpp │ │ │ │ │ │ │ │ ├── deque_fwd.hpp │ │ │ │ │ │ │ │ ├── deque_initial_size.hpp │ │ │ │ │ │ │ │ ├── deque_initial_size10.hpp │ │ │ │ │ │ │ │ ├── deque_initial_size20.hpp │ │ │ │ │ │ │ │ ├── deque_initial_size30.hpp │ │ │ │ │ │ │ │ ├── deque_initial_size40.hpp │ │ │ │ │ │ │ │ ├── deque_initial_size50.hpp │ │ │ │ │ │ │ │ ├── deque_keyed_values.hpp │ │ │ │ │ │ │ │ ├── deque_keyed_values10.hpp │ │ │ │ │ │ │ │ ├── deque_keyed_values20.hpp │ │ │ │ │ │ │ │ ├── deque_keyed_values30.hpp │ │ │ │ │ │ │ │ ├── deque_keyed_values40.hpp │ │ │ │ │ │ │ │ └── deque_keyed_values50.hpp │ │ │ │ │ │ │ ├── value_at_impl.hpp │ │ │ │ │ │ │ └── variadic_deque_keyed_values.hpp │ │ │ │ │ │ ├── front_extended_deque.hpp │ │ │ │ │ │ └── limits.hpp │ │ │ │ │ ├── generation.hpp │ │ │ │ │ ├── generation │ │ │ │ │ │ ├── cons_tie.hpp │ │ │ │ │ │ ├── deque_tie.hpp │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ └── preprocessed │ │ │ │ │ │ │ │ ├── deque_tie.hpp │ │ │ │ │ │ │ │ ├── deque_tie10.hpp │ │ │ │ │ │ │ │ ├── deque_tie20.hpp │ │ │ │ │ │ │ │ ├── deque_tie30.hpp │ │ │ │ │ │ │ │ ├── deque_tie40.hpp │ │ │ │ │ │ │ │ ├── deque_tie50.hpp │ │ │ │ │ │ │ │ ├── list_tie.hpp │ │ │ │ │ │ │ │ ├── list_tie10.hpp │ │ │ │ │ │ │ │ ├── list_tie20.hpp │ │ │ │ │ │ │ │ ├── list_tie30.hpp │ │ │ │ │ │ │ │ ├── list_tie40.hpp │ │ │ │ │ │ │ │ ├── list_tie50.hpp │ │ │ │ │ │ │ │ ├── make_deque.hpp │ │ │ │ │ │ │ │ ├── make_deque10.hpp │ │ │ │ │ │ │ │ ├── make_deque20.hpp │ │ │ │ │ │ │ │ ├── make_deque30.hpp │ │ │ │ │ │ │ │ ├── make_deque40.hpp │ │ │ │ │ │ │ │ ├── make_deque50.hpp │ │ │ │ │ │ │ │ ├── make_list.hpp │ │ │ │ │ │ │ │ ├── make_list10.hpp │ │ │ │ │ │ │ │ ├── make_list20.hpp │ │ │ │ │ │ │ │ ├── make_list30.hpp │ │ │ │ │ │ │ │ ├── make_list40.hpp │ │ │ │ │ │ │ │ ├── make_list50.hpp │ │ │ │ │ │ │ │ ├── make_map.hpp │ │ │ │ │ │ │ │ ├── make_map10.hpp │ │ │ │ │ │ │ │ ├── make_map20.hpp │ │ │ │ │ │ │ │ ├── make_map30.hpp │ │ │ │ │ │ │ │ ├── make_map40.hpp │ │ │ │ │ │ │ │ ├── make_map50.hpp │ │ │ │ │ │ │ │ ├── make_set.hpp │ │ │ │ │ │ │ │ ├── make_set10.hpp │ │ │ │ │ │ │ │ ├── make_set20.hpp │ │ │ │ │ │ │ │ ├── make_set30.hpp │ │ │ │ │ │ │ │ ├── make_set40.hpp │ │ │ │ │ │ │ │ ├── make_set50.hpp │ │ │ │ │ │ │ │ ├── make_vector.hpp │ │ │ │ │ │ │ │ ├── make_vector10.hpp │ │ │ │ │ │ │ │ ├── make_vector20.hpp │ │ │ │ │ │ │ │ ├── make_vector30.hpp │ │ │ │ │ │ │ │ ├── make_vector40.hpp │ │ │ │ │ │ │ │ ├── make_vector50.hpp │ │ │ │ │ │ │ │ ├── map_tie.hpp │ │ │ │ │ │ │ │ ├── map_tie10.hpp │ │ │ │ │ │ │ │ ├── map_tie20.hpp │ │ │ │ │ │ │ │ ├── map_tie30.hpp │ │ │ │ │ │ │ │ ├── map_tie40.hpp │ │ │ │ │ │ │ │ ├── map_tie50.hpp │ │ │ │ │ │ │ │ ├── vector_tie.hpp │ │ │ │ │ │ │ │ ├── vector_tie10.hpp │ │ │ │ │ │ │ │ ├── vector_tie20.hpp │ │ │ │ │ │ │ │ ├── vector_tie30.hpp │ │ │ │ │ │ │ │ ├── vector_tie40.hpp │ │ │ │ │ │ │ │ └── vector_tie50.hpp │ │ │ │ │ │ ├── ignore.hpp │ │ │ │ │ │ ├── list_tie.hpp │ │ │ │ │ │ ├── make_cons.hpp │ │ │ │ │ │ ├── make_deque.hpp │ │ │ │ │ │ ├── make_list.hpp │ │ │ │ │ │ ├── make_map.hpp │ │ │ │ │ │ ├── make_set.hpp │ │ │ │ │ │ ├── make_vector.hpp │ │ │ │ │ │ ├── map_tie.hpp │ │ │ │ │ │ ├── pair_tie.hpp │ │ │ │ │ │ └── vector_tie.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list │ │ │ │ │ │ ├── cons.hpp │ │ │ │ │ │ ├── cons_fwd.hpp │ │ │ │ │ │ ├── cons_iterator.hpp │ │ │ │ │ │ ├── convert.hpp │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ ├── at_impl.hpp │ │ │ │ │ │ │ ├── begin_impl.hpp │ │ │ │ │ │ │ ├── build_cons.hpp │ │ │ │ │ │ │ ├── convert_impl.hpp │ │ │ │ │ │ │ ├── deref_impl.hpp │ │ │ │ │ │ │ ├── empty_impl.hpp │ │ │ │ │ │ │ ├── end_impl.hpp │ │ │ │ │ │ │ ├── equal_to_impl.hpp │ │ │ │ │ │ │ ├── list_forward_ctor.hpp │ │ │ │ │ │ │ ├── list_to_cons.hpp │ │ │ │ │ │ │ ├── list_to_cons_call.hpp │ │ │ │ │ │ │ ├── next_impl.hpp │ │ │ │ │ │ │ ├── preprocessed │ │ │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ │ │ ├── list10.hpp │ │ │ │ │ │ │ │ ├── list10_fwd.hpp │ │ │ │ │ │ │ │ ├── list20.hpp │ │ │ │ │ │ │ │ ├── list20_fwd.hpp │ │ │ │ │ │ │ │ ├── list30.hpp │ │ │ │ │ │ │ │ ├── list30_fwd.hpp │ │ │ │ │ │ │ │ ├── list40.hpp │ │ │ │ │ │ │ │ ├── list40_fwd.hpp │ │ │ │ │ │ │ │ ├── list50.hpp │ │ │ │ │ │ │ │ ├── list50_fwd.hpp │ │ │ │ │ │ │ │ ├── list_fwd.hpp │ │ │ │ │ │ │ │ ├── list_to_cons.hpp │ │ │ │ │ │ │ │ ├── list_to_cons10.hpp │ │ │ │ │ │ │ │ ├── list_to_cons20.hpp │ │ │ │ │ │ │ │ ├── list_to_cons30.hpp │ │ │ │ │ │ │ │ ├── list_to_cons40.hpp │ │ │ │ │ │ │ │ └── list_to_cons50.hpp │ │ │ │ │ │ │ ├── reverse_cons.hpp │ │ │ │ │ │ │ ├── value_at_impl.hpp │ │ │ │ │ │ │ └── value_of_impl.hpp │ │ │ │ │ │ ├── limits.hpp │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ └── list_fwd.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── map │ │ │ │ │ │ ├── convert.hpp │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ ├── as_map.hpp │ │ │ │ │ │ │ ├── at_impl.hpp │ │ │ │ │ │ │ ├── begin_impl.hpp │ │ │ │ │ │ │ ├── convert_impl.hpp │ │ │ │ │ │ │ ├── deref_data_impl.hpp │ │ │ │ │ │ │ ├── deref_impl.hpp │ │ │ │ │ │ │ ├── end_impl.hpp │ │ │ │ │ │ │ ├── key_of_impl.hpp │ │ │ │ │ │ │ ├── map_forward_ctor.hpp │ │ │ │ │ │ │ ├── preprocessed │ │ │ │ │ │ │ │ ├── as_map.hpp │ │ │ │ │ │ │ │ ├── as_map10.hpp │ │ │ │ │ │ │ │ ├── as_map20.hpp │ │ │ │ │ │ │ │ ├── as_map30.hpp │ │ │ │ │ │ │ │ ├── as_map40.hpp │ │ │ │ │ │ │ │ ├── as_map50.hpp │ │ │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ │ │ ├── map10.hpp │ │ │ │ │ │ │ │ ├── map10_fwd.hpp │ │ │ │ │ │ │ │ ├── map20.hpp │ │ │ │ │ │ │ │ ├── map20_fwd.hpp │ │ │ │ │ │ │ │ ├── map30.hpp │ │ │ │ │ │ │ │ ├── map30_fwd.hpp │ │ │ │ │ │ │ │ ├── map40.hpp │ │ │ │ │ │ │ │ ├── map40_fwd.hpp │ │ │ │ │ │ │ │ ├── map50.hpp │ │ │ │ │ │ │ │ ├── map50_fwd.hpp │ │ │ │ │ │ │ │ └── map_fwd.hpp │ │ │ │ │ │ │ ├── value_at_impl.hpp │ │ │ │ │ │ │ ├── value_of_data_impl.hpp │ │ │ │ │ │ │ └── value_of_impl.hpp │ │ │ │ │ │ ├── limits.hpp │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ └── map_fwd.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set │ │ │ │ │ │ ├── convert.hpp │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ ├── as_set.hpp │ │ │ │ │ │ │ ├── begin_impl.hpp │ │ │ │ │ │ │ ├── convert_impl.hpp │ │ │ │ │ │ │ ├── deref_data_impl.hpp │ │ │ │ │ │ │ ├── deref_impl.hpp │ │ │ │ │ │ │ ├── end_impl.hpp │ │ │ │ │ │ │ ├── key_of_impl.hpp │ │ │ │ │ │ │ ├── preprocessed │ │ │ │ │ │ │ │ ├── as_set.hpp │ │ │ │ │ │ │ │ ├── as_set10.hpp │ │ │ │ │ │ │ │ ├── as_set20.hpp │ │ │ │ │ │ │ │ ├── as_set30.hpp │ │ │ │ │ │ │ │ ├── as_set40.hpp │ │ │ │ │ │ │ │ ├── as_set50.hpp │ │ │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ │ │ ├── set10.hpp │ │ │ │ │ │ │ │ ├── set10_fwd.hpp │ │ │ │ │ │ │ │ ├── set20.hpp │ │ │ │ │ │ │ │ ├── set20_fwd.hpp │ │ │ │ │ │ │ │ ├── set30.hpp │ │ │ │ │ │ │ │ ├── set30_fwd.hpp │ │ │ │ │ │ │ │ ├── set40.hpp │ │ │ │ │ │ │ │ ├── set40_fwd.hpp │ │ │ │ │ │ │ │ ├── set50.hpp │ │ │ │ │ │ │ │ ├── set50_fwd.hpp │ │ │ │ │ │ │ │ └── set_fwd.hpp │ │ │ │ │ │ │ ├── set_forward_ctor.hpp │ │ │ │ │ │ │ ├── value_of_data_impl.hpp │ │ │ │ │ │ │ └── value_of_impl.hpp │ │ │ │ │ │ ├── limits.hpp │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ └── set_fwd.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector │ │ │ │ │ │ ├── convert.hpp │ │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── advance_impl.hpp │ │ │ │ │ │ ├── as_vector.hpp │ │ │ │ │ │ ├── at_impl.hpp │ │ │ │ │ │ ├── begin_impl.hpp │ │ │ │ │ │ ├── convert_impl.hpp │ │ │ │ │ │ ├── deref_impl.hpp │ │ │ │ │ │ ├── distance_impl.hpp │ │ │ │ │ │ ├── end_impl.hpp │ │ │ │ │ │ ├── equal_to_impl.hpp │ │ │ │ │ │ ├── next_impl.hpp │ │ │ │ │ │ ├── preprocessed │ │ │ │ │ │ │ ├── as_vector.hpp │ │ │ │ │ │ │ ├── as_vector10.hpp │ │ │ │ │ │ │ ├── as_vector20.hpp │ │ │ │ │ │ │ ├── as_vector30.hpp │ │ │ │ │ │ │ ├── as_vector40.hpp │ │ │ │ │ │ │ ├── as_vector50.hpp │ │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ │ ├── vector10.hpp │ │ │ │ │ │ │ ├── vector10_fwd.hpp │ │ │ │ │ │ │ ├── vector20.hpp │ │ │ │ │ │ │ ├── vector20_fwd.hpp │ │ │ │ │ │ │ ├── vector30.hpp │ │ │ │ │ │ │ ├── vector30_fwd.hpp │ │ │ │ │ │ │ ├── vector40.hpp │ │ │ │ │ │ │ ├── vector40_fwd.hpp │ │ │ │ │ │ │ ├── vector50.hpp │ │ │ │ │ │ │ ├── vector50_fwd.hpp │ │ │ │ │ │ │ ├── vector_chooser.hpp │ │ │ │ │ │ │ ├── vector_chooser10.hpp │ │ │ │ │ │ │ ├── vector_chooser20.hpp │ │ │ │ │ │ │ ├── vector_chooser30.hpp │ │ │ │ │ │ │ ├── vector_chooser40.hpp │ │ │ │ │ │ │ ├── vector_chooser50.hpp │ │ │ │ │ │ │ ├── vector_fwd.hpp │ │ │ │ │ │ │ ├── vvector10.hpp │ │ │ │ │ │ │ ├── vvector10_fwd.hpp │ │ │ │ │ │ │ ├── vvector20.hpp │ │ │ │ │ │ │ ├── vvector20_fwd.hpp │ │ │ │ │ │ │ ├── vvector30.hpp │ │ │ │ │ │ │ ├── vvector30_fwd.hpp │ │ │ │ │ │ │ ├── vvector40.hpp │ │ │ │ │ │ │ ├── vvector40_fwd.hpp │ │ │ │ │ │ │ ├── vvector50.hpp │ │ │ │ │ │ │ └── vvector50_fwd.hpp │ │ │ │ │ │ ├── prior_impl.hpp │ │ │ │ │ │ ├── value_at_impl.hpp │ │ │ │ │ │ ├── value_of_impl.hpp │ │ │ │ │ │ ├── vector_forward_ctor.hpp │ │ │ │ │ │ ├── vector_n.hpp │ │ │ │ │ │ └── vector_n_chooser.hpp │ │ │ │ │ │ ├── limits.hpp │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ ├── vector10.hpp │ │ │ │ │ │ ├── vector10_fwd.hpp │ │ │ │ │ │ ├── vector20.hpp │ │ │ │ │ │ ├── vector20_fwd.hpp │ │ │ │ │ │ ├── vector30.hpp │ │ │ │ │ │ ├── vector30_fwd.hpp │ │ │ │ │ │ ├── vector40.hpp │ │ │ │ │ │ ├── vector40_fwd.hpp │ │ │ │ │ │ ├── vector50.hpp │ │ │ │ │ │ ├── vector50_fwd.hpp │ │ │ │ │ │ ├── vector_fwd.hpp │ │ │ │ │ │ └── vector_iterator.hpp │ │ │ │ ├── functional.hpp │ │ │ │ ├── functional │ │ │ │ │ ├── adapter.hpp │ │ │ │ │ ├── adapter │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ └── access.hpp │ │ │ │ │ │ ├── fused.hpp │ │ │ │ │ │ ├── fused_function_object.hpp │ │ │ │ │ │ ├── fused_procedure.hpp │ │ │ │ │ │ ├── limits.hpp │ │ │ │ │ │ ├── unfused.hpp │ │ │ │ │ │ └── unfused_typed.hpp │ │ │ │ │ ├── generation.hpp │ │ │ │ │ ├── generation │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ └── gen_make_adapter.hpp │ │ │ │ │ │ ├── make_fused.hpp │ │ │ │ │ │ ├── make_fused_function_object.hpp │ │ │ │ │ │ ├── make_fused_procedure.hpp │ │ │ │ │ │ └── make_unfused.hpp │ │ │ │ │ ├── invocation.hpp │ │ │ │ │ └── invocation │ │ │ │ │ │ ├── detail │ │ │ │ │ │ └── that_ptr.hpp │ │ │ │ │ │ ├── invoke.hpp │ │ │ │ │ │ ├── invoke_function_object.hpp │ │ │ │ │ │ ├── invoke_procedure.hpp │ │ │ │ │ │ └── limits.hpp │ │ │ │ ├── include │ │ │ │ │ ├── accumulate.hpp │ │ │ │ │ ├── adapt_adt.hpp │ │ │ │ │ ├── adapt_adt_named.cpp │ │ │ │ │ ├── adapt_adt_named.hpp │ │ │ │ │ ├── adapt_assoc_adt.hpp │ │ │ │ │ ├── adapt_assoc_adt_named.hpp │ │ │ │ │ ├── adapt_assoc_class.hpp │ │ │ │ │ ├── adapt_assoc_class_named.hpp │ │ │ │ │ ├── adapt_assoc_struct.hpp │ │ │ │ │ ├── adapt_assoc_struct_named.hpp │ │ │ │ │ ├── adapt_struct.hpp │ │ │ │ │ ├── adapt_struct_named.hpp │ │ │ │ │ ├── adapted.hpp │ │ │ │ │ ├── adapter.hpp │ │ │ │ │ ├── advance.hpp │ │ │ │ │ ├── algorithm.hpp │ │ │ │ │ ├── all.hpp │ │ │ │ │ ├── any.hpp │ │ │ │ │ ├── array.hpp │ │ │ │ │ ├── as_deque.hpp │ │ │ │ │ ├── as_list.hpp │ │ │ │ │ ├── as_map.hpp │ │ │ │ │ ├── as_set.hpp │ │ │ │ │ ├── as_vector.hpp │ │ │ │ │ ├── at.hpp │ │ │ │ │ ├── at_c.hpp │ │ │ │ │ ├── at_key.hpp │ │ │ │ │ ├── auxiliary.hpp │ │ │ │ │ ├── back.hpp │ │ │ │ │ ├── begin.hpp │ │ │ │ │ ├── boost_array.hpp │ │ │ │ │ ├── boost_tuple.hpp │ │ │ │ │ ├── category_of.hpp │ │ │ │ │ ├── clear.hpp │ │ │ │ │ ├── comparison.hpp │ │ │ │ │ ├── cons.hpp │ │ │ │ │ ├── cons_tie.hpp │ │ │ │ │ ├── container.hpp │ │ │ │ │ ├── convert.hpp │ │ │ │ │ ├── copy.hpp │ │ │ │ │ ├── count.hpp │ │ │ │ │ ├── count_if.hpp │ │ │ │ │ ├── deduce.hpp │ │ │ │ │ ├── deduce_sequence.hpp │ │ │ │ │ ├── define_assoc_struct.hpp │ │ │ │ │ ├── define_struct.hpp │ │ │ │ │ ├── define_struct_inline.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── deque_fwd.hpp │ │ │ │ │ ├── deque_tie.hpp │ │ │ │ │ ├── deref.hpp │ │ │ │ │ ├── deref_data.hpp │ │ │ │ │ ├── distance.hpp │ │ │ │ │ ├── empty.hpp │ │ │ │ │ ├── end.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── erase.hpp │ │ │ │ │ ├── erase_key.hpp │ │ │ │ │ ├── filter.hpp │ │ │ │ │ ├── filter_if.hpp │ │ │ │ │ ├── filter_view.hpp │ │ │ │ │ ├── find.hpp │ │ │ │ │ ├── find_if.hpp │ │ │ │ │ ├── fold.hpp │ │ │ │ │ ├── for_each.hpp │ │ │ │ │ ├── front.hpp │ │ │ │ │ ├── functional.hpp │ │ │ │ │ ├── fused.hpp │ │ │ │ │ ├── fused_function_object.hpp │ │ │ │ │ ├── fused_procedure.hpp │ │ │ │ │ ├── generation.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── has_key.hpp │ │ │ │ │ ├── ignore.hpp │ │ │ │ │ ├── in.hpp │ │ │ │ │ ├── insert.hpp │ │ │ │ │ ├── insert_range.hpp │ │ │ │ │ ├── intrinsic.hpp │ │ │ │ │ ├── invocation.hpp │ │ │ │ │ ├── invoke.hpp │ │ │ │ │ ├── invoke_function_object.hpp │ │ │ │ │ ├── invoke_procedure.hpp │ │ │ │ │ ├── io.hpp │ │ │ │ │ ├── is_iterator.hpp │ │ │ │ │ ├── is_segmented.hpp │ │ │ │ │ ├── is_sequence.hpp │ │ │ │ │ ├── is_view.hpp │ │ │ │ │ ├── iter_fold.hpp │ │ │ │ │ ├── iteration.hpp │ │ │ │ │ ├── iterator.hpp │ │ │ │ │ ├── iterator_adapter.hpp │ │ │ │ │ ├── iterator_base.hpp │ │ │ │ │ ├── iterator_facade.hpp │ │ │ │ │ ├── iterator_range.hpp │ │ │ │ │ ├── join.hpp │ │ │ │ │ ├── joint_view.hpp │ │ │ │ │ ├── key_of.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_fwd.hpp │ │ │ │ │ ├── list_tie.hpp │ │ │ │ │ ├── make_cons.hpp │ │ │ │ │ ├── make_deque.hpp │ │ │ │ │ ├── make_fused.hpp │ │ │ │ │ ├── make_fused_function_object.hpp │ │ │ │ │ ├── make_fused_procedure.hpp │ │ │ │ │ ├── make_list.hpp │ │ │ │ │ ├── make_map.hpp │ │ │ │ │ ├── make_set.hpp │ │ │ │ │ ├── make_tuple.hpp │ │ │ │ │ ├── make_unfused.hpp │ │ │ │ │ ├── make_vector.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── map_fwd.hpp │ │ │ │ │ ├── map_tie.hpp │ │ │ │ │ ├── mpl.hpp │ │ │ │ │ ├── next.hpp │ │ │ │ │ ├── none.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── nview.hpp │ │ │ │ │ ├── out.hpp │ │ │ │ │ ├── pair.hpp │ │ │ │ │ ├── pair_tie.hpp │ │ │ │ │ ├── pop_back.hpp │ │ │ │ │ ├── pop_front.hpp │ │ │ │ │ ├── prior.hpp │ │ │ │ │ ├── proxy_type.hpp │ │ │ │ │ ├── push_back.hpp │ │ │ │ │ ├── push_front.hpp │ │ │ │ │ ├── query.hpp │ │ │ │ │ ├── remove.hpp │ │ │ │ │ ├── remove_if.hpp │ │ │ │ │ ├── repetitive_view.hpp │ │ │ │ │ ├── replace.hpp │ │ │ │ │ ├── replace_if.hpp │ │ │ │ │ ├── reverse.hpp │ │ │ │ │ ├── reverse_fold.hpp │ │ │ │ │ ├── reverse_iter_fold.hpp │ │ │ │ │ ├── reverse_view.hpp │ │ │ │ │ ├── segmented_fold_until.hpp │ │ │ │ │ ├── segmented_iterator.hpp │ │ │ │ │ ├── segments.hpp │ │ │ │ │ ├── sequence.hpp │ │ │ │ │ ├── sequence_base.hpp │ │ │ │ │ ├── sequence_facade.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_fwd.hpp │ │ │ │ │ ├── single_view.hpp │ │ │ │ │ ├── size.hpp │ │ │ │ │ ├── std_pair.hpp │ │ │ │ │ ├── struct.hpp │ │ │ │ │ ├── support.hpp │ │ │ │ │ ├── swap.hpp │ │ │ │ │ ├── tag_of.hpp │ │ │ │ │ ├── tag_of_fwd.hpp │ │ │ │ │ ├── transform.hpp │ │ │ │ │ ├── transform_view.hpp │ │ │ │ │ ├── transformation.hpp │ │ │ │ │ ├── tuple.hpp │ │ │ │ │ ├── tuple_fwd.hpp │ │ │ │ │ ├── tuple_tie.hpp │ │ │ │ │ ├── unfused.hpp │ │ │ │ │ ├── unfused_typed.hpp │ │ │ │ │ ├── unused.hpp │ │ │ │ │ ├── value_at.hpp │ │ │ │ │ ├── value_at_key.hpp │ │ │ │ │ ├── value_of.hpp │ │ │ │ │ ├── value_of_data.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ ├── vector10.hpp │ │ │ │ │ ├── vector20.hpp │ │ │ │ │ ├── vector30.hpp │ │ │ │ │ ├── vector40.hpp │ │ │ │ │ ├── vector50.hpp │ │ │ │ │ ├── vector_fwd.hpp │ │ │ │ │ ├── vector_tie.hpp │ │ │ │ │ ├── view.hpp │ │ │ │ │ ├── void.hpp │ │ │ │ │ ├── zip.hpp │ │ │ │ │ └── zip_view.hpp │ │ │ │ ├── iterator.hpp │ │ │ │ ├── iterator │ │ │ │ │ ├── advance.hpp │ │ │ │ │ ├── basic_iterator.hpp │ │ │ │ │ ├── deref.hpp │ │ │ │ │ ├── deref_data.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── adapt_deref_traits.hpp │ │ │ │ │ │ ├── adapt_value_traits.hpp │ │ │ │ │ │ ├── advance.hpp │ │ │ │ │ │ ├── distance.hpp │ │ │ │ │ │ ├── segment_sequence.hpp │ │ │ │ │ │ ├── segmented_equal_to.hpp │ │ │ │ │ │ ├── segmented_iterator.hpp │ │ │ │ │ │ └── segmented_next_impl.hpp │ │ │ │ │ ├── distance.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── iterator_adapter.hpp │ │ │ │ │ ├── iterator_facade.hpp │ │ │ │ │ ├── key_of.hpp │ │ │ │ │ ├── mpl.hpp │ │ │ │ │ ├── mpl │ │ │ │ │ │ ├── convert_iterator.hpp │ │ │ │ │ │ └── fusion_iterator.hpp │ │ │ │ │ ├── next.hpp │ │ │ │ │ ├── prior.hpp │ │ │ │ │ ├── segmented_iterator.hpp │ │ │ │ │ ├── value_of.hpp │ │ │ │ │ └── value_of_data.hpp │ │ │ │ ├── mpl.hpp │ │ │ │ ├── mpl │ │ │ │ │ ├── at.hpp │ │ │ │ │ ├── back.hpp │ │ │ │ │ ├── begin.hpp │ │ │ │ │ ├── clear.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ └── clear.hpp │ │ │ │ │ ├── empty.hpp │ │ │ │ │ ├── end.hpp │ │ │ │ │ ├── erase.hpp │ │ │ │ │ ├── erase_key.hpp │ │ │ │ │ ├── front.hpp │ │ │ │ │ ├── has_key.hpp │ │ │ │ │ ├── insert.hpp │ │ │ │ │ ├── insert_range.hpp │ │ │ │ │ ├── pop_back.hpp │ │ │ │ │ ├── pop_front.hpp │ │ │ │ │ ├── push_back.hpp │ │ │ │ │ ├── push_front.hpp │ │ │ │ │ └── size.hpp │ │ │ │ ├── sequence.hpp │ │ │ │ ├── sequence │ │ │ │ │ ├── comparison.hpp │ │ │ │ │ ├── comparison │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ │ └── not_equal_to.hpp │ │ │ │ │ │ ├── enable_comparison.hpp │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ └── not_equal_to.hpp │ │ │ │ │ ├── convert.hpp │ │ │ │ │ ├── intrinsic.hpp │ │ │ │ │ ├── intrinsic │ │ │ │ │ │ ├── at.hpp │ │ │ │ │ │ ├── at_c.hpp │ │ │ │ │ │ ├── at_key.hpp │ │ │ │ │ │ ├── back.hpp │ │ │ │ │ │ ├── begin.hpp │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ ├── segmented_begin.hpp │ │ │ │ │ │ │ ├── segmented_begin_impl.hpp │ │ │ │ │ │ │ ├── segmented_end.hpp │ │ │ │ │ │ │ ├── segmented_end_impl.hpp │ │ │ │ │ │ │ └── segmented_size.hpp │ │ │ │ │ │ ├── empty.hpp │ │ │ │ │ │ ├── end.hpp │ │ │ │ │ │ ├── front.hpp │ │ │ │ │ │ ├── has_key.hpp │ │ │ │ │ │ ├── segments.hpp │ │ │ │ │ │ ├── size.hpp │ │ │ │ │ │ ├── swap.hpp │ │ │ │ │ │ ├── value_at.hpp │ │ │ │ │ │ └── value_at_key.hpp │ │ │ │ │ ├── intrinsic_fwd.hpp │ │ │ │ │ ├── io.hpp │ │ │ │ │ ├── io │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ ├── in.hpp │ │ │ │ │ │ │ ├── manip.hpp │ │ │ │ │ │ │ └── out.hpp │ │ │ │ │ │ ├── in.hpp │ │ │ │ │ │ └── out.hpp │ │ │ │ │ └── sequence_facade.hpp │ │ │ │ ├── support.hpp │ │ │ │ ├── support │ │ │ │ │ ├── as_const.hpp │ │ │ │ │ ├── category_of.hpp │ │ │ │ │ ├── deduce.hpp │ │ │ │ │ ├── deduce_sequence.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── access.hpp │ │ │ │ │ │ ├── as_fusion_element.hpp │ │ │ │ │ │ ├── category_of.hpp │ │ │ │ │ │ ├── is_mpl_sequence.hpp │ │ │ │ │ │ ├── is_view.hpp │ │ │ │ │ │ ├── mpl_iterator_category.hpp │ │ │ │ │ │ ├── pp_round.hpp │ │ │ │ │ │ ├── segmented_fold_until_impl.hpp │ │ │ │ │ │ └── unknown_key.hpp │ │ │ │ │ ├── is_iterator.hpp │ │ │ │ │ ├── is_segmented.hpp │ │ │ │ │ ├── is_sequence.hpp │ │ │ │ │ ├── is_view.hpp │ │ │ │ │ ├── iterator_base.hpp │ │ │ │ │ ├── pair.hpp │ │ │ │ │ ├── segmented_fold_until.hpp │ │ │ │ │ ├── sequence_base.hpp │ │ │ │ │ ├── tag_of.hpp │ │ │ │ │ ├── tag_of_fwd.hpp │ │ │ │ │ ├── unused.hpp │ │ │ │ │ └── void.hpp │ │ │ │ ├── tuple.hpp │ │ │ │ ├── tuple │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── preprocessed │ │ │ │ │ │ │ ├── make_tuple.hpp │ │ │ │ │ │ │ ├── make_tuple10.hpp │ │ │ │ │ │ │ ├── make_tuple20.hpp │ │ │ │ │ │ │ ├── make_tuple30.hpp │ │ │ │ │ │ │ ├── make_tuple40.hpp │ │ │ │ │ │ │ ├── make_tuple50.hpp │ │ │ │ │ │ │ ├── tuple.hpp │ │ │ │ │ │ │ ├── tuple10.hpp │ │ │ │ │ │ │ ├── tuple10_fwd.hpp │ │ │ │ │ │ │ ├── tuple20.hpp │ │ │ │ │ │ │ ├── tuple20_fwd.hpp │ │ │ │ │ │ │ ├── tuple30.hpp │ │ │ │ │ │ │ ├── tuple30_fwd.hpp │ │ │ │ │ │ │ ├── tuple40.hpp │ │ │ │ │ │ │ ├── tuple40_fwd.hpp │ │ │ │ │ │ │ ├── tuple50.hpp │ │ │ │ │ │ │ ├── tuple50_fwd.hpp │ │ │ │ │ │ │ ├── tuple_fwd.hpp │ │ │ │ │ │ │ ├── tuple_tie.hpp │ │ │ │ │ │ │ ├── tuple_tie10.hpp │ │ │ │ │ │ │ ├── tuple_tie20.hpp │ │ │ │ │ │ │ ├── tuple_tie30.hpp │ │ │ │ │ │ │ ├── tuple_tie40.hpp │ │ │ │ │ │ │ └── tuple_tie50.hpp │ │ │ │ │ │ └── tuple_expand.hpp │ │ │ │ │ ├── make_tuple.hpp │ │ │ │ │ ├── tuple.hpp │ │ │ │ │ ├── tuple_fwd.hpp │ │ │ │ │ └── tuple_tie.hpp │ │ │ │ ├── view.hpp │ │ │ │ └── view │ │ │ │ │ ├── detail │ │ │ │ │ └── strictest_traversal.hpp │ │ │ │ │ ├── filter_view.hpp │ │ │ │ │ ├── filter_view │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── begin_impl.hpp │ │ │ │ │ │ ├── deref_data_impl.hpp │ │ │ │ │ │ ├── deref_impl.hpp │ │ │ │ │ │ ├── end_impl.hpp │ │ │ │ │ │ ├── equal_to_impl.hpp │ │ │ │ │ │ ├── key_of_impl.hpp │ │ │ │ │ │ ├── next_impl.hpp │ │ │ │ │ │ ├── size_impl.hpp │ │ │ │ │ │ ├── value_of_data_impl.hpp │ │ │ │ │ │ └── value_of_impl.hpp │ │ │ │ │ ├── filter_view.hpp │ │ │ │ │ └── filter_view_iterator.hpp │ │ │ │ │ ├── iterator_range.hpp │ │ │ │ │ ├── iterator_range │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── at_impl.hpp │ │ │ │ │ │ ├── begin_impl.hpp │ │ │ │ │ │ ├── end_impl.hpp │ │ │ │ │ │ ├── is_segmented_impl.hpp │ │ │ │ │ │ ├── segmented_iterator_range.hpp │ │ │ │ │ │ ├── segments_impl.hpp │ │ │ │ │ │ ├── size_impl.hpp │ │ │ │ │ │ └── value_at_impl.hpp │ │ │ │ │ └── iterator_range.hpp │ │ │ │ │ ├── joint_view.hpp │ │ │ │ │ ├── joint_view │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── begin_impl.hpp │ │ │ │ │ │ ├── deref_data_impl.hpp │ │ │ │ │ │ ├── deref_impl.hpp │ │ │ │ │ │ ├── end_impl.hpp │ │ │ │ │ │ ├── key_of_impl.hpp │ │ │ │ │ │ ├── next_impl.hpp │ │ │ │ │ │ ├── value_of_data_impl.hpp │ │ │ │ │ │ └── value_of_impl.hpp │ │ │ │ │ ├── joint_view.hpp │ │ │ │ │ ├── joint_view_fwd.hpp │ │ │ │ │ └── joint_view_iterator.hpp │ │ │ │ │ ├── nview.hpp │ │ │ │ │ ├── nview │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── advance_impl.hpp │ │ │ │ │ │ ├── at_impl.hpp │ │ │ │ │ │ ├── begin_impl.hpp │ │ │ │ │ │ ├── deref_impl.hpp │ │ │ │ │ │ ├── distance_impl.hpp │ │ │ │ │ │ ├── end_impl.hpp │ │ │ │ │ │ ├── equal_to_impl.hpp │ │ │ │ │ │ ├── next_impl.hpp │ │ │ │ │ │ ├── nview_impl.hpp │ │ │ │ │ │ ├── prior_impl.hpp │ │ │ │ │ │ ├── size_impl.hpp │ │ │ │ │ │ ├── value_at_impl.hpp │ │ │ │ │ │ └── value_of_impl.hpp │ │ │ │ │ ├── nview.hpp │ │ │ │ │ └── nview_iterator.hpp │ │ │ │ │ ├── repetitive_view.hpp │ │ │ │ │ ├── repetitive_view │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── begin_impl.hpp │ │ │ │ │ │ ├── deref_impl.hpp │ │ │ │ │ │ ├── end_impl.hpp │ │ │ │ │ │ ├── next_impl.hpp │ │ │ │ │ │ └── value_of_impl.hpp │ │ │ │ │ ├── repetitive_view.hpp │ │ │ │ │ ├── repetitive_view_fwd.hpp │ │ │ │ │ └── repetitive_view_iterator.hpp │ │ │ │ │ ├── reverse_view.hpp │ │ │ │ │ ├── reverse_view │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── advance_impl.hpp │ │ │ │ │ │ ├── at_impl.hpp │ │ │ │ │ │ ├── begin_impl.hpp │ │ │ │ │ │ ├── deref_data_impl.hpp │ │ │ │ │ │ ├── deref_impl.hpp │ │ │ │ │ │ ├── distance_impl.hpp │ │ │ │ │ │ ├── end_impl.hpp │ │ │ │ │ │ ├── key_of_impl.hpp │ │ │ │ │ │ ├── next_impl.hpp │ │ │ │ │ │ ├── prior_impl.hpp │ │ │ │ │ │ ├── value_at_impl.hpp │ │ │ │ │ │ ├── value_of_data_impl.hpp │ │ │ │ │ │ └── value_of_impl.hpp │ │ │ │ │ ├── reverse_view.hpp │ │ │ │ │ └── reverse_view_iterator.hpp │ │ │ │ │ ├── single_view.hpp │ │ │ │ │ ├── single_view │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── advance_impl.hpp │ │ │ │ │ │ ├── at_impl.hpp │ │ │ │ │ │ ├── begin_impl.hpp │ │ │ │ │ │ ├── deref_impl.hpp │ │ │ │ │ │ ├── distance_impl.hpp │ │ │ │ │ │ ├── end_impl.hpp │ │ │ │ │ │ ├── equal_to_impl.hpp │ │ │ │ │ │ ├── next_impl.hpp │ │ │ │ │ │ ├── prior_impl.hpp │ │ │ │ │ │ ├── size_impl.hpp │ │ │ │ │ │ ├── value_at_impl.hpp │ │ │ │ │ │ └── value_of_impl.hpp │ │ │ │ │ ├── single_view.hpp │ │ │ │ │ └── single_view_iterator.hpp │ │ │ │ │ ├── transform_view.hpp │ │ │ │ │ ├── transform_view │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── advance_impl.hpp │ │ │ │ │ │ ├── apply_transform_result.hpp │ │ │ │ │ │ ├── at_impl.hpp │ │ │ │ │ │ ├── begin_impl.hpp │ │ │ │ │ │ ├── deref_impl.hpp │ │ │ │ │ │ ├── distance_impl.hpp │ │ │ │ │ │ ├── end_impl.hpp │ │ │ │ │ │ ├── equal_to_impl.hpp │ │ │ │ │ │ ├── next_impl.hpp │ │ │ │ │ │ ├── prior_impl.hpp │ │ │ │ │ │ ├── value_at_impl.hpp │ │ │ │ │ │ └── value_of_impl.hpp │ │ │ │ │ ├── transform_view.hpp │ │ │ │ │ ├── transform_view_fwd.hpp │ │ │ │ │ └── transform_view_iterator.hpp │ │ │ │ │ ├── zip_view.hpp │ │ │ │ │ └── zip_view │ │ │ │ │ ├── detail │ │ │ │ │ ├── advance_impl.hpp │ │ │ │ │ ├── at_impl.hpp │ │ │ │ │ ├── begin_impl.hpp │ │ │ │ │ ├── deref_impl.hpp │ │ │ │ │ ├── distance_impl.hpp │ │ │ │ │ ├── end_impl.hpp │ │ │ │ │ ├── equal_to_impl.hpp │ │ │ │ │ ├── next_impl.hpp │ │ │ │ │ ├── prior_impl.hpp │ │ │ │ │ ├── size_impl.hpp │ │ │ │ │ ├── value_at_impl.hpp │ │ │ │ │ └── value_of_impl.hpp │ │ │ │ │ ├── zip_view.hpp │ │ │ │ │ ├── zip_view_iterator.hpp │ │ │ │ │ └── zip_view_iterator_fwd.hpp │ │ │ ├── generator_iterator.hpp │ │ │ ├── geometry.hpp │ │ │ ├── geometry │ │ │ │ ├── algorithms │ │ │ │ │ ├── append.hpp │ │ │ │ │ ├── area.hpp │ │ │ │ │ ├── assign.hpp │ │ │ │ │ ├── buffer.hpp │ │ │ │ │ ├── centroid.hpp │ │ │ │ │ ├── clear.hpp │ │ │ │ │ ├── comparable_distance.hpp │ │ │ │ │ ├── convert.hpp │ │ │ │ │ ├── convex_hull.hpp │ │ │ │ │ ├── correct.hpp │ │ │ │ │ ├── covered_by.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── as_range.hpp │ │ │ │ │ │ ├── assign_box_corners.hpp │ │ │ │ │ │ ├── assign_indexed_point.hpp │ │ │ │ │ │ ├── assign_values.hpp │ │ │ │ │ │ ├── calculate_null.hpp │ │ │ │ │ │ ├── calculate_sum.hpp │ │ │ │ │ │ ├── convert_indexed_to_indexed.hpp │ │ │ │ │ │ ├── convert_point_to_point.hpp │ │ │ │ │ │ ├── disjoint.hpp │ │ │ │ │ │ ├── equals │ │ │ │ │ │ │ └── collect_vectors.hpp │ │ │ │ │ │ ├── for_each_range.hpp │ │ │ │ │ │ ├── get_left_turns.hpp │ │ │ │ │ │ ├── has_self_intersections.hpp │ │ │ │ │ │ ├── not.hpp │ │ │ │ │ │ ├── occupation_info.hpp │ │ │ │ │ │ ├── overlay │ │ │ │ │ │ │ ├── add_rings.hpp │ │ │ │ │ │ │ ├── append_no_duplicates.hpp │ │ │ │ │ │ │ ├── assign_parents.hpp │ │ │ │ │ │ │ ├── backtrack_check_si.hpp │ │ │ │ │ │ │ ├── calculate_distance_policy.hpp │ │ │ │ │ │ │ ├── check_enrich.hpp │ │ │ │ │ │ │ ├── clip_linestring.hpp │ │ │ │ │ │ │ ├── convert_ring.hpp │ │ │ │ │ │ │ ├── copy_segment_point.hpp │ │ │ │ │ │ │ ├── copy_segments.hpp │ │ │ │ │ │ │ ├── debug_turn_info.hpp │ │ │ │ │ │ │ ├── enrich_intersection_points.hpp │ │ │ │ │ │ │ ├── enrichment_info.hpp │ │ │ │ │ │ │ ├── follow.hpp │ │ │ │ │ │ │ ├── get_intersection_points.hpp │ │ │ │ │ │ │ ├── get_relative_order.hpp │ │ │ │ │ │ │ ├── get_ring.hpp │ │ │ │ │ │ │ ├── get_turn_info.hpp │ │ │ │ │ │ │ ├── get_turns.hpp │ │ │ │ │ │ │ ├── handle_tangencies.hpp │ │ │ │ │ │ │ ├── intersection_insert.hpp │ │ │ │ │ │ │ ├── overlay.hpp │ │ │ │ │ │ │ ├── overlay_type.hpp │ │ │ │ │ │ │ ├── ring_properties.hpp │ │ │ │ │ │ │ ├── segment_identifier.hpp │ │ │ │ │ │ │ ├── select_rings.hpp │ │ │ │ │ │ │ ├── self_turn_points.hpp │ │ │ │ │ │ │ ├── stream_info.hpp │ │ │ │ │ │ │ ├── traversal_info.hpp │ │ │ │ │ │ │ ├── traverse.hpp │ │ │ │ │ │ │ ├── turn_info.hpp │ │ │ │ │ │ │ └── visit_info.hpp │ │ │ │ │ │ ├── partition.hpp │ │ │ │ │ │ ├── point_on_border.hpp │ │ │ │ │ │ ├── ring_identifier.hpp │ │ │ │ │ │ ├── sections │ │ │ │ │ │ │ ├── range_by_section.hpp │ │ │ │ │ │ │ └── sectionalize.hpp │ │ │ │ │ │ └── throw_on_empty_input.hpp │ │ │ │ │ ├── difference.hpp │ │ │ │ │ ├── disjoint.hpp │ │ │ │ │ ├── distance.hpp │ │ │ │ │ ├── envelope.hpp │ │ │ │ │ ├── equals.hpp │ │ │ │ │ ├── expand.hpp │ │ │ │ │ ├── for_each.hpp │ │ │ │ │ ├── intersection.hpp │ │ │ │ │ ├── intersects.hpp │ │ │ │ │ ├── length.hpp │ │ │ │ │ ├── make.hpp │ │ │ │ │ ├── not_implemented.hpp │ │ │ │ │ ├── num_geometries.hpp │ │ │ │ │ ├── num_interior_rings.hpp │ │ │ │ │ ├── num_points.hpp │ │ │ │ │ ├── overlaps.hpp │ │ │ │ │ ├── perimeter.hpp │ │ │ │ │ ├── reverse.hpp │ │ │ │ │ ├── simplify.hpp │ │ │ │ │ ├── sym_difference.hpp │ │ │ │ │ ├── touches.hpp │ │ │ │ │ ├── transform.hpp │ │ │ │ │ ├── union.hpp │ │ │ │ │ ├── unique.hpp │ │ │ │ │ └── within.hpp │ │ │ │ ├── arithmetic │ │ │ │ │ ├── arithmetic.hpp │ │ │ │ │ ├── determinant.hpp │ │ │ │ │ └── dot_product.hpp │ │ │ │ ├── core │ │ │ │ │ ├── access.hpp │ │ │ │ │ ├── closure.hpp │ │ │ │ │ ├── coordinate_dimension.hpp │ │ │ │ │ ├── coordinate_system.hpp │ │ │ │ │ ├── coordinate_type.hpp │ │ │ │ │ ├── cs.hpp │ │ │ │ │ ├── exception.hpp │ │ │ │ │ ├── exterior_ring.hpp │ │ │ │ │ ├── geometry_id.hpp │ │ │ │ │ ├── interior_rings.hpp │ │ │ │ │ ├── interior_type.hpp │ │ │ │ │ ├── is_areal.hpp │ │ │ │ │ ├── mutable_range.hpp │ │ │ │ │ ├── point_order.hpp │ │ │ │ │ ├── point_type.hpp │ │ │ │ │ ├── radian_access.hpp │ │ │ │ │ ├── reverse_dispatch.hpp │ │ │ │ │ ├── ring_type.hpp │ │ │ │ │ ├── tag.hpp │ │ │ │ │ ├── tag_cast.hpp │ │ │ │ │ ├── tags.hpp │ │ │ │ │ └── topological_dimension.hpp │ │ │ │ ├── geometries │ │ │ │ │ ├── adapted │ │ │ │ │ │ ├── boost_array.hpp │ │ │ │ │ │ ├── boost_fusion.hpp │ │ │ │ │ │ ├── boost_polygon.hpp │ │ │ │ │ │ ├── boost_polygon │ │ │ │ │ │ │ ├── box.hpp │ │ │ │ │ │ │ ├── hole_iterator.hpp │ │ │ │ │ │ │ ├── holes_proxy.hpp │ │ │ │ │ │ │ ├── point.hpp │ │ │ │ │ │ │ ├── polygon.hpp │ │ │ │ │ │ │ ├── ring.hpp │ │ │ │ │ │ │ └── ring_proxy.hpp │ │ │ │ │ │ ├── boost_range │ │ │ │ │ │ │ ├── adjacent_filtered.hpp │ │ │ │ │ │ │ ├── filtered.hpp │ │ │ │ │ │ │ ├── reversed.hpp │ │ │ │ │ │ │ ├── sliced.hpp │ │ │ │ │ │ │ ├── strided.hpp │ │ │ │ │ │ │ └── uniqued.hpp │ │ │ │ │ │ ├── boost_tuple.hpp │ │ │ │ │ │ ├── c_array.hpp │ │ │ │ │ │ └── std_pair_as_segment.hpp │ │ │ │ │ ├── box.hpp │ │ │ │ │ ├── concepts │ │ │ │ │ │ ├── box_concept.hpp │ │ │ │ │ │ ├── check.hpp │ │ │ │ │ │ ├── linestring_concept.hpp │ │ │ │ │ │ ├── point_concept.hpp │ │ │ │ │ │ ├── polygon_concept.hpp │ │ │ │ │ │ ├── ring_concept.hpp │ │ │ │ │ │ └── segment_concept.hpp │ │ │ │ │ ├── geometries.hpp │ │ │ │ │ ├── linestring.hpp │ │ │ │ │ ├── point.hpp │ │ │ │ │ ├── point_xy.hpp │ │ │ │ │ ├── polygon.hpp │ │ │ │ │ ├── register │ │ │ │ │ │ ├── box.hpp │ │ │ │ │ │ ├── linestring.hpp │ │ │ │ │ │ ├── point.hpp │ │ │ │ │ │ ├── ring.hpp │ │ │ │ │ │ └── segment.hpp │ │ │ │ │ ├── ring.hpp │ │ │ │ │ ├── segment.hpp │ │ │ │ │ └── variant.hpp │ │ │ │ ├── geometry.hpp │ │ │ │ ├── index │ │ │ │ │ ├── adaptors │ │ │ │ │ │ └── query.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── algorithms │ │ │ │ │ │ │ ├── bounds.hpp │ │ │ │ │ │ │ ├── comparable_distance_centroid.hpp │ │ │ │ │ │ │ ├── comparable_distance_far.hpp │ │ │ │ │ │ │ ├── comparable_distance_near.hpp │ │ │ │ │ │ │ ├── content.hpp │ │ │ │ │ │ │ ├── diff_abs.hpp │ │ │ │ │ │ │ ├── intersection_content.hpp │ │ │ │ │ │ │ ├── is_valid.hpp │ │ │ │ │ │ │ ├── margin.hpp │ │ │ │ │ │ │ ├── minmaxdist.hpp │ │ │ │ │ │ │ ├── path_intersection.hpp │ │ │ │ │ │ │ ├── segment_intersection.hpp │ │ │ │ │ │ │ ├── smallest_for_indexable.hpp │ │ │ │ │ │ │ ├── sum_for_indexable.hpp │ │ │ │ │ │ │ └── union_content.hpp │ │ │ │ │ │ ├── assert.hpp │ │ │ │ │ │ ├── config_begin.hpp │ │ │ │ │ │ ├── config_end.hpp │ │ │ │ │ │ ├── distance_predicates.hpp │ │ │ │ │ │ ├── exception.hpp │ │ │ │ │ │ ├── meta.hpp │ │ │ │ │ │ ├── predicates.hpp │ │ │ │ │ │ ├── pushable_array.hpp │ │ │ │ │ │ ├── rtree │ │ │ │ │ │ │ ├── adaptors.hpp │ │ │ │ │ │ │ ├── kmeans │ │ │ │ │ │ │ │ ├── kmeans.hpp │ │ │ │ │ │ │ │ └── split.hpp │ │ │ │ │ │ │ ├── linear │ │ │ │ │ │ │ │ ├── linear.hpp │ │ │ │ │ │ │ │ └── redistribute_elements.hpp │ │ │ │ │ │ │ ├── node │ │ │ │ │ │ │ │ ├── auto_deallocator.hpp │ │ │ │ │ │ │ │ ├── concept.hpp │ │ │ │ │ │ │ │ ├── dynamic_visitor.hpp │ │ │ │ │ │ │ │ ├── node.hpp │ │ │ │ │ │ │ │ ├── node_auto_ptr.hpp │ │ │ │ │ │ │ │ ├── node_d_mem_dynamic.hpp │ │ │ │ │ │ │ │ ├── node_d_mem_static.hpp │ │ │ │ │ │ │ │ ├── node_s_mem_dynamic.hpp │ │ │ │ │ │ │ │ ├── node_s_mem_static.hpp │ │ │ │ │ │ │ │ ├── pairs.hpp │ │ │ │ │ │ │ │ └── static_visitor.hpp │ │ │ │ │ │ │ ├── options.hpp │ │ │ │ │ │ │ ├── pack_create.hpp │ │ │ │ │ │ │ ├── quadratic │ │ │ │ │ │ │ │ ├── quadratic.hpp │ │ │ │ │ │ │ │ └── redistribute_elements.hpp │ │ │ │ │ │ │ ├── query_iterators.hpp │ │ │ │ │ │ │ ├── rstar │ │ │ │ │ │ │ │ ├── choose_next_node.hpp │ │ │ │ │ │ │ │ ├── insert.hpp │ │ │ │ │ │ │ │ ├── redistribute_elements.hpp │ │ │ │ │ │ │ │ └── rstar.hpp │ │ │ │ │ │ │ ├── utilities │ │ │ │ │ │ │ │ ├── are_boxes_ok.hpp │ │ │ │ │ │ │ │ ├── are_levels_ok.hpp │ │ │ │ │ │ │ │ ├── gl_draw.hpp │ │ │ │ │ │ │ │ ├── print.hpp │ │ │ │ │ │ │ │ ├── statistics.hpp │ │ │ │ │ │ │ │ └── view.hpp │ │ │ │ │ │ │ └── visitors │ │ │ │ │ │ │ │ ├── children_box.hpp │ │ │ │ │ │ │ │ ├── copy.hpp │ │ │ │ │ │ │ │ ├── count.hpp │ │ │ │ │ │ │ │ ├── destroy.hpp │ │ │ │ │ │ │ │ ├── distance_query.hpp │ │ │ │ │ │ │ │ ├── insert.hpp │ │ │ │ │ │ │ │ ├── is_leaf.hpp │ │ │ │ │ │ │ │ ├── remove.hpp │ │ │ │ │ │ │ │ └── spatial_query.hpp │ │ │ │ │ │ ├── tags.hpp │ │ │ │ │ │ ├── translator.hpp │ │ │ │ │ │ ├── tuples.hpp │ │ │ │ │ │ ├── type_erased_iterators.hpp │ │ │ │ │ │ ├── utilities.hpp │ │ │ │ │ │ ├── varray.hpp │ │ │ │ │ │ └── varray_detail.hpp │ │ │ │ │ ├── distance_predicates.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── indexable.hpp │ │ │ │ │ ├── inserter.hpp │ │ │ │ │ ├── parameters.hpp │ │ │ │ │ ├── predicates.hpp │ │ │ │ │ └── rtree.hpp │ │ │ │ ├── io │ │ │ │ │ ├── dsv │ │ │ │ │ │ └── write.hpp │ │ │ │ │ ├── io.hpp │ │ │ │ │ ├── svg │ │ │ │ │ │ ├── svg_mapper.hpp │ │ │ │ │ │ ├── write_svg.hpp │ │ │ │ │ │ └── write_svg_multi.hpp │ │ │ │ │ └── wkt │ │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── prefix.hpp │ │ │ │ │ │ └── wkt_multi.hpp │ │ │ │ │ │ ├── read.hpp │ │ │ │ │ │ ├── stream.hpp │ │ │ │ │ │ ├── wkt.hpp │ │ │ │ │ │ └── write.hpp │ │ │ │ ├── iterators │ │ │ │ │ ├── base.hpp │ │ │ │ │ ├── closing_iterator.hpp │ │ │ │ │ └── ever_circling_iterator.hpp │ │ │ │ ├── multi │ │ │ │ │ ├── algorithms │ │ │ │ │ │ ├── append.hpp │ │ │ │ │ │ ├── area.hpp │ │ │ │ │ │ ├── centroid.hpp │ │ │ │ │ │ ├── clear.hpp │ │ │ │ │ │ ├── convert.hpp │ │ │ │ │ │ ├── correct.hpp │ │ │ │ │ │ ├── covered_by.hpp │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ ├── for_each_range.hpp │ │ │ │ │ │ │ ├── modify.hpp │ │ │ │ │ │ │ ├── modify_with_predicate.hpp │ │ │ │ │ │ │ ├── multi_sum.hpp │ │ │ │ │ │ │ ├── overlay │ │ │ │ │ │ │ │ ├── copy_segment_point.hpp │ │ │ │ │ │ │ │ ├── copy_segments.hpp │ │ │ │ │ │ │ │ ├── get_ring.hpp │ │ │ │ │ │ │ │ ├── get_turns.hpp │ │ │ │ │ │ │ │ ├── select_rings.hpp │ │ │ │ │ │ │ │ └── self_turn_points.hpp │ │ │ │ │ │ │ ├── point_on_border.hpp │ │ │ │ │ │ │ └── sections │ │ │ │ │ │ │ │ ├── range_by_section.hpp │ │ │ │ │ │ │ │ └── sectionalize.hpp │ │ │ │ │ │ ├── disjoint.hpp │ │ │ │ │ │ ├── distance.hpp │ │ │ │ │ │ ├── envelope.hpp │ │ │ │ │ │ ├── equals.hpp │ │ │ │ │ │ ├── for_each.hpp │ │ │ │ │ │ ├── intersection.hpp │ │ │ │ │ │ ├── length.hpp │ │ │ │ │ │ ├── num_geometries.hpp │ │ │ │ │ │ ├── num_interior_rings.hpp │ │ │ │ │ │ ├── num_points.hpp │ │ │ │ │ │ ├── perimeter.hpp │ │ │ │ │ │ ├── reverse.hpp │ │ │ │ │ │ ├── simplify.hpp │ │ │ │ │ │ ├── transform.hpp │ │ │ │ │ │ ├── unique.hpp │ │ │ │ │ │ └── within.hpp │ │ │ │ │ ├── core │ │ │ │ │ │ ├── closure.hpp │ │ │ │ │ │ ├── geometry_id.hpp │ │ │ │ │ │ ├── interior_rings.hpp │ │ │ │ │ │ ├── is_areal.hpp │ │ │ │ │ │ ├── point_order.hpp │ │ │ │ │ │ ├── point_type.hpp │ │ │ │ │ │ ├── ring_type.hpp │ │ │ │ │ │ ├── tags.hpp │ │ │ │ │ │ └── topological_dimension.hpp │ │ │ │ │ ├── geometries │ │ │ │ │ │ ├── concepts │ │ │ │ │ │ │ ├── check.hpp │ │ │ │ │ │ │ ├── multi_linestring_concept.hpp │ │ │ │ │ │ │ ├── multi_point_concept.hpp │ │ │ │ │ │ │ └── multi_polygon_concept.hpp │ │ │ │ │ │ ├── multi_geometries.hpp │ │ │ │ │ │ ├── multi_linestring.hpp │ │ │ │ │ │ ├── multi_point.hpp │ │ │ │ │ │ ├── multi_polygon.hpp │ │ │ │ │ │ └── register │ │ │ │ │ │ │ ├── multi_linestring.hpp │ │ │ │ │ │ │ ├── multi_point.hpp │ │ │ │ │ │ │ └── multi_polygon.hpp │ │ │ │ │ ├── io │ │ │ │ │ │ ├── dsv │ │ │ │ │ │ │ └── write.hpp │ │ │ │ │ │ └── wkt │ │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ └── prefix.hpp │ │ │ │ │ │ │ ├── read.hpp │ │ │ │ │ │ │ ├── wkt.hpp │ │ │ │ │ │ │ └── write.hpp │ │ │ │ │ ├── multi.hpp │ │ │ │ │ ├── strategies │ │ │ │ │ │ └── cartesian │ │ │ │ │ │ │ └── centroid_average.hpp │ │ │ │ │ └── views │ │ │ │ │ │ └── detail │ │ │ │ │ │ └── range_type.hpp │ │ │ │ ├── policies │ │ │ │ │ ├── compare.hpp │ │ │ │ │ └── relate │ │ │ │ │ │ ├── de9im.hpp │ │ │ │ │ │ ├── direction.hpp │ │ │ │ │ │ ├── intersection_points.hpp │ │ │ │ │ │ └── tupled.hpp │ │ │ │ ├── strategies │ │ │ │ │ ├── agnostic │ │ │ │ │ │ ├── hull_graham_andrew.hpp │ │ │ │ │ │ ├── point_in_box_by_side.hpp │ │ │ │ │ │ ├── point_in_poly_oriented_winding.hpp │ │ │ │ │ │ ├── point_in_poly_winding.hpp │ │ │ │ │ │ └── simplify_douglas_peucker.hpp │ │ │ │ │ ├── area.hpp │ │ │ │ │ ├── cartesian │ │ │ │ │ │ ├── area_surveyor.hpp │ │ │ │ │ │ ├── box_in_box.hpp │ │ │ │ │ │ ├── cart_intersect.hpp │ │ │ │ │ │ ├── centroid_bashein_detmer.hpp │ │ │ │ │ │ ├── centroid_weighted_length.hpp │ │ │ │ │ │ ├── distance_projected_point.hpp │ │ │ │ │ │ ├── distance_pythagoras.hpp │ │ │ │ │ │ ├── point_in_box.hpp │ │ │ │ │ │ ├── point_in_poly_crossings_multiply.hpp │ │ │ │ │ │ ├── point_in_poly_franklin.hpp │ │ │ │ │ │ └── side_by_triangle.hpp │ │ │ │ │ ├── centroid.hpp │ │ │ │ │ ├── compare.hpp │ │ │ │ │ ├── concepts │ │ │ │ │ │ ├── area_concept.hpp │ │ │ │ │ │ ├── centroid_concept.hpp │ │ │ │ │ │ ├── convex_hull_concept.hpp │ │ │ │ │ │ ├── distance_concept.hpp │ │ │ │ │ │ ├── segment_intersect_concept.hpp │ │ │ │ │ │ ├── simplify_concept.hpp │ │ │ │ │ │ └── within_concept.hpp │ │ │ │ │ ├── convex_hull.hpp │ │ │ │ │ ├── covered_by.hpp │ │ │ │ │ ├── default_area_result.hpp │ │ │ │ │ ├── default_distance_result.hpp │ │ │ │ │ ├── default_length_result.hpp │ │ │ │ │ ├── distance.hpp │ │ │ │ │ ├── intersection.hpp │ │ │ │ │ ├── intersection_result.hpp │ │ │ │ │ ├── side.hpp │ │ │ │ │ ├── side_info.hpp │ │ │ │ │ ├── spherical │ │ │ │ │ │ ├── area_huiller.hpp │ │ │ │ │ │ ├── compare_circular.hpp │ │ │ │ │ │ ├── distance_cross_track.hpp │ │ │ │ │ │ ├── distance_haversine.hpp │ │ │ │ │ │ ├── side_by_cross_track.hpp │ │ │ │ │ │ └── ssf.hpp │ │ │ │ │ ├── strategies.hpp │ │ │ │ │ ├── strategy_transform.hpp │ │ │ │ │ ├── tags.hpp │ │ │ │ │ ├── transform.hpp │ │ │ │ │ ├── transform │ │ │ │ │ │ ├── inverse_transformer.hpp │ │ │ │ │ │ ├── map_transformer.hpp │ │ │ │ │ │ └── matrix_transformers.hpp │ │ │ │ │ └── within.hpp │ │ │ │ ├── util │ │ │ │ │ ├── add_const_if_c.hpp │ │ │ │ │ ├── bare_type.hpp │ │ │ │ │ ├── calculation_type.hpp │ │ │ │ │ ├── closure_as_bool.hpp │ │ │ │ │ ├── coordinate_cast.hpp │ │ │ │ │ ├── for_each_coordinate.hpp │ │ │ │ │ ├── math.hpp │ │ │ │ │ ├── order_as_direction.hpp │ │ │ │ │ ├── parameter_type_of.hpp │ │ │ │ │ ├── promote_floating_point.hpp │ │ │ │ │ ├── rational.hpp │ │ │ │ │ ├── readme.txt │ │ │ │ │ ├── select_calculation_type.hpp │ │ │ │ │ ├── select_coordinate_type.hpp │ │ │ │ │ └── select_most_precise.hpp │ │ │ │ └── views │ │ │ │ │ ├── box_view.hpp │ │ │ │ │ ├── closeable_view.hpp │ │ │ │ │ ├── detail │ │ │ │ │ ├── points_view.hpp │ │ │ │ │ └── range_type.hpp │ │ │ │ │ ├── identity_view.hpp │ │ │ │ │ ├── reversible_view.hpp │ │ │ │ │ └── segment_view.hpp │ │ │ ├── get_pointer.hpp │ │ │ ├── gil │ │ │ │ ├── algorithm.hpp │ │ │ │ ├── bit_aligned_pixel_iterator.hpp │ │ │ │ ├── bit_aligned_pixel_reference.hpp │ │ │ │ ├── channel.hpp │ │ │ │ ├── channel_algorithm.hpp │ │ │ │ ├── cmyk.hpp │ │ │ │ ├── color_base.hpp │ │ │ │ ├── color_base_algorithm.hpp │ │ │ │ ├── color_convert.hpp │ │ │ │ ├── deprecated.hpp │ │ │ │ ├── device_n.hpp │ │ │ │ ├── extension │ │ │ │ │ ├── dynamic_image │ │ │ │ │ │ ├── algorithm.hpp │ │ │ │ │ │ ├── any_image.hpp │ │ │ │ │ │ ├── any_image_view.hpp │ │ │ │ │ │ ├── apply_operation.hpp │ │ │ │ │ │ ├── apply_operation_base.hpp │ │ │ │ │ │ ├── dynamic_at_c.hpp │ │ │ │ │ │ ├── dynamic_image_all.hpp │ │ │ │ │ │ ├── image_view_factory.hpp │ │ │ │ │ │ ├── reduce.hpp │ │ │ │ │ │ └── variant.hpp │ │ │ │ │ └── io │ │ │ │ │ │ ├── dynamic_io.hpp │ │ │ │ │ │ ├── io_error.hpp │ │ │ │ │ │ ├── jpeg_dynamic_io.hpp │ │ │ │ │ │ ├── jpeg_io.hpp │ │ │ │ │ │ ├── jpeg_io_private.hpp │ │ │ │ │ │ ├── png_dynamic_io.hpp │ │ │ │ │ │ ├── png_io.hpp │ │ │ │ │ │ ├── png_io_private.hpp │ │ │ │ │ │ ├── tiff_dynamic_io.hpp │ │ │ │ │ │ └── tiff_io.hpp │ │ │ │ ├── gil_all.hpp │ │ │ │ ├── gil_concept.hpp │ │ │ │ ├── gil_config.hpp │ │ │ │ ├── gray.hpp │ │ │ │ ├── image.hpp │ │ │ │ ├── image_view.hpp │ │ │ │ ├── image_view_factory.hpp │ │ │ │ ├── iterator_from_2d.hpp │ │ │ │ ├── locator.hpp │ │ │ │ ├── metafunctions.hpp │ │ │ │ ├── packed_pixel.hpp │ │ │ │ ├── pixel.hpp │ │ │ │ ├── pixel_iterator.hpp │ │ │ │ ├── pixel_iterator_adaptor.hpp │ │ │ │ ├── planar_pixel_iterator.hpp │ │ │ │ ├── planar_pixel_reference.hpp │ │ │ │ ├── position_iterator.hpp │ │ │ │ ├── rgb.hpp │ │ │ │ ├── rgba.hpp │ │ │ │ ├── step_iterator.hpp │ │ │ │ ├── typedefs.hpp │ │ │ │ ├── utilities.hpp │ │ │ │ └── virtual_locator.hpp │ │ │ ├── graph │ │ │ │ ├── accounting.hpp │ │ │ │ ├── adj_list_serialize.hpp │ │ │ │ ├── adjacency_iterator.hpp │ │ │ │ ├── adjacency_list.hpp │ │ │ │ ├── adjacency_list_io.hpp │ │ │ │ ├── adjacency_matrix.hpp │ │ │ │ ├── astar_search.hpp │ │ │ │ ├── bandwidth.hpp │ │ │ │ ├── bc_clustering.hpp │ │ │ │ ├── bellman_ford_shortest_paths.hpp │ │ │ │ ├── betweenness_centrality.hpp │ │ │ │ ├── biconnected_components.hpp │ │ │ │ ├── bipartite.hpp │ │ │ │ ├── boyer_myrvold_planar_test.hpp │ │ │ │ ├── boykov_kolmogorov_max_flow.hpp │ │ │ │ ├── breadth_first_search.hpp │ │ │ │ ├── bron_kerbosch_all_cliques.hpp │ │ │ │ ├── buffer_concepts.hpp │ │ │ │ ├── chrobak_payne_drawing.hpp │ │ │ │ ├── circle_layout.hpp │ │ │ │ ├── closeness_centrality.hpp │ │ │ │ ├── clustering_coefficient.hpp │ │ │ │ ├── compressed_sparse_row_graph.hpp │ │ │ │ ├── connected_components.hpp │ │ │ │ ├── copy.hpp │ │ │ │ ├── core_numbers.hpp │ │ │ │ ├── create_condensation_graph.hpp │ │ │ │ ├── cuthill_mckee_ordering.hpp │ │ │ │ ├── dag_shortest_paths.hpp │ │ │ │ ├── degree_centrality.hpp │ │ │ │ ├── depth_first_search.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── adj_list_edge_iterator.hpp │ │ │ │ │ ├── adjacency_list.hpp │ │ │ │ │ ├── array_binary_tree.hpp │ │ │ │ │ ├── compressed_sparse_row_struct.hpp │ │ │ │ │ ├── connected_components.hpp │ │ │ │ │ ├── d_ary_heap.hpp │ │ │ │ │ ├── edge.hpp │ │ │ │ │ ├── geodesic.hpp │ │ │ │ │ ├── histogram_sort.hpp │ │ │ │ │ ├── incidence_iterator.hpp │ │ │ │ │ ├── incremental_components.hpp │ │ │ │ │ ├── index.hpp │ │ │ │ │ ├── indexed_properties.hpp │ │ │ │ │ ├── is_distributed_selector.hpp │ │ │ │ │ ├── labeled_graph_traits.hpp │ │ │ │ │ ├── list_base.hpp │ │ │ │ │ ├── permutation.hpp │ │ │ │ │ ├── read_graphviz_new.hpp │ │ │ │ │ ├── read_graphviz_spirit.hpp │ │ │ │ │ ├── self_avoiding_walk.hpp │ │ │ │ │ ├── set_adaptor.hpp │ │ │ │ │ ├── shadow_iterator.hpp │ │ │ │ │ └── sparse_ordering.hpp │ │ │ │ ├── dijkstra_shortest_paths.hpp │ │ │ │ ├── dijkstra_shortest_paths_no_color_map.hpp │ │ │ │ ├── dimacs.hpp │ │ │ │ ├── directed_graph.hpp │ │ │ │ ├── distributed │ │ │ │ │ ├── adjacency_list.hpp │ │ │ │ │ ├── adjlist │ │ │ │ │ │ ├── handlers.hpp │ │ │ │ │ │ ├── initialize.hpp │ │ │ │ │ │ ├── redistribute.hpp │ │ │ │ │ │ └── serialization.hpp │ │ │ │ │ ├── betweenness_centrality.hpp │ │ │ │ │ ├── boman_et_al_graph_coloring.hpp │ │ │ │ │ ├── breadth_first_search.hpp │ │ │ │ │ ├── compressed_sparse_row_graph.hpp │ │ │ │ │ ├── concepts.hpp │ │ │ │ │ ├── connected_components.hpp │ │ │ │ │ ├── connected_components_parallel_search.hpp │ │ │ │ │ ├── crauser_et_al_shortest_paths.hpp │ │ │ │ │ ├── dehne_gotz_min_spanning_tree.hpp │ │ │ │ │ ├── delta_stepping_shortest_paths.hpp │ │ │ │ │ ├── depth_first_search.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── dijkstra_shortest_paths.hpp │ │ │ │ │ │ ├── filtered_queue.hpp │ │ │ │ │ │ ├── mpi_process_group.ipp │ │ │ │ │ │ ├── queue.ipp │ │ │ │ │ │ ├── remote_update_set.hpp │ │ │ │ │ │ └── tag_allocator.hpp │ │ │ │ │ ├── dijkstra_shortest_paths.hpp │ │ │ │ │ ├── distributed_graph_utility.hpp │ │ │ │ │ ├── eager_dijkstra_shortest_paths.hpp │ │ │ │ │ ├── filtered_graph.hpp │ │ │ │ │ ├── fruchterman_reingold.hpp │ │ │ │ │ ├── graphviz.hpp │ │ │ │ │ ├── hohberg_biconnected_components.hpp │ │ │ │ │ ├── local_subgraph.hpp │ │ │ │ │ ├── mpi_process_group.hpp │ │ │ │ │ ├── named_graph.hpp │ │ │ │ │ ├── one_bit_color_map.hpp │ │ │ │ │ ├── page_rank.hpp │ │ │ │ │ ├── queue.hpp │ │ │ │ │ ├── reverse_graph.hpp │ │ │ │ │ ├── rmat_graph_generator.hpp │ │ │ │ │ ├── selector.hpp │ │ │ │ │ ├── shuffled_distribution.hpp │ │ │ │ │ ├── st_connected.hpp │ │ │ │ │ ├── strong_components.hpp │ │ │ │ │ ├── two_bit_color_map.hpp │ │ │ │ │ ├── unsafe_serialize.hpp │ │ │ │ │ └── vertex_list_adaptor.hpp │ │ │ │ ├── dll_import_export.hpp │ │ │ │ ├── dominator_tree.hpp │ │ │ │ ├── eccentricity.hpp │ │ │ │ ├── edge_connectivity.hpp │ │ │ │ ├── edge_list.hpp │ │ │ │ ├── edmonds_karp_max_flow.hpp │ │ │ │ ├── edmunds_karp_max_flow.hpp │ │ │ │ ├── erdos_renyi_generator.hpp │ │ │ │ ├── exception.hpp │ │ │ │ ├── exterior_property.hpp │ │ │ │ ├── filtered_graph.hpp │ │ │ │ ├── floyd_warshall_shortest.hpp │ │ │ │ ├── fruchterman_reingold.hpp │ │ │ │ ├── geodesic_distance.hpp │ │ │ │ ├── graph_archetypes.hpp │ │ │ │ ├── graph_as_tree.hpp │ │ │ │ ├── graph_concepts.hpp │ │ │ │ ├── graph_mutability_traits.hpp │ │ │ │ ├── graph_selectors.hpp │ │ │ │ ├── graph_stats.hpp │ │ │ │ ├── graph_test.hpp │ │ │ │ ├── graph_traits.hpp │ │ │ │ ├── graph_utility.hpp │ │ │ │ ├── graphml.hpp │ │ │ │ ├── graphviz.hpp │ │ │ │ ├── grid_graph.hpp │ │ │ │ ├── gursoy_atun_layout.hpp │ │ │ │ ├── howard_cycle_ratio.hpp │ │ │ │ ├── incremental_components.hpp │ │ │ │ ├── is_kuratowski_subgraph.hpp │ │ │ │ ├── is_straight_line_drawing.hpp │ │ │ │ ├── isomorphism.hpp │ │ │ │ ├── iteration_macros.hpp │ │ │ │ ├── iteration_macros_undef.hpp │ │ │ │ ├── johnson_all_pairs_shortest.hpp │ │ │ │ ├── kamada_kawai_spring_layout.hpp │ │ │ │ ├── king_ordering.hpp │ │ │ │ ├── kruskal_min_spanning_tree.hpp │ │ │ │ ├── labeled_graph.hpp │ │ │ │ ├── leda_graph.hpp │ │ │ │ ├── lookup_edge.hpp │ │ │ │ ├── loop_erased_random_walk.hpp │ │ │ │ ├── make_biconnected_planar.hpp │ │ │ │ ├── make_connected.hpp │ │ │ │ ├── make_maximal_planar.hpp │ │ │ │ ├── matrix_as_graph.hpp │ │ │ │ ├── max_cardinality_matching.hpp │ │ │ │ ├── maximum_adjacency_search.hpp │ │ │ │ ├── mcgregor_common_subgraphs.hpp │ │ │ │ ├── mesh_graph_generator.hpp │ │ │ │ ├── metis.hpp │ │ │ │ ├── metric_tsp_approx.hpp │ │ │ │ ├── minimum_degree_ordering.hpp │ │ │ │ ├── named_function_params.hpp │ │ │ │ ├── named_graph.hpp │ │ │ │ ├── neighbor_bfs.hpp │ │ │ │ ├── numeric_values.hpp │ │ │ │ ├── one_bit_color_map.hpp │ │ │ │ ├── overloading.hpp │ │ │ │ ├── page_rank.hpp │ │ │ │ ├── parallel │ │ │ │ │ ├── algorithm.hpp │ │ │ │ │ ├── basic_reduce.hpp │ │ │ │ │ ├── container_traits.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── inplace_all_to_all.hpp │ │ │ │ │ │ ├── property_holders.hpp │ │ │ │ │ │ └── untracked_pair.hpp │ │ │ │ │ ├── distribution.hpp │ │ │ │ │ ├── process_group.hpp │ │ │ │ │ ├── properties.hpp │ │ │ │ │ └── simple_trigger.hpp │ │ │ │ ├── planar_canonical_ordering.hpp │ │ │ │ ├── planar_detail │ │ │ │ │ ├── add_edge_visitors.hpp │ │ │ │ │ ├── boyer_myrvold_impl.hpp │ │ │ │ │ ├── bucket_sort.hpp │ │ │ │ │ ├── face_handles.hpp │ │ │ │ │ └── face_iterators.hpp │ │ │ │ ├── planar_face_traversal.hpp │ │ │ │ ├── plod_generator.hpp │ │ │ │ ├── point_traits.hpp │ │ │ │ ├── prim_minimum_spanning_tree.hpp │ │ │ │ ├── profile.hpp │ │ │ │ ├── properties.hpp │ │ │ │ ├── property_iter_range.hpp │ │ │ │ ├── property_maps │ │ │ │ │ ├── constant_property_map.hpp │ │ │ │ │ ├── container_property_map.hpp │ │ │ │ │ ├── matrix_property_map.hpp │ │ │ │ │ └── null_property_map.hpp │ │ │ │ ├── push_relabel_max_flow.hpp │ │ │ │ ├── r_c_shortest_paths.hpp │ │ │ │ ├── random.hpp │ │ │ │ ├── random_layout.hpp │ │ │ │ ├── random_spanning_tree.hpp │ │ │ │ ├── read_dimacs.hpp │ │ │ │ ├── relax.hpp │ │ │ │ ├── reverse_graph.hpp │ │ │ │ ├── rmat_graph_generator.hpp │ │ │ │ ├── sequential_vertex_coloring.hpp │ │ │ │ ├── simple_point.hpp │ │ │ │ ├── sloan_ordering.hpp │ │ │ │ ├── small_world_generator.hpp │ │ │ │ ├── smallest_last_ordering.hpp │ │ │ │ ├── ssca_graph_generator.hpp │ │ │ │ ├── st_connected.hpp │ │ │ │ ├── stanford_graph.hpp │ │ │ │ ├── stoer_wagner_min_cut.hpp │ │ │ │ ├── strong_components.hpp │ │ │ │ ├── subgraph.hpp │ │ │ │ ├── tiernan_all_cycles.hpp │ │ │ │ ├── topological_sort.hpp │ │ │ │ ├── topology.hpp │ │ │ │ ├── transitive_closure.hpp │ │ │ │ ├── transitive_reduction.hpp │ │ │ │ ├── transpose_graph.hpp │ │ │ │ ├── tree_traits.hpp │ │ │ │ ├── two_bit_color_map.hpp │ │ │ │ ├── two_graphs_common_spanning_trees.hpp │ │ │ │ ├── undirected_dfs.hpp │ │ │ │ ├── undirected_graph.hpp │ │ │ │ ├── use_mpi.hpp │ │ │ │ ├── vector_as_graph.hpp │ │ │ │ ├── vertex_and_edge_range.hpp │ │ │ │ ├── vf2_sub_graph_iso.hpp │ │ │ │ ├── visitors.hpp │ │ │ │ ├── wavefront.hpp │ │ │ │ └── write_dimacs.hpp │ │ │ ├── heap │ │ │ │ ├── binomial_heap.hpp │ │ │ │ ├── d_ary_heap.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── heap_comparison.hpp │ │ │ │ │ ├── heap_node.hpp │ │ │ │ │ ├── ilog2.hpp │ │ │ │ │ ├── mutable_heap.hpp │ │ │ │ │ ├── ordered_adaptor_iterator.hpp │ │ │ │ │ ├── stable_heap.hpp │ │ │ │ │ └── tree_iterator.hpp │ │ │ │ ├── fibonacci_heap.hpp │ │ │ │ ├── heap_concepts.hpp │ │ │ │ ├── heap_merge.hpp │ │ │ │ ├── pairing_heap.hpp │ │ │ │ ├── policies.hpp │ │ │ │ ├── priority_queue.hpp │ │ │ │ └── skew_heap.hpp │ │ │ ├── icl │ │ │ │ ├── associative_element_container.hpp │ │ │ │ ├── associative_interval_container.hpp │ │ │ │ ├── closed_interval.hpp │ │ │ │ ├── concept │ │ │ │ │ ├── comparable.hpp │ │ │ │ │ ├── container.hpp │ │ │ │ │ ├── element_associator.hpp │ │ │ │ │ ├── element_map.hpp │ │ │ │ │ ├── element_set.hpp │ │ │ │ │ ├── element_set_value.hpp │ │ │ │ │ ├── interval.hpp │ │ │ │ │ ├── interval_associator.hpp │ │ │ │ │ ├── interval_associator_base.hpp │ │ │ │ │ ├── interval_bounds.hpp │ │ │ │ │ ├── interval_map.hpp │ │ │ │ │ ├── interval_set.hpp │ │ │ │ │ ├── interval_set_value.hpp │ │ │ │ │ ├── joinable.hpp │ │ │ │ │ ├── map_value.hpp │ │ │ │ │ └── set_value.hpp │ │ │ │ ├── continuous_interval.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── associated_value.hpp │ │ │ │ │ ├── boost_config.hpp │ │ │ │ │ ├── concept_check.hpp │ │ │ │ │ ├── design_config.hpp │ │ │ │ │ ├── element_comparer.hpp │ │ │ │ │ ├── element_iterator.hpp │ │ │ │ │ ├── exclusive_less_than.hpp │ │ │ │ │ ├── interval_map_algo.hpp │ │ │ │ │ ├── interval_morphism.hpp │ │ │ │ │ ├── interval_set_algo.hpp │ │ │ │ │ ├── interval_subset_comparer.hpp │ │ │ │ │ ├── map_algo.hpp │ │ │ │ │ ├── mapped_reference.hpp │ │ │ │ │ ├── notate.hpp │ │ │ │ │ ├── on_absorbtion.hpp │ │ │ │ │ ├── relation_state.hpp │ │ │ │ │ ├── set_algo.hpp │ │ │ │ │ ├── std_set.hpp │ │ │ │ │ └── subset_comparer.hpp │ │ │ │ ├── discrete_interval.hpp │ │ │ │ ├── dynamic_interval_traits.hpp │ │ │ │ ├── functors.hpp │ │ │ │ ├── gregorian.hpp │ │ │ │ ├── impl_config.hpp │ │ │ │ ├── interval.hpp │ │ │ │ ├── interval_base_map.hpp │ │ │ │ ├── interval_base_set.hpp │ │ │ │ ├── interval_bounds.hpp │ │ │ │ ├── interval_combining_style.hpp │ │ │ │ ├── interval_map.hpp │ │ │ │ ├── interval_set.hpp │ │ │ │ ├── interval_traits.hpp │ │ │ │ ├── iterator.hpp │ │ │ │ ├── left_open_interval.hpp │ │ │ │ ├── map.hpp │ │ │ │ ├── open_interval.hpp │ │ │ │ ├── predicates │ │ │ │ │ ├── distinct_equal.hpp │ │ │ │ │ ├── element_equal.hpp │ │ │ │ │ ├── std_equal.hpp │ │ │ │ │ └── sub_super_set.hpp │ │ │ │ ├── ptime.hpp │ │ │ │ ├── rational.hpp │ │ │ │ ├── right_open_interval.hpp │ │ │ │ ├── separate_interval_set.hpp │ │ │ │ ├── set.hpp │ │ │ │ ├── split_interval_map.hpp │ │ │ │ ├── split_interval_set.hpp │ │ │ │ └── type_traits │ │ │ │ │ ├── absorbs_identities.hpp │ │ │ │ │ ├── adds_inversely.hpp │ │ │ │ │ ├── codomain_type_of.hpp │ │ │ │ │ ├── difference.hpp │ │ │ │ │ ├── difference_type_of.hpp │ │ │ │ │ ├── domain_type_of.hpp │ │ │ │ │ ├── element_type_of.hpp │ │ │ │ │ ├── has_inverse.hpp │ │ │ │ │ ├── has_set_semantics.hpp │ │ │ │ │ ├── identity_element.hpp │ │ │ │ │ ├── infinity.hpp │ │ │ │ │ ├── interval_type_default.hpp │ │ │ │ │ ├── interval_type_of.hpp │ │ │ │ │ ├── is_associative_element_container.hpp │ │ │ │ │ ├── is_asymmetric_interval.hpp │ │ │ │ │ ├── is_combinable.hpp │ │ │ │ │ ├── is_concept_equivalent.hpp │ │ │ │ │ ├── is_container.hpp │ │ │ │ │ ├── is_continuous.hpp │ │ │ │ │ ├── is_continuous_interval.hpp │ │ │ │ │ ├── is_discrete.hpp │ │ │ │ │ ├── is_discrete_interval.hpp │ │ │ │ │ ├── is_element_container.hpp │ │ │ │ │ ├── is_icl_container.hpp │ │ │ │ │ ├── is_increasing.hpp │ │ │ │ │ ├── is_interval.hpp │ │ │ │ │ ├── is_interval_container.hpp │ │ │ │ │ ├── is_interval_joiner.hpp │ │ │ │ │ ├── is_interval_separator.hpp │ │ │ │ │ ├── is_interval_splitter.hpp │ │ │ │ │ ├── is_key_container_of.hpp │ │ │ │ │ ├── is_map.hpp │ │ │ │ │ ├── is_numeric.hpp │ │ │ │ │ ├── is_set.hpp │ │ │ │ │ ├── is_total.hpp │ │ │ │ │ ├── no_type.hpp │ │ │ │ │ ├── predicate.hpp │ │ │ │ │ ├── rep_type_of.hpp │ │ │ │ │ ├── segment_type_of.hpp │ │ │ │ │ ├── size.hpp │ │ │ │ │ ├── size_type_of.hpp │ │ │ │ │ ├── succ_pred.hpp │ │ │ │ │ ├── to_string.hpp │ │ │ │ │ ├── type_to_string.hpp │ │ │ │ │ ├── unit_element.hpp │ │ │ │ │ └── value_size.hpp │ │ │ ├── implicit_cast.hpp │ │ │ ├── indirect_reference.hpp │ │ │ ├── integer.hpp │ │ │ ├── integer │ │ │ │ ├── integer_mask.hpp │ │ │ │ ├── static_log2.hpp │ │ │ │ └── static_min_max.hpp │ │ │ ├── integer_fwd.hpp │ │ │ ├── integer_traits.hpp │ │ │ ├── interprocess │ │ │ │ ├── allocators │ │ │ │ │ ├── adaptive_pool.hpp │ │ │ │ │ ├── allocator.hpp │ │ │ │ │ ├── cached_adaptive_pool.hpp │ │ │ │ │ ├── cached_node_allocator.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── adaptive_node_pool.hpp │ │ │ │ │ │ ├── allocator_common.hpp │ │ │ │ │ │ ├── node_pool.hpp │ │ │ │ │ │ └── node_tools.hpp │ │ │ │ │ ├── node_allocator.hpp │ │ │ │ │ ├── private_adaptive_pool.hpp │ │ │ │ │ └── private_node_allocator.hpp │ │ │ │ ├── anonymous_shared_memory.hpp │ │ │ │ ├── containers │ │ │ │ │ ├── allocation_type.hpp │ │ │ │ │ ├── containers_fwd.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── flat_map.hpp │ │ │ │ │ ├── flat_set.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── pair.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── slist.hpp │ │ │ │ │ ├── stable_vector.hpp │ │ │ │ │ ├── string.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── version_type.hpp │ │ │ │ ├── creation_tags.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── atomic.hpp │ │ │ │ │ ├── cast_tags.hpp │ │ │ │ │ ├── config_begin.hpp │ │ │ │ │ ├── config_end.hpp │ │ │ │ │ ├── config_external_begin.hpp │ │ │ │ │ ├── config_external_end.hpp │ │ │ │ │ ├── file_locking_helpers.hpp │ │ │ │ │ ├── file_wrapper.hpp │ │ │ │ │ ├── in_place_interface.hpp │ │ │ │ │ ├── intermodule_singleton.hpp │ │ │ │ │ ├── intermodule_singleton_common.hpp │ │ │ │ │ ├── interprocess_tester.hpp │ │ │ │ │ ├── intersegment_ptr.hpp │ │ │ │ │ ├── managed_global_memory.hpp │ │ │ │ │ ├── managed_memory_impl.hpp │ │ │ │ │ ├── managed_multi_shared_memory.hpp │ │ │ │ │ ├── managed_open_or_create_impl.hpp │ │ │ │ │ ├── math_functions.hpp │ │ │ │ │ ├── min_max.hpp │ │ │ │ │ ├── move.hpp │ │ │ │ │ ├── mpl.hpp │ │ │ │ │ ├── multi_segment_services.hpp │ │ │ │ │ ├── named_proxy.hpp │ │ │ │ │ ├── os_file_functions.hpp │ │ │ │ │ ├── os_thread_functions.hpp │ │ │ │ │ ├── pointer_type.hpp │ │ │ │ │ ├── portable_intermodule_singleton.hpp │ │ │ │ │ ├── posix_time_types_wrk.hpp │ │ │ │ │ ├── preprocessor.hpp │ │ │ │ │ ├── ptime_wrk.hpp │ │ │ │ │ ├── robust_emulation.hpp │ │ │ │ │ ├── segment_manager_helper.hpp │ │ │ │ │ ├── tmp_dir_helpers.hpp │ │ │ │ │ ├── transform_iterator.hpp │ │ │ │ │ ├── type_traits.hpp │ │ │ │ │ ├── utilities.hpp │ │ │ │ │ ├── variadic_templates_tools.hpp │ │ │ │ │ ├── win32_api.hpp │ │ │ │ │ ├── windows_intermodule_singleton.hpp │ │ │ │ │ ├── workaround.hpp │ │ │ │ │ ├── xsi_shared_memory_device.hpp │ │ │ │ │ └── xsi_shared_memory_file_wrapper.hpp │ │ │ │ ├── errors.hpp │ │ │ │ ├── exceptions.hpp │ │ │ │ ├── file_mapping.hpp │ │ │ │ ├── indexes │ │ │ │ │ ├── flat_map_index.hpp │ │ │ │ │ ├── iset_index.hpp │ │ │ │ │ ├── iunordered_set_index.hpp │ │ │ │ │ ├── map_index.hpp │ │ │ │ │ ├── null_index.hpp │ │ │ │ │ └── unordered_map_index.hpp │ │ │ │ ├── interprocess_fwd.hpp │ │ │ │ ├── ipc │ │ │ │ │ └── message_queue.hpp │ │ │ │ ├── managed_external_buffer.hpp │ │ │ │ ├── managed_heap_memory.hpp │ │ │ │ ├── managed_mapped_file.hpp │ │ │ │ ├── managed_shared_memory.hpp │ │ │ │ ├── managed_windows_shared_memory.hpp │ │ │ │ ├── managed_xsi_shared_memory.hpp │ │ │ │ ├── mapped_region.hpp │ │ │ │ ├── mem_algo │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── mem_algo_common.hpp │ │ │ │ │ │ ├── multi_simple_seq_fit.hpp │ │ │ │ │ │ ├── multi_simple_seq_fit_impl.hpp │ │ │ │ │ │ └── simple_seq_fit_impl.hpp │ │ │ │ │ ├── rbtree_best_fit.hpp │ │ │ │ │ └── simple_seq_fit.hpp │ │ │ │ ├── offset_ptr.hpp │ │ │ │ ├── permissions.hpp │ │ │ │ ├── segment_manager.hpp │ │ │ │ ├── shared_memory_object.hpp │ │ │ │ ├── smart_ptr │ │ │ │ │ ├── deleter.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── bad_weak_ptr.hpp │ │ │ │ │ │ ├── shared_count.hpp │ │ │ │ │ │ ├── sp_counted_base.hpp │ │ │ │ │ │ ├── sp_counted_base_atomic.hpp │ │ │ │ │ │ └── sp_counted_impl.hpp │ │ │ │ │ ├── enable_shared_from_this.hpp │ │ │ │ │ ├── intrusive_ptr.hpp │ │ │ │ │ ├── scoped_ptr.hpp │ │ │ │ │ ├── shared_ptr.hpp │ │ │ │ │ ├── unique_ptr.hpp │ │ │ │ │ └── weak_ptr.hpp │ │ │ │ ├── streams │ │ │ │ │ ├── bufferstream.hpp │ │ │ │ │ └── vectorstream.hpp │ │ │ │ ├── sync │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── condition_algorithm_8a.hpp │ │ │ │ │ │ ├── condition_any_algorithm.hpp │ │ │ │ │ │ └── locks.hpp │ │ │ │ │ ├── file_lock.hpp │ │ │ │ │ ├── interprocess_condition.hpp │ │ │ │ │ ├── interprocess_condition_any.hpp │ │ │ │ │ ├── interprocess_mutex.hpp │ │ │ │ │ ├── interprocess_recursive_mutex.hpp │ │ │ │ │ ├── interprocess_semaphore.hpp │ │ │ │ │ ├── interprocess_sharable_mutex.hpp │ │ │ │ │ ├── interprocess_upgradable_mutex.hpp │ │ │ │ │ ├── lock_options.hpp │ │ │ │ │ ├── mutex_family.hpp │ │ │ │ │ ├── named_condition.hpp │ │ │ │ │ ├── named_condition_any.hpp │ │ │ │ │ ├── named_mutex.hpp │ │ │ │ │ ├── named_recursive_mutex.hpp │ │ │ │ │ ├── named_semaphore.hpp │ │ │ │ │ ├── named_sharable_mutex.hpp │ │ │ │ │ ├── named_upgradable_mutex.hpp │ │ │ │ │ ├── null_mutex.hpp │ │ │ │ │ ├── posix │ │ │ │ │ │ ├── condition.hpp │ │ │ │ │ │ ├── mutex.hpp │ │ │ │ │ │ ├── named_mutex.hpp │ │ │ │ │ │ ├── named_semaphore.hpp │ │ │ │ │ │ ├── pthread_helpers.hpp │ │ │ │ │ │ ├── ptime_to_timespec.hpp │ │ │ │ │ │ ├── recursive_mutex.hpp │ │ │ │ │ │ ├── semaphore.hpp │ │ │ │ │ │ └── semaphore_wrapper.hpp │ │ │ │ │ ├── scoped_lock.hpp │ │ │ │ │ ├── sharable_lock.hpp │ │ │ │ │ ├── shm │ │ │ │ │ │ ├── named_condition.hpp │ │ │ │ │ │ ├── named_condition_any.hpp │ │ │ │ │ │ ├── named_creation_functor.hpp │ │ │ │ │ │ ├── named_mutex.hpp │ │ │ │ │ │ ├── named_recursive_mutex.hpp │ │ │ │ │ │ ├── named_semaphore.hpp │ │ │ │ │ │ └── named_upgradable_mutex.hpp │ │ │ │ │ ├── spin │ │ │ │ │ │ ├── condition.hpp │ │ │ │ │ │ ├── interprocess_barrier.hpp │ │ │ │ │ │ ├── mutex.hpp │ │ │ │ │ │ ├── recursive_mutex.hpp │ │ │ │ │ │ └── semaphore.hpp │ │ │ │ │ ├── upgradable_lock.hpp │ │ │ │ │ ├── windows │ │ │ │ │ │ ├── condition.hpp │ │ │ │ │ │ ├── mutex.hpp │ │ │ │ │ │ ├── named_condition.hpp │ │ │ │ │ │ ├── named_condition_any.hpp │ │ │ │ │ │ ├── named_mutex.hpp │ │ │ │ │ │ ├── named_recursive_mutex.hpp │ │ │ │ │ │ ├── named_semaphore.hpp │ │ │ │ │ │ ├── named_sync.hpp │ │ │ │ │ │ ├── recursive_mutex.hpp │ │ │ │ │ │ ├── semaphore.hpp │ │ │ │ │ │ ├── sync_utils.hpp │ │ │ │ │ │ ├── winapi_mutex_wrapper.hpp │ │ │ │ │ │ └── winapi_semaphore_wrapper.hpp │ │ │ │ │ └── xsi │ │ │ │ │ │ ├── advanced_xsi_semaphore.hpp │ │ │ │ │ │ ├── simple_xsi_semaphore.hpp │ │ │ │ │ │ └── xsi_named_mutex.hpp │ │ │ │ ├── windows_shared_memory.hpp │ │ │ │ ├── xsi_key.hpp │ │ │ │ └── xsi_shared_memory.hpp │ │ │ ├── intrusive │ │ │ │ ├── any_hook.hpp │ │ │ │ ├── avl_set.hpp │ │ │ │ ├── avl_set_hook.hpp │ │ │ │ ├── avltree.hpp │ │ │ │ ├── avltree_algorithms.hpp │ │ │ │ ├── bs_set_hook.hpp │ │ │ │ ├── circular_list_algorithms.hpp │ │ │ │ ├── circular_slist_algorithms.hpp │ │ │ │ ├── derivation_value_traits.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── any_node_and_algorithms.hpp │ │ │ │ │ ├── assert.hpp │ │ │ │ │ ├── avltree_node.hpp │ │ │ │ │ ├── clear_on_destructor_base.hpp │ │ │ │ │ ├── common_slist_algorithms.hpp │ │ │ │ │ ├── config_begin.hpp │ │ │ │ │ ├── config_end.hpp │ │ │ │ │ ├── ebo_functor_holder.hpp │ │ │ │ │ ├── function_detector.hpp │ │ │ │ │ ├── generic_hook.hpp │ │ │ │ │ ├── has_member_function_callable_with.hpp │ │ │ │ │ ├── hashtable_node.hpp │ │ │ │ │ ├── is_stateful_value_traits.hpp │ │ │ │ │ ├── list_node.hpp │ │ │ │ │ ├── memory_util.hpp │ │ │ │ │ ├── mpl.hpp │ │ │ │ │ ├── parent_from_member.hpp │ │ │ │ │ ├── preprocessor.hpp │ │ │ │ │ ├── rbtree_node.hpp │ │ │ │ │ ├── slist_node.hpp │ │ │ │ │ ├── transform_iterator.hpp │ │ │ │ │ ├── tree_algorithms.hpp │ │ │ │ │ ├── tree_node.hpp │ │ │ │ │ ├── utilities.hpp │ │ │ │ │ └── workaround.hpp │ │ │ │ ├── hashtable.hpp │ │ │ │ ├── intrusive_fwd.hpp │ │ │ │ ├── linear_slist_algorithms.hpp │ │ │ │ ├── link_mode.hpp │ │ │ │ ├── list.hpp │ │ │ │ ├── list_hook.hpp │ │ │ │ ├── member_value_traits.hpp │ │ │ │ ├── options.hpp │ │ │ │ ├── parent_from_member.hpp │ │ │ │ ├── pointer_plus_bits.hpp │ │ │ │ ├── pointer_traits.hpp │ │ │ │ ├── priority_compare.hpp │ │ │ │ ├── rbtree.hpp │ │ │ │ ├── rbtree_algorithms.hpp │ │ │ │ ├── set.hpp │ │ │ │ ├── set_hook.hpp │ │ │ │ ├── sg_set.hpp │ │ │ │ ├── sgtree.hpp │ │ │ │ ├── sgtree_algorithms.hpp │ │ │ │ ├── slist.hpp │ │ │ │ ├── slist_hook.hpp │ │ │ │ ├── splay_set.hpp │ │ │ │ ├── splay_set_hook.hpp │ │ │ │ ├── splaytree.hpp │ │ │ │ ├── splaytree_algorithms.hpp │ │ │ │ ├── treap.hpp │ │ │ │ ├── treap_algorithms.hpp │ │ │ │ ├── treap_set.hpp │ │ │ │ ├── trivial_value_traits.hpp │ │ │ │ ├── unordered_set.hpp │ │ │ │ └── unordered_set_hook.hpp │ │ │ ├── intrusive_ptr.hpp │ │ │ ├── io │ │ │ │ ├── detail │ │ │ │ │ └── quoted_manip.hpp │ │ │ │ └── ios_state.hpp │ │ │ ├── io_fwd.hpp │ │ │ ├── iostreams │ │ │ │ ├── categories.hpp │ │ │ │ ├── chain.hpp │ │ │ │ ├── char_traits.hpp │ │ │ │ ├── checked_operations.hpp │ │ │ │ ├── close.hpp │ │ │ │ ├── code_converter.hpp │ │ │ │ ├── combine.hpp │ │ │ │ ├── compose.hpp │ │ │ │ ├── concepts.hpp │ │ │ │ ├── constants.hpp │ │ │ │ ├── copy.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── absolute_path.hpp │ │ │ │ │ ├── access_control.hpp │ │ │ │ │ ├── adapter │ │ │ │ │ │ ├── concept_adapter.hpp │ │ │ │ │ │ ├── device_adapter.hpp │ │ │ │ │ │ ├── direct_adapter.hpp │ │ │ │ │ │ ├── filter_adapter.hpp │ │ │ │ │ │ ├── mode_adapter.hpp │ │ │ │ │ │ ├── non_blocking_adapter.hpp │ │ │ │ │ │ ├── output_iterator_adapter.hpp │ │ │ │ │ │ └── range_adapter.hpp │ │ │ │ │ ├── add_facet.hpp │ │ │ │ │ ├── bool_trait_def.hpp │ │ │ │ │ ├── broken_overload_resolution │ │ │ │ │ │ ├── forward.hpp │ │ │ │ │ │ ├── stream.hpp │ │ │ │ │ │ └── stream_buffer.hpp │ │ │ │ │ ├── buffer.hpp │ │ │ │ │ ├── call_traits.hpp │ │ │ │ │ ├── char_traits.hpp │ │ │ │ │ ├── codecvt_helper.hpp │ │ │ │ │ ├── codecvt_holder.hpp │ │ │ │ │ ├── config │ │ │ │ │ │ ├── auto_link.hpp │ │ │ │ │ │ ├── bzip2.hpp │ │ │ │ │ │ ├── codecvt.hpp │ │ │ │ │ │ ├── disable_warnings.hpp │ │ │ │ │ │ ├── dyn_link.hpp │ │ │ │ │ │ ├── enable_warnings.hpp │ │ │ │ │ │ ├── fpos.hpp │ │ │ │ │ │ ├── gcc.hpp │ │ │ │ │ │ ├── limits.hpp │ │ │ │ │ │ ├── overload_resolution.hpp │ │ │ │ │ │ ├── rtl.hpp │ │ │ │ │ │ ├── unreachable_return.hpp │ │ │ │ │ │ ├── wide_streams.hpp │ │ │ │ │ │ ├── windows_posix.hpp │ │ │ │ │ │ └── zlib.hpp │ │ │ │ │ ├── counted_array.hpp │ │ │ │ │ ├── current_directory.hpp │ │ │ │ │ ├── default_arg.hpp │ │ │ │ │ ├── dispatch.hpp │ │ │ │ │ ├── double_object.hpp │ │ │ │ │ ├── enable_if_stream.hpp │ │ │ │ │ ├── error.hpp │ │ │ │ │ ├── execute.hpp │ │ │ │ │ ├── file_handle.hpp │ │ │ │ │ ├── forward.hpp │ │ │ │ │ ├── fstream.hpp │ │ │ │ │ ├── functional.hpp │ │ │ │ │ ├── ios.hpp │ │ │ │ │ ├── iostream.hpp │ │ │ │ │ ├── is_dereferenceable.hpp │ │ │ │ │ ├── is_iterator_range.hpp │ │ │ │ │ ├── newline.hpp │ │ │ │ │ ├── optional.hpp │ │ │ │ │ ├── param_type.hpp │ │ │ │ │ ├── path.hpp │ │ │ │ │ ├── push.hpp │ │ │ │ │ ├── push_params.hpp │ │ │ │ │ ├── resolve.hpp │ │ │ │ │ ├── restrict_impl.hpp │ │ │ │ │ ├── select.hpp │ │ │ │ │ ├── select_by_size.hpp │ │ │ │ │ ├── streambuf.hpp │ │ │ │ │ ├── streambuf │ │ │ │ │ │ ├── chainbuf.hpp │ │ │ │ │ │ ├── direct_streambuf.hpp │ │ │ │ │ │ ├── indirect_streambuf.hpp │ │ │ │ │ │ └── linked_streambuf.hpp │ │ │ │ │ ├── system_failure.hpp │ │ │ │ │ ├── template_params.hpp │ │ │ │ │ ├── translate_int_type.hpp │ │ │ │ │ ├── vc6 │ │ │ │ │ │ ├── close.hpp │ │ │ │ │ │ ├── read.hpp │ │ │ │ │ │ └── write.hpp │ │ │ │ │ └── wrap_unwrap.hpp │ │ │ │ ├── device │ │ │ │ │ ├── array.hpp │ │ │ │ │ ├── back_inserter.hpp │ │ │ │ │ ├── file.hpp │ │ │ │ │ ├── file_descriptor.hpp │ │ │ │ │ ├── mapped_file.hpp │ │ │ │ │ └── null.hpp │ │ │ │ ├── filter │ │ │ │ │ ├── aggregate.hpp │ │ │ │ │ ├── bzip2.hpp │ │ │ │ │ ├── counter.hpp │ │ │ │ │ ├── grep.hpp │ │ │ │ │ ├── gzip.hpp │ │ │ │ │ ├── line.hpp │ │ │ │ │ ├── newline.hpp │ │ │ │ │ ├── regex.hpp │ │ │ │ │ ├── stdio.hpp │ │ │ │ │ ├── symmetric.hpp │ │ │ │ │ ├── test.hpp │ │ │ │ │ └── zlib.hpp │ │ │ │ ├── filtering_stream.hpp │ │ │ │ ├── filtering_streambuf.hpp │ │ │ │ ├── flush.hpp │ │ │ │ ├── get.hpp │ │ │ │ ├── imbue.hpp │ │ │ │ ├── input_sequence.hpp │ │ │ │ ├── invert.hpp │ │ │ │ ├── operations.hpp │ │ │ │ ├── operations_fwd.hpp │ │ │ │ ├── optimal_buffer_size.hpp │ │ │ │ ├── output_sequence.hpp │ │ │ │ ├── pipeline.hpp │ │ │ │ ├── positioning.hpp │ │ │ │ ├── put.hpp │ │ │ │ ├── putback.hpp │ │ │ │ ├── read.hpp │ │ │ │ ├── restrict.hpp │ │ │ │ ├── seek.hpp │ │ │ │ ├── skip.hpp │ │ │ │ ├── slice.hpp │ │ │ │ ├── stream.hpp │ │ │ │ ├── stream_buffer.hpp │ │ │ │ ├── tee.hpp │ │ │ │ ├── traits.hpp │ │ │ │ ├── traits_fwd.hpp │ │ │ │ └── write.hpp │ │ │ ├── is_placeholder.hpp │ │ │ ├── iterator.hpp │ │ │ ├── iterator │ │ │ │ ├── counting_iterator.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── any_conversion_eater.hpp │ │ │ │ │ ├── config_def.hpp │ │ │ │ │ ├── config_undef.hpp │ │ │ │ │ ├── enable_if.hpp │ │ │ │ │ ├── facade_iterator_category.hpp │ │ │ │ │ └── minimum_category.hpp │ │ │ │ ├── filter_iterator.hpp │ │ │ │ ├── function_input_iterator.hpp │ │ │ │ ├── indirect_iterator.hpp │ │ │ │ ├── interoperable.hpp │ │ │ │ ├── is_lvalue_iterator.hpp │ │ │ │ ├── is_readable_iterator.hpp │ │ │ │ ├── iterator_adaptor.hpp │ │ │ │ ├── iterator_archetypes.hpp │ │ │ │ ├── iterator_categories.hpp │ │ │ │ ├── iterator_concepts.hpp │ │ │ │ ├── iterator_facade.hpp │ │ │ │ ├── iterator_traits.hpp │ │ │ │ ├── new_iterator_tests.hpp │ │ │ │ ├── permutation_iterator.hpp │ │ │ │ ├── reverse_iterator.hpp │ │ │ │ ├── transform_iterator.hpp │ │ │ │ └── zip_iterator.hpp │ │ │ ├── iterator_adaptors.hpp │ │ │ ├── lambda │ │ │ │ ├── algorithm.hpp │ │ │ │ ├── bind.hpp │ │ │ │ ├── casts.hpp │ │ │ │ ├── closures.hpp │ │ │ │ ├── construct.hpp │ │ │ │ ├── control_structures.hpp │ │ │ │ ├── core.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── actions.hpp │ │ │ │ │ ├── arity_code.hpp │ │ │ │ │ ├── bind_functions.hpp │ │ │ │ │ ├── control_constructs_common.hpp │ │ │ │ │ ├── function_adaptors.hpp │ │ │ │ │ ├── is_instance_of.hpp │ │ │ │ │ ├── lambda_config.hpp │ │ │ │ │ ├── lambda_functor_base.hpp │ │ │ │ │ ├── lambda_functors.hpp │ │ │ │ │ ├── lambda_fwd.hpp │ │ │ │ │ ├── lambda_traits.hpp │ │ │ │ │ ├── member_ptr.hpp │ │ │ │ │ ├── operator_actions.hpp │ │ │ │ │ ├── operator_lambda_func_base.hpp │ │ │ │ │ ├── operator_return_type_traits.hpp │ │ │ │ │ ├── operators.hpp │ │ │ │ │ ├── ret.hpp │ │ │ │ │ ├── return_type_traits.hpp │ │ │ │ │ ├── select_functions.hpp │ │ │ │ │ └── suppress_unused.hpp │ │ │ │ ├── exceptions.hpp │ │ │ │ ├── if.hpp │ │ │ │ ├── lambda.hpp │ │ │ │ ├── loops.hpp │ │ │ │ ├── numeric.hpp │ │ │ │ └── switch.hpp │ │ │ ├── last_value.hpp │ │ │ ├── lexical_cast.hpp │ │ │ ├── limits.hpp │ │ │ ├── local_function.hpp │ │ │ ├── local_function │ │ │ │ ├── aux_ │ │ │ │ │ ├── add_pointed_const.hpp │ │ │ │ │ ├── function.hpp │ │ │ │ │ ├── macro │ │ │ │ │ │ ├── code_ │ │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ │ ├── functor.hpp │ │ │ │ │ │ │ └── result.hpp │ │ │ │ │ │ ├── decl.hpp │ │ │ │ │ │ ├── name.hpp │ │ │ │ │ │ └── typeof.hpp │ │ │ │ │ ├── member.hpp │ │ │ │ │ ├── nobind.hpp │ │ │ │ │ ├── preprocessor │ │ │ │ │ │ └── traits │ │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ │ ├── decl.hpp │ │ │ │ │ │ │ ├── decl_ │ │ │ │ │ │ │ ├── append.hpp │ │ │ │ │ │ │ ├── index.hpp │ │ │ │ │ │ │ ├── nil.hpp │ │ │ │ │ │ │ ├── set_error.hpp │ │ │ │ │ │ │ ├── validate.hpp │ │ │ │ │ │ │ └── validate_ │ │ │ │ │ │ │ │ ├── return_count.hpp │ │ │ │ │ │ │ │ └── this_count.hpp │ │ │ │ │ │ │ ├── decl_binds.hpp │ │ │ │ │ │ │ ├── decl_const_binds.hpp │ │ │ │ │ │ │ ├── decl_error.hpp │ │ │ │ │ │ │ ├── decl_params.hpp │ │ │ │ │ │ │ ├── decl_returns.hpp │ │ │ │ │ │ │ ├── decl_sign_ │ │ │ │ │ │ │ ├── any_bind_type.hpp │ │ │ │ │ │ │ ├── sign.hpp │ │ │ │ │ │ │ ├── validate.hpp │ │ │ │ │ │ │ └── validate_ │ │ │ │ │ │ │ │ ├── defaults.hpp │ │ │ │ │ │ │ │ └── this.hpp │ │ │ │ │ │ │ └── param.hpp │ │ │ │ │ └── symbol.hpp │ │ │ │ ├── config.hpp │ │ │ │ └── detail │ │ │ │ │ └── preprocessor │ │ │ │ │ ├── keyword │ │ │ │ │ ├── auto.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── const.hpp │ │ │ │ │ ├── const_bind.hpp │ │ │ │ │ ├── default.hpp │ │ │ │ │ ├── facility │ │ │ │ │ │ ├── add.hpp │ │ │ │ │ │ ├── is.hpp │ │ │ │ │ │ └── remove.hpp │ │ │ │ │ ├── inline.hpp │ │ │ │ │ ├── recursive.hpp │ │ │ │ │ ├── register.hpp │ │ │ │ │ ├── return.hpp │ │ │ │ │ ├── this.hpp │ │ │ │ │ ├── thisunderscore.hpp │ │ │ │ │ └── void.hpp │ │ │ │ │ ├── line_counter.hpp │ │ │ │ │ └── void_list.hpp │ │ │ ├── locale.hpp │ │ │ ├── locale │ │ │ │ ├── boundary.hpp │ │ │ │ ├── boundary │ │ │ │ │ ├── boundary_point.hpp │ │ │ │ │ ├── facets.hpp │ │ │ │ │ ├── index.hpp │ │ │ │ │ ├── segment.hpp │ │ │ │ │ └── types.hpp │ │ │ │ ├── collator.hpp │ │ │ │ ├── config.hpp │ │ │ │ ├── conversion.hpp │ │ │ │ ├── date_time.hpp │ │ │ │ ├── date_time_facet.hpp │ │ │ │ ├── definitions.hpp │ │ │ │ ├── encoding.hpp │ │ │ │ ├── encoding_errors.hpp │ │ │ │ ├── encoding_utf.hpp │ │ │ │ ├── format.hpp │ │ │ │ ├── formatting.hpp │ │ │ │ ├── generator.hpp │ │ │ │ ├── gnu_gettext.hpp │ │ │ │ ├── hold_ptr.hpp │ │ │ │ ├── info.hpp │ │ │ │ ├── localization_backend.hpp │ │ │ │ ├── message.hpp │ │ │ │ ├── time_zone.hpp │ │ │ │ ├── utf.hpp │ │ │ │ └── util.hpp │ │ │ ├── lockfree │ │ │ │ ├── detail │ │ │ │ │ ├── atomic.hpp │ │ │ │ │ ├── branch_hints.hpp │ │ │ │ │ ├── copy_payload.hpp │ │ │ │ │ ├── freelist.hpp │ │ │ │ │ ├── parameter.hpp │ │ │ │ │ ├── prefix.hpp │ │ │ │ │ ├── tagged_ptr.hpp │ │ │ │ │ ├── tagged_ptr_dcas.hpp │ │ │ │ │ └── tagged_ptr_ptrcompression.hpp │ │ │ │ ├── policies.hpp │ │ │ │ ├── queue.hpp │ │ │ │ ├── spsc_queue.hpp │ │ │ │ └── stack.hpp │ │ │ ├── log │ │ │ │ ├── attributes.hpp │ │ │ │ ├── attributes │ │ │ │ │ ├── attribute.hpp │ │ │ │ │ ├── attribute_cast.hpp │ │ │ │ │ ├── attribute_name.hpp │ │ │ │ │ ├── attribute_set.hpp │ │ │ │ │ ├── attribute_value.hpp │ │ │ │ │ ├── attribute_value_impl.hpp │ │ │ │ │ ├── attribute_value_set.hpp │ │ │ │ │ ├── clock.hpp │ │ │ │ │ ├── constant.hpp │ │ │ │ │ ├── counter.hpp │ │ │ │ │ ├── current_process_id.hpp │ │ │ │ │ ├── current_process_name.hpp │ │ │ │ │ ├── current_thread_id.hpp │ │ │ │ │ ├── fallback_policy.hpp │ │ │ │ │ ├── fallback_policy_fwd.hpp │ │ │ │ │ ├── function.hpp │ │ │ │ │ ├── mutable_constant.hpp │ │ │ │ │ ├── named_scope.hpp │ │ │ │ │ ├── scoped_attribute.hpp │ │ │ │ │ ├── time_traits.hpp │ │ │ │ │ ├── timer.hpp │ │ │ │ │ ├── value_extraction.hpp │ │ │ │ │ ├── value_extraction_fwd.hpp │ │ │ │ │ ├── value_visitation.hpp │ │ │ │ │ └── value_visitation_fwd.hpp │ │ │ │ ├── common.hpp │ │ │ │ ├── core.hpp │ │ │ │ ├── core │ │ │ │ │ ├── core.hpp │ │ │ │ │ ├── record.hpp │ │ │ │ │ └── record_view.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── alignas.hpp │ │ │ │ │ ├── asio_fwd.hpp │ │ │ │ │ ├── attachable_sstream_buf.hpp │ │ │ │ │ ├── attr_output_impl.hpp │ │ │ │ │ ├── attr_output_terminal.hpp │ │ │ │ │ ├── attribute_get_value_impl.hpp │ │ │ │ │ ├── attribute_predicate.hpp │ │ │ │ │ ├── cleanup_scope_guard.hpp │ │ │ │ │ ├── code_conversion.hpp │ │ │ │ │ ├── config.hpp │ │ │ │ │ ├── custom_terminal_spec.hpp │ │ │ │ │ ├── date_time_fmt_gen_traits_fwd.hpp │ │ │ │ │ ├── date_time_format_parser.hpp │ │ │ │ │ ├── decomposed_time.hpp │ │ │ │ │ ├── deduce_char_type.hpp │ │ │ │ │ ├── default_attribute_names.hpp │ │ │ │ │ ├── embedded_string_type.hpp │ │ │ │ │ ├── event.hpp │ │ │ │ │ ├── fake_mutex.hpp │ │ │ │ │ ├── footer.hpp │ │ │ │ │ ├── format.hpp │ │ │ │ │ ├── function_traits.hpp │ │ │ │ │ ├── generate_overloads.hpp │ │ │ │ │ ├── header.hpp │ │ │ │ │ ├── id.hpp │ │ │ │ │ ├── intptr_t.hpp │ │ │ │ │ ├── light_function.hpp │ │ │ │ │ ├── light_function_pp.hpp │ │ │ │ │ ├── light_rw_mutex.hpp │ │ │ │ │ ├── locking_ptr.hpp │ │ │ │ │ ├── locks.hpp │ │ │ │ │ ├── named_scope_fmt_pp.hpp │ │ │ │ │ ├── native_typeof.hpp │ │ │ │ │ ├── parameter_tools.hpp │ │ │ │ │ ├── pp_identity.hpp │ │ │ │ │ ├── process_id.hpp │ │ │ │ │ ├── setup_config.hpp │ │ │ │ │ ├── singleton.hpp │ │ │ │ │ ├── sink_init_helpers.hpp │ │ │ │ │ ├── snprintf.hpp │ │ │ │ │ ├── spin_mutex.hpp │ │ │ │ │ ├── tagged_integer.hpp │ │ │ │ │ ├── thread_id.hpp │ │ │ │ │ ├── thread_specific.hpp │ │ │ │ │ ├── threadsafe_queue.hpp │ │ │ │ │ ├── timestamp.hpp │ │ │ │ │ ├── trivial_keyword.hpp │ │ │ │ │ ├── unary_function_terminal.hpp │ │ │ │ │ ├── unhandled_exception_count.hpp │ │ │ │ │ ├── value_ref_visitation.hpp │ │ │ │ │ └── visible_type.hpp │ │ │ │ ├── exceptions.hpp │ │ │ │ ├── expressions.hpp │ │ │ │ ├── expressions │ │ │ │ │ ├── attr.hpp │ │ │ │ │ ├── attr_fwd.hpp │ │ │ │ │ ├── filter.hpp │ │ │ │ │ ├── formatter.hpp │ │ │ │ │ ├── formatters.hpp │ │ │ │ │ ├── formatters │ │ │ │ │ │ ├── c_decorator.hpp │ │ │ │ │ │ ├── char_decorator.hpp │ │ │ │ │ │ ├── csv_decorator.hpp │ │ │ │ │ │ ├── date_time.hpp │ │ │ │ │ │ ├── format.hpp │ │ │ │ │ │ ├── if.hpp │ │ │ │ │ │ ├── named_scope.hpp │ │ │ │ │ │ ├── stream.hpp │ │ │ │ │ │ ├── wrap_formatter.hpp │ │ │ │ │ │ └── xml_decorator.hpp │ │ │ │ │ ├── is_keyword_descriptor.hpp │ │ │ │ │ ├── keyword.hpp │ │ │ │ │ ├── keyword_fwd.hpp │ │ │ │ │ ├── message.hpp │ │ │ │ │ ├── predicates.hpp │ │ │ │ │ ├── predicates │ │ │ │ │ │ ├── begins_with.hpp │ │ │ │ │ │ ├── channel_severity_filter.hpp │ │ │ │ │ │ ├── contains.hpp │ │ │ │ │ │ ├── ends_with.hpp │ │ │ │ │ │ ├── has_attr.hpp │ │ │ │ │ │ ├── is_debugger_present.hpp │ │ │ │ │ │ ├── is_in_range.hpp │ │ │ │ │ │ └── matches.hpp │ │ │ │ │ └── record.hpp │ │ │ │ ├── keywords │ │ │ │ │ ├── auto_flush.hpp │ │ │ │ │ ├── channel.hpp │ │ │ │ │ ├── delimiter.hpp │ │ │ │ │ ├── depth.hpp │ │ │ │ │ ├── facility.hpp │ │ │ │ │ ├── file_name.hpp │ │ │ │ │ ├── filter.hpp │ │ │ │ │ ├── format.hpp │ │ │ │ │ ├── ident.hpp │ │ │ │ │ ├── ip_version.hpp │ │ │ │ │ ├── iteration.hpp │ │ │ │ │ ├── log_name.hpp │ │ │ │ │ ├── log_source.hpp │ │ │ │ │ ├── max_size.hpp │ │ │ │ │ ├── message_file.hpp │ │ │ │ │ ├── min_free_space.hpp │ │ │ │ │ ├── open_mode.hpp │ │ │ │ │ ├── order.hpp │ │ │ │ │ ├── ordering_window.hpp │ │ │ │ │ ├── registration.hpp │ │ │ │ │ ├── rotation_size.hpp │ │ │ │ │ ├── scan_method.hpp │ │ │ │ │ ├── severity.hpp │ │ │ │ │ ├── start_thread.hpp │ │ │ │ │ ├── target.hpp │ │ │ │ │ ├── time_based_rotation.hpp │ │ │ │ │ └── use_impl.hpp │ │ │ │ ├── sinks.hpp │ │ │ │ ├── sinks │ │ │ │ │ ├── async_frontend.hpp │ │ │ │ │ ├── attribute_mapping.hpp │ │ │ │ │ ├── basic_sink_backend.hpp │ │ │ │ │ ├── basic_sink_frontend.hpp │ │ │ │ │ ├── block_on_overflow.hpp │ │ │ │ │ ├── bounded_fifo_queue.hpp │ │ │ │ │ ├── bounded_ordering_queue.hpp │ │ │ │ │ ├── debug_output_backend.hpp │ │ │ │ │ ├── drop_on_overflow.hpp │ │ │ │ │ ├── event_log_backend.hpp │ │ │ │ │ ├── event_log_constants.hpp │ │ │ │ │ ├── frontend_requirements.hpp │ │ │ │ │ ├── sink.hpp │ │ │ │ │ ├── sync_frontend.hpp │ │ │ │ │ ├── syslog_backend.hpp │ │ │ │ │ ├── syslog_constants.hpp │ │ │ │ │ ├── text_file_backend.hpp │ │ │ │ │ ├── text_multifile_backend.hpp │ │ │ │ │ ├── text_ostream_backend.hpp │ │ │ │ │ ├── unbounded_fifo_queue.hpp │ │ │ │ │ ├── unbounded_ordering_queue.hpp │ │ │ │ │ └── unlocked_frontend.hpp │ │ │ │ ├── sources │ │ │ │ │ ├── basic_logger.hpp │ │ │ │ │ ├── channel_feature.hpp │ │ │ │ │ ├── channel_logger.hpp │ │ │ │ │ ├── exception_handler_feature.hpp │ │ │ │ │ ├── features.hpp │ │ │ │ │ ├── global_logger_storage.hpp │ │ │ │ │ ├── logger.hpp │ │ │ │ │ ├── record_ostream.hpp │ │ │ │ │ ├── severity_channel_logger.hpp │ │ │ │ │ ├── severity_feature.hpp │ │ │ │ │ ├── severity_logger.hpp │ │ │ │ │ └── threading_models.hpp │ │ │ │ ├── support │ │ │ │ │ ├── date_time.hpp │ │ │ │ │ ├── exception.hpp │ │ │ │ │ ├── regex.hpp │ │ │ │ │ ├── spirit_classic.hpp │ │ │ │ │ ├── spirit_qi.hpp │ │ │ │ │ └── xpressive.hpp │ │ │ │ ├── trivial.hpp │ │ │ │ └── utility │ │ │ │ │ ├── empty_deleter.hpp │ │ │ │ │ ├── exception_handler.hpp │ │ │ │ │ ├── explicit_operator_bool.hpp │ │ │ │ │ ├── formatting_ostream.hpp │ │ │ │ │ ├── formatting_ostream_fwd.hpp │ │ │ │ │ ├── functional.hpp │ │ │ │ │ ├── functional │ │ │ │ │ ├── as_action.hpp │ │ │ │ │ ├── begins_with.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_assign.hpp │ │ │ │ │ ├── bind_output.hpp │ │ │ │ │ ├── bind_to_log.hpp │ │ │ │ │ ├── contains.hpp │ │ │ │ │ ├── ends_with.hpp │ │ │ │ │ ├── fun_ref.hpp │ │ │ │ │ ├── in_range.hpp │ │ │ │ │ ├── logical.hpp │ │ │ │ │ ├── matches.hpp │ │ │ │ │ ├── nop.hpp │ │ │ │ │ └── save_result.hpp │ │ │ │ │ ├── intrusive_ref_counter.hpp │ │ │ │ │ ├── manipulators.hpp │ │ │ │ │ ├── manipulators │ │ │ │ │ ├── add_value.hpp │ │ │ │ │ ├── dump.hpp │ │ │ │ │ └── to_log.hpp │ │ │ │ │ ├── once_block.hpp │ │ │ │ │ ├── record_ordering.hpp │ │ │ │ │ ├── setup.hpp │ │ │ │ │ ├── setup │ │ │ │ │ ├── common_attributes.hpp │ │ │ │ │ ├── console.hpp │ │ │ │ │ ├── file.hpp │ │ │ │ │ ├── filter_parser.hpp │ │ │ │ │ ├── formatter_parser.hpp │ │ │ │ │ ├── from_settings.hpp │ │ │ │ │ ├── from_stream.hpp │ │ │ │ │ ├── settings.hpp │ │ │ │ │ └── settings_parser.hpp │ │ │ │ │ ├── strictest_lock.hpp │ │ │ │ │ ├── string_literal.hpp │ │ │ │ │ ├── string_literal_fwd.hpp │ │ │ │ │ ├── type_dispatch │ │ │ │ │ ├── date_time_types.hpp │ │ │ │ │ ├── dynamic_type_dispatcher.hpp │ │ │ │ │ ├── standard_types.hpp │ │ │ │ │ ├── static_type_dispatcher.hpp │ │ │ │ │ └── type_dispatcher.hpp │ │ │ │ │ ├── type_info_wrapper.hpp │ │ │ │ │ ├── unique_identifier_name.hpp │ │ │ │ │ ├── unused_variable.hpp │ │ │ │ │ ├── value_ref.hpp │ │ │ │ │ └── value_ref_fwd.hpp │ │ │ ├── logic │ │ │ │ ├── tribool.hpp │ │ │ │ ├── tribool_fwd.hpp │ │ │ │ └── tribool_io.hpp │ │ │ ├── make_shared.hpp │ │ │ ├── math │ │ │ │ ├── bindings │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── big_digamma.hpp │ │ │ │ │ │ └── big_lanczos.hpp │ │ │ │ │ ├── e_float.hpp │ │ │ │ │ ├── mpfr.hpp │ │ │ │ │ ├── mpreal.hpp │ │ │ │ │ └── rr.hpp │ │ │ │ ├── common_factor.hpp │ │ │ │ ├── common_factor_ct.hpp │ │ │ │ ├── common_factor_rt.hpp │ │ │ │ ├── complex.hpp │ │ │ │ ├── complex │ │ │ │ │ ├── acos.hpp │ │ │ │ │ ├── acosh.hpp │ │ │ │ │ ├── asin.hpp │ │ │ │ │ ├── asinh.hpp │ │ │ │ │ ├── atan.hpp │ │ │ │ │ ├── atanh.hpp │ │ │ │ │ ├── details.hpp │ │ │ │ │ └── fabs.hpp │ │ │ │ ├── concepts │ │ │ │ │ ├── distributions.hpp │ │ │ │ │ ├── real_concept.hpp │ │ │ │ │ ├── real_type_concept.hpp │ │ │ │ │ └── std_real_concept.hpp │ │ │ │ ├── constants │ │ │ │ │ ├── calculate_constants.hpp │ │ │ │ │ ├── constants.hpp │ │ │ │ │ ├── generate.hpp │ │ │ │ │ └── info.hpp │ │ │ │ ├── distributions.hpp │ │ │ │ ├── distributions │ │ │ │ │ ├── bernoulli.hpp │ │ │ │ │ ├── beta.hpp │ │ │ │ │ ├── binomial.hpp │ │ │ │ │ ├── cauchy.hpp │ │ │ │ │ ├── chi_squared.hpp │ │ │ │ │ ├── complement.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── common_error_handling.hpp │ │ │ │ │ │ ├── derived_accessors.hpp │ │ │ │ │ │ ├── generic_mode.hpp │ │ │ │ │ │ ├── generic_quantile.hpp │ │ │ │ │ │ ├── hypergeometric_cdf.hpp │ │ │ │ │ │ ├── hypergeometric_pdf.hpp │ │ │ │ │ │ ├── hypergeometric_quantile.hpp │ │ │ │ │ │ └── inv_discrete_quantile.hpp │ │ │ │ │ ├── exponential.hpp │ │ │ │ │ ├── extreme_value.hpp │ │ │ │ │ ├── find_location.hpp │ │ │ │ │ ├── find_scale.hpp │ │ │ │ │ ├── fisher_f.hpp │ │ │ │ │ ├── fwd.hpp │ │ │ │ │ ├── gamma.hpp │ │ │ │ │ ├── geometric.hpp │ │ │ │ │ ├── hypergeometric.hpp │ │ │ │ │ ├── inverse_chi_squared.hpp │ │ │ │ │ ├── inverse_gamma.hpp │ │ │ │ │ ├── inverse_gaussian.hpp │ │ │ │ │ ├── laplace.hpp │ │ │ │ │ ├── logistic.hpp │ │ │ │ │ ├── lognormal.hpp │ │ │ │ │ ├── negative_binomial.hpp │ │ │ │ │ ├── non_central_beta.hpp │ │ │ │ │ ├── non_central_chi_squared.hpp │ │ │ │ │ ├── non_central_f.hpp │ │ │ │ │ ├── non_central_t.hpp │ │ │ │ │ ├── normal.hpp │ │ │ │ │ ├── pareto.hpp │ │ │ │ │ ├── poisson.hpp │ │ │ │ │ ├── rayleigh.hpp │ │ │ │ │ ├── skew_normal.hpp │ │ │ │ │ ├── students_t.hpp │ │ │ │ │ ├── triangular.hpp │ │ │ │ │ ├── uniform.hpp │ │ │ │ │ └── weibull.hpp │ │ │ │ ├── octonion.hpp │ │ │ │ ├── policies │ │ │ │ │ ├── error_handling.hpp │ │ │ │ │ └── policy.hpp │ │ │ │ ├── quaternion.hpp │ │ │ │ ├── special_functions.hpp │ │ │ │ ├── special_functions │ │ │ │ │ ├── acosh.hpp │ │ │ │ │ ├── airy.hpp │ │ │ │ │ ├── asinh.hpp │ │ │ │ │ ├── atanh.hpp │ │ │ │ │ ├── bessel.hpp │ │ │ │ │ ├── beta.hpp │ │ │ │ │ ├── binomial.hpp │ │ │ │ │ ├── cbrt.hpp │ │ │ │ │ ├── cos_pi.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── airy_ai_bi_zero.hpp │ │ │ │ │ │ ├── bessel_i0.hpp │ │ │ │ │ │ ├── bessel_i1.hpp │ │ │ │ │ │ ├── bessel_ik.hpp │ │ │ │ │ │ ├── bessel_j0.hpp │ │ │ │ │ │ ├── bessel_j1.hpp │ │ │ │ │ │ ├── bessel_jn.hpp │ │ │ │ │ │ ├── bessel_jy.hpp │ │ │ │ │ │ ├── bessel_jy_asym.hpp │ │ │ │ │ │ ├── bessel_jy_series.hpp │ │ │ │ │ │ ├── bessel_jy_zero.hpp │ │ │ │ │ │ ├── bessel_k0.hpp │ │ │ │ │ │ ├── bessel_k1.hpp │ │ │ │ │ │ ├── bessel_kn.hpp │ │ │ │ │ │ ├── bessel_y0.hpp │ │ │ │ │ │ ├── bessel_y1.hpp │ │ │ │ │ │ ├── bessel_yn.hpp │ │ │ │ │ │ ├── erf_inv.hpp │ │ │ │ │ │ ├── fp_traits.hpp │ │ │ │ │ │ ├── gamma_inva.hpp │ │ │ │ │ │ ├── ibeta_inv_ab.hpp │ │ │ │ │ │ ├── ibeta_inverse.hpp │ │ │ │ │ │ ├── iconv.hpp │ │ │ │ │ │ ├── igamma_inverse.hpp │ │ │ │ │ │ ├── igamma_large.hpp │ │ │ │ │ │ ├── lanczos_sse2.hpp │ │ │ │ │ │ ├── lgamma_small.hpp │ │ │ │ │ │ ├── round_fwd.hpp │ │ │ │ │ │ ├── t_distribution_inv.hpp │ │ │ │ │ │ └── unchecked_factorial.hpp │ │ │ │ │ ├── digamma.hpp │ │ │ │ │ ├── ellint_1.hpp │ │ │ │ │ ├── ellint_2.hpp │ │ │ │ │ ├── ellint_3.hpp │ │ │ │ │ ├── ellint_rc.hpp │ │ │ │ │ ├── ellint_rd.hpp │ │ │ │ │ ├── ellint_rf.hpp │ │ │ │ │ ├── ellint_rj.hpp │ │ │ │ │ ├── erf.hpp │ │ │ │ │ ├── expint.hpp │ │ │ │ │ ├── expm1.hpp │ │ │ │ │ ├── factorials.hpp │ │ │ │ │ ├── fpclassify.hpp │ │ │ │ │ ├── gamma.hpp │ │ │ │ │ ├── hankel.hpp │ │ │ │ │ ├── hermite.hpp │ │ │ │ │ ├── hypot.hpp │ │ │ │ │ ├── jacobi_elliptic.hpp │ │ │ │ │ ├── laguerre.hpp │ │ │ │ │ ├── lanczos.hpp │ │ │ │ │ ├── legendre.hpp │ │ │ │ │ ├── log1p.hpp │ │ │ │ │ ├── math_fwd.hpp │ │ │ │ │ ├── modf.hpp │ │ │ │ │ ├── next.hpp │ │ │ │ │ ├── nonfinite_num_facets.hpp │ │ │ │ │ ├── owens_t.hpp │ │ │ │ │ ├── pow.hpp │ │ │ │ │ ├── powm1.hpp │ │ │ │ │ ├── prime.hpp │ │ │ │ │ ├── round.hpp │ │ │ │ │ ├── sign.hpp │ │ │ │ │ ├── sin_pi.hpp │ │ │ │ │ ├── sinc.hpp │ │ │ │ │ ├── sinhc.hpp │ │ │ │ │ ├── spherical_harmonic.hpp │ │ │ │ │ ├── sqrt1pm1.hpp │ │ │ │ │ ├── trunc.hpp │ │ │ │ │ └── zeta.hpp │ │ │ │ ├── tools │ │ │ │ │ ├── big_constant.hpp │ │ │ │ │ ├── config.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── polynomial_horner1_10.hpp │ │ │ │ │ │ ├── polynomial_horner1_11.hpp │ │ │ │ │ │ ├── polynomial_horner1_12.hpp │ │ │ │ │ │ ├── polynomial_horner1_13.hpp │ │ │ │ │ │ ├── polynomial_horner1_14.hpp │ │ │ │ │ │ ├── polynomial_horner1_15.hpp │ │ │ │ │ │ ├── polynomial_horner1_16.hpp │ │ │ │ │ │ ├── polynomial_horner1_17.hpp │ │ │ │ │ │ ├── polynomial_horner1_18.hpp │ │ │ │ │ │ ├── polynomial_horner1_19.hpp │ │ │ │ │ │ ├── polynomial_horner1_2.hpp │ │ │ │ │ │ ├── polynomial_horner1_20.hpp │ │ │ │ │ │ ├── polynomial_horner1_3.hpp │ │ │ │ │ │ ├── polynomial_horner1_4.hpp │ │ │ │ │ │ ├── polynomial_horner1_5.hpp │ │ │ │ │ │ ├── polynomial_horner1_6.hpp │ │ │ │ │ │ ├── polynomial_horner1_7.hpp │ │ │ │ │ │ ├── polynomial_horner1_8.hpp │ │ │ │ │ │ ├── polynomial_horner1_9.hpp │ │ │ │ │ │ ├── polynomial_horner2_10.hpp │ │ │ │ │ │ ├── polynomial_horner2_11.hpp │ │ │ │ │ │ ├── polynomial_horner2_12.hpp │ │ │ │ │ │ ├── polynomial_horner2_13.hpp │ │ │ │ │ │ ├── polynomial_horner2_14.hpp │ │ │ │ │ │ ├── polynomial_horner2_15.hpp │ │ │ │ │ │ ├── polynomial_horner2_16.hpp │ │ │ │ │ │ ├── polynomial_horner2_17.hpp │ │ │ │ │ │ ├── polynomial_horner2_18.hpp │ │ │ │ │ │ ├── polynomial_horner2_19.hpp │ │ │ │ │ │ ├── polynomial_horner2_2.hpp │ │ │ │ │ │ ├── polynomial_horner2_20.hpp │ │ │ │ │ │ ├── polynomial_horner2_3.hpp │ │ │ │ │ │ ├── polynomial_horner2_4.hpp │ │ │ │ │ │ ├── polynomial_horner2_5.hpp │ │ │ │ │ │ ├── polynomial_horner2_6.hpp │ │ │ │ │ │ ├── polynomial_horner2_7.hpp │ │ │ │ │ │ ├── polynomial_horner2_8.hpp │ │ │ │ │ │ ├── polynomial_horner2_9.hpp │ │ │ │ │ │ ├── polynomial_horner3_10.hpp │ │ │ │ │ │ ├── polynomial_horner3_11.hpp │ │ │ │ │ │ ├── polynomial_horner3_12.hpp │ │ │ │ │ │ ├── polynomial_horner3_13.hpp │ │ │ │ │ │ ├── polynomial_horner3_14.hpp │ │ │ │ │ │ ├── polynomial_horner3_15.hpp │ │ │ │ │ │ ├── polynomial_horner3_16.hpp │ │ │ │ │ │ ├── polynomial_horner3_17.hpp │ │ │ │ │ │ ├── polynomial_horner3_18.hpp │ │ │ │ │ │ ├── polynomial_horner3_19.hpp │ │ │ │ │ │ ├── polynomial_horner3_2.hpp │ │ │ │ │ │ ├── polynomial_horner3_20.hpp │ │ │ │ │ │ ├── polynomial_horner3_3.hpp │ │ │ │ │ │ ├── polynomial_horner3_4.hpp │ │ │ │ │ │ ├── polynomial_horner3_5.hpp │ │ │ │ │ │ ├── polynomial_horner3_6.hpp │ │ │ │ │ │ ├── polynomial_horner3_7.hpp │ │ │ │ │ │ ├── polynomial_horner3_8.hpp │ │ │ │ │ │ ├── polynomial_horner3_9.hpp │ │ │ │ │ │ ├── rational_horner1_10.hpp │ │ │ │ │ │ ├── rational_horner1_11.hpp │ │ │ │ │ │ ├── rational_horner1_12.hpp │ │ │ │ │ │ ├── rational_horner1_13.hpp │ │ │ │ │ │ ├── rational_horner1_14.hpp │ │ │ │ │ │ ├── rational_horner1_15.hpp │ │ │ │ │ │ ├── rational_horner1_16.hpp │ │ │ │ │ │ ├── rational_horner1_17.hpp │ │ │ │ │ │ ├── rational_horner1_18.hpp │ │ │ │ │ │ ├── rational_horner1_19.hpp │ │ │ │ │ │ ├── rational_horner1_2.hpp │ │ │ │ │ │ ├── rational_horner1_20.hpp │ │ │ │ │ │ ├── rational_horner1_3.hpp │ │ │ │ │ │ ├── rational_horner1_4.hpp │ │ │ │ │ │ ├── rational_horner1_5.hpp │ │ │ │ │ │ ├── rational_horner1_6.hpp │ │ │ │ │ │ ├── rational_horner1_7.hpp │ │ │ │ │ │ ├── rational_horner1_8.hpp │ │ │ │ │ │ ├── rational_horner1_9.hpp │ │ │ │ │ │ ├── rational_horner2_10.hpp │ │ │ │ │ │ ├── rational_horner2_11.hpp │ │ │ │ │ │ ├── rational_horner2_12.hpp │ │ │ │ │ │ ├── rational_horner2_13.hpp │ │ │ │ │ │ ├── rational_horner2_14.hpp │ │ │ │ │ │ ├── rational_horner2_15.hpp │ │ │ │ │ │ ├── rational_horner2_16.hpp │ │ │ │ │ │ ├── rational_horner2_17.hpp │ │ │ │ │ │ ├── rational_horner2_18.hpp │ │ │ │ │ │ ├── rational_horner2_19.hpp │ │ │ │ │ │ ├── rational_horner2_2.hpp │ │ │ │ │ │ ├── rational_horner2_20.hpp │ │ │ │ │ │ ├── rational_horner2_3.hpp │ │ │ │ │ │ ├── rational_horner2_4.hpp │ │ │ │ │ │ ├── rational_horner2_5.hpp │ │ │ │ │ │ ├── rational_horner2_6.hpp │ │ │ │ │ │ ├── rational_horner2_7.hpp │ │ │ │ │ │ ├── rational_horner2_8.hpp │ │ │ │ │ │ ├── rational_horner2_9.hpp │ │ │ │ │ │ ├── rational_horner3_10.hpp │ │ │ │ │ │ ├── rational_horner3_11.hpp │ │ │ │ │ │ ├── rational_horner3_12.hpp │ │ │ │ │ │ ├── rational_horner3_13.hpp │ │ │ │ │ │ ├── rational_horner3_14.hpp │ │ │ │ │ │ ├── rational_horner3_15.hpp │ │ │ │ │ │ ├── rational_horner3_16.hpp │ │ │ │ │ │ ├── rational_horner3_17.hpp │ │ │ │ │ │ ├── rational_horner3_18.hpp │ │ │ │ │ │ ├── rational_horner3_19.hpp │ │ │ │ │ │ ├── rational_horner3_2.hpp │ │ │ │ │ │ ├── rational_horner3_20.hpp │ │ │ │ │ │ ├── rational_horner3_3.hpp │ │ │ │ │ │ ├── rational_horner3_4.hpp │ │ │ │ │ │ ├── rational_horner3_5.hpp │ │ │ │ │ │ ├── rational_horner3_6.hpp │ │ │ │ │ │ ├── rational_horner3_7.hpp │ │ │ │ │ │ ├── rational_horner3_8.hpp │ │ │ │ │ │ └── rational_horner3_9.hpp │ │ │ │ │ ├── fraction.hpp │ │ │ │ │ ├── minima.hpp │ │ │ │ │ ├── polynomial.hpp │ │ │ │ │ ├── precision.hpp │ │ │ │ │ ├── promotion.hpp │ │ │ │ │ ├── rational.hpp │ │ │ │ │ ├── real_cast.hpp │ │ │ │ │ ├── remez.hpp │ │ │ │ │ ├── roots.hpp │ │ │ │ │ ├── series.hpp │ │ │ │ │ ├── solve.hpp │ │ │ │ │ ├── stats.hpp │ │ │ │ │ ├── test.hpp │ │ │ │ │ ├── test_data.hpp │ │ │ │ │ ├── toms748_solve.hpp │ │ │ │ │ ├── traits.hpp │ │ │ │ │ ├── tuple.hpp │ │ │ │ │ ├── user.hpp │ │ │ │ │ └── workaround.hpp │ │ │ │ ├── tr1.hpp │ │ │ │ └── tr1_c_macros.ipp │ │ │ ├── math_fwd.hpp │ │ │ ├── mem_fn.hpp │ │ │ ├── memory_order.hpp │ │ │ ├── move │ │ │ │ ├── algorithm.hpp │ │ │ │ ├── core.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── config_begin.hpp │ │ │ │ │ ├── config_end.hpp │ │ │ │ │ ├── meta_utils.hpp │ │ │ │ │ └── move_helpers.hpp │ │ │ │ ├── iterator.hpp │ │ │ │ ├── move.hpp │ │ │ │ ├── traits.hpp │ │ │ │ └── utility.hpp │ │ │ ├── mpi.hpp │ │ │ ├── mpi │ │ │ │ ├── allocator.hpp │ │ │ │ ├── collectives.hpp │ │ │ │ ├── collectives │ │ │ │ │ ├── all_gather.hpp │ │ │ │ │ ├── all_reduce.hpp │ │ │ │ │ ├── all_to_all.hpp │ │ │ │ │ ├── broadcast.hpp │ │ │ │ │ ├── gather.hpp │ │ │ │ │ ├── reduce.hpp │ │ │ │ │ ├── scan.hpp │ │ │ │ │ └── scatter.hpp │ │ │ │ ├── collectives_fwd.hpp │ │ │ │ ├── communicator.hpp │ │ │ │ ├── config.hpp │ │ │ │ ├── datatype.hpp │ │ │ │ ├── datatype_fwd.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── binary_buffer_iprimitive.hpp │ │ │ │ │ ├── binary_buffer_oprimitive.hpp │ │ │ │ │ ├── broadcast_sc.hpp │ │ │ │ │ ├── communicator_sc.hpp │ │ │ │ │ ├── computation_tree.hpp │ │ │ │ │ ├── content_oarchive.hpp │ │ │ │ │ ├── forward_iprimitive.hpp │ │ │ │ │ ├── forward_oprimitive.hpp │ │ │ │ │ ├── forward_skeleton_iarchive.hpp │ │ │ │ │ ├── forward_skeleton_oarchive.hpp │ │ │ │ │ ├── ignore_iprimitive.hpp │ │ │ │ │ ├── ignore_oprimitive.hpp │ │ │ │ │ ├── ignore_skeleton_oarchive.hpp │ │ │ │ │ ├── mpi_datatype_cache.hpp │ │ │ │ │ ├── mpi_datatype_oarchive.hpp │ │ │ │ │ ├── mpi_datatype_primitive.hpp │ │ │ │ │ ├── packed_iprimitive.hpp │ │ │ │ │ ├── packed_oprimitive.hpp │ │ │ │ │ ├── point_to_point.hpp │ │ │ │ │ └── text_skeleton_oarchive.hpp │ │ │ │ ├── environment.hpp │ │ │ │ ├── exception.hpp │ │ │ │ ├── graph_communicator.hpp │ │ │ │ ├── group.hpp │ │ │ │ ├── intercommunicator.hpp │ │ │ │ ├── nonblocking.hpp │ │ │ │ ├── operations.hpp │ │ │ │ ├── packed_iarchive.hpp │ │ │ │ ├── packed_oarchive.hpp │ │ │ │ ├── python.hpp │ │ │ │ ├── python │ │ │ │ │ ├── config.hpp │ │ │ │ │ ├── serialize.hpp │ │ │ │ │ └── skeleton_and_content.hpp │ │ │ │ ├── request.hpp │ │ │ │ ├── skeleton_and_content.hpp │ │ │ │ ├── skeleton_and_content_fwd.hpp │ │ │ │ ├── status.hpp │ │ │ │ └── timer.hpp │ │ │ ├── mpl │ │ │ │ ├── O1_size.hpp │ │ │ │ ├── O1_size_fwd.hpp │ │ │ │ ├── accumulate.hpp │ │ │ │ ├── advance.hpp │ │ │ │ ├── advance_fwd.hpp │ │ │ │ ├── alias.hpp │ │ │ │ ├── always.hpp │ │ │ │ ├── and.hpp │ │ │ │ ├── apply.hpp │ │ │ │ ├── apply_fwd.hpp │ │ │ │ ├── apply_wrap.hpp │ │ │ │ ├── arg.hpp │ │ │ │ ├── arg_fwd.hpp │ │ │ │ ├── arithmetic.hpp │ │ │ │ ├── as_sequence.hpp │ │ │ │ ├── assert.hpp │ │ │ │ ├── at.hpp │ │ │ │ ├── at_fwd.hpp │ │ │ │ ├── aux_ │ │ │ │ │ ├── O1_size_impl.hpp │ │ │ │ │ ├── adl_barrier.hpp │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── apply_1st.hpp │ │ │ │ │ ├── arg_typedef.hpp │ │ │ │ │ ├── arithmetic_op.hpp │ │ │ │ │ ├── arity.hpp │ │ │ │ │ ├── arity_spec.hpp │ │ │ │ │ ├── at_impl.hpp │ │ │ │ │ ├── back_impl.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── begin_end_impl.hpp │ │ │ │ │ ├── clear_impl.hpp │ │ │ │ │ ├── common_name_wknd.hpp │ │ │ │ │ ├── comparison_op.hpp │ │ │ │ │ ├── config │ │ │ │ │ │ ├── adl.hpp │ │ │ │ │ │ ├── arrays.hpp │ │ │ │ │ │ ├── bcc.hpp │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ ├── compiler.hpp │ │ │ │ │ │ ├── ctps.hpp │ │ │ │ │ │ ├── dependent_nttp.hpp │ │ │ │ │ │ ├── dmc_ambiguous_ctps.hpp │ │ │ │ │ │ ├── dtp.hpp │ │ │ │ │ │ ├── eti.hpp │ │ │ │ │ │ ├── forwarding.hpp │ │ │ │ │ │ ├── gcc.hpp │ │ │ │ │ │ ├── has_apply.hpp │ │ │ │ │ │ ├── has_xxx.hpp │ │ │ │ │ │ ├── integral.hpp │ │ │ │ │ │ ├── intel.hpp │ │ │ │ │ │ ├── lambda.hpp │ │ │ │ │ │ ├── msvc.hpp │ │ │ │ │ │ ├── msvc_typename.hpp │ │ │ │ │ │ ├── nttp.hpp │ │ │ │ │ │ ├── operators.hpp │ │ │ │ │ │ ├── overload_resolution.hpp │ │ │ │ │ │ ├── pp_counter.hpp │ │ │ │ │ │ ├── preprocessor.hpp │ │ │ │ │ │ ├── static_constant.hpp │ │ │ │ │ │ ├── ttp.hpp │ │ │ │ │ │ ├── typeof.hpp │ │ │ │ │ │ ├── use_preprocessed.hpp │ │ │ │ │ │ └── workaround.hpp │ │ │ │ │ ├── contains_impl.hpp │ │ │ │ │ ├── count_args.hpp │ │ │ │ │ ├── count_impl.hpp │ │ │ │ │ ├── empty_impl.hpp │ │ │ │ │ ├── erase_impl.hpp │ │ │ │ │ ├── erase_key_impl.hpp │ │ │ │ │ ├── filter_iter.hpp │ │ │ │ │ ├── find_if_pred.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── fold_impl_body.hpp │ │ │ │ │ ├── fold_op.hpp │ │ │ │ │ ├── fold_pred.hpp │ │ │ │ │ ├── front_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── has_apply.hpp │ │ │ │ │ ├── has_begin.hpp │ │ │ │ │ ├── has_key_impl.hpp │ │ │ │ │ ├── has_rebind.hpp │ │ │ │ │ ├── has_size.hpp │ │ │ │ │ ├── has_tag.hpp │ │ │ │ │ ├── has_type.hpp │ │ │ │ │ ├── include_preprocessed.hpp │ │ │ │ │ ├── insert_impl.hpp │ │ │ │ │ ├── insert_range_impl.hpp │ │ │ │ │ ├── inserter_algorithm.hpp │ │ │ │ │ ├── integral_wrapper.hpp │ │ │ │ │ ├── is_msvc_eti_arg.hpp │ │ │ │ │ ├── iter_apply.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── iter_push_front.hpp │ │ │ │ │ ├── joint_iter.hpp │ │ │ │ │ ├── lambda_arity_param.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── lambda_spec.hpp │ │ │ │ │ ├── lambda_support.hpp │ │ │ │ │ ├── largest_int.hpp │ │ │ │ │ ├── logical_op.hpp │ │ │ │ │ ├── msvc_dtw.hpp │ │ │ │ │ ├── msvc_eti_base.hpp │ │ │ │ │ ├── msvc_is_class.hpp │ │ │ │ │ ├── msvc_never_true.hpp │ │ │ │ │ ├── msvc_type.hpp │ │ │ │ │ ├── na.hpp │ │ │ │ │ ├── na_assert.hpp │ │ │ │ │ ├── na_fwd.hpp │ │ │ │ │ ├── na_spec.hpp │ │ │ │ │ ├── nested_type_wknd.hpp │ │ │ │ │ ├── nttp_decl.hpp │ │ │ │ │ ├── numeric_cast_utils.hpp │ │ │ │ │ ├── numeric_op.hpp │ │ │ │ │ ├── order_impl.hpp │ │ │ │ │ ├── overload_names.hpp │ │ │ │ │ ├── partition_op.hpp │ │ │ │ │ ├── pop_back_impl.hpp │ │ │ │ │ ├── pop_front_impl.hpp │ │ │ │ │ ├── preprocessed │ │ │ │ │ │ ├── bcc │ │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ │ ├── bcc551 │ │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ │ ├── bcc_pre590 │ │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ │ ├── dmc │ │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ │ ├── gcc │ │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ │ ├── msvc60 │ │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ │ ├── msvc70 │ │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ │ ├── mwcw │ │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ │ ├── no_ctps │ │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ │ ├── no_ttp │ │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ │ └── plain │ │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ ├── preprocessor │ │ │ │ │ │ ├── add.hpp │ │ │ │ │ │ ├── def_params_tail.hpp │ │ │ │ │ │ ├── default_params.hpp │ │ │ │ │ │ ├── enum.hpp │ │ │ │ │ │ ├── ext_params.hpp │ │ │ │ │ │ ├── filter_params.hpp │ │ │ │ │ │ ├── is_seq.hpp │ │ │ │ │ │ ├── params.hpp │ │ │ │ │ │ ├── partial_spec_params.hpp │ │ │ │ │ │ ├── range.hpp │ │ │ │ │ │ ├── repeat.hpp │ │ │ │ │ │ ├── sub.hpp │ │ │ │ │ │ ├── token_equal.hpp │ │ │ │ │ │ └── tuple.hpp │ │ │ │ │ ├── ptr_to_ref.hpp │ │ │ │ │ ├── push_back_impl.hpp │ │ │ │ │ ├── push_front_impl.hpp │ │ │ │ │ ├── range_c │ │ │ │ │ │ ├── O1_size.hpp │ │ │ │ │ │ ├── back.hpp │ │ │ │ │ │ ├── empty.hpp │ │ │ │ │ │ ├── front.hpp │ │ │ │ │ │ ├── iterator.hpp │ │ │ │ │ │ ├── size.hpp │ │ │ │ │ │ └── tag.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_fold_impl_body.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── sequence_wrapper.hpp │ │ │ │ │ ├── shift_op.hpp │ │ │ │ │ ├── single_element_iter.hpp │ │ │ │ │ ├── size_impl.hpp │ │ │ │ │ ├── sort_impl.hpp │ │ │ │ │ ├── static_cast.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── template_arity_fwd.hpp │ │ │ │ │ ├── test.hpp │ │ │ │ │ ├── test │ │ │ │ │ │ ├── assert.hpp │ │ │ │ │ │ ├── data.hpp │ │ │ │ │ │ └── test_case.hpp │ │ │ │ │ ├── traits_lambda_spec.hpp │ │ │ │ │ ├── transform_iter.hpp │ │ │ │ │ ├── type_wrapper.hpp │ │ │ │ │ ├── unwrap.hpp │ │ │ │ │ ├── value_wknd.hpp │ │ │ │ │ └── yes_no.hpp │ │ │ │ ├── back.hpp │ │ │ │ ├── back_fwd.hpp │ │ │ │ ├── back_inserter.hpp │ │ │ │ ├── base.hpp │ │ │ │ ├── begin.hpp │ │ │ │ ├── begin_end.hpp │ │ │ │ ├── begin_end_fwd.hpp │ │ │ │ ├── bind.hpp │ │ │ │ ├── bind_fwd.hpp │ │ │ │ ├── bitand.hpp │ │ │ │ ├── bitor.hpp │ │ │ │ ├── bitwise.hpp │ │ │ │ ├── bitxor.hpp │ │ │ │ ├── bool.hpp │ │ │ │ ├── bool_fwd.hpp │ │ │ │ ├── char.hpp │ │ │ │ ├── char_fwd.hpp │ │ │ │ ├── clear.hpp │ │ │ │ ├── clear_fwd.hpp │ │ │ │ ├── comparison.hpp │ │ │ │ ├── contains.hpp │ │ │ │ ├── contains_fwd.hpp │ │ │ │ ├── copy.hpp │ │ │ │ ├── copy_if.hpp │ │ │ │ ├── count.hpp │ │ │ │ ├── count_fwd.hpp │ │ │ │ ├── count_if.hpp │ │ │ │ ├── deque.hpp │ │ │ │ ├── deref.hpp │ │ │ │ ├── distance.hpp │ │ │ │ ├── distance_fwd.hpp │ │ │ │ ├── divides.hpp │ │ │ │ ├── empty.hpp │ │ │ │ ├── empty_base.hpp │ │ │ │ ├── empty_fwd.hpp │ │ │ │ ├── empty_sequence.hpp │ │ │ │ ├── end.hpp │ │ │ │ ├── equal.hpp │ │ │ │ ├── equal_to.hpp │ │ │ │ ├── erase.hpp │ │ │ │ ├── erase_fwd.hpp │ │ │ │ ├── erase_key.hpp │ │ │ │ ├── erase_key_fwd.hpp │ │ │ │ ├── eval_if.hpp │ │ │ │ ├── filter_view.hpp │ │ │ │ ├── find.hpp │ │ │ │ ├── find_if.hpp │ │ │ │ ├── fold.hpp │ │ │ │ ├── for_each.hpp │ │ │ │ ├── front.hpp │ │ │ │ ├── front_fwd.hpp │ │ │ │ ├── front_inserter.hpp │ │ │ │ ├── greater.hpp │ │ │ │ ├── greater_equal.hpp │ │ │ │ ├── has_key.hpp │ │ │ │ ├── has_key_fwd.hpp │ │ │ │ ├── has_xxx.hpp │ │ │ │ ├── identity.hpp │ │ │ │ ├── if.hpp │ │ │ │ ├── index_if.hpp │ │ │ │ ├── index_of.hpp │ │ │ │ ├── inherit.hpp │ │ │ │ ├── inherit_linearly.hpp │ │ │ │ ├── insert.hpp │ │ │ │ ├── insert_fwd.hpp │ │ │ │ ├── insert_range.hpp │ │ │ │ ├── insert_range_fwd.hpp │ │ │ │ ├── inserter.hpp │ │ │ │ ├── int.hpp │ │ │ │ ├── int_fwd.hpp │ │ │ │ ├── integral_c.hpp │ │ │ │ ├── integral_c_fwd.hpp │ │ │ │ ├── integral_c_tag.hpp │ │ │ │ ├── is_placeholder.hpp │ │ │ │ ├── is_sequence.hpp │ │ │ │ ├── iter_fold.hpp │ │ │ │ ├── iter_fold_if.hpp │ │ │ │ ├── iterator_category.hpp │ │ │ │ ├── iterator_range.hpp │ │ │ │ ├── iterator_tags.hpp │ │ │ │ ├── joint_view.hpp │ │ │ │ ├── key_type.hpp │ │ │ │ ├── key_type_fwd.hpp │ │ │ │ ├── lambda.hpp │ │ │ │ ├── lambda_fwd.hpp │ │ │ │ ├── less.hpp │ │ │ │ ├── less_equal.hpp │ │ │ │ ├── limits │ │ │ │ │ ├── arity.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── string.hpp │ │ │ │ │ ├── unrolling.hpp │ │ │ │ │ └── vector.hpp │ │ │ │ ├── list.hpp │ │ │ │ ├── list │ │ │ │ │ ├── aux_ │ │ │ │ │ │ ├── O1_size.hpp │ │ │ │ │ │ ├── begin_end.hpp │ │ │ │ │ │ ├── clear.hpp │ │ │ │ │ │ ├── empty.hpp │ │ │ │ │ │ ├── front.hpp │ │ │ │ │ │ ├── include_preprocessed.hpp │ │ │ │ │ │ ├── item.hpp │ │ │ │ │ │ ├── iterator.hpp │ │ │ │ │ │ ├── numbered.hpp │ │ │ │ │ │ ├── numbered_c.hpp │ │ │ │ │ │ ├── pop_front.hpp │ │ │ │ │ │ ├── preprocessed │ │ │ │ │ │ │ └── plain │ │ │ │ │ │ │ │ ├── list10.hpp │ │ │ │ │ │ │ │ ├── list10_c.hpp │ │ │ │ │ │ │ │ ├── list20.hpp │ │ │ │ │ │ │ │ ├── list20_c.hpp │ │ │ │ │ │ │ │ ├── list30.hpp │ │ │ │ │ │ │ │ ├── list30_c.hpp │ │ │ │ │ │ │ │ ├── list40.hpp │ │ │ │ │ │ │ │ ├── list40_c.hpp │ │ │ │ │ │ │ │ ├── list50.hpp │ │ │ │ │ │ │ │ └── list50_c.hpp │ │ │ │ │ │ ├── push_back.hpp │ │ │ │ │ │ ├── push_front.hpp │ │ │ │ │ │ ├── size.hpp │ │ │ │ │ │ └── tag.hpp │ │ │ │ │ ├── list0.hpp │ │ │ │ │ ├── list0_c.hpp │ │ │ │ │ ├── list10.hpp │ │ │ │ │ ├── list10_c.hpp │ │ │ │ │ ├── list20.hpp │ │ │ │ │ ├── list20_c.hpp │ │ │ │ │ ├── list30.hpp │ │ │ │ │ ├── list30_c.hpp │ │ │ │ │ ├── list40.hpp │ │ │ │ │ ├── list40_c.hpp │ │ │ │ │ ├── list50.hpp │ │ │ │ │ └── list50_c.hpp │ │ │ │ ├── list_c.hpp │ │ │ │ ├── logical.hpp │ │ │ │ ├── long.hpp │ │ │ │ ├── long_fwd.hpp │ │ │ │ ├── lower_bound.hpp │ │ │ │ ├── map.hpp │ │ │ │ ├── map │ │ │ │ │ ├── aux_ │ │ │ │ │ │ ├── at_impl.hpp │ │ │ │ │ │ ├── begin_end_impl.hpp │ │ │ │ │ │ ├── clear_impl.hpp │ │ │ │ │ │ ├── contains_impl.hpp │ │ │ │ │ │ ├── empty_impl.hpp │ │ │ │ │ │ ├── erase_impl.hpp │ │ │ │ │ │ ├── erase_key_impl.hpp │ │ │ │ │ │ ├── has_key_impl.hpp │ │ │ │ │ │ ├── include_preprocessed.hpp │ │ │ │ │ │ ├── insert_impl.hpp │ │ │ │ │ │ ├── item.hpp │ │ │ │ │ │ ├── iterator.hpp │ │ │ │ │ │ ├── key_type_impl.hpp │ │ │ │ │ │ ├── map0.hpp │ │ │ │ │ │ ├── numbered.hpp │ │ │ │ │ │ ├── preprocessed │ │ │ │ │ │ │ ├── no_ctps │ │ │ │ │ │ │ │ ├── map10.hpp │ │ │ │ │ │ │ │ ├── map20.hpp │ │ │ │ │ │ │ │ ├── map30.hpp │ │ │ │ │ │ │ │ ├── map40.hpp │ │ │ │ │ │ │ │ └── map50.hpp │ │ │ │ │ │ │ ├── plain │ │ │ │ │ │ │ │ ├── map10.hpp │ │ │ │ │ │ │ │ ├── map20.hpp │ │ │ │ │ │ │ │ ├── map30.hpp │ │ │ │ │ │ │ │ ├── map40.hpp │ │ │ │ │ │ │ │ └── map50.hpp │ │ │ │ │ │ │ └── typeof_based │ │ │ │ │ │ │ │ ├── map10.hpp │ │ │ │ │ │ │ │ ├── map20.hpp │ │ │ │ │ │ │ │ ├── map30.hpp │ │ │ │ │ │ │ │ ├── map40.hpp │ │ │ │ │ │ │ │ └── map50.hpp │ │ │ │ │ │ ├── size_impl.hpp │ │ │ │ │ │ ├── tag.hpp │ │ │ │ │ │ └── value_type_impl.hpp │ │ │ │ │ ├── map0.hpp │ │ │ │ │ ├── map10.hpp │ │ │ │ │ ├── map20.hpp │ │ │ │ │ ├── map30.hpp │ │ │ │ │ ├── map40.hpp │ │ │ │ │ └── map50.hpp │ │ │ │ ├── math │ │ │ │ │ ├── fixed_c.hpp │ │ │ │ │ ├── is_even.hpp │ │ │ │ │ └── rational_c.hpp │ │ │ │ ├── max.hpp │ │ │ │ ├── max_element.hpp │ │ │ │ ├── min.hpp │ │ │ │ ├── min_element.hpp │ │ │ │ ├── min_max.hpp │ │ │ │ ├── minus.hpp │ │ │ │ ├── modulus.hpp │ │ │ │ ├── multiplies.hpp │ │ │ │ ├── multiset │ │ │ │ │ ├── aux_ │ │ │ │ │ │ ├── count_impl.hpp │ │ │ │ │ │ ├── insert_impl.hpp │ │ │ │ │ │ ├── item.hpp │ │ │ │ │ │ ├── multiset0.hpp │ │ │ │ │ │ └── tag.hpp │ │ │ │ │ └── multiset0.hpp │ │ │ │ ├── negate.hpp │ │ │ │ ├── next.hpp │ │ │ │ ├── next_prior.hpp │ │ │ │ ├── not.hpp │ │ │ │ ├── not_equal_to.hpp │ │ │ │ ├── numeric_cast.hpp │ │ │ │ ├── or.hpp │ │ │ │ ├── order.hpp │ │ │ │ ├── order_fwd.hpp │ │ │ │ ├── pair.hpp │ │ │ │ ├── pair_view.hpp │ │ │ │ ├── partition.hpp │ │ │ │ ├── placeholders.hpp │ │ │ │ ├── plus.hpp │ │ │ │ ├── pop_back.hpp │ │ │ │ ├── pop_back_fwd.hpp │ │ │ │ ├── pop_front.hpp │ │ │ │ ├── pop_front_fwd.hpp │ │ │ │ ├── print.hpp │ │ │ │ ├── prior.hpp │ │ │ │ ├── protect.hpp │ │ │ │ ├── push_back.hpp │ │ │ │ ├── push_back_fwd.hpp │ │ │ │ ├── push_front.hpp │ │ │ │ ├── push_front_fwd.hpp │ │ │ │ ├── quote.hpp │ │ │ │ ├── range_c.hpp │ │ │ │ ├── remove.hpp │ │ │ │ ├── remove_if.hpp │ │ │ │ ├── replace.hpp │ │ │ │ ├── replace_if.hpp │ │ │ │ ├── reverse.hpp │ │ │ │ ├── reverse_fold.hpp │ │ │ │ ├── reverse_iter_fold.hpp │ │ │ │ ├── same_as.hpp │ │ │ │ ├── sequence_tag.hpp │ │ │ │ ├── sequence_tag_fwd.hpp │ │ │ │ ├── set.hpp │ │ │ │ ├── set │ │ │ │ │ ├── aux_ │ │ │ │ │ │ ├── at_impl.hpp │ │ │ │ │ │ ├── begin_end_impl.hpp │ │ │ │ │ │ ├── clear_impl.hpp │ │ │ │ │ │ ├── empty_impl.hpp │ │ │ │ │ │ ├── erase_impl.hpp │ │ │ │ │ │ ├── erase_key_impl.hpp │ │ │ │ │ │ ├── has_key_impl.hpp │ │ │ │ │ │ ├── include_preprocessed.hpp │ │ │ │ │ │ ├── insert_impl.hpp │ │ │ │ │ │ ├── item.hpp │ │ │ │ │ │ ├── iterator.hpp │ │ │ │ │ │ ├── key_type_impl.hpp │ │ │ │ │ │ ├── numbered.hpp │ │ │ │ │ │ ├── numbered_c.hpp │ │ │ │ │ │ ├── preprocessed │ │ │ │ │ │ │ └── plain │ │ │ │ │ │ │ │ ├── set10.hpp │ │ │ │ │ │ │ │ ├── set10_c.hpp │ │ │ │ │ │ │ │ ├── set20.hpp │ │ │ │ │ │ │ │ ├── set20_c.hpp │ │ │ │ │ │ │ │ ├── set30.hpp │ │ │ │ │ │ │ │ ├── set30_c.hpp │ │ │ │ │ │ │ │ ├── set40.hpp │ │ │ │ │ │ │ │ ├── set40_c.hpp │ │ │ │ │ │ │ │ ├── set50.hpp │ │ │ │ │ │ │ │ └── set50_c.hpp │ │ │ │ │ │ ├── set0.hpp │ │ │ │ │ │ ├── size_impl.hpp │ │ │ │ │ │ ├── tag.hpp │ │ │ │ │ │ └── value_type_impl.hpp │ │ │ │ │ ├── set0.hpp │ │ │ │ │ ├── set0_c.hpp │ │ │ │ │ ├── set10.hpp │ │ │ │ │ ├── set10_c.hpp │ │ │ │ │ ├── set20.hpp │ │ │ │ │ ├── set20_c.hpp │ │ │ │ │ ├── set30.hpp │ │ │ │ │ ├── set30_c.hpp │ │ │ │ │ ├── set40.hpp │ │ │ │ │ ├── set40_c.hpp │ │ │ │ │ ├── set50.hpp │ │ │ │ │ └── set50_c.hpp │ │ │ │ ├── set_c.hpp │ │ │ │ ├── shift_left.hpp │ │ │ │ ├── shift_right.hpp │ │ │ │ ├── single_view.hpp │ │ │ │ ├── size.hpp │ │ │ │ ├── size_fwd.hpp │ │ │ │ ├── size_t.hpp │ │ │ │ ├── size_t_fwd.hpp │ │ │ │ ├── sizeof.hpp │ │ │ │ ├── sort.hpp │ │ │ │ ├── stable_partition.hpp │ │ │ │ ├── string.hpp │ │ │ │ ├── switch.hpp │ │ │ │ ├── tag.hpp │ │ │ │ ├── times.hpp │ │ │ │ ├── transform.hpp │ │ │ │ ├── transform_view.hpp │ │ │ │ ├── unique.hpp │ │ │ │ ├── unpack_args.hpp │ │ │ │ ├── upper_bound.hpp │ │ │ │ ├── value_type.hpp │ │ │ │ ├── value_type_fwd.hpp │ │ │ │ ├── vector.hpp │ │ │ │ ├── vector │ │ │ │ │ ├── aux_ │ │ │ │ │ │ ├── O1_size.hpp │ │ │ │ │ │ ├── at.hpp │ │ │ │ │ │ ├── back.hpp │ │ │ │ │ │ ├── begin_end.hpp │ │ │ │ │ │ ├── clear.hpp │ │ │ │ │ │ ├── empty.hpp │ │ │ │ │ │ ├── front.hpp │ │ │ │ │ │ ├── include_preprocessed.hpp │ │ │ │ │ │ ├── item.hpp │ │ │ │ │ │ ├── iterator.hpp │ │ │ │ │ │ ├── numbered.hpp │ │ │ │ │ │ ├── numbered_c.hpp │ │ │ │ │ │ ├── pop_back.hpp │ │ │ │ │ │ ├── pop_front.hpp │ │ │ │ │ │ ├── preprocessed │ │ │ │ │ │ │ ├── no_ctps │ │ │ │ │ │ │ │ ├── vector10.hpp │ │ │ │ │ │ │ │ ├── vector10_c.hpp │ │ │ │ │ │ │ │ ├── vector20.hpp │ │ │ │ │ │ │ │ ├── vector20_c.hpp │ │ │ │ │ │ │ │ ├── vector30.hpp │ │ │ │ │ │ │ │ ├── vector30_c.hpp │ │ │ │ │ │ │ │ ├── vector40.hpp │ │ │ │ │ │ │ │ ├── vector40_c.hpp │ │ │ │ │ │ │ │ ├── vector50.hpp │ │ │ │ │ │ │ │ └── vector50_c.hpp │ │ │ │ │ │ │ ├── plain │ │ │ │ │ │ │ │ ├── vector10.hpp │ │ │ │ │ │ │ │ ├── vector10_c.hpp │ │ │ │ │ │ │ │ ├── vector20.hpp │ │ │ │ │ │ │ │ ├── vector20_c.hpp │ │ │ │ │ │ │ │ ├── vector30.hpp │ │ │ │ │ │ │ │ ├── vector30_c.hpp │ │ │ │ │ │ │ │ ├── vector40.hpp │ │ │ │ │ │ │ │ ├── vector40_c.hpp │ │ │ │ │ │ │ │ ├── vector50.hpp │ │ │ │ │ │ │ │ └── vector50_c.hpp │ │ │ │ │ │ │ └── typeof_based │ │ │ │ │ │ │ │ ├── vector10.hpp │ │ │ │ │ │ │ │ ├── vector10_c.hpp │ │ │ │ │ │ │ │ ├── vector20.hpp │ │ │ │ │ │ │ │ ├── vector20_c.hpp │ │ │ │ │ │ │ │ ├── vector30.hpp │ │ │ │ │ │ │ │ ├── vector30_c.hpp │ │ │ │ │ │ │ │ ├── vector40.hpp │ │ │ │ │ │ │ │ ├── vector40_c.hpp │ │ │ │ │ │ │ │ ├── vector50.hpp │ │ │ │ │ │ │ │ └── vector50_c.hpp │ │ │ │ │ │ ├── push_back.hpp │ │ │ │ │ │ ├── push_front.hpp │ │ │ │ │ │ ├── size.hpp │ │ │ │ │ │ ├── tag.hpp │ │ │ │ │ │ └── vector0.hpp │ │ │ │ │ ├── vector0.hpp │ │ │ │ │ ├── vector0_c.hpp │ │ │ │ │ ├── vector10.hpp │ │ │ │ │ ├── vector10_c.hpp │ │ │ │ │ ├── vector20.hpp │ │ │ │ │ ├── vector20_c.hpp │ │ │ │ │ ├── vector30.hpp │ │ │ │ │ ├── vector30_c.hpp │ │ │ │ │ ├── vector40.hpp │ │ │ │ │ ├── vector40_c.hpp │ │ │ │ │ ├── vector50.hpp │ │ │ │ │ └── vector50_c.hpp │ │ │ │ ├── vector_c.hpp │ │ │ │ ├── void.hpp │ │ │ │ ├── void_fwd.hpp │ │ │ │ └── zip_view.hpp │ │ │ ├── msm │ │ │ │ ├── active_state_switching_policies.hpp │ │ │ │ ├── back │ │ │ │ │ ├── args.hpp │ │ │ │ │ ├── bind_helpers.hpp │ │ │ │ │ ├── common_types.hpp │ │ │ │ │ ├── copy_policies.hpp │ │ │ │ │ ├── default_compile_policy.hpp │ │ │ │ │ ├── dispatch_table.hpp │ │ │ │ │ ├── favor_compile_time.hpp │ │ │ │ │ ├── fold_to_list.hpp │ │ │ │ │ ├── history_policies.hpp │ │ │ │ │ ├── metafunctions.hpp │ │ │ │ │ ├── mpl_graph_fsm_check.hpp │ │ │ │ │ ├── no_fsm_check.hpp │ │ │ │ │ ├── queue_container_circular.hpp │ │ │ │ │ ├── queue_container_deque.hpp │ │ │ │ │ ├── state_machine.hpp │ │ │ │ │ └── tools.hpp │ │ │ │ ├── common.hpp │ │ │ │ ├── event_traits.hpp │ │ │ │ ├── front │ │ │ │ │ ├── common_states.hpp │ │ │ │ │ ├── completion_event.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── common_states.hpp │ │ │ │ │ │ └── row2_helper.hpp │ │ │ │ │ ├── euml │ │ │ │ │ │ ├── algorithm.hpp │ │ │ │ │ │ ├── common.hpp │ │ │ │ │ │ ├── container.hpp │ │ │ │ │ │ ├── euml.hpp │ │ │ │ │ │ ├── euml_typeof.hpp │ │ │ │ │ │ ├── guard_grammar.hpp │ │ │ │ │ │ ├── iteration.hpp │ │ │ │ │ │ ├── operator.hpp │ │ │ │ │ │ ├── phoenix_placeholders.hpp │ │ │ │ │ │ ├── querying.hpp │ │ │ │ │ │ ├── state_grammar.hpp │ │ │ │ │ │ ├── stl.hpp │ │ │ │ │ │ ├── stt_grammar.hpp │ │ │ │ │ │ └── transformation.hpp │ │ │ │ │ ├── functor_row.hpp │ │ │ │ │ ├── internal_row.hpp │ │ │ │ │ ├── row2.hpp │ │ │ │ │ ├── state_machine_def.hpp │ │ │ │ │ └── states.hpp │ │ │ │ ├── mpl_graph │ │ │ │ │ ├── adjacency_list_graph.hpp │ │ │ │ │ ├── breadth_first_search.hpp │ │ │ │ │ ├── depth_first_search.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── adjacency_list_graph.ipp │ │ │ │ │ │ ├── graph_implementation_interface.ipp │ │ │ │ │ │ └── incidence_list_graph.ipp │ │ │ │ │ ├── incidence_list_graph.hpp │ │ │ │ │ ├── mpl_graph.hpp │ │ │ │ │ ├── mpl_utils.hpp │ │ │ │ │ └── search_colors.hpp │ │ │ │ ├── msm_grammar.hpp │ │ │ │ ├── proto_config.hpp │ │ │ │ └── row_tags.hpp │ │ │ ├── multi_array.hpp │ │ │ ├── multi_array │ │ │ │ ├── algorithm.hpp │ │ │ │ ├── base.hpp │ │ │ │ ├── collection_concept.hpp │ │ │ │ ├── concept_checks.hpp │ │ │ │ ├── copy_array.hpp │ │ │ │ ├── extent_gen.hpp │ │ │ │ ├── extent_range.hpp │ │ │ │ ├── index_gen.hpp │ │ │ │ ├── index_range.hpp │ │ │ │ ├── iterator.hpp │ │ │ │ ├── multi_array_ref.hpp │ │ │ │ ├── range_list.hpp │ │ │ │ ├── storage_order.hpp │ │ │ │ ├── subarray.hpp │ │ │ │ ├── types.hpp │ │ │ │ └── view.hpp │ │ │ ├── multi_index │ │ │ │ ├── composite_key.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── access_specifier.hpp │ │ │ │ │ ├── adl_swap.hpp │ │ │ │ │ ├── archive_constructed.hpp │ │ │ │ │ ├── auto_space.hpp │ │ │ │ │ ├── base_type.hpp │ │ │ │ │ ├── bidir_node_iterator.hpp │ │ │ │ │ ├── bucket_array.hpp │ │ │ │ │ ├── converter.hpp │ │ │ │ │ ├── copy_map.hpp │ │ │ │ │ ├── duplicates_iterator.hpp │ │ │ │ │ ├── has_tag.hpp │ │ │ │ │ ├── hash_index_args.hpp │ │ │ │ │ ├── hash_index_iterator.hpp │ │ │ │ │ ├── hash_index_node.hpp │ │ │ │ │ ├── header_holder.hpp │ │ │ │ │ ├── index_base.hpp │ │ │ │ │ ├── index_loader.hpp │ │ │ │ │ ├── index_matcher.hpp │ │ │ │ │ ├── index_node_base.hpp │ │ │ │ │ ├── index_saver.hpp │ │ │ │ │ ├── invariant_assert.hpp │ │ │ │ │ ├── is_index_list.hpp │ │ │ │ │ ├── iter_adaptor.hpp │ │ │ │ │ ├── modify_key_adaptor.hpp │ │ │ │ │ ├── msvc_index_specifier.hpp │ │ │ │ │ ├── no_duplicate_tags.hpp │ │ │ │ │ ├── node_type.hpp │ │ │ │ │ ├── ord_index_args.hpp │ │ │ │ │ ├── ord_index_node.hpp │ │ │ │ │ ├── ord_index_ops.hpp │ │ │ │ │ ├── prevent_eti.hpp │ │ │ │ │ ├── rnd_index_loader.hpp │ │ │ │ │ ├── rnd_index_node.hpp │ │ │ │ │ ├── rnd_index_ops.hpp │ │ │ │ │ ├── rnd_index_ptr_array.hpp │ │ │ │ │ ├── rnd_node_iterator.hpp │ │ │ │ │ ├── safe_ctr_proxy.hpp │ │ │ │ │ ├── safe_mode.hpp │ │ │ │ │ ├── scope_guard.hpp │ │ │ │ │ ├── seq_index_node.hpp │ │ │ │ │ ├── seq_index_ops.hpp │ │ │ │ │ ├── serialization_version.hpp │ │ │ │ │ ├── uintptr_type.hpp │ │ │ │ │ ├── unbounded.hpp │ │ │ │ │ └── value_compare.hpp │ │ │ │ ├── global_fun.hpp │ │ │ │ ├── hashed_index.hpp │ │ │ │ ├── hashed_index_fwd.hpp │ │ │ │ ├── identity.hpp │ │ │ │ ├── identity_fwd.hpp │ │ │ │ ├── indexed_by.hpp │ │ │ │ ├── key_extractors.hpp │ │ │ │ ├── mem_fun.hpp │ │ │ │ ├── member.hpp │ │ │ │ ├── ordered_index.hpp │ │ │ │ ├── ordered_index_fwd.hpp │ │ │ │ ├── random_access_index.hpp │ │ │ │ ├── random_access_index_fwd.hpp │ │ │ │ ├── safe_mode_errors.hpp │ │ │ │ ├── sequenced_index.hpp │ │ │ │ ├── sequenced_index_fwd.hpp │ │ │ │ └── tag.hpp │ │ │ ├── multi_index_container.hpp │ │ │ ├── multi_index_container_fwd.hpp │ │ │ ├── multiprecision │ │ │ │ ├── concepts │ │ │ │ │ └── mp_number_archetypes.hpp │ │ │ │ ├── cpp_dec_float.hpp │ │ │ │ ├── cpp_int.hpp │ │ │ │ ├── cpp_int │ │ │ │ │ ├── add.hpp │ │ │ │ │ ├── bitwise.hpp │ │ │ │ │ ├── checked.hpp │ │ │ │ │ ├── comparison.hpp │ │ │ │ │ ├── cpp_int_config.hpp │ │ │ │ │ ├── divide.hpp │ │ │ │ │ ├── limits.hpp │ │ │ │ │ ├── literals.hpp │ │ │ │ │ ├── misc.hpp │ │ │ │ │ ├── multiply.hpp │ │ │ │ │ └── value_pack.hpp │ │ │ │ ├── debug_adaptor.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── big_lanczos.hpp │ │ │ │ │ ├── default_ops.hpp │ │ │ │ │ ├── digits.hpp │ │ │ │ │ ├── dynamic_array.hpp │ │ │ │ │ ├── et_ops.hpp │ │ │ │ │ ├── float_string_cvt.hpp │ │ │ │ │ ├── functions │ │ │ │ │ │ ├── constants.hpp │ │ │ │ │ │ ├── pow.hpp │ │ │ │ │ │ └── trig.hpp │ │ │ │ │ ├── generic_interconvert.hpp │ │ │ │ │ ├── integer_ops.hpp │ │ │ │ │ ├── no_et_ops.hpp │ │ │ │ │ ├── number_base.hpp │ │ │ │ │ ├── number_compare.hpp │ │ │ │ │ ├── rebind.hpp │ │ │ │ │ ├── ublas_interop.hpp │ │ │ │ │ └── utype_helper.hpp │ │ │ │ ├── float128.hpp │ │ │ │ ├── gmp.hpp │ │ │ │ ├── integer.hpp │ │ │ │ ├── logged_adaptor.hpp │ │ │ │ ├── miller_rabin.hpp │ │ │ │ ├── mpfi.hpp │ │ │ │ ├── mpfr.hpp │ │ │ │ ├── number.hpp │ │ │ │ ├── random.hpp │ │ │ │ ├── rational_adaptor.hpp │ │ │ │ ├── tommath.hpp │ │ │ │ └── traits │ │ │ │ │ ├── explicit_conversion.hpp │ │ │ │ │ ├── extract_exponent_type.hpp │ │ │ │ │ └── is_restricted_conversion.hpp │ │ │ ├── next_prior.hpp │ │ │ ├── non_type.hpp │ │ │ ├── noncopyable.hpp │ │ │ ├── nondet_random.hpp │ │ │ ├── none.hpp │ │ │ ├── none_t.hpp │ │ │ ├── numeric │ │ │ │ ├── conversion │ │ │ │ │ ├── bounds.hpp │ │ │ │ │ ├── cast.hpp │ │ │ │ │ ├── conversion_traits.hpp │ │ │ │ │ ├── converter.hpp │ │ │ │ │ ├── converter_policies.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── bounds.hpp │ │ │ │ │ │ ├── conversion_traits.hpp │ │ │ │ │ │ ├── converter.hpp │ │ │ │ │ │ ├── int_float_mixture.hpp │ │ │ │ │ │ ├── is_subranged.hpp │ │ │ │ │ │ ├── meta.hpp │ │ │ │ │ │ ├── numeric_cast_traits.hpp │ │ │ │ │ │ ├── old_numeric_cast.hpp │ │ │ │ │ │ ├── preprocessed │ │ │ │ │ │ │ ├── numeric_cast_traits_common.hpp │ │ │ │ │ │ │ └── numeric_cast_traits_long_long.hpp │ │ │ │ │ │ ├── sign_mixture.hpp │ │ │ │ │ │ └── udt_builtin_mixture.hpp │ │ │ │ │ ├── int_float_mixture.hpp │ │ │ │ │ ├── int_float_mixture_enum.hpp │ │ │ │ │ ├── is_subranged.hpp │ │ │ │ │ ├── numeric_cast_traits.hpp │ │ │ │ │ ├── sign_mixture.hpp │ │ │ │ │ ├── sign_mixture_enum.hpp │ │ │ │ │ ├── udt_builtin_mixture.hpp │ │ │ │ │ └── udt_builtin_mixture_enum.hpp │ │ │ │ ├── interval.hpp │ │ │ │ ├── interval │ │ │ │ │ ├── arith.hpp │ │ │ │ │ ├── arith2.hpp │ │ │ │ │ ├── arith3.hpp │ │ │ │ │ ├── checking.hpp │ │ │ │ │ ├── compare.hpp │ │ │ │ │ ├── compare │ │ │ │ │ │ ├── certain.hpp │ │ │ │ │ │ ├── explicit.hpp │ │ │ │ │ │ ├── lexicographic.hpp │ │ │ │ │ │ ├── possible.hpp │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ └── tribool.hpp │ │ │ │ │ ├── constants.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── alpha_rounding_control.hpp │ │ │ │ │ │ ├── bcc_rounding_control.hpp │ │ │ │ │ │ ├── bugs.hpp │ │ │ │ │ │ ├── c99_rounding_control.hpp │ │ │ │ │ │ ├── c99sub_rounding_control.hpp │ │ │ │ │ │ ├── division.hpp │ │ │ │ │ │ ├── ia64_rounding_control.hpp │ │ │ │ │ │ ├── interval_prototype.hpp │ │ │ │ │ │ ├── msvc_rounding_control.hpp │ │ │ │ │ │ ├── ppc_rounding_control.hpp │ │ │ │ │ │ ├── sparc_rounding_control.hpp │ │ │ │ │ │ ├── test_input.hpp │ │ │ │ │ │ ├── x86_rounding_control.hpp │ │ │ │ │ │ └── x86gcc_rounding_control.hpp │ │ │ │ │ ├── ext │ │ │ │ │ │ ├── integer.hpp │ │ │ │ │ │ └── x86_fast_rounding_control.hpp │ │ │ │ │ ├── hw_rounding.hpp │ │ │ │ │ ├── interval.hpp │ │ │ │ │ ├── io.hpp │ │ │ │ │ ├── limits.hpp │ │ │ │ │ ├── policies.hpp │ │ │ │ │ ├── rounded_arith.hpp │ │ │ │ │ ├── rounded_transc.hpp │ │ │ │ │ ├── rounding.hpp │ │ │ │ │ ├── transc.hpp │ │ │ │ │ └── utility.hpp │ │ │ │ ├── odeint.hpp │ │ │ │ ├── odeint │ │ │ │ │ ├── algebra │ │ │ │ │ │ ├── array_algebra.hpp │ │ │ │ │ │ ├── default_operations.hpp │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ ├── for_each.hpp │ │ │ │ │ │ │ ├── macros.hpp │ │ │ │ │ │ │ └── reduce.hpp │ │ │ │ │ │ ├── fusion_algebra.hpp │ │ │ │ │ │ ├── range_algebra.hpp │ │ │ │ │ │ └── vector_space_algebra.hpp │ │ │ │ │ ├── config.hpp │ │ │ │ │ ├── external │ │ │ │ │ │ ├── gsl │ │ │ │ │ │ │ └── gsl_wrapper.hpp │ │ │ │ │ │ ├── mkl │ │ │ │ │ │ │ └── mkl_operations.hpp │ │ │ │ │ │ ├── mtl4 │ │ │ │ │ │ │ ├── implicit_euler_mtl4.hpp │ │ │ │ │ │ │ └── mtl4_resize.hpp │ │ │ │ │ │ ├── thrust │ │ │ │ │ │ │ ├── thrust_algebra.hpp │ │ │ │ │ │ │ ├── thrust_operations.hpp │ │ │ │ │ │ │ └── thrust_resize.hpp │ │ │ │ │ │ ├── vexcl │ │ │ │ │ │ │ └── vexcl_resize.hpp │ │ │ │ │ │ └── viennacl │ │ │ │ │ │ │ ├── viennacl_operations.hpp │ │ │ │ │ │ │ └── viennacl_resize.hpp │ │ │ │ │ ├── integrate │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ ├── integrate_adaptive.hpp │ │ │ │ │ │ │ ├── integrate_const.hpp │ │ │ │ │ │ │ ├── integrate_n_steps.hpp │ │ │ │ │ │ │ └── integrate_times.hpp │ │ │ │ │ │ ├── integrate.hpp │ │ │ │ │ │ ├── integrate_adaptive.hpp │ │ │ │ │ │ ├── integrate_const.hpp │ │ │ │ │ │ ├── integrate_n_steps.hpp │ │ │ │ │ │ ├── integrate_times.hpp │ │ │ │ │ │ ├── null_observer.hpp │ │ │ │ │ │ └── observer_collection.hpp │ │ │ │ │ ├── stepper │ │ │ │ │ │ ├── adams_bashforth.hpp │ │ │ │ │ │ ├── adams_bashforth_moulton.hpp │ │ │ │ │ │ ├── adams_moulton.hpp │ │ │ │ │ │ ├── base │ │ │ │ │ │ │ ├── algebra_stepper_base.hpp │ │ │ │ │ │ │ ├── explicit_error_stepper_base.hpp │ │ │ │ │ │ │ ├── explicit_error_stepper_fsal_base.hpp │ │ │ │ │ │ │ ├── explicit_stepper_base.hpp │ │ │ │ │ │ │ └── symplectic_rkn_stepper_base.hpp │ │ │ │ │ │ ├── bulirsch_stoer.hpp │ │ │ │ │ │ ├── bulirsch_stoer_dense_out.hpp │ │ │ │ │ │ ├── controlled_runge_kutta.hpp │ │ │ │ │ │ ├── controlled_step_result.hpp │ │ │ │ │ │ ├── dense_output_runge_kutta.hpp │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ ├── adams_bashforth_call_algebra.hpp │ │ │ │ │ │ │ ├── adams_bashforth_coefficients.hpp │ │ │ │ │ │ │ ├── adams_moulton_call_algebra.hpp │ │ │ │ │ │ │ ├── adams_moulton_coefficients.hpp │ │ │ │ │ │ │ ├── generic_rk_algorithm.hpp │ │ │ │ │ │ │ ├── generic_rk_call_algebra.hpp │ │ │ │ │ │ │ ├── generic_rk_operations.hpp │ │ │ │ │ │ │ └── rotating_buffer.hpp │ │ │ │ │ │ ├── euler.hpp │ │ │ │ │ │ ├── explicit_error_generic_rk.hpp │ │ │ │ │ │ ├── explicit_generic_rk.hpp │ │ │ │ │ │ ├── generation.hpp │ │ │ │ │ │ ├── generation │ │ │ │ │ │ │ ├── generation_controlled_runge_kutta.hpp │ │ │ │ │ │ │ ├── generation_dense_output_runge_kutta.hpp │ │ │ │ │ │ │ ├── generation_rosenbrock4.hpp │ │ │ │ │ │ │ ├── generation_runge_kutta_cash_karp54.hpp │ │ │ │ │ │ │ ├── generation_runge_kutta_cash_karp54_classic.hpp │ │ │ │ │ │ │ ├── generation_runge_kutta_dopri5.hpp │ │ │ │ │ │ │ ├── generation_runge_kutta_fehlberg78.hpp │ │ │ │ │ │ │ ├── make_controlled.hpp │ │ │ │ │ │ │ └── make_dense_output.hpp │ │ │ │ │ │ ├── implicit_euler.hpp │ │ │ │ │ │ ├── modified_midpoint.hpp │ │ │ │ │ │ ├── rosenbrock4.hpp │ │ │ │ │ │ ├── rosenbrock4_controller.hpp │ │ │ │ │ │ ├── rosenbrock4_dense_output.hpp │ │ │ │ │ │ ├── runge_kutta4.hpp │ │ │ │ │ │ ├── runge_kutta4_classic.hpp │ │ │ │ │ │ ├── runge_kutta_cash_karp54.hpp │ │ │ │ │ │ ├── runge_kutta_cash_karp54_classic.hpp │ │ │ │ │ │ ├── runge_kutta_dopri5.hpp │ │ │ │ │ │ ├── runge_kutta_fehlberg78.hpp │ │ │ │ │ │ ├── stepper_categories.hpp │ │ │ │ │ │ ├── symplectic_euler.hpp │ │ │ │ │ │ ├── symplectic_rkn_sb3a_m4_mclachlan.hpp │ │ │ │ │ │ └── symplectic_rkn_sb3a_mclachlan.hpp │ │ │ │ │ ├── util │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ ├── copy.hpp │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ ├── is_range.hpp │ │ │ │ │ │ │ └── less_with_sign.hpp │ │ │ │ │ │ ├── is_pair.hpp │ │ │ │ │ │ ├── is_resizeable.hpp │ │ │ │ │ │ ├── resize.hpp │ │ │ │ │ │ ├── resizer.hpp │ │ │ │ │ │ ├── same_instance.hpp │ │ │ │ │ │ ├── same_size.hpp │ │ │ │ │ │ ├── state_wrapper.hpp │ │ │ │ │ │ ├── ublas_wrapper.hpp │ │ │ │ │ │ ├── unit_helper.hpp │ │ │ │ │ │ └── unwrap_reference.hpp │ │ │ │ │ └── version.hpp │ │ │ │ └── ublas │ │ │ │ │ ├── assignment.hpp │ │ │ │ │ ├── banded.hpp │ │ │ │ │ ├── blas.hpp │ │ │ │ │ ├── detail │ │ │ │ │ ├── concepts.hpp │ │ │ │ │ ├── config.hpp │ │ │ │ │ ├── definitions.hpp │ │ │ │ │ ├── documentation.hpp │ │ │ │ │ ├── duff.hpp │ │ │ │ │ ├── iterator.hpp │ │ │ │ │ ├── matrix_assign.hpp │ │ │ │ │ ├── raw.hpp │ │ │ │ │ ├── returntype_deduction.hpp │ │ │ │ │ ├── temporary.hpp │ │ │ │ │ └── vector_assign.hpp │ │ │ │ │ ├── doxydoc.hpp │ │ │ │ │ ├── exception.hpp │ │ │ │ │ ├── experimental │ │ │ │ │ └── sparse_view.hpp │ │ │ │ │ ├── expression_types.hpp │ │ │ │ │ ├── functional.hpp │ │ │ │ │ ├── fwd.hpp │ │ │ │ │ ├── hermitian.hpp │ │ │ │ │ ├── io.hpp │ │ │ │ │ ├── lu.hpp │ │ │ │ │ ├── matrix.hpp │ │ │ │ │ ├── matrix_expression.hpp │ │ │ │ │ ├── matrix_proxy.hpp │ │ │ │ │ ├── matrix_sparse.hpp │ │ │ │ │ ├── operation.hpp │ │ │ │ │ ├── operation │ │ │ │ │ ├── begin.hpp │ │ │ │ │ ├── c_array.hpp │ │ │ │ │ ├── end.hpp │ │ │ │ │ ├── num_columns.hpp │ │ │ │ │ ├── num_rows.hpp │ │ │ │ │ └── size.hpp │ │ │ │ │ ├── operation_blocked.hpp │ │ │ │ │ ├── operation_sparse.hpp │ │ │ │ │ ├── operations.hpp │ │ │ │ │ ├── storage.hpp │ │ │ │ │ ├── storage_sparse.hpp │ │ │ │ │ ├── symmetric.hpp │ │ │ │ │ ├── tags.hpp │ │ │ │ │ ├── traits.hpp │ │ │ │ │ ├── traits │ │ │ │ │ ├── c_array.hpp │ │ │ │ │ ├── const_iterator_type.hpp │ │ │ │ │ └── iterator_type.hpp │ │ │ │ │ ├── triangular.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ ├── vector_expression.hpp │ │ │ │ │ ├── vector_of_vector.hpp │ │ │ │ │ ├── vector_proxy.hpp │ │ │ │ │ └── vector_sparse.hpp │ │ │ ├── operators.hpp │ │ │ ├── optional.hpp │ │ │ ├── optional │ │ │ │ ├── optional.hpp │ │ │ │ ├── optional_fwd.hpp │ │ │ │ └── optional_io.hpp │ │ │ ├── parameter.hpp │ │ │ ├── parameter │ │ │ │ ├── aux_ │ │ │ │ │ ├── arg_list.hpp │ │ │ │ │ ├── cast.hpp │ │ │ │ │ ├── default.hpp │ │ │ │ │ ├── is_maybe.hpp │ │ │ │ │ ├── maybe.hpp │ │ │ │ │ ├── overloads.hpp │ │ │ │ │ ├── parameter_requirements.hpp │ │ │ │ │ ├── parenthesized_type.hpp │ │ │ │ │ ├── preprocessor │ │ │ │ │ │ ├── flatten.hpp │ │ │ │ │ │ └── for_each.hpp │ │ │ │ │ ├── python │ │ │ │ │ │ ├── invoker.hpp │ │ │ │ │ │ └── invoker_iterate.hpp │ │ │ │ │ ├── result_of0.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── tag.hpp │ │ │ │ │ ├── tagged_argument.hpp │ │ │ │ │ ├── template_keyword.hpp │ │ │ │ │ ├── unwrap_cv_reference.hpp │ │ │ │ │ ├── void.hpp │ │ │ │ │ └── yesno.hpp │ │ │ │ ├── binding.hpp │ │ │ │ ├── config.hpp │ │ │ │ ├── keyword.hpp │ │ │ │ ├── macros.hpp │ │ │ │ ├── match.hpp │ │ │ │ ├── name.hpp │ │ │ │ ├── parameters.hpp │ │ │ │ ├── preprocessor.hpp │ │ │ │ ├── python.hpp │ │ │ │ └── value_type.hpp │ │ │ ├── pending │ │ │ │ ├── bucket_sorter.hpp │ │ │ │ ├── container_traits.hpp │ │ │ │ ├── cstddef.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── disjoint_sets.hpp │ │ │ │ │ ├── int_iterator.hpp │ │ │ │ │ └── property.hpp │ │ │ │ ├── disjoint_sets.hpp │ │ │ │ ├── fenced_priority_queue.hpp │ │ │ │ ├── fibonacci_heap.hpp │ │ │ │ ├── indirect_cmp.hpp │ │ │ │ ├── integer_log2.hpp │ │ │ │ ├── is_heap.hpp │ │ │ │ ├── iterator_adaptors.hpp │ │ │ │ ├── iterator_tests.hpp │ │ │ │ ├── lowest_bit.hpp │ │ │ │ ├── mutable_heap.hpp │ │ │ │ ├── mutable_queue.hpp │ │ │ │ ├── property.hpp │ │ │ │ ├── property_serialize.hpp │ │ │ │ ├── queue.hpp │ │ │ │ ├── relaxed_heap.hpp │ │ │ │ └── stringtok.hpp │ │ │ ├── phoenix.hpp │ │ │ ├── phoenix │ │ │ │ ├── bind.hpp │ │ │ │ ├── bind │ │ │ │ │ ├── bind_function.hpp │ │ │ │ │ ├── bind_function_object.hpp │ │ │ │ │ ├── bind_member_function.hpp │ │ │ │ │ ├── bind_member_variable.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── function_ptr.hpp │ │ │ │ │ │ ├── member_function_ptr.hpp │ │ │ │ │ │ ├── member_variable.hpp │ │ │ │ │ │ └── preprocessed │ │ │ │ │ │ │ ├── function_ptr.hpp │ │ │ │ │ │ │ ├── function_ptr_10.hpp │ │ │ │ │ │ │ ├── function_ptr_20.hpp │ │ │ │ │ │ │ ├── function_ptr_30.hpp │ │ │ │ │ │ │ ├── function_ptr_40.hpp │ │ │ │ │ │ │ ├── function_ptr_50.hpp │ │ │ │ │ │ │ ├── member_function_ptr.hpp │ │ │ │ │ │ │ ├── member_function_ptr_10.hpp │ │ │ │ │ │ │ ├── member_function_ptr_20.hpp │ │ │ │ │ │ │ ├── member_function_ptr_30.hpp │ │ │ │ │ │ │ ├── member_function_ptr_40.hpp │ │ │ │ │ │ │ └── member_function_ptr_50.hpp │ │ │ │ │ └── preprocessed │ │ │ │ │ │ ├── bind_function.hpp │ │ │ │ │ │ ├── bind_function_10.hpp │ │ │ │ │ │ ├── bind_function_20.hpp │ │ │ │ │ │ ├── bind_function_30.hpp │ │ │ │ │ │ ├── bind_function_40.hpp │ │ │ │ │ │ ├── bind_function_50.hpp │ │ │ │ │ │ ├── bind_function_object.hpp │ │ │ │ │ │ ├── bind_function_object_10.hpp │ │ │ │ │ │ ├── bind_function_object_20.hpp │ │ │ │ │ │ ├── bind_function_object_30.hpp │ │ │ │ │ │ ├── bind_function_object_40.hpp │ │ │ │ │ │ ├── bind_function_object_50.hpp │ │ │ │ │ │ ├── bind_member_function.hpp │ │ │ │ │ │ ├── bind_member_function_10.hpp │ │ │ │ │ │ ├── bind_member_function_20.hpp │ │ │ │ │ │ ├── bind_member_function_30.hpp │ │ │ │ │ │ ├── bind_member_function_40.hpp │ │ │ │ │ │ └── bind_member_function_50.hpp │ │ │ │ ├── core.hpp │ │ │ │ ├── core │ │ │ │ │ ├── actor.hpp │ │ │ │ │ ├── argument.hpp │ │ │ │ │ ├── arity.hpp │ │ │ │ │ ├── as_actor.hpp │ │ │ │ │ ├── call.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── actor_operator.hpp │ │ │ │ │ │ ├── actor_result_of.hpp │ │ │ │ │ │ ├── argument.hpp │ │ │ │ │ │ ├── call.hpp │ │ │ │ │ │ ├── expression.hpp │ │ │ │ │ │ ├── function_eval.hpp │ │ │ │ │ │ ├── phx2_result.hpp │ │ │ │ │ │ └── preprocessed │ │ │ │ │ │ │ ├── actor_operator.hpp │ │ │ │ │ │ │ ├── actor_operator_10.hpp │ │ │ │ │ │ │ ├── actor_operator_20.hpp │ │ │ │ │ │ │ ├── actor_operator_30.hpp │ │ │ │ │ │ │ ├── actor_operator_40.hpp │ │ │ │ │ │ │ ├── actor_operator_50.hpp │ │ │ │ │ │ │ ├── actor_result_of.hpp │ │ │ │ │ │ │ ├── actor_result_of_10.hpp │ │ │ │ │ │ │ ├── actor_result_of_20.hpp │ │ │ │ │ │ │ ├── actor_result_of_30.hpp │ │ │ │ │ │ │ ├── actor_result_of_40.hpp │ │ │ │ │ │ │ ├── actor_result_of_50.hpp │ │ │ │ │ │ │ ├── call.hpp │ │ │ │ │ │ │ ├── call_10.hpp │ │ │ │ │ │ │ ├── call_20.hpp │ │ │ │ │ │ │ ├── call_30.hpp │ │ │ │ │ │ │ ├── call_40.hpp │ │ │ │ │ │ │ ├── call_50.hpp │ │ │ │ │ │ │ ├── function_eval.hpp │ │ │ │ │ │ │ ├── function_eval_10.hpp │ │ │ │ │ │ │ ├── function_eval_20.hpp │ │ │ │ │ │ │ ├── function_eval_30.hpp │ │ │ │ │ │ │ ├── function_eval_40.hpp │ │ │ │ │ │ │ ├── function_eval_50.hpp │ │ │ │ │ │ │ ├── phx2_result.hpp │ │ │ │ │ │ │ ├── phx2_result_10.hpp │ │ │ │ │ │ │ ├── phx2_result_20.hpp │ │ │ │ │ │ │ ├── phx2_result_30.hpp │ │ │ │ │ │ │ ├── phx2_result_40.hpp │ │ │ │ │ │ │ └── phx2_result_50.hpp │ │ │ │ │ ├── domain.hpp │ │ │ │ │ ├── environment.hpp │ │ │ │ │ ├── expression.hpp │ │ │ │ │ ├── function_equal.hpp │ │ │ │ │ ├── is_actor.hpp │ │ │ │ │ ├── is_nullary.hpp │ │ │ │ │ ├── limits.hpp │ │ │ │ │ ├── meta_grammar.hpp │ │ │ │ │ ├── nothing.hpp │ │ │ │ │ ├── preprocessed │ │ │ │ │ │ ├── actor.hpp │ │ │ │ │ │ ├── actor_10.hpp │ │ │ │ │ │ ├── actor_20.hpp │ │ │ │ │ │ ├── actor_30.hpp │ │ │ │ │ │ ├── actor_40.hpp │ │ │ │ │ │ ├── actor_50.hpp │ │ │ │ │ │ ├── argument.hpp │ │ │ │ │ │ ├── argument_10.hpp │ │ │ │ │ │ ├── argument_no_predefined_10.hpp │ │ │ │ │ │ ├── argument_no_predefined_20.hpp │ │ │ │ │ │ ├── argument_no_predefined_30.hpp │ │ │ │ │ │ ├── argument_no_predefined_40.hpp │ │ │ │ │ │ ├── argument_no_predefined_50.hpp │ │ │ │ │ │ ├── argument_predefined_10.hpp │ │ │ │ │ │ ├── argument_predefined_20.hpp │ │ │ │ │ │ ├── argument_predefined_30.hpp │ │ │ │ │ │ ├── argument_predefined_40.hpp │ │ │ │ │ │ ├── argument_predefined_50.hpp │ │ │ │ │ │ ├── expression.hpp │ │ │ │ │ │ ├── expression_10.hpp │ │ │ │ │ │ ├── expression_20.hpp │ │ │ │ │ │ ├── expression_30.hpp │ │ │ │ │ │ ├── expression_40.hpp │ │ │ │ │ │ ├── expression_50.hpp │ │ │ │ │ │ ├── function_equal.hpp │ │ │ │ │ │ ├── function_equal_10.hpp │ │ │ │ │ │ ├── function_equal_20.hpp │ │ │ │ │ │ ├── function_equal_30.hpp │ │ │ │ │ │ ├── function_equal_40.hpp │ │ │ │ │ │ └── function_equal_50.hpp │ │ │ │ │ ├── reference.hpp │ │ │ │ │ ├── terminal.hpp │ │ │ │ │ ├── terminal_fwd.hpp │ │ │ │ │ ├── v2_eval.hpp │ │ │ │ │ ├── value.hpp │ │ │ │ │ └── visit_each.hpp │ │ │ │ ├── function.hpp │ │ │ │ ├── function │ │ │ │ │ ├── adapt_callable.hpp │ │ │ │ │ ├── adapt_function.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── function_operator.hpp │ │ │ │ │ │ ├── function_result_of.hpp │ │ │ │ │ │ └── preprocessed │ │ │ │ │ │ │ ├── function_operator.hpp │ │ │ │ │ │ │ ├── function_operator_10.hpp │ │ │ │ │ │ │ ├── function_operator_20.hpp │ │ │ │ │ │ │ ├── function_operator_30.hpp │ │ │ │ │ │ │ ├── function_operator_40.hpp │ │ │ │ │ │ │ ├── function_operator_50.hpp │ │ │ │ │ │ │ ├── function_result_of.hpp │ │ │ │ │ │ │ ├── function_result_of_10.hpp │ │ │ │ │ │ │ ├── function_result_of_20.hpp │ │ │ │ │ │ │ ├── function_result_of_30.hpp │ │ │ │ │ │ │ ├── function_result_of_40.hpp │ │ │ │ │ │ │ └── function_result_of_50.hpp │ │ │ │ │ └── function.hpp │ │ │ │ ├── fusion.hpp │ │ │ │ ├── fusion │ │ │ │ │ └── at.hpp │ │ │ │ ├── object.hpp │ │ │ │ ├── object │ │ │ │ │ ├── const_cast.hpp │ │ │ │ │ ├── construct.hpp │ │ │ │ │ ├── delete.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── construct.hpp │ │ │ │ │ │ ├── construct_eval.hpp │ │ │ │ │ │ ├── new.hpp │ │ │ │ │ │ ├── new_eval.hpp │ │ │ │ │ │ ├── preprocessed │ │ │ │ │ │ │ ├── construct.hpp │ │ │ │ │ │ │ ├── construct_10.hpp │ │ │ │ │ │ │ ├── construct_20.hpp │ │ │ │ │ │ │ ├── construct_30.hpp │ │ │ │ │ │ │ ├── construct_40.hpp │ │ │ │ │ │ │ ├── construct_50.hpp │ │ │ │ │ │ │ ├── construct_eval.hpp │ │ │ │ │ │ │ ├── construct_eval_10.hpp │ │ │ │ │ │ │ ├── construct_eval_20.hpp │ │ │ │ │ │ │ ├── construct_eval_30.hpp │ │ │ │ │ │ │ ├── construct_eval_40.hpp │ │ │ │ │ │ │ ├── construct_eval_50.hpp │ │ │ │ │ │ │ ├── new.hpp │ │ │ │ │ │ │ ├── new_10.hpp │ │ │ │ │ │ │ ├── new_20.hpp │ │ │ │ │ │ │ ├── new_30.hpp │ │ │ │ │ │ │ ├── new_40.hpp │ │ │ │ │ │ │ ├── new_50.hpp │ │ │ │ │ │ │ ├── new_eval.hpp │ │ │ │ │ │ │ ├── new_eval_10.hpp │ │ │ │ │ │ │ ├── new_eval_20.hpp │ │ │ │ │ │ │ ├── new_eval_30.hpp │ │ │ │ │ │ │ ├── new_eval_40.hpp │ │ │ │ │ │ │ └── new_eval_50.hpp │ │ │ │ │ │ └── target.hpp │ │ │ │ │ ├── dynamic_cast.hpp │ │ │ │ │ ├── new.hpp │ │ │ │ │ ├── reinterpret_cast.hpp │ │ │ │ │ └── static_cast.hpp │ │ │ │ ├── operator.hpp │ │ │ │ ├── operator │ │ │ │ │ ├── arithmetic.hpp │ │ │ │ │ ├── bitwise.hpp │ │ │ │ │ ├── comparison.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── define_operator.hpp │ │ │ │ │ │ ├── mem_fun_ptr_eval_result_of.hpp │ │ │ │ │ │ ├── mem_fun_ptr_gen.hpp │ │ │ │ │ │ ├── preprocessed │ │ │ │ │ │ │ ├── mem_fun_ptr_gen.hpp │ │ │ │ │ │ │ ├── mem_fun_ptr_gen_10.hpp │ │ │ │ │ │ │ ├── mem_fun_ptr_gen_20.hpp │ │ │ │ │ │ │ ├── mem_fun_ptr_gen_30.hpp │ │ │ │ │ │ │ ├── mem_fun_ptr_gen_40.hpp │ │ │ │ │ │ │ └── mem_fun_ptr_gen_50.hpp │ │ │ │ │ │ └── undef_operator.hpp │ │ │ │ │ ├── if_else.hpp │ │ │ │ │ ├── io.hpp │ │ │ │ │ ├── logical.hpp │ │ │ │ │ ├── member.hpp │ │ │ │ │ ├── preprocessed │ │ │ │ │ │ ├── member.hpp │ │ │ │ │ │ ├── member_10.hpp │ │ │ │ │ │ ├── member_20.hpp │ │ │ │ │ │ ├── member_30.hpp │ │ │ │ │ │ ├── member_40.hpp │ │ │ │ │ │ └── member_50.hpp │ │ │ │ │ └── self.hpp │ │ │ │ ├── phoenix.hpp │ │ │ │ ├── scope.hpp │ │ │ │ ├── scope │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── dynamic.hpp │ │ │ │ │ │ ├── local_gen.hpp │ │ │ │ │ │ ├── local_variable.hpp │ │ │ │ │ │ ├── make_locals.hpp │ │ │ │ │ │ └── preprocessed │ │ │ │ │ │ │ ├── dynamic.hpp │ │ │ │ │ │ │ ├── dynamic_10.hpp │ │ │ │ │ │ │ ├── dynamic_20.hpp │ │ │ │ │ │ │ ├── dynamic_30.hpp │ │ │ │ │ │ │ ├── dynamic_40.hpp │ │ │ │ │ │ │ ├── dynamic_50.hpp │ │ │ │ │ │ │ ├── make_locals.hpp │ │ │ │ │ │ │ ├── make_locals_10.hpp │ │ │ │ │ │ │ ├── make_locals_20.hpp │ │ │ │ │ │ │ ├── make_locals_30.hpp │ │ │ │ │ │ │ ├── make_locals_40.hpp │ │ │ │ │ │ │ └── make_locals_50.hpp │ │ │ │ │ ├── dynamic.hpp │ │ │ │ │ ├── lambda.hpp │ │ │ │ │ ├── let.hpp │ │ │ │ │ ├── local_variable.hpp │ │ │ │ │ ├── preprocessed │ │ │ │ │ │ ├── lambda.hpp │ │ │ │ │ │ ├── lambda_10.hpp │ │ │ │ │ │ ├── lambda_20.hpp │ │ │ │ │ │ ├── lambda_30.hpp │ │ │ │ │ │ ├── lambda_40.hpp │ │ │ │ │ │ └── lambda_50.hpp │ │ │ │ │ ├── scoped_environment.hpp │ │ │ │ │ └── this.hpp │ │ │ │ ├── statement.hpp │ │ │ │ ├── statement │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── catch_push_back.hpp │ │ │ │ │ │ ├── preprocessed │ │ │ │ │ │ │ ├── catch_push_back.hpp │ │ │ │ │ │ │ ├── catch_push_back_10.hpp │ │ │ │ │ │ │ ├── catch_push_back_20.hpp │ │ │ │ │ │ │ ├── catch_push_back_30.hpp │ │ │ │ │ │ │ ├── catch_push_back_40.hpp │ │ │ │ │ │ │ ├── catch_push_back_50.hpp │ │ │ │ │ │ │ ├── switch.hpp │ │ │ │ │ │ │ ├── switch_10.hpp │ │ │ │ │ │ │ ├── switch_20.hpp │ │ │ │ │ │ │ ├── switch_30.hpp │ │ │ │ │ │ │ ├── switch_40.hpp │ │ │ │ │ │ │ ├── switch_50.hpp │ │ │ │ │ │ │ ├── try_catch_eval.hpp │ │ │ │ │ │ │ ├── try_catch_eval_10.hpp │ │ │ │ │ │ │ ├── try_catch_eval_20.hpp │ │ │ │ │ │ │ ├── try_catch_eval_30.hpp │ │ │ │ │ │ │ ├── try_catch_eval_40.hpp │ │ │ │ │ │ │ ├── try_catch_eval_50.hpp │ │ │ │ │ │ │ ├── try_catch_expression.hpp │ │ │ │ │ │ │ ├── try_catch_expression_10.hpp │ │ │ │ │ │ │ ├── try_catch_expression_20.hpp │ │ │ │ │ │ │ ├── try_catch_expression_30.hpp │ │ │ │ │ │ │ ├── try_catch_expression_40.hpp │ │ │ │ │ │ │ └── try_catch_expression_50.hpp │ │ │ │ │ │ ├── switch.hpp │ │ │ │ │ │ ├── try_catch_eval.hpp │ │ │ │ │ │ └── try_catch_expression.hpp │ │ │ │ │ ├── do_while.hpp │ │ │ │ │ ├── for.hpp │ │ │ │ │ ├── if.hpp │ │ │ │ │ ├── sequence.hpp │ │ │ │ │ ├── switch.hpp │ │ │ │ │ ├── throw.hpp │ │ │ │ │ ├── try_catch.hpp │ │ │ │ │ └── while.hpp │ │ │ │ ├── stl.hpp │ │ │ │ ├── stl │ │ │ │ │ ├── algorithm.hpp │ │ │ │ │ ├── algorithm │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ ├── begin.hpp │ │ │ │ │ │ │ ├── decay_array.hpp │ │ │ │ │ │ │ ├── end.hpp │ │ │ │ │ │ │ ├── has_equal_range.hpp │ │ │ │ │ │ │ ├── has_find.hpp │ │ │ │ │ │ │ ├── has_lower_bound.hpp │ │ │ │ │ │ │ ├── has_remove.hpp │ │ │ │ │ │ │ ├── has_remove_if.hpp │ │ │ │ │ │ │ ├── has_reverse.hpp │ │ │ │ │ │ │ ├── has_sort.hpp │ │ │ │ │ │ │ ├── has_unique.hpp │ │ │ │ │ │ │ ├── has_upper_bound.hpp │ │ │ │ │ │ │ ├── is_std_hash_map.hpp │ │ │ │ │ │ │ ├── is_std_hash_set.hpp │ │ │ │ │ │ │ ├── is_std_list.hpp │ │ │ │ │ │ │ ├── is_std_map.hpp │ │ │ │ │ │ │ ├── is_std_set.hpp │ │ │ │ │ │ │ ├── std_hash_map_fwd.hpp │ │ │ │ │ │ │ └── std_hash_set_fwd.hpp │ │ │ │ │ │ ├── iteration.hpp │ │ │ │ │ │ ├── querying.hpp │ │ │ │ │ │ └── transformation.hpp │ │ │ │ │ ├── cmath.hpp │ │ │ │ │ ├── container.hpp │ │ │ │ │ └── container │ │ │ │ │ │ ├── container.hpp │ │ │ │ │ │ └── detail │ │ │ │ │ │ └── container.hpp │ │ │ │ ├── support │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── iterate.hpp │ │ │ │ │ │ ├── iterate_define.hpp │ │ │ │ │ │ └── iterate_undef.hpp │ │ │ │ │ ├── iterate.hpp │ │ │ │ │ ├── preprocessed │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ ├── vector_10.hpp │ │ │ │ │ │ ├── vector_20.hpp │ │ │ │ │ │ ├── vector_30.hpp │ │ │ │ │ │ ├── vector_40.hpp │ │ │ │ │ │ └── vector_50.hpp │ │ │ │ │ ├── preprocessor │ │ │ │ │ │ └── round.hpp │ │ │ │ │ └── vector.hpp │ │ │ │ └── version.hpp │ │ │ ├── pointee.hpp │ │ │ ├── pointer_cast.hpp │ │ │ ├── pointer_to_other.hpp │ │ │ ├── polygon │ │ │ │ ├── detail │ │ │ │ │ ├── boolean_op.hpp │ │ │ │ │ ├── boolean_op_45.hpp │ │ │ │ │ ├── iterator_compact_to_points.hpp │ │ │ │ │ ├── iterator_geometry_to_set.hpp │ │ │ │ │ ├── iterator_points_to_compact.hpp │ │ │ │ │ ├── max_cover.hpp │ │ │ │ │ ├── minkowski.hpp │ │ │ │ │ ├── polygon_45_formation.hpp │ │ │ │ │ ├── polygon_45_set_view.hpp │ │ │ │ │ ├── polygon_45_touch.hpp │ │ │ │ │ ├── polygon_90_set_view.hpp │ │ │ │ │ ├── polygon_90_touch.hpp │ │ │ │ │ ├── polygon_arbitrary_formation.hpp │ │ │ │ │ ├── polygon_formation.hpp │ │ │ │ │ ├── polygon_set_view.hpp │ │ │ │ │ ├── polygon_simplify.hpp │ │ │ │ │ ├── polygon_sort_adaptor.hpp │ │ │ │ │ ├── property_merge.hpp │ │ │ │ │ ├── property_merge_45.hpp │ │ │ │ │ ├── rectangle_formation.hpp │ │ │ │ │ ├── scan_arbitrary.hpp │ │ │ │ │ ├── voronoi_ctypes.hpp │ │ │ │ │ ├── voronoi_predicates.hpp │ │ │ │ │ ├── voronoi_robust_fpt.hpp │ │ │ │ │ └── voronoi_structures.hpp │ │ │ │ ├── gmp_override.hpp │ │ │ │ ├── gtl.hpp │ │ │ │ ├── interval_concept.hpp │ │ │ │ ├── interval_data.hpp │ │ │ │ ├── interval_traits.hpp │ │ │ │ ├── isotropy.hpp │ │ │ │ ├── point_concept.hpp │ │ │ │ ├── point_data.hpp │ │ │ │ ├── point_traits.hpp │ │ │ │ ├── polygon.hpp │ │ │ │ ├── polygon_45_data.hpp │ │ │ │ ├── polygon_45_set_concept.hpp │ │ │ │ ├── polygon_45_set_data.hpp │ │ │ │ ├── polygon_45_set_traits.hpp │ │ │ │ ├── polygon_45_with_holes_data.hpp │ │ │ │ ├── polygon_90_data.hpp │ │ │ │ ├── polygon_90_set_concept.hpp │ │ │ │ ├── polygon_90_set_data.hpp │ │ │ │ ├── polygon_90_set_traits.hpp │ │ │ │ ├── polygon_90_with_holes_data.hpp │ │ │ │ ├── polygon_data.hpp │ │ │ │ ├── polygon_set_concept.hpp │ │ │ │ ├── polygon_set_data.hpp │ │ │ │ ├── polygon_set_traits.hpp │ │ │ │ ├── polygon_traits.hpp │ │ │ │ ├── polygon_with_holes_data.hpp │ │ │ │ ├── rectangle_concept.hpp │ │ │ │ ├── rectangle_data.hpp │ │ │ │ ├── rectangle_traits.hpp │ │ │ │ ├── segment_concept.hpp │ │ │ │ ├── segment_data.hpp │ │ │ │ ├── segment_traits.hpp │ │ │ │ ├── segment_utils.hpp │ │ │ │ ├── transform.hpp │ │ │ │ ├── voronoi.hpp │ │ │ │ ├── voronoi_builder.hpp │ │ │ │ ├── voronoi_diagram.hpp │ │ │ │ └── voronoi_geometry_type.hpp │ │ │ ├── pool │ │ │ │ ├── detail │ │ │ │ │ ├── for.m4 │ │ │ │ │ ├── guard.hpp │ │ │ │ │ ├── mutex.hpp │ │ │ │ │ ├── pool_construct.bat │ │ │ │ │ ├── pool_construct.ipp │ │ │ │ │ ├── pool_construct.m4 │ │ │ │ │ ├── pool_construct.sh │ │ │ │ │ ├── pool_construct_simple.bat │ │ │ │ │ ├── pool_construct_simple.ipp │ │ │ │ │ ├── pool_construct_simple.m4 │ │ │ │ │ └── pool_construct_simple.sh │ │ │ │ ├── object_pool.hpp │ │ │ │ ├── pool.hpp │ │ │ │ ├── pool_alloc.hpp │ │ │ │ ├── poolfwd.hpp │ │ │ │ ├── simple_segregated_storage.hpp │ │ │ │ └── singleton_pool.hpp │ │ │ ├── preprocessor.hpp │ │ │ ├── preprocessor │ │ │ │ ├── arithmetic.hpp │ │ │ │ ├── arithmetic │ │ │ │ │ ├── add.hpp │ │ │ │ │ ├── dec.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ └── div_base.hpp │ │ │ │ │ ├── div.hpp │ │ │ │ │ ├── inc.hpp │ │ │ │ │ ├── mod.hpp │ │ │ │ │ ├── mul.hpp │ │ │ │ │ └── sub.hpp │ │ │ │ ├── array.hpp │ │ │ │ ├── array │ │ │ │ │ ├── data.hpp │ │ │ │ │ ├── elem.hpp │ │ │ │ │ ├── enum.hpp │ │ │ │ │ ├── insert.hpp │ │ │ │ │ ├── pop_back.hpp │ │ │ │ │ ├── pop_front.hpp │ │ │ │ │ ├── push_back.hpp │ │ │ │ │ ├── push_front.hpp │ │ │ │ │ ├── remove.hpp │ │ │ │ │ ├── replace.hpp │ │ │ │ │ ├── reverse.hpp │ │ │ │ │ ├── size.hpp │ │ │ │ │ ├── to_list.hpp │ │ │ │ │ ├── to_seq.hpp │ │ │ │ │ └── to_tuple.hpp │ │ │ │ ├── assert_msg.hpp │ │ │ │ ├── cat.hpp │ │ │ │ ├── comma.hpp │ │ │ │ ├── comma_if.hpp │ │ │ │ ├── comparison.hpp │ │ │ │ ├── comparison │ │ │ │ │ ├── equal.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ └── not_equal.hpp │ │ │ │ ├── config │ │ │ │ │ ├── config.hpp │ │ │ │ │ └── limits.hpp │ │ │ │ ├── control.hpp │ │ │ │ ├── control │ │ │ │ │ ├── deduce_d.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── dmc │ │ │ │ │ │ │ └── while.hpp │ │ │ │ │ │ ├── edg │ │ │ │ │ │ │ └── while.hpp │ │ │ │ │ │ ├── msvc │ │ │ │ │ │ │ └── while.hpp │ │ │ │ │ │ └── while.hpp │ │ │ │ │ ├── expr_if.hpp │ │ │ │ │ ├── expr_iif.hpp │ │ │ │ │ ├── if.hpp │ │ │ │ │ ├── iif.hpp │ │ │ │ │ └── while.hpp │ │ │ │ ├── debug.hpp │ │ │ │ ├── debug │ │ │ │ │ ├── assert.hpp │ │ │ │ │ ├── error.hpp │ │ │ │ │ └── line.hpp │ │ │ │ ├── dec.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── auto_rec.hpp │ │ │ │ │ ├── check.hpp │ │ │ │ │ ├── dmc │ │ │ │ │ │ └── auto_rec.hpp │ │ │ │ │ ├── is_binary.hpp │ │ │ │ │ ├── is_nullary.hpp │ │ │ │ │ ├── is_unary.hpp │ │ │ │ │ ├── null.hpp │ │ │ │ │ └── split.hpp │ │ │ │ ├── empty.hpp │ │ │ │ ├── enum.hpp │ │ │ │ ├── enum_params.hpp │ │ │ │ ├── enum_params_with_a_default.hpp │ │ │ │ ├── enum_params_with_defaults.hpp │ │ │ │ ├── enum_shifted.hpp │ │ │ │ ├── enum_shifted_params.hpp │ │ │ │ ├── expand.hpp │ │ │ │ ├── expr_if.hpp │ │ │ │ ├── facilities.hpp │ │ │ │ ├── facilities │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── empty.hpp │ │ │ │ │ ├── expand.hpp │ │ │ │ │ ├── identity.hpp │ │ │ │ │ ├── intercept.hpp │ │ │ │ │ ├── is_1.hpp │ │ │ │ │ ├── is_empty.hpp │ │ │ │ │ ├── is_empty_or_1.hpp │ │ │ │ │ └── overload.hpp │ │ │ │ ├── for.hpp │ │ │ │ ├── identity.hpp │ │ │ │ ├── if.hpp │ │ │ │ ├── inc.hpp │ │ │ │ ├── iterate.hpp │ │ │ │ ├── iteration.hpp │ │ │ │ ├── iteration │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── bounds │ │ │ │ │ │ │ ├── lower1.hpp │ │ │ │ │ │ │ ├── lower2.hpp │ │ │ │ │ │ │ ├── lower3.hpp │ │ │ │ │ │ │ ├── lower4.hpp │ │ │ │ │ │ │ ├── lower5.hpp │ │ │ │ │ │ │ ├── upper1.hpp │ │ │ │ │ │ │ ├── upper2.hpp │ │ │ │ │ │ │ ├── upper3.hpp │ │ │ │ │ │ │ ├── upper4.hpp │ │ │ │ │ │ │ └── upper5.hpp │ │ │ │ │ │ ├── finish.hpp │ │ │ │ │ │ ├── iter │ │ │ │ │ │ │ ├── forward1.hpp │ │ │ │ │ │ │ ├── forward2.hpp │ │ │ │ │ │ │ ├── forward3.hpp │ │ │ │ │ │ │ ├── forward4.hpp │ │ │ │ │ │ │ ├── forward5.hpp │ │ │ │ │ │ │ ├── reverse1.hpp │ │ │ │ │ │ │ ├── reverse2.hpp │ │ │ │ │ │ │ ├── reverse3.hpp │ │ │ │ │ │ │ ├── reverse4.hpp │ │ │ │ │ │ │ └── reverse5.hpp │ │ │ │ │ │ ├── local.hpp │ │ │ │ │ │ ├── rlocal.hpp │ │ │ │ │ │ ├── self.hpp │ │ │ │ │ │ └── start.hpp │ │ │ │ │ ├── iterate.hpp │ │ │ │ │ ├── local.hpp │ │ │ │ │ └── self.hpp │ │ │ │ ├── library.hpp │ │ │ │ ├── limits.hpp │ │ │ │ ├── list.hpp │ │ │ │ ├── list │ │ │ │ │ ├── adt.hpp │ │ │ │ │ ├── append.hpp │ │ │ │ │ ├── at.hpp │ │ │ │ │ ├── cat.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── dmc │ │ │ │ │ │ │ └── fold_left.hpp │ │ │ │ │ │ ├── edg │ │ │ │ │ │ │ ├── fold_left.hpp │ │ │ │ │ │ │ └── fold_right.hpp │ │ │ │ │ │ ├── fold_left.hpp │ │ │ │ │ │ └── fold_right.hpp │ │ │ │ │ ├── enum.hpp │ │ │ │ │ ├── filter.hpp │ │ │ │ │ ├── first_n.hpp │ │ │ │ │ ├── fold_left.hpp │ │ │ │ │ ├── fold_right.hpp │ │ │ │ │ ├── for_each.hpp │ │ │ │ │ ├── for_each_i.hpp │ │ │ │ │ ├── for_each_product.hpp │ │ │ │ │ ├── rest_n.hpp │ │ │ │ │ ├── reverse.hpp │ │ │ │ │ ├── size.hpp │ │ │ │ │ ├── to_array.hpp │ │ │ │ │ ├── to_seq.hpp │ │ │ │ │ ├── to_tuple.hpp │ │ │ │ │ └── transform.hpp │ │ │ │ ├── logical.hpp │ │ │ │ ├── logical │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitnor.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── bool.hpp │ │ │ │ │ ├── compl.hpp │ │ │ │ │ ├── nor.hpp │ │ │ │ │ ├── not.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ └── xor.hpp │ │ │ │ ├── max.hpp │ │ │ │ ├── min.hpp │ │ │ │ ├── punctuation.hpp │ │ │ │ ├── punctuation │ │ │ │ │ ├── comma.hpp │ │ │ │ │ ├── comma_if.hpp │ │ │ │ │ ├── paren.hpp │ │ │ │ │ └── paren_if.hpp │ │ │ │ ├── repeat.hpp │ │ │ │ ├── repeat_2nd.hpp │ │ │ │ ├── repeat_3rd.hpp │ │ │ │ ├── repeat_from_to.hpp │ │ │ │ ├── repeat_from_to_2nd.hpp │ │ │ │ ├── repeat_from_to_3rd.hpp │ │ │ │ ├── repetition.hpp │ │ │ │ ├── repetition │ │ │ │ │ ├── deduce_r.hpp │ │ │ │ │ ├── deduce_z.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── dmc │ │ │ │ │ │ │ └── for.hpp │ │ │ │ │ │ ├── edg │ │ │ │ │ │ │ └── for.hpp │ │ │ │ │ │ ├── for.hpp │ │ │ │ │ │ └── msvc │ │ │ │ │ │ │ └── for.hpp │ │ │ │ │ ├── enum.hpp │ │ │ │ │ ├── enum_binary_params.hpp │ │ │ │ │ ├── enum_params.hpp │ │ │ │ │ ├── enum_params_with_a_default.hpp │ │ │ │ │ ├── enum_params_with_defaults.hpp │ │ │ │ │ ├── enum_shifted.hpp │ │ │ │ │ ├── enum_shifted_binary_params.hpp │ │ │ │ │ ├── enum_shifted_params.hpp │ │ │ │ │ ├── enum_trailing.hpp │ │ │ │ │ ├── enum_trailing_binary_params.hpp │ │ │ │ │ ├── enum_trailing_params.hpp │ │ │ │ │ ├── for.hpp │ │ │ │ │ ├── repeat.hpp │ │ │ │ │ └── repeat_from_to.hpp │ │ │ │ ├── selection.hpp │ │ │ │ ├── selection │ │ │ │ │ ├── max.hpp │ │ │ │ │ └── min.hpp │ │ │ │ ├── seq.hpp │ │ │ │ ├── seq │ │ │ │ │ ├── cat.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── binary_transform.hpp │ │ │ │ │ │ └── split.hpp │ │ │ │ │ ├── elem.hpp │ │ │ │ │ ├── enum.hpp │ │ │ │ │ ├── filter.hpp │ │ │ │ │ ├── first_n.hpp │ │ │ │ │ ├── fold_left.hpp │ │ │ │ │ ├── fold_right.hpp │ │ │ │ │ ├── for_each.hpp │ │ │ │ │ ├── for_each_i.hpp │ │ │ │ │ ├── for_each_product.hpp │ │ │ │ │ ├── insert.hpp │ │ │ │ │ ├── pop_back.hpp │ │ │ │ │ ├── pop_front.hpp │ │ │ │ │ ├── push_back.hpp │ │ │ │ │ ├── push_front.hpp │ │ │ │ │ ├── remove.hpp │ │ │ │ │ ├── replace.hpp │ │ │ │ │ ├── rest_n.hpp │ │ │ │ │ ├── reverse.hpp │ │ │ │ │ ├── seq.hpp │ │ │ │ │ ├── size.hpp │ │ │ │ │ ├── subseq.hpp │ │ │ │ │ ├── to_array.hpp │ │ │ │ │ ├── to_list.hpp │ │ │ │ │ ├── to_tuple.hpp │ │ │ │ │ └── transform.hpp │ │ │ │ ├── slot.hpp │ │ │ │ ├── slot │ │ │ │ │ ├── counter.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── counter.hpp │ │ │ │ │ │ ├── def.hpp │ │ │ │ │ │ ├── shared.hpp │ │ │ │ │ │ ├── slot1.hpp │ │ │ │ │ │ ├── slot2.hpp │ │ │ │ │ │ ├── slot3.hpp │ │ │ │ │ │ ├── slot4.hpp │ │ │ │ │ │ └── slot5.hpp │ │ │ │ │ └── slot.hpp │ │ │ │ ├── stringize.hpp │ │ │ │ ├── tuple.hpp │ │ │ │ ├── tuple │ │ │ │ │ ├── eat.hpp │ │ │ │ │ ├── elem.hpp │ │ │ │ │ ├── enum.hpp │ │ │ │ │ ├── rem.hpp │ │ │ │ │ ├── reverse.hpp │ │ │ │ │ ├── size.hpp │ │ │ │ │ ├── to_array.hpp │ │ │ │ │ ├── to_list.hpp │ │ │ │ │ └── to_seq.hpp │ │ │ │ ├── variadic.hpp │ │ │ │ ├── variadic │ │ │ │ │ ├── elem.hpp │ │ │ │ │ ├── size.hpp │ │ │ │ │ ├── to_array.hpp │ │ │ │ │ ├── to_list.hpp │ │ │ │ │ ├── to_seq.hpp │ │ │ │ │ └── to_tuple.hpp │ │ │ │ ├── while.hpp │ │ │ │ └── wstringize.hpp │ │ │ ├── program_options.hpp │ │ │ ├── program_options │ │ │ │ ├── cmdline.hpp │ │ │ │ ├── config.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── cmdline.hpp │ │ │ │ │ ├── config_file.hpp │ │ │ │ │ ├── convert.hpp │ │ │ │ │ ├── parsers.hpp │ │ │ │ │ ├── utf8_codecvt_facet.hpp │ │ │ │ │ └── value_semantic.hpp │ │ │ │ ├── environment_iterator.hpp │ │ │ │ ├── eof_iterator.hpp │ │ │ │ ├── errors.hpp │ │ │ │ ├── option.hpp │ │ │ │ ├── options_description.hpp │ │ │ │ ├── parsers.hpp │ │ │ │ ├── positional_options.hpp │ │ │ │ ├── value_semantic.hpp │ │ │ │ ├── variables_map.hpp │ │ │ │ └── version.hpp │ │ │ ├── progress.hpp │ │ │ ├── property_map │ │ │ │ ├── compose_property_map.hpp │ │ │ │ ├── dynamic_property_map.hpp │ │ │ │ ├── function_property_map.hpp │ │ │ │ ├── parallel │ │ │ │ │ ├── caching_property_map.hpp │ │ │ │ │ ├── distributed_property_map.hpp │ │ │ │ │ ├── global_index_map.hpp │ │ │ │ │ ├── impl │ │ │ │ │ │ └── distributed_property_map.ipp │ │ │ │ │ └── local_property_map.hpp │ │ │ │ ├── property_map.hpp │ │ │ │ ├── property_map_iterator.hpp │ │ │ │ ├── shared_array_property_map.hpp │ │ │ │ ├── transform_value_property_map.hpp │ │ │ │ └── vector_property_map.hpp │ │ │ ├── property_tree │ │ │ │ ├── detail │ │ │ │ │ ├── exception_implementation.hpp │ │ │ │ │ ├── file_parser_error.hpp │ │ │ │ │ ├── info_parser_error.hpp │ │ │ │ │ ├── info_parser_read.hpp │ │ │ │ │ ├── info_parser_utils.hpp │ │ │ │ │ ├── info_parser_write.hpp │ │ │ │ │ ├── info_parser_writer_settings.hpp │ │ │ │ │ ├── json_parser_error.hpp │ │ │ │ │ ├── json_parser_read.hpp │ │ │ │ │ ├── json_parser_write.hpp │ │ │ │ │ ├── ptree_implementation.hpp │ │ │ │ │ ├── ptree_utils.hpp │ │ │ │ │ ├── rapidxml.hpp │ │ │ │ │ ├── xml_parser_error.hpp │ │ │ │ │ ├── xml_parser_flags.hpp │ │ │ │ │ ├── xml_parser_read_rapidxml.hpp │ │ │ │ │ ├── xml_parser_utils.hpp │ │ │ │ │ ├── xml_parser_write.hpp │ │ │ │ │ └── xml_parser_writer_settings.hpp │ │ │ │ ├── exceptions.hpp │ │ │ │ ├── id_translator.hpp │ │ │ │ ├── info_parser.hpp │ │ │ │ ├── ini_parser.hpp │ │ │ │ ├── json_parser.hpp │ │ │ │ ├── ptree.hpp │ │ │ │ ├── ptree_fwd.hpp │ │ │ │ ├── ptree_serialization.hpp │ │ │ │ ├── stream_translator.hpp │ │ │ │ ├── string_path.hpp │ │ │ │ └── xml_parser.hpp │ │ │ ├── proto │ │ │ │ ├── args.hpp │ │ │ │ ├── context.hpp │ │ │ │ ├── context │ │ │ │ │ ├── callable.hpp │ │ │ │ │ ├── default.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── callable_eval.hpp │ │ │ │ │ │ ├── default_eval.hpp │ │ │ │ │ │ ├── null_eval.hpp │ │ │ │ │ │ └── preprocessed │ │ │ │ │ │ │ ├── callable_eval.hpp │ │ │ │ │ │ │ ├── default_eval.hpp │ │ │ │ │ │ │ └── null_eval.hpp │ │ │ │ │ └── null.hpp │ │ │ │ ├── core.hpp │ │ │ │ ├── debug.hpp │ │ │ │ ├── deep_copy.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── and_n.hpp │ │ │ │ │ ├── any.hpp │ │ │ │ │ ├── args.hpp │ │ │ │ │ ├── as_expr.hpp │ │ │ │ │ ├── as_lvalue.hpp │ │ │ │ │ ├── basic_expr.hpp │ │ │ │ │ ├── class_member_traits.hpp │ │ │ │ │ ├── decltype.hpp │ │ │ │ │ ├── deduce_domain.hpp │ │ │ │ │ ├── deduce_domain_n.hpp │ │ │ │ │ ├── deep_copy.hpp │ │ │ │ │ ├── deprecated.hpp │ │ │ │ │ ├── dont_care.hpp │ │ │ │ │ ├── expr.hpp │ │ │ │ │ ├── expr_funop.hpp │ │ │ │ │ ├── extends_funop.hpp │ │ │ │ │ ├── extends_funop_const.hpp │ │ │ │ │ ├── funop.hpp │ │ │ │ │ ├── generate_by_value.hpp │ │ │ │ │ ├── ignore_unused.hpp │ │ │ │ │ ├── is_noncopyable.hpp │ │ │ │ │ ├── lambda_matches.hpp │ │ │ │ │ ├── local.hpp │ │ │ │ │ ├── make_expr.hpp │ │ │ │ │ ├── make_expr_.hpp │ │ │ │ │ ├── make_expr_funop.hpp │ │ │ │ │ ├── matches_.hpp │ │ │ │ │ ├── memfun_funop.hpp │ │ │ │ │ ├── or_n.hpp │ │ │ │ │ ├── poly_function.hpp │ │ │ │ │ ├── poly_function_funop.hpp │ │ │ │ │ ├── poly_function_traits.hpp │ │ │ │ │ ├── pop_front.hpp │ │ │ │ │ ├── preprocessed │ │ │ │ │ │ ├── and_n.hpp │ │ │ │ │ │ ├── args.hpp │ │ │ │ │ │ ├── basic_expr.hpp │ │ │ │ │ │ ├── class_member_traits.hpp │ │ │ │ │ │ ├── deduce_domain_n.hpp │ │ │ │ │ │ ├── deep_copy.hpp │ │ │ │ │ │ ├── expr.hpp │ │ │ │ │ │ ├── expr_variadic.hpp │ │ │ │ │ │ ├── extends_funop.hpp │ │ │ │ │ │ ├── extends_funop_const.hpp │ │ │ │ │ │ ├── funop.hpp │ │ │ │ │ │ ├── generate_by_value.hpp │ │ │ │ │ │ ├── lambda_matches.hpp │ │ │ │ │ │ ├── make_expr.hpp │ │ │ │ │ │ ├── make_expr_.hpp │ │ │ │ │ │ ├── make_expr_funop.hpp │ │ │ │ │ │ ├── matches_.hpp │ │ │ │ │ │ ├── memfun_funop.hpp │ │ │ │ │ │ ├── or_n.hpp │ │ │ │ │ │ ├── poly_function_funop.hpp │ │ │ │ │ │ ├── poly_function_traits.hpp │ │ │ │ │ │ ├── template_arity_helper.hpp │ │ │ │ │ │ ├── traits.hpp │ │ │ │ │ │ ├── unpack_expr_.hpp │ │ │ │ │ │ └── vararg_matches_impl.hpp │ │ │ │ │ ├── remove_typename.hpp │ │ │ │ │ ├── reverse.hpp │ │ │ │ │ ├── static_const.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── template_arity_helper.hpp │ │ │ │ │ ├── traits.hpp │ │ │ │ │ ├── unpack_expr_.hpp │ │ │ │ │ └── vararg_matches_impl.hpp │ │ │ │ ├── domain.hpp │ │ │ │ ├── eval.hpp │ │ │ │ ├── expr.hpp │ │ │ │ ├── extends.hpp │ │ │ │ ├── functional.hpp │ │ │ │ ├── functional │ │ │ │ │ ├── fusion.hpp │ │ │ │ │ ├── fusion │ │ │ │ │ │ ├── at.hpp │ │ │ │ │ │ ├── pop_back.hpp │ │ │ │ │ │ ├── pop_front.hpp │ │ │ │ │ │ ├── push_back.hpp │ │ │ │ │ │ ├── push_front.hpp │ │ │ │ │ │ └── reverse.hpp │ │ │ │ │ ├── range.hpp │ │ │ │ │ ├── range │ │ │ │ │ │ ├── begin.hpp │ │ │ │ │ │ ├── empty.hpp │ │ │ │ │ │ ├── end.hpp │ │ │ │ │ │ ├── rbegin.hpp │ │ │ │ │ │ ├── rend.hpp │ │ │ │ │ │ └── size.hpp │ │ │ │ │ ├── std.hpp │ │ │ │ │ └── std │ │ │ │ │ │ ├── iterator.hpp │ │ │ │ │ │ └── utility.hpp │ │ │ │ ├── fusion.hpp │ │ │ │ ├── generate.hpp │ │ │ │ ├── literal.hpp │ │ │ │ ├── make_expr.hpp │ │ │ │ ├── matches.hpp │ │ │ │ ├── operators.hpp │ │ │ │ ├── proto.hpp │ │ │ │ ├── proto_fwd.hpp │ │ │ │ ├── proto_typeof.hpp │ │ │ │ ├── repeat.hpp │ │ │ │ ├── tags.hpp │ │ │ │ ├── traits.hpp │ │ │ │ ├── transform.hpp │ │ │ │ └── transform │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── call.hpp │ │ │ │ │ ├── default.hpp │ │ │ │ │ ├── detail │ │ │ │ │ ├── call.hpp │ │ │ │ │ ├── construct_funop.hpp │ │ │ │ │ ├── construct_pod_funop.hpp │ │ │ │ │ ├── default_function_impl.hpp │ │ │ │ │ ├── expand_pack.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── lazy.hpp │ │ │ │ │ ├── make.hpp │ │ │ │ │ ├── make_gcc_workaround.hpp │ │ │ │ │ ├── pack.hpp │ │ │ │ │ ├── pack_impl.hpp │ │ │ │ │ ├── pass_through_impl.hpp │ │ │ │ │ ├── preprocessed │ │ │ │ │ │ ├── call.hpp │ │ │ │ │ │ ├── construct_funop.hpp │ │ │ │ │ │ ├── construct_pod_funop.hpp │ │ │ │ │ │ ├── default_function_impl.hpp │ │ │ │ │ │ ├── expand_pack.hpp │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ ├── lazy.hpp │ │ │ │ │ │ ├── make.hpp │ │ │ │ │ │ ├── make_gcc_workaround.hpp │ │ │ │ │ │ ├── pack_impl.hpp │ │ │ │ │ │ ├── pass_through_impl.hpp │ │ │ │ │ │ └── when.hpp │ │ │ │ │ └── when.hpp │ │ │ │ │ ├── env.hpp │ │ │ │ │ ├── fold.hpp │ │ │ │ │ ├── fold_tree.hpp │ │ │ │ │ ├── impl.hpp │ │ │ │ │ ├── integral_c.hpp │ │ │ │ │ ├── lazy.hpp │ │ │ │ │ ├── make.hpp │ │ │ │ │ ├── pass_through.hpp │ │ │ │ │ └── when.hpp │ │ │ ├── ptr_container │ │ │ │ ├── clone_allocator.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── associative_ptr_container.hpp │ │ │ │ │ ├── default_deleter.hpp │ │ │ │ │ ├── is_convertible.hpp │ │ │ │ │ ├── map_iterator.hpp │ │ │ │ │ ├── meta_functions.hpp │ │ │ │ │ ├── move.hpp │ │ │ │ │ ├── reversible_ptr_container.hpp │ │ │ │ │ ├── scoped_deleter.hpp │ │ │ │ │ ├── serialize_ptr_map_adapter.hpp │ │ │ │ │ ├── serialize_reversible_cont.hpp │ │ │ │ │ ├── serialize_xml_names.hpp │ │ │ │ │ ├── static_move_ptr.hpp │ │ │ │ │ ├── throw_exception.hpp │ │ │ │ │ └── void_ptr_iterator.hpp │ │ │ │ ├── exception.hpp │ │ │ │ ├── indirect_fun.hpp │ │ │ │ ├── nullable.hpp │ │ │ │ ├── ptr_array.hpp │ │ │ │ ├── ptr_circular_buffer.hpp │ │ │ │ ├── ptr_container.hpp │ │ │ │ ├── ptr_deque.hpp │ │ │ │ ├── ptr_inserter.hpp │ │ │ │ ├── ptr_list.hpp │ │ │ │ ├── ptr_map.hpp │ │ │ │ ├── ptr_map_adapter.hpp │ │ │ │ ├── ptr_sequence_adapter.hpp │ │ │ │ ├── ptr_set.hpp │ │ │ │ ├── ptr_set_adapter.hpp │ │ │ │ ├── ptr_unordered_map.hpp │ │ │ │ ├── ptr_unordered_set.hpp │ │ │ │ ├── ptr_vector.hpp │ │ │ │ ├── serialize_ptr_array.hpp │ │ │ │ ├── serialize_ptr_circular_buffer.hpp │ │ │ │ ├── serialize_ptr_container.hpp │ │ │ │ ├── serialize_ptr_deque.hpp │ │ │ │ ├── serialize_ptr_list.hpp │ │ │ │ ├── serialize_ptr_map.hpp │ │ │ │ ├── serialize_ptr_set.hpp │ │ │ │ ├── serialize_ptr_unordered_map.hpp │ │ │ │ ├── serialize_ptr_unordered_set.hpp │ │ │ │ └── serialize_ptr_vector.hpp │ │ │ ├── python.hpp │ │ │ ├── python │ │ │ │ ├── arg_from_python.hpp │ │ │ │ ├── args.hpp │ │ │ │ ├── args_fwd.hpp │ │ │ │ ├── back_reference.hpp │ │ │ │ ├── base_type_traits.hpp │ │ │ │ ├── bases.hpp │ │ │ │ ├── borrowed.hpp │ │ │ │ ├── call.hpp │ │ │ │ ├── call_method.hpp │ │ │ │ ├── cast.hpp │ │ │ │ ├── class.hpp │ │ │ │ ├── class_fwd.hpp │ │ │ │ ├── converter │ │ │ │ │ ├── arg_from_python.hpp │ │ │ │ │ ├── arg_to_python.hpp │ │ │ │ │ ├── arg_to_python_base.hpp │ │ │ │ │ ├── as_to_python_function.hpp │ │ │ │ │ ├── builtin_converters.hpp │ │ │ │ │ ├── constructor_function.hpp │ │ │ │ │ ├── context_result_converter.hpp │ │ │ │ │ ├── convertible_function.hpp │ │ │ │ │ ├── from_python.hpp │ │ │ │ │ ├── implicit.hpp │ │ │ │ │ ├── obj_mgr_arg_from_python.hpp │ │ │ │ │ ├── object_manager.hpp │ │ │ │ │ ├── pointer_type_id.hpp │ │ │ │ │ ├── pyobject_traits.hpp │ │ │ │ │ ├── pyobject_type.hpp │ │ │ │ │ ├── pytype_function.hpp │ │ │ │ │ ├── pytype_object_mgr_traits.hpp │ │ │ │ │ ├── registered.hpp │ │ │ │ │ ├── registered_pointee.hpp │ │ │ │ │ ├── registrations.hpp │ │ │ │ │ ├── registry.hpp │ │ │ │ │ ├── return_from_python.hpp │ │ │ │ │ ├── rvalue_from_python_data.hpp │ │ │ │ │ ├── shared_ptr_deleter.hpp │ │ │ │ │ ├── shared_ptr_from_python.hpp │ │ │ │ │ ├── shared_ptr_to_python.hpp │ │ │ │ │ └── to_python_function_type.hpp │ │ │ │ ├── copy_const_reference.hpp │ │ │ │ ├── copy_non_const_reference.hpp │ │ │ │ ├── data_members.hpp │ │ │ │ ├── def.hpp │ │ │ │ ├── def_visitor.hpp │ │ │ │ ├── default_call_policies.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── aix_init_module.hpp │ │ │ │ │ ├── api_placeholder.hpp │ │ │ │ │ ├── borrowed_ptr.hpp │ │ │ │ │ ├── caller.hpp │ │ │ │ │ ├── config.hpp │ │ │ │ │ ├── construct.hpp │ │ │ │ │ ├── convertible.hpp │ │ │ │ │ ├── copy_ctor_mutates_rhs.hpp │ │ │ │ │ ├── cv_category.hpp │ │ │ │ │ ├── dealloc.hpp │ │ │ │ │ ├── decorated_type_id.hpp │ │ │ │ │ ├── decref_guard.hpp │ │ │ │ │ ├── def_helper.hpp │ │ │ │ │ ├── def_helper_fwd.hpp │ │ │ │ │ ├── defaults_def.hpp │ │ │ │ │ ├── defaults_gen.hpp │ │ │ │ │ ├── dependent.hpp │ │ │ │ │ ├── destroy.hpp │ │ │ │ │ ├── enable_if.hpp │ │ │ │ │ ├── exception_handler.hpp │ │ │ │ │ ├── force_instantiate.hpp │ │ │ │ │ ├── if_else.hpp │ │ │ │ │ ├── indirect_traits.hpp │ │ │ │ │ ├── invoke.hpp │ │ │ │ │ ├── is_auto_ptr.hpp │ │ │ │ │ ├── is_shared_ptr.hpp │ │ │ │ │ ├── is_wrapper.hpp │ │ │ │ │ ├── is_xxx.hpp │ │ │ │ │ ├── make_keyword_range_fn.hpp │ │ │ │ │ ├── make_tuple.hpp │ │ │ │ │ ├── map_entry.hpp │ │ │ │ │ ├── mpl_lambda.hpp │ │ │ │ │ ├── msvc_typeinfo.hpp │ │ │ │ │ ├── none.hpp │ │ │ │ │ ├── not_specified.hpp │ │ │ │ │ ├── nullary_function_adaptor.hpp │ │ │ │ │ ├── operator_id.hpp │ │ │ │ │ ├── overloads_fwd.hpp │ │ │ │ │ ├── pointee.hpp │ │ │ │ │ ├── prefix.hpp │ │ │ │ │ ├── preprocessor.hpp │ │ │ │ │ ├── python22_fixed.h │ │ │ │ │ ├── python_type.hpp │ │ │ │ │ ├── raw_pyobject.hpp │ │ │ │ │ ├── referent_storage.hpp │ │ │ │ │ ├── result.hpp │ │ │ │ │ ├── scope.hpp │ │ │ │ │ ├── sfinae.hpp │ │ │ │ │ ├── signature.hpp │ │ │ │ │ ├── string_literal.hpp │ │ │ │ │ ├── target.hpp │ │ │ │ │ ├── translate_exception.hpp │ │ │ │ │ ├── type_list.hpp │ │ │ │ │ ├── type_list_impl.hpp │ │ │ │ │ ├── type_list_impl_no_pts.hpp │ │ │ │ │ ├── unwind_type.hpp │ │ │ │ │ ├── unwrap_type_id.hpp │ │ │ │ │ ├── unwrap_wrapper.hpp │ │ │ │ │ ├── value_arg.hpp │ │ │ │ │ ├── value_is_shared_ptr.hpp │ │ │ │ │ ├── value_is_xxx.hpp │ │ │ │ │ ├── void_ptr.hpp │ │ │ │ │ ├── void_return.hpp │ │ │ │ │ ├── wrap_python.hpp │ │ │ │ │ └── wrapper_base.hpp │ │ │ │ ├── dict.hpp │ │ │ │ ├── docstring_options.hpp │ │ │ │ ├── enum.hpp │ │ │ │ ├── errors.hpp │ │ │ │ ├── exception_translator.hpp │ │ │ │ ├── exec.hpp │ │ │ │ ├── extract.hpp │ │ │ │ ├── handle.hpp │ │ │ │ ├── handle_fwd.hpp │ │ │ │ ├── has_back_reference.hpp │ │ │ │ ├── implicit.hpp │ │ │ │ ├── import.hpp │ │ │ │ ├── init.hpp │ │ │ │ ├── instance_holder.hpp │ │ │ │ ├── iterator.hpp │ │ │ │ ├── list.hpp │ │ │ │ ├── long.hpp │ │ │ │ ├── lvalue_from_pytype.hpp │ │ │ │ ├── make_constructor.hpp │ │ │ │ ├── make_function.hpp │ │ │ │ ├── manage_new_object.hpp │ │ │ │ ├── module.hpp │ │ │ │ ├── module_init.hpp │ │ │ │ ├── numeric.hpp │ │ │ │ ├── object.hpp │ │ │ │ ├── object │ │ │ │ │ ├── add_to_namespace.hpp │ │ │ │ │ ├── class.hpp │ │ │ │ │ ├── class_detail.hpp │ │ │ │ │ ├── class_metadata.hpp │ │ │ │ │ ├── class_wrapper.hpp │ │ │ │ │ ├── enum_base.hpp │ │ │ │ │ ├── find_instance.hpp │ │ │ │ │ ├── forward.hpp │ │ │ │ │ ├── function.hpp │ │ │ │ │ ├── function_doc_signature.hpp │ │ │ │ │ ├── function_handle.hpp │ │ │ │ │ ├── function_object.hpp │ │ │ │ │ ├── inheritance.hpp │ │ │ │ │ ├── inheritance_query.hpp │ │ │ │ │ ├── instance.hpp │ │ │ │ │ ├── iterator.hpp │ │ │ │ │ ├── iterator_core.hpp │ │ │ │ │ ├── life_support.hpp │ │ │ │ │ ├── make_holder.hpp │ │ │ │ │ ├── make_instance.hpp │ │ │ │ │ ├── make_ptr_instance.hpp │ │ │ │ │ ├── pickle_support.hpp │ │ │ │ │ ├── pointer_holder.hpp │ │ │ │ │ ├── py_function.hpp │ │ │ │ │ ├── stl_iterator_core.hpp │ │ │ │ │ ├── value_holder.hpp │ │ │ │ │ └── value_holder_fwd.hpp │ │ │ │ ├── object_attributes.hpp │ │ │ │ ├── object_call.hpp │ │ │ │ ├── object_core.hpp │ │ │ │ ├── object_fwd.hpp │ │ │ │ ├── object_items.hpp │ │ │ │ ├── object_operators.hpp │ │ │ │ ├── object_protocol.hpp │ │ │ │ ├── object_protocol_core.hpp │ │ │ │ ├── object_slices.hpp │ │ │ │ ├── opaque_pointer_converter.hpp │ │ │ │ ├── operators.hpp │ │ │ │ ├── other.hpp │ │ │ │ ├── overloads.hpp │ │ │ │ ├── override.hpp │ │ │ │ ├── pointee.hpp │ │ │ │ ├── proxy.hpp │ │ │ │ ├── ptr.hpp │ │ │ │ ├── pure_virtual.hpp │ │ │ │ ├── raw_function.hpp │ │ │ │ ├── refcount.hpp │ │ │ │ ├── reference_existing_object.hpp │ │ │ │ ├── register_ptr_to_python.hpp │ │ │ │ ├── return_arg.hpp │ │ │ │ ├── return_by_value.hpp │ │ │ │ ├── return_internal_reference.hpp │ │ │ │ ├── return_opaque_pointer.hpp │ │ │ │ ├── return_value_policy.hpp │ │ │ │ ├── scope.hpp │ │ │ │ ├── self.hpp │ │ │ │ ├── signature.hpp │ │ │ │ ├── slice.hpp │ │ │ │ ├── slice_nil.hpp │ │ │ │ ├── ssize_t.hpp │ │ │ │ ├── stl_iterator.hpp │ │ │ │ ├── str.hpp │ │ │ │ ├── suite │ │ │ │ │ └── indexing │ │ │ │ │ │ ├── container_utils.hpp │ │ │ │ │ │ ├── detail │ │ │ │ │ │ └── indexing_suite_detail.hpp │ │ │ │ │ │ ├── indexing_suite.hpp │ │ │ │ │ │ ├── map_indexing_suite.hpp │ │ │ │ │ │ └── vector_indexing_suite.hpp │ │ │ │ ├── tag.hpp │ │ │ │ ├── to_python_converter.hpp │ │ │ │ ├── to_python_indirect.hpp │ │ │ │ ├── to_python_value.hpp │ │ │ │ ├── tuple.hpp │ │ │ │ ├── type_id.hpp │ │ │ │ ├── with_custodian_and_ward.hpp │ │ │ │ └── wrapper.hpp │ │ │ ├── random.hpp │ │ │ ├── random │ │ │ │ ├── additive_combine.hpp │ │ │ │ ├── bernoulli_distribution.hpp │ │ │ │ ├── binomial_distribution.hpp │ │ │ │ ├── cauchy_distribution.hpp │ │ │ │ ├── chi_squared_distribution.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── auto_link.hpp │ │ │ │ │ ├── config.hpp │ │ │ │ │ ├── const_mod.hpp │ │ │ │ │ ├── disable_warnings.hpp │ │ │ │ │ ├── enable_warnings.hpp │ │ │ │ │ ├── generator_bits.hpp │ │ │ │ │ ├── generator_seed_seq.hpp │ │ │ │ │ ├── integer_log2.hpp │ │ │ │ │ ├── iterator_mixin.hpp │ │ │ │ │ ├── large_arithmetic.hpp │ │ │ │ │ ├── operators.hpp │ │ │ │ │ ├── ptr_helper.hpp │ │ │ │ │ ├── seed.hpp │ │ │ │ │ ├── seed_impl.hpp │ │ │ │ │ ├── signed_unsigned_tools.hpp │ │ │ │ │ ├── uniform_int_float.hpp │ │ │ │ │ └── vector_io.hpp │ │ │ │ ├── discard_block.hpp │ │ │ │ ├── discrete_distribution.hpp │ │ │ │ ├── exponential_distribution.hpp │ │ │ │ ├── extreme_value_distribution.hpp │ │ │ │ ├── fisher_f_distribution.hpp │ │ │ │ ├── gamma_distribution.hpp │ │ │ │ ├── generate_canonical.hpp │ │ │ │ ├── geometric_distribution.hpp │ │ │ │ ├── independent_bits.hpp │ │ │ │ ├── inversive_congruential.hpp │ │ │ │ ├── lagged_fibonacci.hpp │ │ │ │ ├── linear_congruential.hpp │ │ │ │ ├── linear_feedback_shift.hpp │ │ │ │ ├── lognormal_distribution.hpp │ │ │ │ ├── mersenne_twister.hpp │ │ │ │ ├── negative_binomial_distribution.hpp │ │ │ │ ├── normal_distribution.hpp │ │ │ │ ├── piecewise_constant_distribution.hpp │ │ │ │ ├── piecewise_linear_distribution.hpp │ │ │ │ ├── poisson_distribution.hpp │ │ │ │ ├── random_device.hpp │ │ │ │ ├── random_number_generator.hpp │ │ │ │ ├── ranlux.hpp │ │ │ │ ├── seed_seq.hpp │ │ │ │ ├── shuffle_order.hpp │ │ │ │ ├── shuffle_output.hpp │ │ │ │ ├── student_t_distribution.hpp │ │ │ │ ├── subtract_with_carry.hpp │ │ │ │ ├── taus88.hpp │ │ │ │ ├── triangle_distribution.hpp │ │ │ │ ├── uniform_01.hpp │ │ │ │ ├── uniform_int.hpp │ │ │ │ ├── uniform_int_distribution.hpp │ │ │ │ ├── uniform_on_sphere.hpp │ │ │ │ ├── uniform_real.hpp │ │ │ │ ├── uniform_real_distribution.hpp │ │ │ │ ├── uniform_smallint.hpp │ │ │ │ ├── variate_generator.hpp │ │ │ │ ├── weibull_distribution.hpp │ │ │ │ └── xor_combine.hpp │ │ │ ├── range.hpp │ │ │ ├── range │ │ │ │ ├── adaptor │ │ │ │ │ ├── adjacent_filtered.hpp │ │ │ │ │ ├── argument_fwd.hpp │ │ │ │ │ ├── copied.hpp │ │ │ │ │ ├── define_adaptor.hpp │ │ │ │ │ ├── filtered.hpp │ │ │ │ │ ├── indexed.hpp │ │ │ │ │ ├── indirected.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── replaced.hpp │ │ │ │ │ ├── replaced_if.hpp │ │ │ │ │ ├── reversed.hpp │ │ │ │ │ ├── sliced.hpp │ │ │ │ │ ├── strided.hpp │ │ │ │ │ ├── tokenized.hpp │ │ │ │ │ ├── transformed.hpp │ │ │ │ │ ├── type_erased.hpp │ │ │ │ │ └── uniqued.hpp │ │ │ │ ├── adaptors.hpp │ │ │ │ ├── algorithm.hpp │ │ │ │ ├── algorithm │ │ │ │ │ ├── adjacent_find.hpp │ │ │ │ │ ├── binary_search.hpp │ │ │ │ │ ├── copy.hpp │ │ │ │ │ ├── copy_backward.hpp │ │ │ │ │ ├── count.hpp │ │ │ │ │ ├── count_if.hpp │ │ │ │ │ ├── equal.hpp │ │ │ │ │ ├── equal_range.hpp │ │ │ │ │ ├── fill.hpp │ │ │ │ │ ├── fill_n.hpp │ │ │ │ │ ├── find.hpp │ │ │ │ │ ├── find_end.hpp │ │ │ │ │ ├── find_first_of.hpp │ │ │ │ │ ├── find_if.hpp │ │ │ │ │ ├── for_each.hpp │ │ │ │ │ ├── generate.hpp │ │ │ │ │ ├── heap_algorithm.hpp │ │ │ │ │ ├── inplace_merge.hpp │ │ │ │ │ ├── lexicographical_compare.hpp │ │ │ │ │ ├── lower_bound.hpp │ │ │ │ │ ├── max_element.hpp │ │ │ │ │ ├── merge.hpp │ │ │ │ │ ├── min_element.hpp │ │ │ │ │ ├── mismatch.hpp │ │ │ │ │ ├── nth_element.hpp │ │ │ │ │ ├── partial_sort.hpp │ │ │ │ │ ├── partial_sort_copy.hpp │ │ │ │ │ ├── partition.hpp │ │ │ │ │ ├── permutation.hpp │ │ │ │ │ ├── random_shuffle.hpp │ │ │ │ │ ├── remove.hpp │ │ │ │ │ ├── remove_copy.hpp │ │ │ │ │ ├── remove_copy_if.hpp │ │ │ │ │ ├── remove_if.hpp │ │ │ │ │ ├── replace.hpp │ │ │ │ │ ├── replace_copy.hpp │ │ │ │ │ ├── replace_copy_if.hpp │ │ │ │ │ ├── replace_if.hpp │ │ │ │ │ ├── reverse.hpp │ │ │ │ │ ├── reverse_copy.hpp │ │ │ │ │ ├── rotate.hpp │ │ │ │ │ ├── rotate_copy.hpp │ │ │ │ │ ├── search.hpp │ │ │ │ │ ├── search_n.hpp │ │ │ │ │ ├── set_algorithm.hpp │ │ │ │ │ ├── sort.hpp │ │ │ │ │ ├── stable_partition.hpp │ │ │ │ │ ├── stable_sort.hpp │ │ │ │ │ ├── swap_ranges.hpp │ │ │ │ │ ├── transform.hpp │ │ │ │ │ ├── unique.hpp │ │ │ │ │ ├── unique_copy.hpp │ │ │ │ │ └── upper_bound.hpp │ │ │ │ ├── algorithm_ext.hpp │ │ │ │ ├── algorithm_ext │ │ │ │ │ ├── copy_n.hpp │ │ │ │ │ ├── erase.hpp │ │ │ │ │ ├── for_each.hpp │ │ │ │ │ ├── insert.hpp │ │ │ │ │ ├── iota.hpp │ │ │ │ │ ├── is_sorted.hpp │ │ │ │ │ ├── overwrite.hpp │ │ │ │ │ ├── push_back.hpp │ │ │ │ │ └── push_front.hpp │ │ │ │ ├── any_range.hpp │ │ │ │ ├── as_array.hpp │ │ │ │ ├── as_literal.hpp │ │ │ │ ├── atl.hpp │ │ │ │ ├── begin.hpp │ │ │ │ ├── category.hpp │ │ │ │ ├── combine.hpp │ │ │ │ ├── concepts.hpp │ │ │ │ ├── config.hpp │ │ │ │ ├── const_iterator.hpp │ │ │ │ ├── const_reverse_iterator.hpp │ │ │ │ ├── counting_range.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── any_iterator.hpp │ │ │ │ │ ├── any_iterator_buffer.hpp │ │ │ │ │ ├── any_iterator_interface.hpp │ │ │ │ │ ├── any_iterator_wrapper.hpp │ │ │ │ │ ├── as_literal.hpp │ │ │ │ │ ├── begin.hpp │ │ │ │ │ ├── collection_traits.hpp │ │ │ │ │ ├── collection_traits_detail.hpp │ │ │ │ │ ├── common.hpp │ │ │ │ │ ├── const_iterator.hpp │ │ │ │ │ ├── demote_iterator_traversal_tag.hpp │ │ │ │ │ ├── detail_str.hpp │ │ │ │ │ ├── difference_type.hpp │ │ │ │ │ ├── empty.hpp │ │ │ │ │ ├── end.hpp │ │ │ │ │ ├── extract_optional_type.hpp │ │ │ │ │ ├── implementation_help.hpp │ │ │ │ │ ├── iterator.hpp │ │ │ │ │ ├── join_iterator.hpp │ │ │ │ │ ├── microsoft.hpp │ │ │ │ │ ├── misc_concept.hpp │ │ │ │ │ ├── range_return.hpp │ │ │ │ │ ├── remove_extent.hpp │ │ │ │ │ ├── safe_bool.hpp │ │ │ │ │ ├── sfinae.hpp │ │ │ │ │ ├── size.hpp │ │ │ │ │ ├── size_type.hpp │ │ │ │ │ ├── sizer.hpp │ │ │ │ │ ├── str_types.hpp │ │ │ │ │ ├── value_type.hpp │ │ │ │ │ └── vc6 │ │ │ │ │ │ ├── end.hpp │ │ │ │ │ │ └── size.hpp │ │ │ │ ├── difference_type.hpp │ │ │ │ ├── distance.hpp │ │ │ │ ├── empty.hpp │ │ │ │ ├── end.hpp │ │ │ │ ├── functions.hpp │ │ │ │ ├── has_range_iterator.hpp │ │ │ │ ├── irange.hpp │ │ │ │ ├── istream_range.hpp │ │ │ │ ├── iterator.hpp │ │ │ │ ├── iterator_range.hpp │ │ │ │ ├── iterator_range_core.hpp │ │ │ │ ├── iterator_range_io.hpp │ │ │ │ ├── join.hpp │ │ │ │ ├── metafunctions.hpp │ │ │ │ ├── mfc.hpp │ │ │ │ ├── mutable_iterator.hpp │ │ │ │ ├── numeric.hpp │ │ │ │ ├── pointer.hpp │ │ │ │ ├── rbegin.hpp │ │ │ │ ├── reference.hpp │ │ │ │ ├── rend.hpp │ │ │ │ ├── result_iterator.hpp │ │ │ │ ├── reverse_iterator.hpp │ │ │ │ ├── reverse_result_iterator.hpp │ │ │ │ ├── size.hpp │ │ │ │ ├── size_type.hpp │ │ │ │ ├── sub_range.hpp │ │ │ │ └── value_type.hpp │ │ │ ├── ratio.hpp │ │ │ ├── ratio │ │ │ │ ├── config.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── mpl │ │ │ │ │ │ ├── abs.hpp │ │ │ │ │ │ ├── gcd.hpp │ │ │ │ │ │ ├── lcm.hpp │ │ │ │ │ │ └── sign.hpp │ │ │ │ │ ├── overflow_helpers.hpp │ │ │ │ │ └── ratio_io.hpp │ │ │ │ ├── include.hpp │ │ │ │ ├── mpl │ │ │ │ │ ├── abs.hpp │ │ │ │ │ ├── arithmetic.hpp │ │ │ │ │ ├── comparison.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── gcd.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── lcm.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── negate.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── numeric_cast.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── rational_c_tag.hpp │ │ │ │ │ ├── rational_constant.hpp │ │ │ │ │ ├── sign.hpp │ │ │ │ │ └── times.hpp │ │ │ │ ├── ratio.hpp │ │ │ │ ├── ratio_fwd.hpp │ │ │ │ ├── ratio_io.hpp │ │ │ │ └── ratio_static_string.hpp │ │ │ ├── rational.hpp │ │ │ ├── ref.hpp │ │ │ ├── regex.h │ │ │ ├── regex.hpp │ │ │ ├── regex │ │ │ │ ├── concepts.hpp │ │ │ │ ├── config.hpp │ │ │ │ ├── config │ │ │ │ │ ├── borland.hpp │ │ │ │ │ └── cwchar.hpp │ │ │ │ ├── icu.hpp │ │ │ │ ├── mfc.hpp │ │ │ │ ├── pattern_except.hpp │ │ │ │ ├── pending │ │ │ │ │ ├── object_cache.hpp │ │ │ │ │ ├── static_mutex.hpp │ │ │ │ │ └── unicode_iterator.hpp │ │ │ │ ├── regex_traits.hpp │ │ │ │ ├── user.hpp │ │ │ │ └── v4 │ │ │ │ │ ├── basic_regex.hpp │ │ │ │ │ ├── basic_regex_creator.hpp │ │ │ │ │ ├── basic_regex_parser.hpp │ │ │ │ │ ├── c_regex_traits.hpp │ │ │ │ │ ├── char_regex_traits.hpp │ │ │ │ │ ├── cpp_regex_traits.hpp │ │ │ │ │ ├── cregex.hpp │ │ │ │ │ ├── error_type.hpp │ │ │ │ │ ├── fileiter.hpp │ │ │ │ │ ├── instances.hpp │ │ │ │ │ ├── iterator_category.hpp │ │ │ │ │ ├── iterator_traits.hpp │ │ │ │ │ ├── match_flags.hpp │ │ │ │ │ ├── match_results.hpp │ │ │ │ │ ├── mem_block_cache.hpp │ │ │ │ │ ├── perl_matcher.hpp │ │ │ │ │ ├── perl_matcher_common.hpp │ │ │ │ │ ├── perl_matcher_non_recursive.hpp │ │ │ │ │ ├── perl_matcher_recursive.hpp │ │ │ │ │ ├── primary_transform.hpp │ │ │ │ │ ├── protected_call.hpp │ │ │ │ │ ├── regbase.hpp │ │ │ │ │ ├── regex.hpp │ │ │ │ │ ├── regex_format.hpp │ │ │ │ │ ├── regex_fwd.hpp │ │ │ │ │ ├── regex_grep.hpp │ │ │ │ │ ├── regex_iterator.hpp │ │ │ │ │ ├── regex_match.hpp │ │ │ │ │ ├── regex_merge.hpp │ │ │ │ │ ├── regex_raw_buffer.hpp │ │ │ │ │ ├── regex_replace.hpp │ │ │ │ │ ├── regex_search.hpp │ │ │ │ │ ├── regex_split.hpp │ │ │ │ │ ├── regex_token_iterator.hpp │ │ │ │ │ ├── regex_traits.hpp │ │ │ │ │ ├── regex_traits_defaults.hpp │ │ │ │ │ ├── regex_workaround.hpp │ │ │ │ │ ├── states.hpp │ │ │ │ │ ├── sub_match.hpp │ │ │ │ │ ├── syntax_type.hpp │ │ │ │ │ ├── u32regex_iterator.hpp │ │ │ │ │ ├── u32regex_token_iterator.hpp │ │ │ │ │ └── w32_regex_traits.hpp │ │ │ ├── regex_fwd.hpp │ │ │ ├── scope_exit.hpp │ │ │ ├── scoped_array.hpp │ │ │ ├── scoped_ptr.hpp │ │ │ ├── serialization │ │ │ │ ├── access.hpp │ │ │ │ ├── array.hpp │ │ │ │ ├── assume_abstract.hpp │ │ │ │ ├── base_object.hpp │ │ │ │ ├── binary_object.hpp │ │ │ │ ├── bitset.hpp │ │ │ │ ├── collection_size_type.hpp │ │ │ │ ├── collection_traits.hpp │ │ │ │ ├── collections_load_imp.hpp │ │ │ │ ├── collections_save_imp.hpp │ │ │ │ ├── complex.hpp │ │ │ │ ├── config.hpp │ │ │ │ ├── deque.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── get_data.hpp │ │ │ │ │ ├── shared_count_132.hpp │ │ │ │ │ ├── shared_ptr_132.hpp │ │ │ │ │ ├── shared_ptr_nmt_132.hpp │ │ │ │ │ └── stack_constructor.hpp │ │ │ │ ├── ephemeral.hpp │ │ │ │ ├── export.hpp │ │ │ │ ├── extended_type_info.hpp │ │ │ │ ├── extended_type_info_no_rtti.hpp │ │ │ │ ├── extended_type_info_typeid.hpp │ │ │ │ ├── factory.hpp │ │ │ │ ├── force_include.hpp │ │ │ │ ├── hash_collections_load_imp.hpp │ │ │ │ ├── hash_collections_save_imp.hpp │ │ │ │ ├── hash_map.hpp │ │ │ │ ├── hash_set.hpp │ │ │ │ ├── is_bitwise_serializable.hpp │ │ │ │ ├── item_version_type.hpp │ │ │ │ ├── level.hpp │ │ │ │ ├── level_enum.hpp │ │ │ │ ├── list.hpp │ │ │ │ ├── map.hpp │ │ │ │ ├── nvp.hpp │ │ │ │ ├── optional.hpp │ │ │ │ ├── pfto.hpp │ │ │ │ ├── scoped_ptr.hpp │ │ │ │ ├── serialization.hpp │ │ │ │ ├── set.hpp │ │ │ │ ├── shared_ptr.hpp │ │ │ │ ├── shared_ptr_132.hpp │ │ │ │ ├── singleton.hpp │ │ │ │ ├── slist.hpp │ │ │ │ ├── smart_cast.hpp │ │ │ │ ├── split_free.hpp │ │ │ │ ├── split_member.hpp │ │ │ │ ├── state_saver.hpp │ │ │ │ ├── static_warning.hpp │ │ │ │ ├── string.hpp │ │ │ │ ├── strong_typedef.hpp │ │ │ │ ├── throw_exception.hpp │ │ │ │ ├── tracking.hpp │ │ │ │ ├── tracking_enum.hpp │ │ │ │ ├── traits.hpp │ │ │ │ ├── type_info_implementation.hpp │ │ │ │ ├── utility.hpp │ │ │ │ ├── valarray.hpp │ │ │ │ ├── variant.hpp │ │ │ │ ├── vector.hpp │ │ │ │ ├── vector_135.hpp │ │ │ │ ├── version.hpp │ │ │ │ ├── void_cast.hpp │ │ │ │ ├── void_cast_fwd.hpp │ │ │ │ ├── weak_ptr.hpp │ │ │ │ └── wrapper.hpp │ │ │ ├── shared_array.hpp │ │ │ ├── shared_container_iterator.hpp │ │ │ ├── shared_ptr.hpp │ │ │ ├── signal.hpp │ │ │ ├── signals.hpp │ │ │ ├── signals │ │ │ │ ├── connection.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── config.hpp │ │ │ │ │ ├── gen_signal_N.pl │ │ │ │ │ ├── named_slot_map.hpp │ │ │ │ │ ├── signal_base.hpp │ │ │ │ │ ├── signals_common.hpp │ │ │ │ │ └── slot_call_iterator.hpp │ │ │ │ ├── signal0.hpp │ │ │ │ ├── signal1.hpp │ │ │ │ ├── signal10.hpp │ │ │ │ ├── signal2.hpp │ │ │ │ ├── signal3.hpp │ │ │ │ ├── signal4.hpp │ │ │ │ ├── signal5.hpp │ │ │ │ ├── signal6.hpp │ │ │ │ ├── signal7.hpp │ │ │ │ ├── signal8.hpp │ │ │ │ ├── signal9.hpp │ │ │ │ ├── signal_template.hpp │ │ │ │ ├── slot.hpp │ │ │ │ └── trackable.hpp │ │ │ ├── signals2.hpp │ │ │ ├── signals2 │ │ │ │ ├── connection.hpp │ │ │ │ ├── deconstruct.hpp │ │ │ │ ├── deconstruct_ptr.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── auto_buffer.hpp │ │ │ │ │ ├── foreign_ptr.hpp │ │ │ │ │ ├── lwm_nop.hpp │ │ │ │ │ ├── lwm_pthreads.hpp │ │ │ │ │ ├── lwm_win32_cs.hpp │ │ │ │ │ ├── null_output_iterator.hpp │ │ │ │ │ ├── preprocessed_arg_type.hpp │ │ │ │ │ ├── preprocessed_arg_type_template.hpp │ │ │ │ │ ├── replace_slot_function.hpp │ │ │ │ │ ├── result_type_wrapper.hpp │ │ │ │ │ ├── signal_template.hpp │ │ │ │ │ ├── signals_common.hpp │ │ │ │ │ ├── signals_common_macros.hpp │ │ │ │ │ ├── slot_call_iterator.hpp │ │ │ │ │ ├── slot_groups.hpp │ │ │ │ │ ├── slot_template.hpp │ │ │ │ │ ├── tracked_objects_visitor.hpp │ │ │ │ │ ├── unique_lock.hpp │ │ │ │ │ ├── variadic_arg_type.hpp │ │ │ │ │ └── variadic_slot_invoker.hpp │ │ │ │ ├── dummy_mutex.hpp │ │ │ │ ├── expired_slot.hpp │ │ │ │ ├── last_value.hpp │ │ │ │ ├── mutex.hpp │ │ │ │ ├── optional_last_value.hpp │ │ │ │ ├── postconstructible.hpp │ │ │ │ ├── predestructible.hpp │ │ │ │ ├── preprocessed_signal.hpp │ │ │ │ ├── preprocessed_slot.hpp │ │ │ │ ├── shared_connection_block.hpp │ │ │ │ ├── signal.hpp │ │ │ │ ├── signal_base.hpp │ │ │ │ ├── signal_type.hpp │ │ │ │ ├── slot.hpp │ │ │ │ ├── slot_base.hpp │ │ │ │ ├── trackable.hpp │ │ │ │ ├── variadic_signal.hpp │ │ │ │ └── variadic_slot.hpp │ │ │ ├── smart_ptr.hpp │ │ │ ├── smart_ptr │ │ │ │ ├── allocate_shared_array.hpp │ │ │ │ ├── bad_weak_ptr.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── allocate_array_helper.hpp │ │ │ │ │ ├── array_deleter.hpp │ │ │ │ │ ├── array_traits.hpp │ │ │ │ │ ├── array_utility.hpp │ │ │ │ │ ├── atomic_count.hpp │ │ │ │ │ ├── atomic_count_gcc.hpp │ │ │ │ │ ├── atomic_count_gcc_x86.hpp │ │ │ │ │ ├── atomic_count_pthreads.hpp │ │ │ │ │ ├── atomic_count_solaris.hpp │ │ │ │ │ ├── atomic_count_sync.hpp │ │ │ │ │ ├── atomic_count_win32.hpp │ │ │ │ │ ├── lightweight_mutex.hpp │ │ │ │ │ ├── lwm_nop.hpp │ │ │ │ │ ├── lwm_pthreads.hpp │ │ │ │ │ ├── lwm_win32_cs.hpp │ │ │ │ │ ├── make_array_helper.hpp │ │ │ │ │ ├── operator_bool.hpp │ │ │ │ │ ├── quick_allocator.hpp │ │ │ │ │ ├── shared_array_nmt.hpp │ │ │ │ │ ├── shared_count.hpp │ │ │ │ │ ├── shared_ptr_nmt.hpp │ │ │ │ │ ├── sp_convertible.hpp │ │ │ │ │ ├── sp_counted_base.hpp │ │ │ │ │ ├── sp_counted_base_acc_ia64.hpp │ │ │ │ │ ├── sp_counted_base_aix.hpp │ │ │ │ │ ├── sp_counted_base_cw_ppc.hpp │ │ │ │ │ ├── sp_counted_base_cw_x86.hpp │ │ │ │ │ ├── sp_counted_base_gcc_ia64.hpp │ │ │ │ │ ├── sp_counted_base_gcc_mips.hpp │ │ │ │ │ ├── sp_counted_base_gcc_ppc.hpp │ │ │ │ │ ├── sp_counted_base_gcc_sparc.hpp │ │ │ │ │ ├── sp_counted_base_gcc_x86.hpp │ │ │ │ │ ├── sp_counted_base_nt.hpp │ │ │ │ │ ├── sp_counted_base_pt.hpp │ │ │ │ │ ├── sp_counted_base_snc_ps3.hpp │ │ │ │ │ ├── sp_counted_base_solaris.hpp │ │ │ │ │ ├── sp_counted_base_spin.hpp │ │ │ │ │ ├── sp_counted_base_sync.hpp │ │ │ │ │ ├── sp_counted_base_vacpp_ppc.hpp │ │ │ │ │ ├── sp_counted_base_w32.hpp │ │ │ │ │ ├── sp_counted_impl.hpp │ │ │ │ │ ├── sp_forward.hpp │ │ │ │ │ ├── sp_has_sync.hpp │ │ │ │ │ ├── sp_if_array.hpp │ │ │ │ │ ├── sp_nullptr_t.hpp │ │ │ │ │ ├── spinlock.hpp │ │ │ │ │ ├── spinlock_gcc_arm.hpp │ │ │ │ │ ├── spinlock_nt.hpp │ │ │ │ │ ├── spinlock_pool.hpp │ │ │ │ │ ├── spinlock_pt.hpp │ │ │ │ │ ├── spinlock_sync.hpp │ │ │ │ │ ├── spinlock_w32.hpp │ │ │ │ │ └── yield_k.hpp │ │ │ │ ├── enable_shared_from_raw.hpp │ │ │ │ ├── enable_shared_from_this.hpp │ │ │ │ ├── intrusive_ptr.hpp │ │ │ │ ├── make_shared.hpp │ │ │ │ ├── make_shared_array.hpp │ │ │ │ ├── make_shared_object.hpp │ │ │ │ ├── owner_less.hpp │ │ │ │ ├── scoped_array.hpp │ │ │ │ ├── scoped_ptr.hpp │ │ │ │ ├── shared_array.hpp │ │ │ │ ├── shared_ptr.hpp │ │ │ │ └── weak_ptr.hpp │ │ │ ├── spirit.hpp │ │ │ ├── spirit │ │ │ │ ├── home │ │ │ │ │ ├── classic.hpp │ │ │ │ │ ├── classic │ │ │ │ │ │ ├── actor.hpp │ │ │ │ │ │ ├── actor │ │ │ │ │ │ │ ├── assign_actor.hpp │ │ │ │ │ │ │ ├── assign_key_actor.hpp │ │ │ │ │ │ │ ├── clear_actor.hpp │ │ │ │ │ │ │ ├── decrement_actor.hpp │ │ │ │ │ │ │ ├── erase_actor.hpp │ │ │ │ │ │ │ ├── increment_actor.hpp │ │ │ │ │ │ │ ├── insert_at_actor.hpp │ │ │ │ │ │ │ ├── insert_key_actor.hpp │ │ │ │ │ │ │ ├── push_back_actor.hpp │ │ │ │ │ │ │ ├── push_front_actor.hpp │ │ │ │ │ │ │ ├── ref_actor.hpp │ │ │ │ │ │ │ ├── ref_const_ref_actor.hpp │ │ │ │ │ │ │ ├── ref_const_ref_const_ref_a.hpp │ │ │ │ │ │ │ ├── ref_const_ref_value_actor.hpp │ │ │ │ │ │ │ ├── ref_value_actor.hpp │ │ │ │ │ │ │ ├── swap_actor.hpp │ │ │ │ │ │ │ └── typeof.hpp │ │ │ │ │ │ ├── attribute.hpp │ │ │ │ │ │ ├── attribute │ │ │ │ │ │ │ ├── closure.hpp │ │ │ │ │ │ │ ├── closure_context.hpp │ │ │ │ │ │ │ ├── closure_fwd.hpp │ │ │ │ │ │ │ ├── parametric.hpp │ │ │ │ │ │ │ └── typeof.hpp │ │ │ │ │ │ ├── core.hpp │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ ├── assert.hpp │ │ │ │ │ │ │ ├── composite │ │ │ │ │ │ │ │ ├── actions.hpp │ │ │ │ │ │ │ │ ├── alternative.hpp │ │ │ │ │ │ │ │ ├── composite.hpp │ │ │ │ │ │ │ │ ├── difference.hpp │ │ │ │ │ │ │ │ ├── directives.hpp │ │ │ │ │ │ │ │ ├── epsilon.hpp │ │ │ │ │ │ │ │ ├── exclusive_or.hpp │ │ │ │ │ │ │ │ ├── impl │ │ │ │ │ │ │ │ │ ├── alternative.ipp │ │ │ │ │ │ │ │ │ ├── difference.ipp │ │ │ │ │ │ │ │ │ ├── directives.ipp │ │ │ │ │ │ │ │ │ ├── exclusive_or.ipp │ │ │ │ │ │ │ │ │ ├── intersection.ipp │ │ │ │ │ │ │ │ │ ├── kleene_star.ipp │ │ │ │ │ │ │ │ │ ├── list.ipp │ │ │ │ │ │ │ │ │ ├── optional.ipp │ │ │ │ │ │ │ │ │ ├── positive.ipp │ │ │ │ │ │ │ │ │ ├── sequence.ipp │ │ │ │ │ │ │ │ │ ├── sequential_and.ipp │ │ │ │ │ │ │ │ │ └── sequential_or.ipp │ │ │ │ │ │ │ │ ├── intersection.hpp │ │ │ │ │ │ │ │ ├── kleene_star.hpp │ │ │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ │ │ ├── no_actions.hpp │ │ │ │ │ │ │ │ ├── operators.hpp │ │ │ │ │ │ │ │ ├── optional.hpp │ │ │ │ │ │ │ │ ├── positive.hpp │ │ │ │ │ │ │ │ ├── sequence.hpp │ │ │ │ │ │ │ │ ├── sequential_and.hpp │ │ │ │ │ │ │ │ └── sequential_or.hpp │ │ │ │ │ │ │ ├── config.hpp │ │ │ │ │ │ │ ├── impl │ │ │ │ │ │ │ │ ├── match.ipp │ │ │ │ │ │ │ │ ├── match_attr_traits.ipp │ │ │ │ │ │ │ │ └── parser.ipp │ │ │ │ │ │ │ ├── match.hpp │ │ │ │ │ │ │ ├── nil.hpp │ │ │ │ │ │ │ ├── non_terminal │ │ │ │ │ │ │ │ ├── grammar.hpp │ │ │ │ │ │ │ │ ├── impl │ │ │ │ │ │ │ │ │ ├── grammar.ipp │ │ │ │ │ │ │ │ │ ├── object_with_id.ipp │ │ │ │ │ │ │ │ │ ├── rule.ipp │ │ │ │ │ │ │ │ │ ├── static.hpp │ │ │ │ │ │ │ │ │ └── subrule.ipp │ │ │ │ │ │ │ │ ├── parser_context.hpp │ │ │ │ │ │ │ │ ├── parser_id.hpp │ │ │ │ │ │ │ │ ├── rule.hpp │ │ │ │ │ │ │ │ ├── subrule.hpp │ │ │ │ │ │ │ │ └── subrule_fwd.hpp │ │ │ │ │ │ │ ├── parser.hpp │ │ │ │ │ │ │ ├── primitives │ │ │ │ │ │ │ │ ├── impl │ │ │ │ │ │ │ │ │ ├── numerics.ipp │ │ │ │ │ │ │ │ │ └── primitives.ipp │ │ │ │ │ │ │ │ ├── numerics.hpp │ │ │ │ │ │ │ │ ├── numerics_fwd.hpp │ │ │ │ │ │ │ │ └── primitives.hpp │ │ │ │ │ │ │ ├── safe_bool.hpp │ │ │ │ │ │ │ ├── scanner │ │ │ │ │ │ │ │ ├── impl │ │ │ │ │ │ │ │ │ └── skipper.ipp │ │ │ │ │ │ │ │ ├── scanner.hpp │ │ │ │ │ │ │ │ ├── scanner_fwd.hpp │ │ │ │ │ │ │ │ ├── skipper.hpp │ │ │ │ │ │ │ │ └── skipper_fwd.hpp │ │ │ │ │ │ │ └── typeof.hpp │ │ │ │ │ │ ├── debug.hpp │ │ │ │ │ │ ├── debug │ │ │ │ │ │ │ ├── debug_node.hpp │ │ │ │ │ │ │ ├── impl │ │ │ │ │ │ │ │ └── parser_names.ipp │ │ │ │ │ │ │ ├── minimal.hpp │ │ │ │ │ │ │ ├── parser_names.hpp │ │ │ │ │ │ │ └── typeof.hpp │ │ │ │ │ │ ├── dynamic.hpp │ │ │ │ │ │ ├── dynamic │ │ │ │ │ │ │ ├── for.hpp │ │ │ │ │ │ │ ├── if.hpp │ │ │ │ │ │ │ ├── impl │ │ │ │ │ │ │ │ ├── conditions.ipp │ │ │ │ │ │ │ │ ├── select.ipp │ │ │ │ │ │ │ │ └── switch.ipp │ │ │ │ │ │ │ ├── lazy.hpp │ │ │ │ │ │ │ ├── rule_alias.hpp │ │ │ │ │ │ │ ├── select.hpp │ │ │ │ │ │ │ ├── stored_rule.hpp │ │ │ │ │ │ │ ├── stored_rule_fwd.hpp │ │ │ │ │ │ │ ├── switch.hpp │ │ │ │ │ │ │ ├── typeof.hpp │ │ │ │ │ │ │ └── while.hpp │ │ │ │ │ │ ├── error_handling.hpp │ │ │ │ │ │ ├── error_handling │ │ │ │ │ │ │ ├── exceptions.hpp │ │ │ │ │ │ │ ├── exceptions_fwd.hpp │ │ │ │ │ │ │ ├── impl │ │ │ │ │ │ │ │ └── exceptions.ipp │ │ │ │ │ │ │ └── typeof.hpp │ │ │ │ │ │ ├── iterator.hpp │ │ │ │ │ │ ├── iterator │ │ │ │ │ │ │ ├── file_iterator.hpp │ │ │ │ │ │ │ ├── file_iterator_fwd.hpp │ │ │ │ │ │ │ ├── fixed_size_queue.hpp │ │ │ │ │ │ │ ├── impl │ │ │ │ │ │ │ │ ├── file_iterator.ipp │ │ │ │ │ │ │ │ └── position_iterator.ipp │ │ │ │ │ │ │ ├── multi_pass.hpp │ │ │ │ │ │ │ ├── multi_pass_fwd.hpp │ │ │ │ │ │ │ ├── position_iterator.hpp │ │ │ │ │ │ │ ├── position_iterator_fwd.hpp │ │ │ │ │ │ │ └── typeof.hpp │ │ │ │ │ │ ├── meta.hpp │ │ │ │ │ │ ├── meta │ │ │ │ │ │ │ ├── as_parser.hpp │ │ │ │ │ │ │ ├── fundamental.hpp │ │ │ │ │ │ │ ├── impl │ │ │ │ │ │ │ │ ├── fundamental.ipp │ │ │ │ │ │ │ │ ├── parser_traits.ipp │ │ │ │ │ │ │ │ ├── refactoring.ipp │ │ │ │ │ │ │ │ └── traverse.ipp │ │ │ │ │ │ │ ├── parser_traits.hpp │ │ │ │ │ │ │ ├── refactoring.hpp │ │ │ │ │ │ │ └── traverse.hpp │ │ │ │ │ │ ├── namespace.hpp │ │ │ │ │ │ ├── phoenix.hpp │ │ │ │ │ │ ├── phoenix │ │ │ │ │ │ │ ├── actor.hpp │ │ │ │ │ │ │ ├── binders.hpp │ │ │ │ │ │ │ ├── casts.hpp │ │ │ │ │ │ │ ├── closures.hpp │ │ │ │ │ │ │ ├── composite.hpp │ │ │ │ │ │ │ ├── functions.hpp │ │ │ │ │ │ │ ├── new.hpp │ │ │ │ │ │ │ ├── operators.hpp │ │ │ │ │ │ │ ├── primitives.hpp │ │ │ │ │ │ │ ├── special_ops.hpp │ │ │ │ │ │ │ ├── statements.hpp │ │ │ │ │ │ │ ├── tuple_helpers.hpp │ │ │ │ │ │ │ └── tuples.hpp │ │ │ │ │ │ ├── symbols.hpp │ │ │ │ │ │ ├── symbols │ │ │ │ │ │ │ ├── impl │ │ │ │ │ │ │ │ ├── symbols.ipp │ │ │ │ │ │ │ │ └── tst.ipp │ │ │ │ │ │ │ ├── symbols.hpp │ │ │ │ │ │ │ ├── symbols_fwd.hpp │ │ │ │ │ │ │ └── typeof.hpp │ │ │ │ │ │ ├── tree │ │ │ │ │ │ │ ├── ast.hpp │ │ │ │ │ │ │ ├── ast_fwd.hpp │ │ │ │ │ │ │ ├── common.hpp │ │ │ │ │ │ │ ├── common_fwd.hpp │ │ │ │ │ │ │ ├── impl │ │ │ │ │ │ │ │ ├── parse_tree_utils.ipp │ │ │ │ │ │ │ │ └── tree_to_xml.ipp │ │ │ │ │ │ │ ├── parse_tree.hpp │ │ │ │ │ │ │ ├── parse_tree_fwd.hpp │ │ │ │ │ │ │ ├── parse_tree_utils.hpp │ │ │ │ │ │ │ ├── parsetree.dtd │ │ │ │ │ │ │ ├── tree_to_xml.hpp │ │ │ │ │ │ │ └── typeof.hpp │ │ │ │ │ │ ├── utility.hpp │ │ │ │ │ │ ├── utility │ │ │ │ │ │ │ ├── chset.hpp │ │ │ │ │ │ │ ├── chset_operators.hpp │ │ │ │ │ │ │ ├── confix.hpp │ │ │ │ │ │ │ ├── confix_fwd.hpp │ │ │ │ │ │ │ ├── distinct.hpp │ │ │ │ │ │ │ ├── distinct_fwd.hpp │ │ │ │ │ │ │ ├── escape_char.hpp │ │ │ │ │ │ │ ├── escape_char_fwd.hpp │ │ │ │ │ │ │ ├── flush_multi_pass.hpp │ │ │ │ │ │ │ ├── functor_parser.hpp │ │ │ │ │ │ │ ├── grammar_def.hpp │ │ │ │ │ │ │ ├── grammar_def_fwd.hpp │ │ │ │ │ │ │ ├── impl │ │ │ │ │ │ │ │ ├── chset.ipp │ │ │ │ │ │ │ │ ├── chset │ │ │ │ │ │ │ │ │ ├── basic_chset.hpp │ │ │ │ │ │ │ │ │ ├── basic_chset.ipp │ │ │ │ │ │ │ │ │ ├── range_run.hpp │ │ │ │ │ │ │ │ │ └── range_run.ipp │ │ │ │ │ │ │ │ ├── chset_operators.ipp │ │ │ │ │ │ │ │ ├── confix.ipp │ │ │ │ │ │ │ │ ├── escape_char.ipp │ │ │ │ │ │ │ │ ├── lists.ipp │ │ │ │ │ │ │ │ └── regex.ipp │ │ │ │ │ │ │ ├── lists.hpp │ │ │ │ │ │ │ ├── lists_fwd.hpp │ │ │ │ │ │ │ ├── loops.hpp │ │ │ │ │ │ │ ├── regex.hpp │ │ │ │ │ │ │ ├── rule_parser.hpp │ │ │ │ │ │ │ ├── scoped_lock.hpp │ │ │ │ │ │ │ └── typeof.hpp │ │ │ │ │ │ └── version.hpp │ │ │ │ │ ├── karma.hpp │ │ │ │ │ ├── karma │ │ │ │ │ │ ├── action.hpp │ │ │ │ │ │ ├── action │ │ │ │ │ │ │ └── action.hpp │ │ │ │ │ │ ├── auto.hpp │ │ │ │ │ │ ├── auto │ │ │ │ │ │ │ ├── auto.hpp │ │ │ │ │ │ │ ├── create_generator.hpp │ │ │ │ │ │ │ └── meta_create.hpp │ │ │ │ │ │ ├── auxiliary.hpp │ │ │ │ │ │ ├── auxiliary │ │ │ │ │ │ │ ├── attr_cast.hpp │ │ │ │ │ │ │ ├── eol.hpp │ │ │ │ │ │ │ ├── eps.hpp │ │ │ │ │ │ │ └── lazy.hpp │ │ │ │ │ │ ├── binary.hpp │ │ │ │ │ │ ├── binary │ │ │ │ │ │ │ ├── binary.hpp │ │ │ │ │ │ │ └── padding.hpp │ │ │ │ │ │ ├── char.hpp │ │ │ │ │ │ ├── char │ │ │ │ │ │ │ ├── char.hpp │ │ │ │ │ │ │ ├── char_class.hpp │ │ │ │ │ │ │ └── char_generator.hpp │ │ │ │ │ │ ├── delimit_flag.hpp │ │ │ │ │ │ ├── delimit_out.hpp │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ ├── alternative_function.hpp │ │ │ │ │ │ │ ├── as.hpp │ │ │ │ │ │ │ ├── attributes.hpp │ │ │ │ │ │ │ ├── default_width.hpp │ │ │ │ │ │ │ ├── enable_lit.hpp │ │ │ │ │ │ │ ├── extract_from.hpp │ │ │ │ │ │ │ ├── fail_function.hpp │ │ │ │ │ │ │ ├── generate.hpp │ │ │ │ │ │ │ ├── generate_auto.hpp │ │ │ │ │ │ │ ├── generate_to.hpp │ │ │ │ │ │ │ ├── get_casetag.hpp │ │ │ │ │ │ │ ├── get_stricttag.hpp │ │ │ │ │ │ │ ├── indirect_iterator.hpp │ │ │ │ │ │ │ ├── output_iterator.hpp │ │ │ │ │ │ │ ├── pass_container.hpp │ │ │ │ │ │ │ ├── string_compare.hpp │ │ │ │ │ │ │ ├── string_generate.hpp │ │ │ │ │ │ │ └── unused_delimiter.hpp │ │ │ │ │ │ ├── directive.hpp │ │ │ │ │ │ ├── directive │ │ │ │ │ │ │ ├── as.hpp │ │ │ │ │ │ │ ├── buffer.hpp │ │ │ │ │ │ │ ├── center_alignment.hpp │ │ │ │ │ │ │ ├── columns.hpp │ │ │ │ │ │ │ ├── delimit.hpp │ │ │ │ │ │ │ ├── duplicate.hpp │ │ │ │ │ │ │ ├── encoding.hpp │ │ │ │ │ │ │ ├── left_alignment.hpp │ │ │ │ │ │ │ ├── maxwidth.hpp │ │ │ │ │ │ │ ├── no_delimit.hpp │ │ │ │ │ │ │ ├── omit.hpp │ │ │ │ │ │ │ ├── repeat.hpp │ │ │ │ │ │ │ ├── right_alignment.hpp │ │ │ │ │ │ │ ├── strict_relaxed.hpp │ │ │ │ │ │ │ ├── upper_lower_case.hpp │ │ │ │ │ │ │ └── verbatim.hpp │ │ │ │ │ │ ├── domain.hpp │ │ │ │ │ │ ├── format.hpp │ │ │ │ │ │ ├── format_auto.hpp │ │ │ │ │ │ ├── generate.hpp │ │ │ │ │ │ ├── generate_attr.hpp │ │ │ │ │ │ ├── generator.hpp │ │ │ │ │ │ ├── meta_compiler.hpp │ │ │ │ │ │ ├── nonterminal.hpp │ │ │ │ │ │ ├── nonterminal │ │ │ │ │ │ │ ├── debug_handler.hpp │ │ │ │ │ │ │ ├── debug_handler_state.hpp │ │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ │ ├── fcall.hpp │ │ │ │ │ │ │ │ ├── generator_binder.hpp │ │ │ │ │ │ │ │ └── parameterized.hpp │ │ │ │ │ │ │ ├── grammar.hpp │ │ │ │ │ │ │ ├── nonterminal_fwd.hpp │ │ │ │ │ │ │ ├── rule.hpp │ │ │ │ │ │ │ └── simple_trace.hpp │ │ │ │ │ │ ├── numeric.hpp │ │ │ │ │ │ ├── numeric │ │ │ │ │ │ │ ├── bool.hpp │ │ │ │ │ │ │ ├── bool_policies.hpp │ │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ │ ├── bool_utils.hpp │ │ │ │ │ │ │ │ ├── numeric_utils.hpp │ │ │ │ │ │ │ │ └── real_utils.hpp │ │ │ │ │ │ │ ├── int.hpp │ │ │ │ │ │ │ ├── real.hpp │ │ │ │ │ │ │ ├── real_policies.hpp │ │ │ │ │ │ │ └── uint.hpp │ │ │ │ │ │ ├── operator.hpp │ │ │ │ │ │ ├── operator │ │ │ │ │ │ │ ├── alternative.hpp │ │ │ │ │ │ │ ├── and_predicate.hpp │ │ │ │ │ │ │ ├── kleene.hpp │ │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ │ ├── not_predicate.hpp │ │ │ │ │ │ │ ├── optional.hpp │ │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ │ └── sequence.hpp │ │ │ │ │ │ ├── phoenix_attributes.hpp │ │ │ │ │ │ ├── reference.hpp │ │ │ │ │ │ ├── stream.hpp │ │ │ │ │ │ ├── stream │ │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ │ ├── format_manip.hpp │ │ │ │ │ │ │ │ ├── format_manip_auto.hpp │ │ │ │ │ │ │ │ └── iterator_sink.hpp │ │ │ │ │ │ │ ├── format_manip.hpp │ │ │ │ │ │ │ ├── format_manip_attr.hpp │ │ │ │ │ │ │ ├── ostream_iterator.hpp │ │ │ │ │ │ │ └── stream.hpp │ │ │ │ │ │ ├── string.hpp │ │ │ │ │ │ ├── string │ │ │ │ │ │ │ ├── lit.hpp │ │ │ │ │ │ │ └── symbols.hpp │ │ │ │ │ │ └── what.hpp │ │ │ │ │ ├── lex.hpp │ │ │ │ │ ├── lex │ │ │ │ │ │ ├── argument.hpp │ │ │ │ │ │ ├── argument_phoenix.hpp │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ └── sequence_function.hpp │ │ │ │ │ │ ├── domain.hpp │ │ │ │ │ │ ├── lexer.hpp │ │ │ │ │ │ ├── lexer │ │ │ │ │ │ │ ├── action.hpp │ │ │ │ │ │ │ ├── char_token_def.hpp │ │ │ │ │ │ │ ├── lexer.hpp │ │ │ │ │ │ │ ├── lexertl │ │ │ │ │ │ │ │ ├── functor.hpp │ │ │ │ │ │ │ │ ├── functor_data.hpp │ │ │ │ │ │ │ │ ├── generate_static.hpp │ │ │ │ │ │ │ │ ├── iterator.hpp │ │ │ │ │ │ │ │ ├── iterator_tokenizer.hpp │ │ │ │ │ │ │ │ ├── lexer.hpp │ │ │ │ │ │ │ │ ├── position_token.hpp │ │ │ │ │ │ │ │ ├── semantic_action_data.hpp │ │ │ │ │ │ │ │ ├── static_functor_data.hpp │ │ │ │ │ │ │ │ ├── static_lexer.hpp │ │ │ │ │ │ │ │ ├── static_version.hpp │ │ │ │ │ │ │ │ ├── token.hpp │ │ │ │ │ │ │ │ └── wrap_action.hpp │ │ │ │ │ │ │ ├── pass_flags.hpp │ │ │ │ │ │ │ ├── sequence.hpp │ │ │ │ │ │ │ ├── string_token_def.hpp │ │ │ │ │ │ │ ├── support_functions.hpp │ │ │ │ │ │ │ ├── support_functions_expression.hpp │ │ │ │ │ │ │ ├── terminals.hpp │ │ │ │ │ │ │ └── token_def.hpp │ │ │ │ │ │ ├── lexer_lexertl.hpp │ │ │ │ │ │ ├── lexer_static_lexertl.hpp │ │ │ │ │ │ ├── lexer_type.hpp │ │ │ │ │ │ ├── meta_compiler.hpp │ │ │ │ │ │ ├── primitives.hpp │ │ │ │ │ │ ├── qi.hpp │ │ │ │ │ │ ├── qi │ │ │ │ │ │ │ ├── in_state.hpp │ │ │ │ │ │ │ ├── plain_raw_token.hpp │ │ │ │ │ │ │ ├── plain_token.hpp │ │ │ │ │ │ │ ├── plain_tokenid.hpp │ │ │ │ │ │ │ ├── plain_tokenid_mask.hpp │ │ │ │ │ │ │ └── state_switcher.hpp │ │ │ │ │ │ ├── reference.hpp │ │ │ │ │ │ ├── tokenize_and_parse.hpp │ │ │ │ │ │ └── tokenize_and_parse_attr.hpp │ │ │ │ │ ├── phoenix.hpp │ │ │ │ │ ├── phoenix │ │ │ │ │ │ ├── algorithm.hpp │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ ├── bind │ │ │ │ │ │ │ ├── bind_function.hpp │ │ │ │ │ │ │ ├── bind_function_object.hpp │ │ │ │ │ │ │ ├── bind_member_function.hpp │ │ │ │ │ │ │ ├── bind_member_variable.hpp │ │ │ │ │ │ │ └── detail │ │ │ │ │ │ │ │ ├── bind_function.hpp │ │ │ │ │ │ │ │ ├── bind_function_object.hpp │ │ │ │ │ │ │ │ ├── bind_member_function.hpp │ │ │ │ │ │ │ │ ├── function_ptr.hpp │ │ │ │ │ │ │ │ └── member_function_ptr.hpp │ │ │ │ │ │ ├── container.hpp │ │ │ │ │ │ ├── core.hpp │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ ├── actor.hpp │ │ │ │ │ │ │ ├── argument.hpp │ │ │ │ │ │ │ ├── as_actor.hpp │ │ │ │ │ │ │ ├── basic_environment.hpp │ │ │ │ │ │ │ ├── compose.hpp │ │ │ │ │ │ │ ├── composite.hpp │ │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ │ ├── actor.hpp │ │ │ │ │ │ │ │ ├── basic_environment.hpp │ │ │ │ │ │ │ │ ├── compose.hpp │ │ │ │ │ │ │ │ ├── composite.hpp │ │ │ │ │ │ │ │ ├── composite_eval.hpp │ │ │ │ │ │ │ │ ├── composite_info.hpp │ │ │ │ │ │ │ │ └── function_eval.hpp │ │ │ │ │ │ │ ├── is_actor.hpp │ │ │ │ │ │ │ ├── limits.hpp │ │ │ │ │ │ │ ├── nothing.hpp │ │ │ │ │ │ │ ├── reference.hpp │ │ │ │ │ │ │ └── value.hpp │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ ├── local_reference.hpp │ │ │ │ │ │ │ └── type_deduction.hpp │ │ │ │ │ │ ├── function.hpp │ │ │ │ │ │ ├── function │ │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ │ └── function_call.hpp │ │ │ │ │ │ │ └── function.hpp │ │ │ │ │ │ ├── fusion.hpp │ │ │ │ │ │ ├── fusion │ │ │ │ │ │ │ └── at.hpp │ │ │ │ │ │ ├── object.hpp │ │ │ │ │ │ ├── object │ │ │ │ │ │ │ ├── const_cast.hpp │ │ │ │ │ │ │ ├── construct.hpp │ │ │ │ │ │ │ ├── delete.hpp │ │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ │ ├── construct.hpp │ │ │ │ │ │ │ │ ├── construct_eval.hpp │ │ │ │ │ │ │ │ ├── new.hpp │ │ │ │ │ │ │ │ └── new_eval.hpp │ │ │ │ │ │ │ ├── dynamic_cast.hpp │ │ │ │ │ │ │ ├── new.hpp │ │ │ │ │ │ │ ├── reinterpret_cast.hpp │ │ │ │ │ │ │ └── static_cast.hpp │ │ │ │ │ │ ├── operator.hpp │ │ │ │ │ │ ├── operator │ │ │ │ │ │ │ ├── arithmetic.hpp │ │ │ │ │ │ │ ├── bitwise.hpp │ │ │ │ │ │ │ ├── comparison.hpp │ │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ │ ├── binary_compose.hpp │ │ │ │ │ │ │ │ ├── binary_eval.hpp │ │ │ │ │ │ │ │ ├── io.hpp │ │ │ │ │ │ │ │ ├── mem_fun_ptr_eval.hpp │ │ │ │ │ │ │ │ ├── mem_fun_ptr_gen.hpp │ │ │ │ │ │ │ │ ├── mem_fun_ptr_return.hpp │ │ │ │ │ │ │ │ ├── unary_compose.hpp │ │ │ │ │ │ │ │ └── unary_eval.hpp │ │ │ │ │ │ │ ├── if_else.hpp │ │ │ │ │ │ │ ├── io.hpp │ │ │ │ │ │ │ ├── logical.hpp │ │ │ │ │ │ │ ├── member.hpp │ │ │ │ │ │ │ └── self.hpp │ │ │ │ │ │ ├── scope.hpp │ │ │ │ │ │ ├── scope │ │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ │ ├── local_gen.hpp │ │ │ │ │ │ │ │ └── local_variable.hpp │ │ │ │ │ │ │ ├── dynamic.hpp │ │ │ │ │ │ │ ├── lambda.hpp │ │ │ │ │ │ │ ├── let.hpp │ │ │ │ │ │ │ ├── local_variable.hpp │ │ │ │ │ │ │ └── scoped_environment.hpp │ │ │ │ │ │ ├── statement.hpp │ │ │ │ │ │ ├── statement │ │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ │ ├── catch_all_eval.hpp │ │ │ │ │ │ │ │ ├── catch_composite.hpp │ │ │ │ │ │ │ │ ├── catch_eval.hpp │ │ │ │ │ │ │ │ ├── switch.hpp │ │ │ │ │ │ │ │ ├── switch_eval.hpp │ │ │ │ │ │ │ │ └── switch_eval.ipp │ │ │ │ │ │ │ ├── do_while.hpp │ │ │ │ │ │ │ ├── for.hpp │ │ │ │ │ │ │ ├── if.hpp │ │ │ │ │ │ │ ├── sequence.hpp │ │ │ │ │ │ │ ├── switch.hpp │ │ │ │ │ │ │ ├── throw.hpp │ │ │ │ │ │ │ ├── try_catch.hpp │ │ │ │ │ │ │ └── while.hpp │ │ │ │ │ │ ├── stl.hpp │ │ │ │ │ │ ├── stl │ │ │ │ │ │ │ ├── algorithm.hpp │ │ │ │ │ │ │ ├── algorithm │ │ │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ │ │ ├── begin.hpp │ │ │ │ │ │ │ │ │ ├── decay_array.hpp │ │ │ │ │ │ │ │ │ ├── end.hpp │ │ │ │ │ │ │ │ │ ├── has_equal_range.hpp │ │ │ │ │ │ │ │ │ ├── has_find.hpp │ │ │ │ │ │ │ │ │ ├── has_lower_bound.hpp │ │ │ │ │ │ │ │ │ ├── has_remove.hpp │ │ │ │ │ │ │ │ │ ├── has_remove_if.hpp │ │ │ │ │ │ │ │ │ ├── has_reverse.hpp │ │ │ │ │ │ │ │ │ ├── has_sort.hpp │ │ │ │ │ │ │ │ │ ├── has_unique.hpp │ │ │ │ │ │ │ │ │ ├── has_upper_bound.hpp │ │ │ │ │ │ │ │ │ ├── is_std_hash_map.hpp │ │ │ │ │ │ │ │ │ ├── is_std_hash_set.hpp │ │ │ │ │ │ │ │ │ ├── is_std_list.hpp │ │ │ │ │ │ │ │ │ ├── is_std_map.hpp │ │ │ │ │ │ │ │ │ ├── is_std_set.hpp │ │ │ │ │ │ │ │ │ ├── std_hash_map_fwd.hpp │ │ │ │ │ │ │ │ │ └── std_hash_set_fwd.hpp │ │ │ │ │ │ │ │ ├── iteration.hpp │ │ │ │ │ │ │ │ ├── querying.hpp │ │ │ │ │ │ │ │ └── transformation.hpp │ │ │ │ │ │ │ ├── container.hpp │ │ │ │ │ │ │ └── container │ │ │ │ │ │ │ │ ├── container.hpp │ │ │ │ │ │ │ │ └── detail │ │ │ │ │ │ │ │ └── container.hpp │ │ │ │ │ │ └── version.hpp │ │ │ │ │ ├── qi.hpp │ │ │ │ │ ├── qi │ │ │ │ │ │ ├── action.hpp │ │ │ │ │ │ ├── action │ │ │ │ │ │ │ └── action.hpp │ │ │ │ │ │ ├── auto.hpp │ │ │ │ │ │ ├── auto │ │ │ │ │ │ │ ├── auto.hpp │ │ │ │ │ │ │ ├── create_parser.hpp │ │ │ │ │ │ │ └── meta_create.hpp │ │ │ │ │ │ ├── auxiliary.hpp │ │ │ │ │ │ ├── auxiliary │ │ │ │ │ │ │ ├── attr.hpp │ │ │ │ │ │ │ ├── attr_cast.hpp │ │ │ │ │ │ │ ├── eoi.hpp │ │ │ │ │ │ │ ├── eol.hpp │ │ │ │ │ │ │ ├── eps.hpp │ │ │ │ │ │ │ └── lazy.hpp │ │ │ │ │ │ ├── binary.hpp │ │ │ │ │ │ ├── binary │ │ │ │ │ │ │ └── binary.hpp │ │ │ │ │ │ ├── char.hpp │ │ │ │ │ │ ├── char │ │ │ │ │ │ │ ├── char.hpp │ │ │ │ │ │ │ ├── char_class.hpp │ │ │ │ │ │ │ └── char_parser.hpp │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ ├── alternative_function.hpp │ │ │ │ │ │ │ ├── assign_to.hpp │ │ │ │ │ │ │ ├── attributes.hpp │ │ │ │ │ │ │ ├── construct.hpp │ │ │ │ │ │ │ ├── enable_lit.hpp │ │ │ │ │ │ │ ├── expect_function.hpp │ │ │ │ │ │ │ ├── fail_function.hpp │ │ │ │ │ │ │ ├── parse.hpp │ │ │ │ │ │ │ ├── parse_auto.hpp │ │ │ │ │ │ │ ├── pass_container.hpp │ │ │ │ │ │ │ ├── pass_function.hpp │ │ │ │ │ │ │ ├── permute_function.hpp │ │ │ │ │ │ │ ├── string_parse.hpp │ │ │ │ │ │ │ └── unused_skipper.hpp │ │ │ │ │ │ ├── directive.hpp │ │ │ │ │ │ ├── directive │ │ │ │ │ │ │ ├── as.hpp │ │ │ │ │ │ │ ├── encoding.hpp │ │ │ │ │ │ │ ├── hold.hpp │ │ │ │ │ │ │ ├── lexeme.hpp │ │ │ │ │ │ │ ├── matches.hpp │ │ │ │ │ │ │ ├── no_case.hpp │ │ │ │ │ │ │ ├── no_skip.hpp │ │ │ │ │ │ │ ├── omit.hpp │ │ │ │ │ │ │ ├── raw.hpp │ │ │ │ │ │ │ ├── repeat.hpp │ │ │ │ │ │ │ └── skip.hpp │ │ │ │ │ │ ├── domain.hpp │ │ │ │ │ │ ├── match.hpp │ │ │ │ │ │ ├── match_auto.hpp │ │ │ │ │ │ ├── meta_compiler.hpp │ │ │ │ │ │ ├── nonterminal.hpp │ │ │ │ │ │ ├── nonterminal │ │ │ │ │ │ │ ├── debug_handler.hpp │ │ │ │ │ │ │ ├── debug_handler_state.hpp │ │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ │ ├── fcall.hpp │ │ │ │ │ │ │ │ ├── parameterized.hpp │ │ │ │ │ │ │ │ └── parser_binder.hpp │ │ │ │ │ │ │ ├── error_handler.hpp │ │ │ │ │ │ │ ├── grammar.hpp │ │ │ │ │ │ │ ├── nonterminal_fwd.hpp │ │ │ │ │ │ │ ├── rule.hpp │ │ │ │ │ │ │ ├── simple_trace.hpp │ │ │ │ │ │ │ └── success_handler.hpp │ │ │ │ │ │ ├── numeric.hpp │ │ │ │ │ │ ├── numeric │ │ │ │ │ │ │ ├── bool.hpp │ │ │ │ │ │ │ ├── bool_policies.hpp │ │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ │ ├── numeric_utils.hpp │ │ │ │ │ │ │ │ └── real_impl.hpp │ │ │ │ │ │ │ ├── int.hpp │ │ │ │ │ │ │ ├── numeric_utils.hpp │ │ │ │ │ │ │ ├── real.hpp │ │ │ │ │ │ │ ├── real_policies.hpp │ │ │ │ │ │ │ └── uint.hpp │ │ │ │ │ │ ├── operator.hpp │ │ │ │ │ │ ├── operator │ │ │ │ │ │ │ ├── alternative.hpp │ │ │ │ │ │ │ ├── and_predicate.hpp │ │ │ │ │ │ │ ├── difference.hpp │ │ │ │ │ │ │ ├── expect.hpp │ │ │ │ │ │ │ ├── kleene.hpp │ │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ │ ├── not_predicate.hpp │ │ │ │ │ │ │ ├── optional.hpp │ │ │ │ │ │ │ ├── permutation.hpp │ │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ │ ├── sequence.hpp │ │ │ │ │ │ │ ├── sequence_base.hpp │ │ │ │ │ │ │ └── sequential_or.hpp │ │ │ │ │ │ ├── parse.hpp │ │ │ │ │ │ ├── parse_attr.hpp │ │ │ │ │ │ ├── parser.hpp │ │ │ │ │ │ ├── reference.hpp │ │ │ │ │ │ ├── skip_flag.hpp │ │ │ │ │ │ ├── skip_over.hpp │ │ │ │ │ │ ├── stream.hpp │ │ │ │ │ │ ├── stream │ │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ │ ├── iterator_source.hpp │ │ │ │ │ │ │ │ ├── match_manip.hpp │ │ │ │ │ │ │ │ └── match_manip_auto.hpp │ │ │ │ │ │ │ ├── match_manip.hpp │ │ │ │ │ │ │ ├── match_manip_attr.hpp │ │ │ │ │ │ │ └── stream.hpp │ │ │ │ │ │ ├── string.hpp │ │ │ │ │ │ ├── string │ │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ │ └── tst.hpp │ │ │ │ │ │ │ ├── lit.hpp │ │ │ │ │ │ │ ├── symbols.hpp │ │ │ │ │ │ │ ├── tst.hpp │ │ │ │ │ │ │ └── tst_map.hpp │ │ │ │ │ │ └── what.hpp │ │ │ │ │ ├── support.hpp │ │ │ │ │ └── support │ │ │ │ │ │ ├── action_dispatch.hpp │ │ │ │ │ │ ├── adapt_adt_attributes.hpp │ │ │ │ │ │ ├── algorithm │ │ │ │ │ │ ├── any.hpp │ │ │ │ │ │ ├── any_if.hpp │ │ │ │ │ │ ├── any_if_ns.hpp │ │ │ │ │ │ └── any_ns.hpp │ │ │ │ │ │ ├── argument.hpp │ │ │ │ │ │ ├── argument_expression.hpp │ │ │ │ │ │ ├── assert_msg.hpp │ │ │ │ │ │ ├── attributes.hpp │ │ │ │ │ │ ├── attributes_fwd.hpp │ │ │ │ │ │ ├── auto │ │ │ │ │ │ └── meta_create.hpp │ │ │ │ │ │ ├── auxiliary │ │ │ │ │ │ └── attr_cast.hpp │ │ │ │ │ │ ├── char_class.hpp │ │ │ │ │ │ ├── char_encoding │ │ │ │ │ │ ├── ascii.hpp │ │ │ │ │ │ ├── iso8859_1.hpp │ │ │ │ │ │ ├── standard.hpp │ │ │ │ │ │ ├── standard_wide.hpp │ │ │ │ │ │ ├── unicode.hpp │ │ │ │ │ │ └── unicode │ │ │ │ │ │ │ ├── DerivedCoreProperties.txt │ │ │ │ │ │ │ ├── PropList.txt │ │ │ │ │ │ │ ├── Scripts.txt │ │ │ │ │ │ │ ├── UnicodeData.txt │ │ │ │ │ │ │ ├── category_table.hpp │ │ │ │ │ │ │ ├── create_tables.cpp │ │ │ │ │ │ │ ├── lowercase_table.hpp │ │ │ │ │ │ │ ├── query.hpp │ │ │ │ │ │ │ ├── script_table.hpp │ │ │ │ │ │ │ └── uppercase_table.hpp │ │ │ │ │ │ ├── char_set │ │ │ │ │ │ ├── basic_chset.hpp │ │ │ │ │ │ ├── range.hpp │ │ │ │ │ │ ├── range_functions.hpp │ │ │ │ │ │ ├── range_run.hpp │ │ │ │ │ │ └── range_run_impl.hpp │ │ │ │ │ │ ├── common_terminals.hpp │ │ │ │ │ │ ├── container.hpp │ │ │ │ │ │ ├── context.hpp │ │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── as_variant.hpp │ │ │ │ │ │ ├── endian.hpp │ │ │ │ │ │ ├── endian │ │ │ │ │ │ │ ├── cover_operators.hpp │ │ │ │ │ │ │ └── endian.hpp │ │ │ │ │ │ ├── get_encoding.hpp │ │ │ │ │ │ ├── hold_any.hpp │ │ │ │ │ │ ├── is_spirit_tag.hpp │ │ │ │ │ │ ├── lexer │ │ │ │ │ │ │ ├── char_traits.hpp │ │ │ │ │ │ │ ├── consts.hpp │ │ │ │ │ │ │ ├── containers │ │ │ │ │ │ │ │ ├── ptr_list.hpp │ │ │ │ │ │ │ │ └── ptr_vector.hpp │ │ │ │ │ │ │ ├── conversion │ │ │ │ │ │ │ │ └── char_state_machine.hpp │ │ │ │ │ │ │ ├── debug.hpp │ │ │ │ │ │ │ ├── file_input.hpp │ │ │ │ │ │ │ ├── generate_cpp.hpp │ │ │ │ │ │ │ ├── generate_re2c.hpp │ │ │ │ │ │ │ ├── generator.hpp │ │ │ │ │ │ │ ├── input.hpp │ │ │ │ │ │ │ ├── internals.hpp │ │ │ │ │ │ │ ├── parser │ │ │ │ │ │ │ │ ├── parser.hpp │ │ │ │ │ │ │ │ ├── tokeniser │ │ │ │ │ │ │ │ │ ├── num_token.hpp │ │ │ │ │ │ │ │ │ ├── re_tokeniser.hpp │ │ │ │ │ │ │ │ │ ├── re_tokeniser_helper.hpp │ │ │ │ │ │ │ │ │ └── re_tokeniser_state.hpp │ │ │ │ │ │ │ │ └── tree │ │ │ │ │ │ │ │ │ ├── end_node.hpp │ │ │ │ │ │ │ │ │ ├── iteration_node.hpp │ │ │ │ │ │ │ │ │ ├── leaf_node.hpp │ │ │ │ │ │ │ │ │ ├── node.hpp │ │ │ │ │ │ │ │ │ ├── selection_node.hpp │ │ │ │ │ │ │ │ │ └── sequence_node.hpp │ │ │ │ │ │ │ ├── partition │ │ │ │ │ │ │ │ ├── charset.hpp │ │ │ │ │ │ │ │ └── equivset.hpp │ │ │ │ │ │ │ ├── rules.hpp │ │ │ │ │ │ │ ├── runtime_error.hpp │ │ │ │ │ │ │ ├── serialise.hpp │ │ │ │ │ │ │ ├── size_t.hpp │ │ │ │ │ │ │ ├── state_machine.hpp │ │ │ │ │ │ │ └── string_token.hpp │ │ │ │ │ │ ├── make_cons.hpp │ │ │ │ │ │ ├── make_vector.hpp │ │ │ │ │ │ ├── math │ │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ │ └── fp_traits.hpp │ │ │ │ │ │ │ ├── fpclassify.hpp │ │ │ │ │ │ │ └── signbit.hpp │ │ │ │ │ │ ├── pow10.hpp │ │ │ │ │ │ ├── scoped_enum_emulation.hpp │ │ │ │ │ │ ├── sign.hpp │ │ │ │ │ │ └── what_function.hpp │ │ │ │ │ │ ├── extended_variant.hpp │ │ │ │ │ │ ├── handles_container.hpp │ │ │ │ │ │ ├── has_semantic_action.hpp │ │ │ │ │ │ ├── info.hpp │ │ │ │ │ │ ├── iterators │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ ├── buf_id_check_policy.hpp │ │ │ │ │ │ │ ├── buffering_input_iterator_policy.hpp │ │ │ │ │ │ │ ├── combine_policies.hpp │ │ │ │ │ │ │ ├── first_owner_policy.hpp │ │ │ │ │ │ │ ├── fixed_size_queue.hpp │ │ │ │ │ │ │ ├── fixed_size_queue_policy.hpp │ │ │ │ │ │ │ ├── functor_input_policy.hpp │ │ │ │ │ │ │ ├── input_iterator_policy.hpp │ │ │ │ │ │ │ ├── istream_policy.hpp │ │ │ │ │ │ │ ├── lex_input_policy.hpp │ │ │ │ │ │ │ ├── multi_pass.hpp │ │ │ │ │ │ │ ├── no_check_policy.hpp │ │ │ │ │ │ │ ├── ref_counted_policy.hpp │ │ │ │ │ │ │ ├── split_functor_input_policy.hpp │ │ │ │ │ │ │ └── split_std_deque_policy.hpp │ │ │ │ │ │ ├── istream_iterator.hpp │ │ │ │ │ │ ├── line_pos_iterator.hpp │ │ │ │ │ │ ├── look_ahead.hpp │ │ │ │ │ │ ├── multi_pass.hpp │ │ │ │ │ │ ├── multi_pass_fwd.hpp │ │ │ │ │ │ └── ostream_iterator.hpp │ │ │ │ │ │ ├── lazy.hpp │ │ │ │ │ │ ├── limits.hpp │ │ │ │ │ │ ├── make_component.hpp │ │ │ │ │ │ ├── meta_compiler.hpp │ │ │ │ │ │ ├── modify.hpp │ │ │ │ │ │ ├── multi_pass.hpp │ │ │ │ │ │ ├── multi_pass_wrapper.hpp │ │ │ │ │ │ ├── nonterminal │ │ │ │ │ │ ├── expand_arg.hpp │ │ │ │ │ │ ├── extract_param.hpp │ │ │ │ │ │ └── locals.hpp │ │ │ │ │ │ ├── numeric_traits.hpp │ │ │ │ │ │ ├── sequence_base_id.hpp │ │ │ │ │ │ ├── string_traits.hpp │ │ │ │ │ │ ├── terminal.hpp │ │ │ │ │ │ ├── terminal_expression.hpp │ │ │ │ │ │ ├── unused.hpp │ │ │ │ │ │ ├── utf8.hpp │ │ │ │ │ │ ├── utree.hpp │ │ │ │ │ │ └── utree │ │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── utree_detail1.hpp │ │ │ │ │ │ └── utree_detail2.hpp │ │ │ │ │ │ ├── operators.hpp │ │ │ │ │ │ ├── utree.hpp │ │ │ │ │ │ ├── utree_traits.hpp │ │ │ │ │ │ └── utree_traits_fwd.hpp │ │ │ │ ├── include │ │ │ │ │ ├── classic.hpp │ │ │ │ │ ├── classic_actions.hpp │ │ │ │ │ ├── classic_actor.hpp │ │ │ │ │ ├── classic_alternative.hpp │ │ │ │ │ ├── classic_as_parser.hpp │ │ │ │ │ ├── classic_assert.hpp │ │ │ │ │ ├── classic_assign_actor.hpp │ │ │ │ │ ├── classic_assign_key_actor.hpp │ │ │ │ │ ├── classic_ast.hpp │ │ │ │ │ ├── classic_ast_fwd.hpp │ │ │ │ │ ├── classic_attribute.hpp │ │ │ │ │ ├── classic_basic_chset.hpp │ │ │ │ │ ├── classic_chset.hpp │ │ │ │ │ ├── classic_chset_operators.hpp │ │ │ │ │ ├── classic_clear_actor.hpp │ │ │ │ │ ├── classic_closure.hpp │ │ │ │ │ ├── classic_closure_context.hpp │ │ │ │ │ ├── classic_closure_fwd.hpp │ │ │ │ │ ├── classic_common.hpp │ │ │ │ │ ├── classic_common_fwd.hpp │ │ │ │ │ ├── classic_composite.hpp │ │ │ │ │ ├── classic_config.hpp │ │ │ │ │ ├── classic_confix.hpp │ │ │ │ │ ├── classic_confix_fwd.hpp │ │ │ │ │ ├── classic_core.hpp │ │ │ │ │ ├── classic_debug.hpp │ │ │ │ │ ├── classic_debug_node.hpp │ │ │ │ │ ├── classic_decrement_actor.hpp │ │ │ │ │ ├── classic_difference.hpp │ │ │ │ │ ├── classic_directives.hpp │ │ │ │ │ ├── classic_distinct.hpp │ │ │ │ │ ├── classic_distinct_fwd.hpp │ │ │ │ │ ├── classic_dynamic.hpp │ │ │ │ │ ├── classic_epsilon.hpp │ │ │ │ │ ├── classic_erase_actor.hpp │ │ │ │ │ ├── classic_error_handling.hpp │ │ │ │ │ ├── classic_escape_char.hpp │ │ │ │ │ ├── classic_escape_char_fwd.hpp │ │ │ │ │ ├── classic_exceptions.hpp │ │ │ │ │ ├── classic_exceptions_fwd.hpp │ │ │ │ │ ├── classic_exclusive_or.hpp │ │ │ │ │ ├── classic_file_iterator.hpp │ │ │ │ │ ├── classic_file_iterator_fwd.hpp │ │ │ │ │ ├── classic_fixed_size_queue.hpp │ │ │ │ │ ├── classic_flush_multi_pass.hpp │ │ │ │ │ ├── classic_for.hpp │ │ │ │ │ ├── classic_functor_parser.hpp │ │ │ │ │ ├── classic_fundamental.hpp │ │ │ │ │ ├── classic_grammar.hpp │ │ │ │ │ ├── classic_grammar_def.hpp │ │ │ │ │ ├── classic_grammar_def_fwd.hpp │ │ │ │ │ ├── classic_if.hpp │ │ │ │ │ ├── classic_increment_actor.hpp │ │ │ │ │ ├── classic_insert_at_actor.hpp │ │ │ │ │ ├── classic_insert_key_actor.hpp │ │ │ │ │ ├── classic_intersection.hpp │ │ │ │ │ ├── classic_iterator.hpp │ │ │ │ │ ├── classic_kleene_star.hpp │ │ │ │ │ ├── classic_lazy.hpp │ │ │ │ │ ├── classic_list.hpp │ │ │ │ │ ├── classic_lists.hpp │ │ │ │ │ ├── classic_lists_fwd.hpp │ │ │ │ │ ├── classic_loops.hpp │ │ │ │ │ ├── classic_match.hpp │ │ │ │ │ ├── classic_meta.hpp │ │ │ │ │ ├── classic_minimal.hpp │ │ │ │ │ ├── classic_multi_pass.hpp │ │ │ │ │ ├── classic_multi_pass_fwd.hpp │ │ │ │ │ ├── classic_nil.hpp │ │ │ │ │ ├── classic_no_actions.hpp │ │ │ │ │ ├── classic_numerics.hpp │ │ │ │ │ ├── classic_numerics_fwd.hpp │ │ │ │ │ ├── classic_operators.hpp │ │ │ │ │ ├── classic_optional.hpp │ │ │ │ │ ├── classic_parametric.hpp │ │ │ │ │ ├── classic_parse_tree.hpp │ │ │ │ │ ├── classic_parse_tree_fwd.hpp │ │ │ │ │ ├── classic_parse_tree_utils.hpp │ │ │ │ │ ├── classic_parser.hpp │ │ │ │ │ ├── classic_parser_context.hpp │ │ │ │ │ ├── classic_parser_id.hpp │ │ │ │ │ ├── classic_parser_names.hpp │ │ │ │ │ ├── classic_parser_traits.hpp │ │ │ │ │ ├── classic_position_iterator.hpp │ │ │ │ │ ├── classic_position_iterator_fwd.hpp │ │ │ │ │ ├── classic_positive.hpp │ │ │ │ │ ├── classic_primitives.hpp │ │ │ │ │ ├── classic_push_back_actor.hpp │ │ │ │ │ ├── classic_push_front_actor.hpp │ │ │ │ │ ├── classic_range_run.hpp │ │ │ │ │ ├── classic_ref_actor.hpp │ │ │ │ │ ├── classic_ref_const_ref_actor.hpp │ │ │ │ │ ├── classic_ref_const_ref_const_ref_a.hpp │ │ │ │ │ ├── classic_ref_const_ref_value_actor.hpp │ │ │ │ │ ├── classic_ref_value_actor.hpp │ │ │ │ │ ├── classic_refactoring.hpp │ │ │ │ │ ├── classic_regex.hpp │ │ │ │ │ ├── classic_rule.hpp │ │ │ │ │ ├── classic_rule_alias.hpp │ │ │ │ │ ├── classic_rule_parser.hpp │ │ │ │ │ ├── classic_safe_bool.hpp │ │ │ │ │ ├── classic_scanner.hpp │ │ │ │ │ ├── classic_scanner_fwd.hpp │ │ │ │ │ ├── classic_scoped_lock.hpp │ │ │ │ │ ├── classic_select.hpp │ │ │ │ │ ├── classic_sequence.hpp │ │ │ │ │ ├── classic_sequential_and.hpp │ │ │ │ │ ├── classic_sequential_or.hpp │ │ │ │ │ ├── classic_skipper.hpp │ │ │ │ │ ├── classic_skipper_fwd.hpp │ │ │ │ │ ├── classic_spirit.hpp │ │ │ │ │ ├── classic_static.hpp │ │ │ │ │ ├── classic_stored_rule.hpp │ │ │ │ │ ├── classic_stored_rule_fwd.hpp │ │ │ │ │ ├── classic_subrule.hpp │ │ │ │ │ ├── classic_subrule_fwd.hpp │ │ │ │ │ ├── classic_swap_actor.hpp │ │ │ │ │ ├── classic_switch.hpp │ │ │ │ │ ├── classic_symbols.hpp │ │ │ │ │ ├── classic_symbols_fwd.hpp │ │ │ │ │ ├── classic_traverse.hpp │ │ │ │ │ ├── classic_tree_to_xml.hpp │ │ │ │ │ ├── classic_typeof.hpp │ │ │ │ │ ├── classic_utility.hpp │ │ │ │ │ ├── classic_version.hpp │ │ │ │ │ ├── classic_while.hpp │ │ │ │ │ ├── karma.hpp │ │ │ │ │ ├── karma_action.hpp │ │ │ │ │ ├── karma_alternative.hpp │ │ │ │ │ ├── karma_and_predicate.hpp │ │ │ │ │ ├── karma_as.hpp │ │ │ │ │ ├── karma_attr_cast.hpp │ │ │ │ │ ├── karma_auto.hpp │ │ │ │ │ ├── karma_auxiliary.hpp │ │ │ │ │ ├── karma_binary.hpp │ │ │ │ │ ├── karma_bool.hpp │ │ │ │ │ ├── karma_buffer.hpp │ │ │ │ │ ├── karma_center_alignment.hpp │ │ │ │ │ ├── karma_char.hpp │ │ │ │ │ ├── karma_char_.hpp │ │ │ │ │ ├── karma_char_class.hpp │ │ │ │ │ ├── karma_columns.hpp │ │ │ │ │ ├── karma_delimit.hpp │ │ │ │ │ ├── karma_directive.hpp │ │ │ │ │ ├── karma_domain.hpp │ │ │ │ │ ├── karma_duplicate.hpp │ │ │ │ │ ├── karma_eol.hpp │ │ │ │ │ ├── karma_eps.hpp │ │ │ │ │ ├── karma_format.hpp │ │ │ │ │ ├── karma_format_attr.hpp │ │ │ │ │ ├── karma_format_auto.hpp │ │ │ │ │ ├── karma_generate.hpp │ │ │ │ │ ├── karma_generate_attr.hpp │ │ │ │ │ ├── karma_generate_auto.hpp │ │ │ │ │ ├── karma_grammar.hpp │ │ │ │ │ ├── karma_int.hpp │ │ │ │ │ ├── karma_kleene.hpp │ │ │ │ │ ├── karma_lazy.hpp │ │ │ │ │ ├── karma_left_alignment.hpp │ │ │ │ │ ├── karma_list.hpp │ │ │ │ │ ├── karma_maxwidth.hpp │ │ │ │ │ ├── karma_no_delimit.hpp │ │ │ │ │ ├── karma_nonterminal.hpp │ │ │ │ │ ├── karma_not_predicate.hpp │ │ │ │ │ ├── karma_numeric.hpp │ │ │ │ │ ├── karma_omit.hpp │ │ │ │ │ ├── karma_operator.hpp │ │ │ │ │ ├── karma_optional.hpp │ │ │ │ │ ├── karma_phoenix_attributes.hpp │ │ │ │ │ ├── karma_plus.hpp │ │ │ │ │ ├── karma_real.hpp │ │ │ │ │ ├── karma_repeat.hpp │ │ │ │ │ ├── karma_right_alignment.hpp │ │ │ │ │ ├── karma_rule.hpp │ │ │ │ │ ├── karma_sequence.hpp │ │ │ │ │ ├── karma_stream.hpp │ │ │ │ │ ├── karma_strict_relaxed.hpp │ │ │ │ │ ├── karma_string.hpp │ │ │ │ │ ├── karma_symbols.hpp │ │ │ │ │ ├── karma_uint.hpp │ │ │ │ │ ├── karma_upper_lower_case.hpp │ │ │ │ │ ├── karma_verbatim.hpp │ │ │ │ │ ├── karma_what.hpp │ │ │ │ │ ├── lex.hpp │ │ │ │ │ ├── lex_char_token_def.hpp │ │ │ │ │ ├── lex_domain.hpp │ │ │ │ │ ├── lex_generate_static_lexertl.hpp │ │ │ │ │ ├── lex_lexer.hpp │ │ │ │ │ ├── lex_lexertl.hpp │ │ │ │ │ ├── lex_lexertl_position_token.hpp │ │ │ │ │ ├── lex_lexertl_token.hpp │ │ │ │ │ ├── lex_plain_token.hpp │ │ │ │ │ ├── lex_primitives.hpp │ │ │ │ │ ├── lex_static_lexertl.hpp │ │ │ │ │ ├── lex_tokenize_and_parse.hpp │ │ │ │ │ ├── lex_tokenize_and_parse_attr.hpp │ │ │ │ │ ├── phoenix.hpp │ │ │ │ │ ├── phoenix1.hpp │ │ │ │ │ ├── phoenix1_actor.hpp │ │ │ │ │ ├── phoenix1_binders.hpp │ │ │ │ │ ├── phoenix1_casts.hpp │ │ │ │ │ ├── phoenix1_closures.hpp │ │ │ │ │ ├── phoenix1_composite.hpp │ │ │ │ │ ├── phoenix1_functions.hpp │ │ │ │ │ ├── phoenix1_new.hpp │ │ │ │ │ ├── phoenix1_operators.hpp │ │ │ │ │ ├── phoenix1_primitives.hpp │ │ │ │ │ ├── phoenix1_special_ops.hpp │ │ │ │ │ ├── phoenix1_statements.hpp │ │ │ │ │ ├── phoenix1_tuple_helpers.hpp │ │ │ │ │ ├── phoenix1_tuples.hpp │ │ │ │ │ ├── phoenix_algorithm.hpp │ │ │ │ │ ├── phoenix_bind.hpp │ │ │ │ │ ├── phoenix_container.hpp │ │ │ │ │ ├── phoenix_core.hpp │ │ │ │ │ ├── phoenix_function.hpp │ │ │ │ │ ├── phoenix_fusion.hpp │ │ │ │ │ ├── phoenix_limits.hpp │ │ │ │ │ ├── phoenix_object.hpp │ │ │ │ │ ├── phoenix_operator.hpp │ │ │ │ │ ├── phoenix_scope.hpp │ │ │ │ │ ├── phoenix_statement.hpp │ │ │ │ │ ├── phoenix_stl.hpp │ │ │ │ │ ├── phoenix_version.hpp │ │ │ │ │ ├── qi.hpp │ │ │ │ │ ├── qi_action.hpp │ │ │ │ │ ├── qi_alternative.hpp │ │ │ │ │ ├── qi_and_predicate.hpp │ │ │ │ │ ├── qi_as.hpp │ │ │ │ │ ├── qi_as_string.hpp │ │ │ │ │ ├── qi_attr.hpp │ │ │ │ │ ├── qi_attr_cast.hpp │ │ │ │ │ ├── qi_auto.hpp │ │ │ │ │ ├── qi_auxiliary.hpp │ │ │ │ │ ├── qi_binary.hpp │ │ │ │ │ ├── qi_bool.hpp │ │ │ │ │ ├── qi_char.hpp │ │ │ │ │ ├── qi_char_.hpp │ │ │ │ │ ├── qi_char_class.hpp │ │ │ │ │ ├── qi_core.hpp │ │ │ │ │ ├── qi_difference.hpp │ │ │ │ │ ├── qi_directive.hpp │ │ │ │ │ ├── qi_domain.hpp │ │ │ │ │ ├── qi_eoi.hpp │ │ │ │ │ ├── qi_eol.hpp │ │ │ │ │ ├── qi_eps.hpp │ │ │ │ │ ├── qi_expect.hpp │ │ │ │ │ ├── qi_grammar.hpp │ │ │ │ │ ├── qi_hold.hpp │ │ │ │ │ ├── qi_int.hpp │ │ │ │ │ ├── qi_kleene.hpp │ │ │ │ │ ├── qi_lazy.hpp │ │ │ │ │ ├── qi_lexeme.hpp │ │ │ │ │ ├── qi_list.hpp │ │ │ │ │ ├── qi_lit.hpp │ │ │ │ │ ├── qi_match.hpp │ │ │ │ │ ├── qi_match_attr.hpp │ │ │ │ │ ├── qi_match_auto.hpp │ │ │ │ │ ├── qi_matches.hpp │ │ │ │ │ ├── qi_no_case.hpp │ │ │ │ │ ├── qi_no_skip.hpp │ │ │ │ │ ├── qi_nonterminal.hpp │ │ │ │ │ ├── qi_not_predicate.hpp │ │ │ │ │ ├── qi_numeric.hpp │ │ │ │ │ ├── qi_omit.hpp │ │ │ │ │ ├── qi_operator.hpp │ │ │ │ │ ├── qi_optional.hpp │ │ │ │ │ ├── qi_parse.hpp │ │ │ │ │ ├── qi_parse_attr.hpp │ │ │ │ │ ├── qi_parse_auto.hpp │ │ │ │ │ ├── qi_permutation.hpp │ │ │ │ │ ├── qi_plus.hpp │ │ │ │ │ ├── qi_raw.hpp │ │ │ │ │ ├── qi_real.hpp │ │ │ │ │ ├── qi_repeat.hpp │ │ │ │ │ ├── qi_rule.hpp │ │ │ │ │ ├── qi_sequence.hpp │ │ │ │ │ ├── qi_sequential_or.hpp │ │ │ │ │ ├── qi_skip.hpp │ │ │ │ │ ├── qi_stream.hpp │ │ │ │ │ ├── qi_string.hpp │ │ │ │ │ ├── qi_symbols.hpp │ │ │ │ │ ├── qi_uint.hpp │ │ │ │ │ ├── qi_what.hpp │ │ │ │ │ ├── support.hpp │ │ │ │ │ ├── support_adapt_adt_attributes.hpp │ │ │ │ │ ├── support_any.hpp │ │ │ │ │ ├── support_any_if.hpp │ │ │ │ │ ├── support_any_if_ns.hpp │ │ │ │ │ ├── support_any_ns.hpp │ │ │ │ │ ├── support_argument.hpp │ │ │ │ │ ├── support_ascii.hpp │ │ │ │ │ ├── support_attributes.hpp │ │ │ │ │ ├── support_attributes_fwd.hpp │ │ │ │ │ ├── support_char_class.hpp │ │ │ │ │ ├── support_container.hpp │ │ │ │ │ ├── support_extended_variant.hpp │ │ │ │ │ ├── support_info.hpp │ │ │ │ │ ├── support_iso8859_1.hpp │ │ │ │ │ ├── support_istream_iterator.hpp │ │ │ │ │ ├── support_line_pos_iterator.hpp │ │ │ │ │ ├── support_locals.hpp │ │ │ │ │ ├── support_look_ahead.hpp │ │ │ │ │ ├── support_modify.hpp │ │ │ │ │ ├── support_multi_pass.hpp │ │ │ │ │ ├── support_multi_pass_fwd.hpp │ │ │ │ │ ├── support_ostream_iterator.hpp │ │ │ │ │ ├── support_standard.hpp │ │ │ │ │ ├── support_standard_wide.hpp │ │ │ │ │ ├── support_string_traits.hpp │ │ │ │ │ ├── support_unused.hpp │ │ │ │ │ ├── support_utree.hpp │ │ │ │ │ └── version.hpp │ │ │ │ ├── repository │ │ │ │ │ ├── home │ │ │ │ │ │ ├── karma.hpp │ │ │ │ │ │ ├── karma │ │ │ │ │ │ │ ├── directive.hpp │ │ │ │ │ │ │ ├── directive │ │ │ │ │ │ │ │ └── confix.hpp │ │ │ │ │ │ │ ├── nonterminal.hpp │ │ │ │ │ │ │ └── nonterminal │ │ │ │ │ │ │ │ └── subrule.hpp │ │ │ │ │ │ ├── qi.hpp │ │ │ │ │ │ ├── qi │ │ │ │ │ │ │ ├── directive.hpp │ │ │ │ │ │ │ ├── directive │ │ │ │ │ │ │ │ ├── confix.hpp │ │ │ │ │ │ │ │ ├── distinct.hpp │ │ │ │ │ │ │ │ ├── kwd.hpp │ │ │ │ │ │ │ │ └── seek.hpp │ │ │ │ │ │ │ ├── nonterminal.hpp │ │ │ │ │ │ │ ├── nonterminal │ │ │ │ │ │ │ │ └── subrule.hpp │ │ │ │ │ │ │ ├── operator.hpp │ │ │ │ │ │ │ ├── operator │ │ │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ │ │ └── keywords.hpp │ │ │ │ │ │ │ │ └── keywords.hpp │ │ │ │ │ │ │ ├── primitive.hpp │ │ │ │ │ │ │ └── primitive │ │ │ │ │ │ │ │ ├── advance.hpp │ │ │ │ │ │ │ │ ├── flush_multi_pass.hpp │ │ │ │ │ │ │ │ └── iter_pos.hpp │ │ │ │ │ │ └── support │ │ │ │ │ │ │ ├── confix.hpp │ │ │ │ │ │ │ ├── distinct.hpp │ │ │ │ │ │ │ ├── flush_multi_pass.hpp │ │ │ │ │ │ │ ├── kwd.hpp │ │ │ │ │ │ │ ├── seek.hpp │ │ │ │ │ │ │ └── subrule_context.hpp │ │ │ │ │ └── include │ │ │ │ │ │ ├── karma.hpp │ │ │ │ │ │ ├── karma_confix.hpp │ │ │ │ │ │ ├── karma_directive.hpp │ │ │ │ │ │ ├── karma_nonterminal.hpp │ │ │ │ │ │ ├── karma_subrule.hpp │ │ │ │ │ │ ├── qi.hpp │ │ │ │ │ │ ├── qi_advance.hpp │ │ │ │ │ │ ├── qi_confix.hpp │ │ │ │ │ │ ├── qi_directive.hpp │ │ │ │ │ │ ├── qi_distinct.hpp │ │ │ │ │ │ ├── qi_flush_multi_pass.hpp │ │ │ │ │ │ ├── qi_iter_pos.hpp │ │ │ │ │ │ ├── qi_keywords.hpp │ │ │ │ │ │ ├── qi_kwd.hpp │ │ │ │ │ │ ├── qi_nonterminal.hpp │ │ │ │ │ │ ├── qi_primitive.hpp │ │ │ │ │ │ ├── qi_seek.hpp │ │ │ │ │ │ └── qi_subrule.hpp │ │ │ │ └── version.hpp │ │ │ ├── statechart │ │ │ │ ├── asynchronous_state_machine.hpp │ │ │ │ ├── custom_reaction.hpp │ │ │ │ ├── deep_history.hpp │ │ │ │ ├── deferral.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── avoid_unused_warning.hpp │ │ │ │ │ ├── constructor.hpp │ │ │ │ │ ├── counted_base.hpp │ │ │ │ │ ├── leaf_state.hpp │ │ │ │ │ ├── memory.hpp │ │ │ │ │ ├── node_state.hpp │ │ │ │ │ ├── reaction_dispatcher.hpp │ │ │ │ │ ├── rtti_policy.hpp │ │ │ │ │ └── state_base.hpp │ │ │ │ ├── event.hpp │ │ │ │ ├── event_base.hpp │ │ │ │ ├── event_processor.hpp │ │ │ │ ├── exception_translator.hpp │ │ │ │ ├── fifo_scheduler.hpp │ │ │ │ ├── fifo_worker.hpp │ │ │ │ ├── history.hpp │ │ │ │ ├── in_state_reaction.hpp │ │ │ │ ├── null_exception_translator.hpp │ │ │ │ ├── processor_container.hpp │ │ │ │ ├── result.hpp │ │ │ │ ├── shallow_history.hpp │ │ │ │ ├── simple_state.hpp │ │ │ │ ├── state.hpp │ │ │ │ ├── state_machine.hpp │ │ │ │ ├── termination.hpp │ │ │ │ └── transition.hpp │ │ │ ├── static_assert.hpp │ │ │ ├── strong_typedef.hpp │ │ │ ├── swap.hpp │ │ │ ├── system │ │ │ │ ├── api_config.hpp │ │ │ │ ├── config.hpp │ │ │ │ ├── cygwin_error.hpp │ │ │ │ ├── error_code.hpp │ │ │ │ ├── linux_error.hpp │ │ │ │ ├── system_error.hpp │ │ │ │ └── windows_error.hpp │ │ │ ├── test │ │ │ │ ├── auto_unit_test.hpp │ │ │ │ ├── debug.hpp │ │ │ │ ├── debug_config.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── config.hpp │ │ │ │ │ ├── enable_warnings.hpp │ │ │ │ │ ├── fwd_decl.hpp │ │ │ │ │ ├── global_typedef.hpp │ │ │ │ │ ├── log_level.hpp │ │ │ │ │ ├── suppress_warnings.hpp │ │ │ │ │ ├── unit_test_parameters.hpp │ │ │ │ │ └── workaround.hpp │ │ │ │ ├── exception_safety.hpp │ │ │ │ ├── execution_monitor.hpp │ │ │ │ ├── floating_point_comparison.hpp │ │ │ │ ├── framework.hpp │ │ │ │ ├── impl │ │ │ │ │ ├── compiler_log_formatter.ipp │ │ │ │ │ ├── cpp_main.ipp │ │ │ │ │ ├── debug.ipp │ │ │ │ │ ├── exception_safety.ipp │ │ │ │ │ ├── execution_monitor.ipp │ │ │ │ │ ├── framework.ipp │ │ │ │ │ ├── interaction_based.ipp │ │ │ │ │ ├── logged_expectations.ipp │ │ │ │ │ ├── plain_report_formatter.ipp │ │ │ │ │ ├── progress_monitor.ipp │ │ │ │ │ ├── results_collector.ipp │ │ │ │ │ ├── results_reporter.ipp │ │ │ │ │ ├── test_main.ipp │ │ │ │ │ ├── test_tools.ipp │ │ │ │ │ ├── unit_test_log.ipp │ │ │ │ │ ├── unit_test_main.ipp │ │ │ │ │ ├── unit_test_monitor.ipp │ │ │ │ │ ├── unit_test_parameters.ipp │ │ │ │ │ ├── unit_test_suite.ipp │ │ │ │ │ ├── xml_log_formatter.ipp │ │ │ │ │ └── xml_report_formatter.ipp │ │ │ │ ├── included │ │ │ │ │ ├── prg_exec_monitor.hpp │ │ │ │ │ ├── test_exec_monitor.hpp │ │ │ │ │ ├── unit_test.hpp │ │ │ │ │ └── unit_test_framework.hpp │ │ │ │ ├── interaction_based.hpp │ │ │ │ ├── logged_expectations.hpp │ │ │ │ ├── minimal.hpp │ │ │ │ ├── mock_object.hpp │ │ │ │ ├── output │ │ │ │ │ ├── compiler_log_formatter.hpp │ │ │ │ │ ├── plain_report_formatter.hpp │ │ │ │ │ ├── xml_log_formatter.hpp │ │ │ │ │ └── xml_report_formatter.hpp │ │ │ │ ├── output_test_stream.hpp │ │ │ │ ├── parameterized_test.hpp │ │ │ │ ├── predicate_result.hpp │ │ │ │ ├── prg_exec_monitor.hpp │ │ │ │ ├── progress_monitor.hpp │ │ │ │ ├── results_collector.hpp │ │ │ │ ├── results_reporter.hpp │ │ │ │ ├── test_case_template.hpp │ │ │ │ ├── test_exec_monitor.hpp │ │ │ │ ├── test_observer.hpp │ │ │ │ ├── test_tools.hpp │ │ │ │ ├── unit_test.hpp │ │ │ │ ├── unit_test_log.hpp │ │ │ │ ├── unit_test_log_formatter.hpp │ │ │ │ ├── unit_test_monitor.hpp │ │ │ │ ├── unit_test_suite.hpp │ │ │ │ ├── unit_test_suite_impl.hpp │ │ │ │ └── utils │ │ │ │ │ ├── algorithm.hpp │ │ │ │ │ ├── assign_op.hpp │ │ │ │ │ ├── basic_cstring │ │ │ │ │ ├── basic_cstring.hpp │ │ │ │ │ ├── basic_cstring_fwd.hpp │ │ │ │ │ ├── bcs_char_traits.hpp │ │ │ │ │ ├── compare.hpp │ │ │ │ │ └── io.hpp │ │ │ │ │ ├── callback.hpp │ │ │ │ │ ├── class_properties.hpp │ │ │ │ │ ├── custom_manip.hpp │ │ │ │ │ ├── fixed_mapping.hpp │ │ │ │ │ ├── foreach.hpp │ │ │ │ │ ├── iterator │ │ │ │ │ ├── ifstream_line_iterator.hpp │ │ │ │ │ ├── input_iterator_facade.hpp │ │ │ │ │ ├── istream_line_iterator.hpp │ │ │ │ │ └── token_iterator.hpp │ │ │ │ │ ├── lazy_ostream.hpp │ │ │ │ │ ├── named_params.hpp │ │ │ │ │ ├── nullstream.hpp │ │ │ │ │ ├── rtti.hpp │ │ │ │ │ ├── runtime │ │ │ │ │ ├── argument.hpp │ │ │ │ │ ├── cla │ │ │ │ │ │ ├── argument_factory.hpp │ │ │ │ │ │ ├── argv_traverser.cpp │ │ │ │ │ │ ├── argv_traverser.hpp │ │ │ │ │ │ ├── argv_traverser.ipp │ │ │ │ │ │ ├── basic_parameter.hpp │ │ │ │ │ │ ├── char_parameter.cpp │ │ │ │ │ │ ├── char_parameter.hpp │ │ │ │ │ │ ├── char_parameter.ipp │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ └── argument_value_usage.hpp │ │ │ │ │ │ ├── dual_name_parameter.cpp │ │ │ │ │ │ ├── dual_name_parameter.hpp │ │ │ │ │ │ ├── dual_name_parameter.ipp │ │ │ │ │ │ ├── fwd.hpp │ │ │ │ │ │ ├── id_policy.cpp │ │ │ │ │ │ ├── id_policy.hpp │ │ │ │ │ │ ├── id_policy.ipp │ │ │ │ │ │ ├── iface │ │ │ │ │ │ │ ├── argument_factory.hpp │ │ │ │ │ │ │ └── id_policy.hpp │ │ │ │ │ │ ├── modifier.hpp │ │ │ │ │ │ ├── named_parameter.cpp │ │ │ │ │ │ ├── named_parameter.hpp │ │ │ │ │ │ ├── named_parameter.ipp │ │ │ │ │ │ ├── parameter.hpp │ │ │ │ │ │ ├── parser.cpp │ │ │ │ │ │ ├── parser.hpp │ │ │ │ │ │ ├── parser.ipp │ │ │ │ │ │ ├── positional_parameter.hpp │ │ │ │ │ │ ├── typed_parameter.hpp │ │ │ │ │ │ ├── validation.cpp │ │ │ │ │ │ ├── validation.hpp │ │ │ │ │ │ ├── validation.ipp │ │ │ │ │ │ ├── value_generator.hpp │ │ │ │ │ │ └── value_handler.hpp │ │ │ │ │ ├── config.hpp │ │ │ │ │ ├── configuration.hpp │ │ │ │ │ ├── env │ │ │ │ │ │ ├── environment.cpp │ │ │ │ │ │ ├── environment.hpp │ │ │ │ │ │ ├── environment.ipp │ │ │ │ │ │ ├── fwd.hpp │ │ │ │ │ │ ├── modifier.hpp │ │ │ │ │ │ └── variable.hpp │ │ │ │ │ ├── file │ │ │ │ │ │ ├── config_file.cpp │ │ │ │ │ │ ├── config_file.hpp │ │ │ │ │ │ ├── config_file_iterator.cpp │ │ │ │ │ │ └── config_file_iterator.hpp │ │ │ │ │ ├── fwd.hpp │ │ │ │ │ ├── interpret_argument_value.hpp │ │ │ │ │ ├── parameter.hpp │ │ │ │ │ ├── trace.hpp │ │ │ │ │ └── validation.hpp │ │ │ │ │ ├── trivial_singleton.hpp │ │ │ │ │ ├── wrap_stringstream.hpp │ │ │ │ │ └── xml_printer.hpp │ │ │ ├── thread.hpp │ │ │ ├── thread │ │ │ │ ├── barrier.hpp │ │ │ │ ├── completion_latch.hpp │ │ │ │ ├── condition.hpp │ │ │ │ ├── condition_variable.hpp │ │ │ │ ├── cv_status.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── async_func.hpp │ │ │ │ │ ├── config.hpp │ │ │ │ │ ├── counter.hpp │ │ │ │ │ ├── delete.hpp │ │ │ │ │ ├── force_cast.hpp │ │ │ │ │ ├── invoke.hpp │ │ │ │ │ ├── is_convertible.hpp │ │ │ │ │ ├── lockable_wrapper.hpp │ │ │ │ │ ├── log.hpp │ │ │ │ │ ├── make_tuple_indices.hpp │ │ │ │ │ ├── memory.hpp │ │ │ │ │ ├── move.hpp │ │ │ │ │ ├── platform.hpp │ │ │ │ │ ├── singleton.hpp │ │ │ │ │ ├── thread.hpp │ │ │ │ │ ├── thread_group.hpp │ │ │ │ │ ├── thread_heap_alloc.hpp │ │ │ │ │ ├── thread_interruption.hpp │ │ │ │ │ └── tss_hooks.hpp │ │ │ │ ├── exceptions.hpp │ │ │ │ ├── externally_locked.hpp │ │ │ │ ├── externally_locked_stream.hpp │ │ │ │ ├── future.hpp │ │ │ │ ├── future_error_code.hpp │ │ │ │ ├── is_locked_by_this_thread.hpp │ │ │ │ ├── latch.hpp │ │ │ │ ├── lock_algorithms.hpp │ │ │ │ ├── lock_concepts.hpp │ │ │ │ ├── lock_factories.hpp │ │ │ │ ├── lock_guard.hpp │ │ │ │ ├── lock_options.hpp │ │ │ │ ├── lock_traits.hpp │ │ │ │ ├── lock_types.hpp │ │ │ │ ├── lockable_adapter.hpp │ │ │ │ ├── lockable_concepts.hpp │ │ │ │ ├── lockable_traits.hpp │ │ │ │ ├── locks.hpp │ │ │ │ ├── mutex.hpp │ │ │ │ ├── null_mutex.hpp │ │ │ │ ├── once.hpp │ │ │ │ ├── poly_lockable.hpp │ │ │ │ ├── poly_lockable_adapter.hpp │ │ │ │ ├── poly_shared_lockable.hpp │ │ │ │ ├── poly_shared_lockable_adapter.hpp │ │ │ │ ├── pthread │ │ │ │ │ ├── condition_variable.hpp │ │ │ │ │ ├── condition_variable_fwd.hpp │ │ │ │ │ ├── mutex.hpp │ │ │ │ │ ├── once.hpp │ │ │ │ │ ├── once_atomic.hpp │ │ │ │ │ ├── pthread_mutex_scoped_lock.hpp │ │ │ │ │ ├── recursive_mutex.hpp │ │ │ │ │ ├── shared_mutex.hpp │ │ │ │ │ ├── shared_mutex_assert.hpp │ │ │ │ │ ├── thread_data.hpp │ │ │ │ │ ├── thread_heap_alloc.hpp │ │ │ │ │ └── timespec.hpp │ │ │ │ ├── recursive_mutex.hpp │ │ │ │ ├── reverse_lock.hpp │ │ │ │ ├── scoped_thread.hpp │ │ │ │ ├── shared_lock_guard.hpp │ │ │ │ ├── shared_mutex.hpp │ │ │ │ ├── strict_lock.hpp │ │ │ │ ├── sync_bounded_queue.hpp │ │ │ │ ├── sync_queue.hpp │ │ │ │ ├── synchronized_value.hpp │ │ │ │ ├── testable_mutex.hpp │ │ │ │ ├── thread.hpp │ │ │ │ ├── thread_functors.hpp │ │ │ │ ├── thread_guard.hpp │ │ │ │ ├── thread_only.hpp │ │ │ │ ├── thread_time.hpp │ │ │ │ ├── tss.hpp │ │ │ │ ├── v2 │ │ │ │ │ ├── shared_mutex.hpp │ │ │ │ │ └── thread.hpp │ │ │ │ ├── win32 │ │ │ │ │ ├── basic_recursive_mutex.hpp │ │ │ │ │ ├── basic_timed_mutex.hpp │ │ │ │ │ ├── condition_variable.hpp │ │ │ │ │ ├── interlocked_read.hpp │ │ │ │ │ ├── mfc_thread_init.hpp │ │ │ │ │ ├── mutex.hpp │ │ │ │ │ ├── once.hpp │ │ │ │ │ ├── recursive_mutex.hpp │ │ │ │ │ ├── shared_mutex.hpp │ │ │ │ │ ├── thread_data.hpp │ │ │ │ │ ├── thread_heap_alloc.hpp │ │ │ │ │ └── thread_primitives.hpp │ │ │ │ └── xtime.hpp │ │ │ ├── throw_exception.hpp │ │ │ ├── timer.hpp │ │ │ ├── timer │ │ │ │ ├── config.hpp │ │ │ │ └── timer.hpp │ │ │ ├── token_functions.hpp │ │ │ ├── token_iterator.hpp │ │ │ ├── tokenizer.hpp │ │ │ ├── tr1 │ │ │ │ ├── array.hpp │ │ │ │ ├── cmath.hpp │ │ │ │ ├── complex.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── config.hpp │ │ │ │ │ ├── config_all.hpp │ │ │ │ │ ├── functor2iterator.hpp │ │ │ │ │ └── math_overloads.hpp │ │ │ │ ├── functional.hpp │ │ │ │ ├── memory.hpp │ │ │ │ ├── random.hpp │ │ │ │ ├── regex.hpp │ │ │ │ ├── tr1 │ │ │ │ │ ├── algorithm │ │ │ │ │ ├── array │ │ │ │ │ ├── bcc32 │ │ │ │ │ │ ├── array.h │ │ │ │ │ │ ├── random.h │ │ │ │ │ │ ├── regex.h │ │ │ │ │ │ ├── tuple.h │ │ │ │ │ │ ├── type_tra.h │ │ │ │ │ │ └── unordere.h │ │ │ │ │ ├── bitset │ │ │ │ │ ├── cmath │ │ │ │ │ ├── complex │ │ │ │ │ ├── deque │ │ │ │ │ ├── exception │ │ │ │ │ ├── fstream │ │ │ │ │ ├── functional │ │ │ │ │ ├── iomanip │ │ │ │ │ ├── ios │ │ │ │ │ ├── iostream │ │ │ │ │ ├── istream │ │ │ │ │ ├── iterator │ │ │ │ │ ├── limits │ │ │ │ │ ├── list │ │ │ │ │ ├── locale │ │ │ │ │ ├── map │ │ │ │ │ ├── memory │ │ │ │ │ ├── new │ │ │ │ │ ├── numeric │ │ │ │ │ ├── ostream │ │ │ │ │ ├── queue │ │ │ │ │ ├── random │ │ │ │ │ ├── regex │ │ │ │ │ ├── set │ │ │ │ │ ├── sstream │ │ │ │ │ ├── stack │ │ │ │ │ ├── stdexcept │ │ │ │ │ ├── streambuf │ │ │ │ │ ├── string │ │ │ │ │ ├── strstream │ │ │ │ │ ├── sun │ │ │ │ │ │ ├── algorithm.SUNWCCh │ │ │ │ │ │ ├── array.SUNWCCh │ │ │ │ │ │ ├── bcc32.SUNWCCh │ │ │ │ │ │ ├── bitset.SUNWCCh │ │ │ │ │ │ ├── cmath.SUNWCCh │ │ │ │ │ │ ├── complex.SUNWCCh │ │ │ │ │ │ ├── deque.SUNWCCh │ │ │ │ │ │ ├── exception.SUNWCCh │ │ │ │ │ │ ├── fstream.SUNWCCh │ │ │ │ │ │ ├── functional.SUNWCCh │ │ │ │ │ │ ├── iomanip.SUNWCCh │ │ │ │ │ │ ├── ios.SUNWCCh │ │ │ │ │ │ ├── iostream.SUNWCCh │ │ │ │ │ │ ├── istream.SUNWCCh │ │ │ │ │ │ ├── iterator.SUNWCCh │ │ │ │ │ │ ├── limits.SUNWCCh │ │ │ │ │ │ ├── list.SUNWCCh │ │ │ │ │ │ ├── locale.SUNWCCh │ │ │ │ │ │ ├── map.SUNWCCh │ │ │ │ │ │ ├── memory.SUNWCCh │ │ │ │ │ │ ├── new.SUNWCCh │ │ │ │ │ │ ├── numeric.SUNWCCh │ │ │ │ │ │ ├── ostream.SUNWCCh │ │ │ │ │ │ ├── queue.SUNWCCh │ │ │ │ │ │ ├── random.SUNWCCh │ │ │ │ │ │ ├── regex.SUNWCCh │ │ │ │ │ │ ├── set.SUNWCCh │ │ │ │ │ │ ├── sstream.SUNWCCh │ │ │ │ │ │ ├── stack.SUNWCCh │ │ │ │ │ │ ├── stdexcept.SUNWCCh │ │ │ │ │ │ ├── streambuf.SUNWCCh │ │ │ │ │ │ ├── string.SUNWCCh │ │ │ │ │ │ ├── strstream.SUNWCCh │ │ │ │ │ │ ├── sun.SUNWCCh │ │ │ │ │ │ ├── tuple.SUNWCCh │ │ │ │ │ │ ├── type_traits.SUNWCCh │ │ │ │ │ │ ├── typeinfo.SUNWCCh │ │ │ │ │ │ ├── unordered_map.SUNWCCh │ │ │ │ │ │ ├── unordered_set.SUNWCCh │ │ │ │ │ │ ├── utility.SUNWCCh │ │ │ │ │ │ ├── valarray.SUNWCCh │ │ │ │ │ │ └── vector.SUNWCCh │ │ │ │ │ ├── tuple │ │ │ │ │ ├── type_traits │ │ │ │ │ ├── typeinfo │ │ │ │ │ ├── unordered_map │ │ │ │ │ ├── unordered_set │ │ │ │ │ ├── utility │ │ │ │ │ ├── valarray │ │ │ │ │ └── vector │ │ │ │ ├── tuple.hpp │ │ │ │ ├── type_traits.hpp │ │ │ │ ├── unordered_map.hpp │ │ │ │ ├── unordered_set.hpp │ │ │ │ └── utility.hpp │ │ │ ├── tti │ │ │ │ ├── detail │ │ │ │ │ ├── dcomp_mem_fun.hpp │ │ │ │ │ ├── dcomp_static_mem_fun.hpp │ │ │ │ │ ├── ddata.hpp │ │ │ │ │ ├── ddeftype.hpp │ │ │ │ │ ├── dftclass.hpp │ │ │ │ │ ├── dfunction.hpp │ │ │ │ │ ├── dlambda.hpp │ │ │ │ │ ├── dmem_data.hpp │ │ │ │ │ ├── dmem_fun.hpp │ │ │ │ │ ├── dmem_type.hpp │ │ │ │ │ ├── dmetafunc.hpp │ │ │ │ │ ├── dnotype.hpp │ │ │ │ │ ├── dnullptr.hpp │ │ │ │ │ ├── dplaceholder.hpp │ │ │ │ │ ├── dptmf.hpp │ │ │ │ │ ├── dstatic_mem_data.hpp │ │ │ │ │ ├── dstatic_mem_fun.hpp │ │ │ │ │ ├── dtclass.hpp │ │ │ │ │ ├── dtemplate.hpp │ │ │ │ │ ├── dtemplate_params.hpp │ │ │ │ │ ├── dtfunction.hpp │ │ │ │ │ ├── dtype.hpp │ │ │ │ │ └── dvm_template_params.hpp │ │ │ │ ├── gen │ │ │ │ │ ├── has_data_gen.hpp │ │ │ │ │ ├── has_function_gen.hpp │ │ │ │ │ ├── has_member_data_gen.hpp │ │ │ │ │ ├── has_member_function_gen.hpp │ │ │ │ │ ├── has_static_member_data_gen.hpp │ │ │ │ │ ├── has_static_member_function_gen.hpp │ │ │ │ │ ├── has_template_gen.hpp │ │ │ │ │ ├── has_type_gen.hpp │ │ │ │ │ ├── member_type_gen.hpp │ │ │ │ │ └── namespace_gen.hpp │ │ │ │ ├── has_data.hpp │ │ │ │ ├── has_function.hpp │ │ │ │ ├── has_member_data.hpp │ │ │ │ ├── has_member_function.hpp │ │ │ │ ├── has_static_member_data.hpp │ │ │ │ ├── has_static_member_function.hpp │ │ │ │ ├── has_template.hpp │ │ │ │ ├── has_type.hpp │ │ │ │ ├── member_type.hpp │ │ │ │ └── tti.hpp │ │ │ ├── tuple │ │ │ │ ├── detail │ │ │ │ │ ├── tuple_basic.hpp │ │ │ │ │ └── tuple_basic_no_partial_spec.hpp │ │ │ │ ├── tuple.hpp │ │ │ │ ├── tuple_comparison.hpp │ │ │ │ └── tuple_io.hpp │ │ │ ├── type.hpp │ │ │ ├── type_erasure │ │ │ │ ├── any.hpp │ │ │ │ ├── any_cast.hpp │ │ │ │ ├── binding.hpp │ │ │ │ ├── binding_of.hpp │ │ │ │ ├── builtin.hpp │ │ │ │ ├── call.hpp │ │ │ │ ├── callable.hpp │ │ │ │ ├── check_match.hpp │ │ │ │ ├── concept_interface.hpp │ │ │ │ ├── concept_of.hpp │ │ │ │ ├── config.hpp │ │ │ │ ├── constructible.hpp │ │ │ │ ├── deduced.hpp │ │ │ │ ├── derived.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── access.hpp │ │ │ │ │ ├── adapt_to_vtable.hpp │ │ │ │ │ ├── any_base.hpp │ │ │ │ │ ├── check_call.hpp │ │ │ │ │ ├── check_map.hpp │ │ │ │ │ ├── const.hpp │ │ │ │ │ ├── construct.hpp │ │ │ │ │ ├── extract_concept.hpp │ │ │ │ │ ├── get_placeholders.hpp │ │ │ │ │ ├── get_signature.hpp │ │ │ │ │ ├── instantiate.hpp │ │ │ │ │ ├── macro.hpp │ │ │ │ │ ├── normalize.hpp │ │ │ │ │ ├── normalize_deduced.hpp │ │ │ │ │ ├── null.hpp │ │ │ │ │ ├── rebind_placeholders.hpp │ │ │ │ │ ├── storage.hpp │ │ │ │ │ └── vtable.hpp │ │ │ │ ├── exception.hpp │ │ │ │ ├── free.hpp │ │ │ │ ├── is_empty.hpp │ │ │ │ ├── is_placeholder.hpp │ │ │ │ ├── is_subconcept.hpp │ │ │ │ ├── iterator.hpp │ │ │ │ ├── member.hpp │ │ │ │ ├── operators.hpp │ │ │ │ ├── param.hpp │ │ │ │ ├── placeholder.hpp │ │ │ │ ├── placeholder_of.hpp │ │ │ │ ├── rebind_any.hpp │ │ │ │ ├── relaxed.hpp │ │ │ │ ├── require_match.hpp │ │ │ │ ├── same_type.hpp │ │ │ │ ├── static_binding.hpp │ │ │ │ ├── tuple.hpp │ │ │ │ └── typeid_of.hpp │ │ │ ├── type_traits.hpp │ │ │ ├── type_traits │ │ │ │ ├── add_const.hpp │ │ │ │ ├── add_cv.hpp │ │ │ │ ├── add_lvalue_reference.hpp │ │ │ │ ├── add_pointer.hpp │ │ │ │ ├── add_reference.hpp │ │ │ │ ├── add_rvalue_reference.hpp │ │ │ │ ├── add_volatile.hpp │ │ │ │ ├── aligned_storage.hpp │ │ │ │ ├── alignment_of.hpp │ │ │ │ ├── alignment_traits.hpp │ │ │ │ ├── arithmetic_traits.hpp │ │ │ │ ├── array_traits.hpp │ │ │ │ ├── broken_compiler_spec.hpp │ │ │ │ ├── common_type.hpp │ │ │ │ ├── composite_traits.hpp │ │ │ │ ├── conditional.hpp │ │ │ │ ├── config.hpp │ │ │ │ ├── conversion_traits.hpp │ │ │ │ ├── cv_traits.hpp │ │ │ │ ├── decay.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── bool_trait_def.hpp │ │ │ │ │ ├── bool_trait_undef.hpp │ │ │ │ │ ├── common_type_imp.hpp │ │ │ │ │ ├── cv_traits_impl.hpp │ │ │ │ │ ├── false_result.hpp │ │ │ │ │ ├── has_binary_operator.hpp │ │ │ │ │ ├── has_postfix_operator.hpp │ │ │ │ │ ├── has_prefix_operator.hpp │ │ │ │ │ ├── ice_and.hpp │ │ │ │ │ ├── ice_eq.hpp │ │ │ │ │ ├── ice_not.hpp │ │ │ │ │ ├── ice_or.hpp │ │ │ │ │ ├── is_function_ptr_helper.hpp │ │ │ │ │ ├── is_function_ptr_tester.hpp │ │ │ │ │ ├── is_mem_fun_pointer_impl.hpp │ │ │ │ │ ├── is_mem_fun_pointer_tester.hpp │ │ │ │ │ ├── size_t_trait_def.hpp │ │ │ │ │ ├── size_t_trait_undef.hpp │ │ │ │ │ ├── template_arity_spec.hpp │ │ │ │ │ ├── type_trait_def.hpp │ │ │ │ │ ├── type_trait_undef.hpp │ │ │ │ │ ├── wrap.hpp │ │ │ │ │ └── yes_no_type.hpp │ │ │ │ ├── extent.hpp │ │ │ │ ├── floating_point_promotion.hpp │ │ │ │ ├── function_traits.hpp │ │ │ │ ├── has_bit_and.hpp │ │ │ │ ├── has_bit_and_assign.hpp │ │ │ │ ├── has_bit_or.hpp │ │ │ │ ├── has_bit_or_assign.hpp │ │ │ │ ├── has_bit_xor.hpp │ │ │ │ ├── has_bit_xor_assign.hpp │ │ │ │ ├── has_complement.hpp │ │ │ │ ├── has_dereference.hpp │ │ │ │ ├── has_divides.hpp │ │ │ │ ├── has_divides_assign.hpp │ │ │ │ ├── has_equal_to.hpp │ │ │ │ ├── has_greater.hpp │ │ │ │ ├── has_greater_equal.hpp │ │ │ │ ├── has_left_shift.hpp │ │ │ │ ├── has_left_shift_assign.hpp │ │ │ │ ├── has_less.hpp │ │ │ │ ├── has_less_equal.hpp │ │ │ │ ├── has_logical_and.hpp │ │ │ │ ├── has_logical_not.hpp │ │ │ │ ├── has_logical_or.hpp │ │ │ │ ├── has_minus.hpp │ │ │ │ ├── has_minus_assign.hpp │ │ │ │ ├── has_modulus.hpp │ │ │ │ ├── has_modulus_assign.hpp │ │ │ │ ├── has_multiplies.hpp │ │ │ │ ├── has_multiplies_assign.hpp │ │ │ │ ├── has_negate.hpp │ │ │ │ ├── has_new_operator.hpp │ │ │ │ ├── has_not_equal_to.hpp │ │ │ │ ├── has_nothrow_assign.hpp │ │ │ │ ├── has_nothrow_constructor.hpp │ │ │ │ ├── has_nothrow_copy.hpp │ │ │ │ ├── has_nothrow_destructor.hpp │ │ │ │ ├── has_operator.hpp │ │ │ │ ├── has_plus.hpp │ │ │ │ ├── has_plus_assign.hpp │ │ │ │ ├── has_post_decrement.hpp │ │ │ │ ├── has_post_increment.hpp │ │ │ │ ├── has_pre_decrement.hpp │ │ │ │ ├── has_pre_increment.hpp │ │ │ │ ├── has_right_shift.hpp │ │ │ │ ├── has_right_shift_assign.hpp │ │ │ │ ├── has_trivial_assign.hpp │ │ │ │ ├── has_trivial_constructor.hpp │ │ │ │ ├── has_trivial_copy.hpp │ │ │ │ ├── has_trivial_destructor.hpp │ │ │ │ ├── has_trivial_move_assign.hpp │ │ │ │ ├── has_trivial_move_constructor.hpp │ │ │ │ ├── has_unary_minus.hpp │ │ │ │ ├── has_unary_plus.hpp │ │ │ │ ├── has_virtual_destructor.hpp │ │ │ │ ├── ice.hpp │ │ │ │ ├── integral_constant.hpp │ │ │ │ ├── integral_promotion.hpp │ │ │ │ ├── intrinsics.hpp │ │ │ │ ├── is_abstract.hpp │ │ │ │ ├── is_arithmetic.hpp │ │ │ │ ├── is_array.hpp │ │ │ │ ├── is_base_and_derived.hpp │ │ │ │ ├── is_base_of.hpp │ │ │ │ ├── is_base_of_tr1.hpp │ │ │ │ ├── is_class.hpp │ │ │ │ ├── is_complex.hpp │ │ │ │ ├── is_compound.hpp │ │ │ │ ├── is_const.hpp │ │ │ │ ├── is_convertible.hpp │ │ │ │ ├── is_empty.hpp │ │ │ │ ├── is_enum.hpp │ │ │ │ ├── is_float.hpp │ │ │ │ ├── is_floating_point.hpp │ │ │ │ ├── is_function.hpp │ │ │ │ ├── is_fundamental.hpp │ │ │ │ ├── is_integral.hpp │ │ │ │ ├── is_lvalue_reference.hpp │ │ │ │ ├── is_member_function_pointer.hpp │ │ │ │ ├── is_member_object_pointer.hpp │ │ │ │ ├── is_member_pointer.hpp │ │ │ │ ├── is_nothrow_move_assignable.hpp │ │ │ │ ├── is_nothrow_move_constructible.hpp │ │ │ │ ├── is_object.hpp │ │ │ │ ├── is_pod.hpp │ │ │ │ ├── is_pointer.hpp │ │ │ │ ├── is_polymorphic.hpp │ │ │ │ ├── is_reference.hpp │ │ │ │ ├── is_rvalue_reference.hpp │ │ │ │ ├── is_same.hpp │ │ │ │ ├── is_scalar.hpp │ │ │ │ ├── is_signed.hpp │ │ │ │ ├── is_stateless.hpp │ │ │ │ ├── is_union.hpp │ │ │ │ ├── is_unsigned.hpp │ │ │ │ ├── is_virtual_base_of.hpp │ │ │ │ ├── is_void.hpp │ │ │ │ ├── is_volatile.hpp │ │ │ │ ├── make_signed.hpp │ │ │ │ ├── make_unsigned.hpp │ │ │ │ ├── msvc │ │ │ │ │ ├── remove_all_extents.hpp │ │ │ │ │ ├── remove_bounds.hpp │ │ │ │ │ ├── remove_const.hpp │ │ │ │ │ ├── remove_cv.hpp │ │ │ │ │ ├── remove_extent.hpp │ │ │ │ │ ├── remove_pointer.hpp │ │ │ │ │ ├── remove_reference.hpp │ │ │ │ │ ├── remove_volatile.hpp │ │ │ │ │ └── typeof.hpp │ │ │ │ ├── object_traits.hpp │ │ │ │ ├── promote.hpp │ │ │ │ ├── rank.hpp │ │ │ │ ├── reference_traits.hpp │ │ │ │ ├── remove_all_extents.hpp │ │ │ │ ├── remove_bounds.hpp │ │ │ │ ├── remove_const.hpp │ │ │ │ ├── remove_cv.hpp │ │ │ │ ├── remove_extent.hpp │ │ │ │ ├── remove_pointer.hpp │ │ │ │ ├── remove_reference.hpp │ │ │ │ ├── remove_volatile.hpp │ │ │ │ ├── same_traits.hpp │ │ │ │ ├── transform_traits.hpp │ │ │ │ ├── transform_traits_spec.hpp │ │ │ │ └── type_with_alignment.hpp │ │ │ ├── typeof │ │ │ │ ├── dmc │ │ │ │ │ └── typeof_impl.hpp │ │ │ │ ├── encode_decode.hpp │ │ │ │ ├── encode_decode_params.hpp │ │ │ │ ├── incr_registration_group.hpp │ │ │ │ ├── int_encoding.hpp │ │ │ │ ├── integral_template_param.hpp │ │ │ │ ├── message.hpp │ │ │ │ ├── modifiers.hpp │ │ │ │ ├── msvc │ │ │ │ │ └── typeof_impl.hpp │ │ │ │ ├── native.hpp │ │ │ │ ├── pointers_data_members.hpp │ │ │ │ ├── register_functions.hpp │ │ │ │ ├── register_functions_iterate.hpp │ │ │ │ ├── register_fundamental.hpp │ │ │ │ ├── register_mem_functions.hpp │ │ │ │ ├── std │ │ │ │ │ ├── bitset.hpp │ │ │ │ │ ├── complex.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── fstream.hpp │ │ │ │ │ ├── functional.hpp │ │ │ │ │ ├── iostream.hpp │ │ │ │ │ ├── istream.hpp │ │ │ │ │ ├── iterator.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── locale.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── memory.hpp │ │ │ │ │ ├── ostream.hpp │ │ │ │ │ ├── queue.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── sstream.hpp │ │ │ │ │ ├── stack.hpp │ │ │ │ │ ├── streambuf.hpp │ │ │ │ │ ├── string.hpp │ │ │ │ │ ├── utility.hpp │ │ │ │ │ ├── valarray.hpp │ │ │ │ │ └── vector.hpp │ │ │ │ ├── template_encoding.hpp │ │ │ │ ├── template_template_param.hpp │ │ │ │ ├── type_encoding.hpp │ │ │ │ ├── type_template_param.hpp │ │ │ │ ├── typeof.hpp │ │ │ │ ├── typeof_impl.hpp │ │ │ │ ├── unsupported.hpp │ │ │ │ ├── vector.hpp │ │ │ │ ├── vector100.hpp │ │ │ │ ├── vector150.hpp │ │ │ │ ├── vector200.hpp │ │ │ │ └── vector50.hpp │ │ │ ├── units │ │ │ │ ├── absolute.hpp │ │ │ │ ├── base_dimension.hpp │ │ │ │ ├── base_unit.hpp │ │ │ │ ├── base_units │ │ │ │ │ ├── angle │ │ │ │ │ │ ├── arcminute.hpp │ │ │ │ │ │ ├── arcsecond.hpp │ │ │ │ │ │ ├── degree.hpp │ │ │ │ │ │ ├── gradian.hpp │ │ │ │ │ │ ├── radian.hpp │ │ │ │ │ │ ├── revolution.hpp │ │ │ │ │ │ └── steradian.hpp │ │ │ │ │ ├── astronomical │ │ │ │ │ │ ├── astronomical_unit.hpp │ │ │ │ │ │ ├── light_day.hpp │ │ │ │ │ │ ├── light_hour.hpp │ │ │ │ │ │ ├── light_minute.hpp │ │ │ │ │ │ ├── light_second.hpp │ │ │ │ │ │ ├── light_year.hpp │ │ │ │ │ │ └── parsec.hpp │ │ │ │ │ ├── cgs │ │ │ │ │ │ ├── biot.hpp │ │ │ │ │ │ ├── centimeter.hpp │ │ │ │ │ │ └── gram.hpp │ │ │ │ │ ├── imperial │ │ │ │ │ │ ├── conversions.hpp │ │ │ │ │ │ ├── drachm.hpp │ │ │ │ │ │ ├── fluid_ounce.hpp │ │ │ │ │ │ ├── foot.hpp │ │ │ │ │ │ ├── furlong.hpp │ │ │ │ │ │ ├── gallon.hpp │ │ │ │ │ │ ├── gill.hpp │ │ │ │ │ │ ├── grain.hpp │ │ │ │ │ │ ├── hundredweight.hpp │ │ │ │ │ │ ├── inch.hpp │ │ │ │ │ │ ├── league.hpp │ │ │ │ │ │ ├── mile.hpp │ │ │ │ │ │ ├── ounce.hpp │ │ │ │ │ │ ├── pint.hpp │ │ │ │ │ │ ├── pound.hpp │ │ │ │ │ │ ├── quart.hpp │ │ │ │ │ │ ├── quarter.hpp │ │ │ │ │ │ ├── stone.hpp │ │ │ │ │ │ ├── thou.hpp │ │ │ │ │ │ ├── ton.hpp │ │ │ │ │ │ └── yard.hpp │ │ │ │ │ ├── metric │ │ │ │ │ │ ├── angstrom.hpp │ │ │ │ │ │ ├── are.hpp │ │ │ │ │ │ ├── atmosphere.hpp │ │ │ │ │ │ ├── bar.hpp │ │ │ │ │ │ ├── barn.hpp │ │ │ │ │ │ ├── day.hpp │ │ │ │ │ │ ├── fermi.hpp │ │ │ │ │ │ ├── hectare.hpp │ │ │ │ │ │ ├── hour.hpp │ │ │ │ │ │ ├── knot.hpp │ │ │ │ │ │ ├── liter.hpp │ │ │ │ │ │ ├── micron.hpp │ │ │ │ │ │ ├── minute.hpp │ │ │ │ │ │ ├── mmHg.hpp │ │ │ │ │ │ ├── nautical_mile.hpp │ │ │ │ │ │ ├── ton.hpp │ │ │ │ │ │ ├── torr.hpp │ │ │ │ │ │ └── year.hpp │ │ │ │ │ ├── si │ │ │ │ │ │ ├── ampere.hpp │ │ │ │ │ │ ├── candela.hpp │ │ │ │ │ │ ├── kelvin.hpp │ │ │ │ │ │ ├── kilogram.hpp │ │ │ │ │ │ ├── meter.hpp │ │ │ │ │ │ ├── mole.hpp │ │ │ │ │ │ └── second.hpp │ │ │ │ │ ├── temperature │ │ │ │ │ │ ├── celsius.hpp │ │ │ │ │ │ ├── conversions.hpp │ │ │ │ │ │ └── fahrenheit.hpp │ │ │ │ │ └── us │ │ │ │ │ │ ├── cup.hpp │ │ │ │ │ │ ├── dram.hpp │ │ │ │ │ │ ├── fluid_dram.hpp │ │ │ │ │ │ ├── fluid_ounce.hpp │ │ │ │ │ │ ├── foot.hpp │ │ │ │ │ │ ├── gallon.hpp │ │ │ │ │ │ ├── gill.hpp │ │ │ │ │ │ ├── grain.hpp │ │ │ │ │ │ ├── hundredweight.hpp │ │ │ │ │ │ ├── inch.hpp │ │ │ │ │ │ ├── mil.hpp │ │ │ │ │ │ ├── mile.hpp │ │ │ │ │ │ ├── minim.hpp │ │ │ │ │ │ ├── ounce.hpp │ │ │ │ │ │ ├── pint.hpp │ │ │ │ │ │ ├── pound.hpp │ │ │ │ │ │ ├── pound_force.hpp │ │ │ │ │ │ ├── quart.hpp │ │ │ │ │ │ ├── tablespoon.hpp │ │ │ │ │ │ ├── teaspoon.hpp │ │ │ │ │ │ ├── ton.hpp │ │ │ │ │ │ └── yard.hpp │ │ │ │ ├── cmath.hpp │ │ │ │ ├── config.hpp │ │ │ │ ├── conversion.hpp │ │ │ │ ├── derived_dimension.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── absolute_impl.hpp │ │ │ │ │ ├── cmath_impl.hpp │ │ │ │ │ ├── conversion_impl.hpp │ │ │ │ │ ├── dim_impl.hpp │ │ │ │ │ ├── dimension_impl.hpp │ │ │ │ │ ├── dimension_list.hpp │ │ │ │ │ ├── dimensionless_unit.hpp │ │ │ │ │ ├── heterogeneous_conversion.hpp │ │ │ │ │ ├── linear_algebra.hpp │ │ │ │ │ ├── one.hpp │ │ │ │ │ ├── ordinal.hpp │ │ │ │ │ ├── prevent_redefinition.hpp │ │ │ │ │ ├── push_front_if.hpp │ │ │ │ │ ├── push_front_or_add.hpp │ │ │ │ │ ├── sort.hpp │ │ │ │ │ ├── static_rational_power.hpp │ │ │ │ │ ├── unscale.hpp │ │ │ │ │ └── utility.hpp │ │ │ │ ├── dim.hpp │ │ │ │ ├── dimension.hpp │ │ │ │ ├── dimensionless_quantity.hpp │ │ │ │ ├── dimensionless_type.hpp │ │ │ │ ├── dimensionless_unit.hpp │ │ │ │ ├── get_dimension.hpp │ │ │ │ ├── get_system.hpp │ │ │ │ ├── heterogeneous_system.hpp │ │ │ │ ├── homogeneous_system.hpp │ │ │ │ ├── io.hpp │ │ │ │ ├── is_dim.hpp │ │ │ │ ├── is_dimension_list.hpp │ │ │ │ ├── is_dimensionless.hpp │ │ │ │ ├── is_dimensionless_quantity.hpp │ │ │ │ ├── is_dimensionless_unit.hpp │ │ │ │ ├── is_quantity.hpp │ │ │ │ ├── is_quantity_of_dimension.hpp │ │ │ │ ├── is_quantity_of_system.hpp │ │ │ │ ├── is_unit.hpp │ │ │ │ ├── is_unit_of_dimension.hpp │ │ │ │ ├── is_unit_of_system.hpp │ │ │ │ ├── lambda.hpp │ │ │ │ ├── limits.hpp │ │ │ │ ├── make_scaled_unit.hpp │ │ │ │ ├── make_system.hpp │ │ │ │ ├── operators.hpp │ │ │ │ ├── physical_dimensions.hpp │ │ │ │ ├── physical_dimensions │ │ │ │ │ ├── absorbed_dose.hpp │ │ │ │ │ ├── acceleration.hpp │ │ │ │ │ ├── action.hpp │ │ │ │ │ ├── activity.hpp │ │ │ │ │ ├── amount.hpp │ │ │ │ │ ├── angular_acceleration.hpp │ │ │ │ │ ├── angular_momentum.hpp │ │ │ │ │ ├── angular_velocity.hpp │ │ │ │ │ ├── area.hpp │ │ │ │ │ ├── capacitance.hpp │ │ │ │ │ ├── conductance.hpp │ │ │ │ │ ├── conductivity.hpp │ │ │ │ │ ├── current.hpp │ │ │ │ │ ├── dose_equivalent.hpp │ │ │ │ │ ├── dynamic_viscosity.hpp │ │ │ │ │ ├── electric_charge.hpp │ │ │ │ │ ├── electric_potential.hpp │ │ │ │ │ ├── energy.hpp │ │ │ │ │ ├── energy_density.hpp │ │ │ │ │ ├── force.hpp │ │ │ │ │ ├── frequency.hpp │ │ │ │ │ ├── heat_capacity.hpp │ │ │ │ │ ├── illuminance.hpp │ │ │ │ │ ├── impedance.hpp │ │ │ │ │ ├── inductance.hpp │ │ │ │ │ ├── kinematic_viscosity.hpp │ │ │ │ │ ├── length.hpp │ │ │ │ │ ├── luminance.hpp │ │ │ │ │ ├── luminous_flux.hpp │ │ │ │ │ ├── luminous_intensity.hpp │ │ │ │ │ ├── magnetic_field_intensity.hpp │ │ │ │ │ ├── magnetic_flux.hpp │ │ │ │ │ ├── magnetic_flux_density.hpp │ │ │ │ │ ├── mass.hpp │ │ │ │ │ ├── mass_density.hpp │ │ │ │ │ ├── molar_energy.hpp │ │ │ │ │ ├── molar_heat_capacity.hpp │ │ │ │ │ ├── moment_of_inertia.hpp │ │ │ │ │ ├── momentum.hpp │ │ │ │ │ ├── permeability.hpp │ │ │ │ │ ├── permittivity.hpp │ │ │ │ │ ├── plane_angle.hpp │ │ │ │ │ ├── power.hpp │ │ │ │ │ ├── pressure.hpp │ │ │ │ │ ├── reluctance.hpp │ │ │ │ │ ├── resistance.hpp │ │ │ │ │ ├── resistivity.hpp │ │ │ │ │ ├── solid_angle.hpp │ │ │ │ │ ├── specific_energy.hpp │ │ │ │ │ ├── specific_heat_capacity.hpp │ │ │ │ │ ├── specific_volume.hpp │ │ │ │ │ ├── stress.hpp │ │ │ │ │ ├── surface_density.hpp │ │ │ │ │ ├── surface_tension.hpp │ │ │ │ │ ├── temperature.hpp │ │ │ │ │ ├── thermal_conductivity.hpp │ │ │ │ │ ├── time.hpp │ │ │ │ │ ├── torque.hpp │ │ │ │ │ ├── velocity.hpp │ │ │ │ │ ├── volume.hpp │ │ │ │ │ └── wavenumber.hpp │ │ │ │ ├── pow.hpp │ │ │ │ ├── quantity.hpp │ │ │ │ ├── reduce_unit.hpp │ │ │ │ ├── scale.hpp │ │ │ │ ├── scaled_base_unit.hpp │ │ │ │ ├── static_constant.hpp │ │ │ │ ├── static_rational.hpp │ │ │ │ ├── systems │ │ │ │ │ ├── abstract.hpp │ │ │ │ │ ├── angle │ │ │ │ │ │ ├── degrees.hpp │ │ │ │ │ │ ├── gradians.hpp │ │ │ │ │ │ └── revolutions.hpp │ │ │ │ │ ├── cgs.hpp │ │ │ │ │ ├── cgs │ │ │ │ │ │ ├── acceleration.hpp │ │ │ │ │ │ ├── area.hpp │ │ │ │ │ │ ├── base.hpp │ │ │ │ │ │ ├── current.hpp │ │ │ │ │ │ ├── dimensionless.hpp │ │ │ │ │ │ ├── dynamic_viscosity.hpp │ │ │ │ │ │ ├── energy.hpp │ │ │ │ │ │ ├── force.hpp │ │ │ │ │ │ ├── frequency.hpp │ │ │ │ │ │ ├── io.hpp │ │ │ │ │ │ ├── kinematic_viscosity.hpp │ │ │ │ │ │ ├── length.hpp │ │ │ │ │ │ ├── mass.hpp │ │ │ │ │ │ ├── mass_density.hpp │ │ │ │ │ │ ├── momentum.hpp │ │ │ │ │ │ ├── power.hpp │ │ │ │ │ │ ├── pressure.hpp │ │ │ │ │ │ ├── time.hpp │ │ │ │ │ │ ├── velocity.hpp │ │ │ │ │ │ ├── volume.hpp │ │ │ │ │ │ └── wavenumber.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ └── constants.hpp │ │ │ │ │ ├── si.hpp │ │ │ │ │ ├── si │ │ │ │ │ │ ├── absorbed_dose.hpp │ │ │ │ │ │ ├── acceleration.hpp │ │ │ │ │ │ ├── action.hpp │ │ │ │ │ │ ├── activity.hpp │ │ │ │ │ │ ├── amount.hpp │ │ │ │ │ │ ├── angular_acceleration.hpp │ │ │ │ │ │ ├── angular_momentum.hpp │ │ │ │ │ │ ├── angular_velocity.hpp │ │ │ │ │ │ ├── area.hpp │ │ │ │ │ │ ├── base.hpp │ │ │ │ │ │ ├── capacitance.hpp │ │ │ │ │ │ ├── catalytic_activity.hpp │ │ │ │ │ │ ├── codata │ │ │ │ │ │ │ ├── alpha_constants.hpp │ │ │ │ │ │ │ ├── atomic-nuclear_constants.hpp │ │ │ │ │ │ │ ├── deuteron_constants.hpp │ │ │ │ │ │ │ ├── electromagnetic_constants.hpp │ │ │ │ │ │ │ ├── electron_constants.hpp │ │ │ │ │ │ │ ├── helion_constants.hpp │ │ │ │ │ │ │ ├── muon_constants.hpp │ │ │ │ │ │ │ ├── neutron_constants.hpp │ │ │ │ │ │ │ ├── physico-chemical_constants.hpp │ │ │ │ │ │ │ ├── proton_constants.hpp │ │ │ │ │ │ │ ├── tau_constants.hpp │ │ │ │ │ │ │ ├── triton_constants.hpp │ │ │ │ │ │ │ ├── typedefs.hpp │ │ │ │ │ │ │ └── universal_constants.hpp │ │ │ │ │ │ ├── codata_constants.hpp │ │ │ │ │ │ ├── conductance.hpp │ │ │ │ │ │ ├── conductivity.hpp │ │ │ │ │ │ ├── current.hpp │ │ │ │ │ │ ├── dimensionless.hpp │ │ │ │ │ │ ├── dose_equivalent.hpp │ │ │ │ │ │ ├── dynamic_viscosity.hpp │ │ │ │ │ │ ├── electric_charge.hpp │ │ │ │ │ │ ├── electric_potential.hpp │ │ │ │ │ │ ├── energy.hpp │ │ │ │ │ │ ├── force.hpp │ │ │ │ │ │ ├── frequency.hpp │ │ │ │ │ │ ├── illuminance.hpp │ │ │ │ │ │ ├── impedance.hpp │ │ │ │ │ │ ├── inductance.hpp │ │ │ │ │ │ ├── io.hpp │ │ │ │ │ │ ├── kinematic_viscosity.hpp │ │ │ │ │ │ ├── length.hpp │ │ │ │ │ │ ├── luminous_flux.hpp │ │ │ │ │ │ ├── luminous_intensity.hpp │ │ │ │ │ │ ├── magnetic_field_intensity.hpp │ │ │ │ │ │ ├── magnetic_flux.hpp │ │ │ │ │ │ ├── magnetic_flux_density.hpp │ │ │ │ │ │ ├── mass.hpp │ │ │ │ │ │ ├── mass_density.hpp │ │ │ │ │ │ ├── moment_of_inertia.hpp │ │ │ │ │ │ ├── momentum.hpp │ │ │ │ │ │ ├── permeability.hpp │ │ │ │ │ │ ├── permittivity.hpp │ │ │ │ │ │ ├── plane_angle.hpp │ │ │ │ │ │ ├── power.hpp │ │ │ │ │ │ ├── prefixes.hpp │ │ │ │ │ │ ├── pressure.hpp │ │ │ │ │ │ ├── reluctance.hpp │ │ │ │ │ │ ├── resistance.hpp │ │ │ │ │ │ ├── resistivity.hpp │ │ │ │ │ │ ├── solid_angle.hpp │ │ │ │ │ │ ├── surface_density.hpp │ │ │ │ │ │ ├── surface_tension.hpp │ │ │ │ │ │ ├── temperature.hpp │ │ │ │ │ │ ├── time.hpp │ │ │ │ │ │ ├── torque.hpp │ │ │ │ │ │ ├── velocity.hpp │ │ │ │ │ │ ├── volume.hpp │ │ │ │ │ │ └── wavenumber.hpp │ │ │ │ │ └── temperature │ │ │ │ │ │ ├── celsius.hpp │ │ │ │ │ │ └── fahrenheit.hpp │ │ │ │ ├── unit.hpp │ │ │ │ └── units_fwd.hpp │ │ │ ├── unordered │ │ │ │ ├── detail │ │ │ │ │ ├── allocate.hpp │ │ │ │ │ ├── buckets.hpp │ │ │ │ │ ├── equivalent.hpp │ │ │ │ │ ├── extract_key.hpp │ │ │ │ │ ├── fwd.hpp │ │ │ │ │ ├── table.hpp │ │ │ │ │ ├── unique.hpp │ │ │ │ │ └── util.hpp │ │ │ │ ├── unordered_map.hpp │ │ │ │ ├── unordered_map_fwd.hpp │ │ │ │ ├── unordered_set.hpp │ │ │ │ └── unordered_set_fwd.hpp │ │ │ ├── unordered_map.hpp │ │ │ ├── unordered_set.hpp │ │ │ ├── utility.hpp │ │ │ ├── utility │ │ │ │ ├── addressof.hpp │ │ │ │ ├── base_from_member.hpp │ │ │ │ ├── binary.hpp │ │ │ │ ├── compare_pointees.hpp │ │ │ │ ├── declval.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── in_place_factory_prefix.hpp │ │ │ │ │ ├── in_place_factory_suffix.hpp │ │ │ │ │ └── result_of_iterate.hpp │ │ │ │ ├── enable_if.hpp │ │ │ │ ├── identity_type.hpp │ │ │ │ ├── in_place_factory.hpp │ │ │ │ ├── result_of.hpp │ │ │ │ ├── string_ref.hpp │ │ │ │ ├── string_ref_fwd.hpp │ │ │ │ ├── swap.hpp │ │ │ │ ├── typed_in_place_factory.hpp │ │ │ │ └── value_init.hpp │ │ │ ├── uuid │ │ │ │ ├── name_generator.hpp │ │ │ │ ├── nil_generator.hpp │ │ │ │ ├── random_generator.hpp │ │ │ │ ├── seed_rng.hpp │ │ │ │ ├── sha1.hpp │ │ │ │ ├── string_generator.hpp │ │ │ │ ├── uuid.hpp │ │ │ │ ├── uuid_generators.hpp │ │ │ │ ├── uuid_io.hpp │ │ │ │ └── uuid_serialize.hpp │ │ │ ├── variant.hpp │ │ │ ├── variant │ │ │ │ ├── apply_visitor.hpp │ │ │ │ ├── bad_visit.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── apply_visitor_binary.hpp │ │ │ │ │ ├── apply_visitor_delayed.hpp │ │ │ │ │ ├── apply_visitor_unary.hpp │ │ │ │ │ ├── backup_holder.hpp │ │ │ │ │ ├── bool_trait_def.hpp │ │ │ │ │ ├── bool_trait_undef.hpp │ │ │ │ │ ├── cast_storage.hpp │ │ │ │ │ ├── config.hpp │ │ │ │ │ ├── enable_recursive.hpp │ │ │ │ │ ├── enable_recursive_fwd.hpp │ │ │ │ │ ├── forced_return.hpp │ │ │ │ │ ├── generic_result_type.hpp │ │ │ │ │ ├── hash_variant.hpp │ │ │ │ │ ├── initializer.hpp │ │ │ │ │ ├── make_variant_list.hpp │ │ │ │ │ ├── move.hpp │ │ │ │ │ ├── over_sequence.hpp │ │ │ │ │ ├── substitute.hpp │ │ │ │ │ ├── substitute_fwd.hpp │ │ │ │ │ ├── variant_io.hpp │ │ │ │ │ └── visitation_impl.hpp │ │ │ │ ├── get.hpp │ │ │ │ ├── multivisitors.hpp │ │ │ │ ├── recursive_variant.hpp │ │ │ │ ├── recursive_wrapper.hpp │ │ │ │ ├── recursive_wrapper_fwd.hpp │ │ │ │ ├── static_visitor.hpp │ │ │ │ ├── variant.hpp │ │ │ │ ├── variant_fwd.hpp │ │ │ │ └── visitor_ptr.hpp │ │ │ ├── version.hpp │ │ │ ├── visit_each.hpp │ │ │ ├── wave.hpp │ │ │ ├── wave │ │ │ │ ├── cpp_context.hpp │ │ │ │ ├── cpp_exceptions.hpp │ │ │ │ ├── cpp_iteration_context.hpp │ │ │ │ ├── cpp_throw.hpp │ │ │ │ ├── cpplexer │ │ │ │ │ ├── convert_trigraphs.hpp │ │ │ │ │ ├── cpp_lex_interface.hpp │ │ │ │ │ ├── cpp_lex_interface_generator.hpp │ │ │ │ │ ├── cpp_lex_iterator.hpp │ │ │ │ │ ├── cpp_lex_token.hpp │ │ │ │ │ ├── cpplexer_exceptions.hpp │ │ │ │ │ ├── detect_include_guards.hpp │ │ │ │ │ ├── re2clex │ │ │ │ │ │ ├── aq.hpp │ │ │ │ │ │ ├── cpp_re.hpp │ │ │ │ │ │ ├── cpp_re2c_lexer.hpp │ │ │ │ │ │ └── scanner.hpp │ │ │ │ │ ├── token_cache.hpp │ │ │ │ │ └── validate_universal_char.hpp │ │ │ │ ├── grammars │ │ │ │ │ ├── cpp_chlit_grammar.hpp │ │ │ │ │ ├── cpp_defined_grammar.hpp │ │ │ │ │ ├── cpp_defined_grammar_gen.hpp │ │ │ │ │ ├── cpp_expression_grammar.hpp │ │ │ │ │ ├── cpp_expression_grammar_gen.hpp │ │ │ │ │ ├── cpp_expression_value.hpp │ │ │ │ │ ├── cpp_grammar.hpp │ │ │ │ │ ├── cpp_grammar_gen.hpp │ │ │ │ │ ├── cpp_intlit_grammar.hpp │ │ │ │ │ ├── cpp_literal_grammar_gen.hpp │ │ │ │ │ ├── cpp_predef_macros_gen.hpp │ │ │ │ │ ├── cpp_predef_macros_grammar.hpp │ │ │ │ │ └── cpp_value_error.hpp │ │ │ │ ├── language_support.hpp │ │ │ │ ├── preprocessing_hooks.hpp │ │ │ │ ├── token_ids.hpp │ │ │ │ ├── util │ │ │ │ │ ├── cpp_ifblock.hpp │ │ │ │ │ ├── cpp_include_paths.hpp │ │ │ │ │ ├── cpp_iterator.hpp │ │ │ │ │ ├── cpp_macromap.hpp │ │ │ │ │ ├── cpp_macromap_predef.hpp │ │ │ │ │ ├── cpp_macromap_utils.hpp │ │ │ │ │ ├── file_position.hpp │ │ │ │ │ ├── filesystem_compatibility.hpp │ │ │ │ │ ├── flex_string.hpp │ │ │ │ │ ├── functor_input.hpp │ │ │ │ │ ├── insert_whitespace_detection.hpp │ │ │ │ │ ├── interpret_pragma.hpp │ │ │ │ │ ├── iteration_context.hpp │ │ │ │ │ ├── macro_definition.hpp │ │ │ │ │ ├── macro_helpers.hpp │ │ │ │ │ ├── pattern_parser.hpp │ │ │ │ │ ├── symbol_table.hpp │ │ │ │ │ ├── time_conversion_helper.hpp │ │ │ │ │ ├── transform_iterator.hpp │ │ │ │ │ └── unput_queue_iterator.hpp │ │ │ │ ├── wave_config.hpp │ │ │ │ ├── wave_config_constant.hpp │ │ │ │ ├── wave_version.hpp │ │ │ │ └── whitespace_handling.hpp │ │ │ ├── weak_ptr.hpp │ │ │ └── xpressive │ │ │ │ ├── basic_regex.hpp │ │ │ │ ├── detail │ │ │ │ ├── core │ │ │ │ │ ├── access.hpp │ │ │ │ │ ├── action.hpp │ │ │ │ │ ├── adaptor.hpp │ │ │ │ │ ├── finder.hpp │ │ │ │ │ ├── flow_control.hpp │ │ │ │ │ ├── icase.hpp │ │ │ │ │ ├── linker.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── matcher │ │ │ │ │ │ ├── action_matcher.hpp │ │ │ │ │ │ ├── alternate_end_matcher.hpp │ │ │ │ │ │ ├── alternate_matcher.hpp │ │ │ │ │ │ ├── any_matcher.hpp │ │ │ │ │ │ ├── assert_bol_matcher.hpp │ │ │ │ │ │ ├── assert_bos_matcher.hpp │ │ │ │ │ │ ├── assert_eol_matcher.hpp │ │ │ │ │ │ ├── assert_eos_matcher.hpp │ │ │ │ │ │ ├── assert_line_base.hpp │ │ │ │ │ │ ├── assert_word_matcher.hpp │ │ │ │ │ │ ├── attr_begin_matcher.hpp │ │ │ │ │ │ ├── attr_end_matcher.hpp │ │ │ │ │ │ ├── attr_matcher.hpp │ │ │ │ │ │ ├── charset_matcher.hpp │ │ │ │ │ │ ├── end_matcher.hpp │ │ │ │ │ │ ├── epsilon_matcher.hpp │ │ │ │ │ │ ├── keeper_matcher.hpp │ │ │ │ │ │ ├── literal_matcher.hpp │ │ │ │ │ │ ├── logical_newline_matcher.hpp │ │ │ │ │ │ ├── lookahead_matcher.hpp │ │ │ │ │ │ ├── lookbehind_matcher.hpp │ │ │ │ │ │ ├── mark_begin_matcher.hpp │ │ │ │ │ │ ├── mark_end_matcher.hpp │ │ │ │ │ │ ├── mark_matcher.hpp │ │ │ │ │ │ ├── optional_matcher.hpp │ │ │ │ │ │ ├── posix_charset_matcher.hpp │ │ │ │ │ │ ├── predicate_matcher.hpp │ │ │ │ │ │ ├── range_matcher.hpp │ │ │ │ │ │ ├── regex_byref_matcher.hpp │ │ │ │ │ │ ├── regex_matcher.hpp │ │ │ │ │ │ ├── repeat_begin_matcher.hpp │ │ │ │ │ │ ├── repeat_end_matcher.hpp │ │ │ │ │ │ ├── set_matcher.hpp │ │ │ │ │ │ ├── simple_repeat_matcher.hpp │ │ │ │ │ │ ├── string_matcher.hpp │ │ │ │ │ │ └── true_matcher.hpp │ │ │ │ │ ├── matchers.hpp │ │ │ │ │ ├── optimize.hpp │ │ │ │ │ ├── peeker.hpp │ │ │ │ │ ├── quant_style.hpp │ │ │ │ │ ├── regex_domain.hpp │ │ │ │ │ ├── regex_impl.hpp │ │ │ │ │ ├── results_cache.hpp │ │ │ │ │ ├── state.hpp │ │ │ │ │ ├── sub_match_impl.hpp │ │ │ │ │ └── sub_match_vector.hpp │ │ │ │ ├── detail_fwd.hpp │ │ │ │ ├── dynamic │ │ │ │ │ ├── dynamic.hpp │ │ │ │ │ ├── matchable.hpp │ │ │ │ │ ├── parse_charset.hpp │ │ │ │ │ ├── parser.hpp │ │ │ │ │ ├── parser_enum.hpp │ │ │ │ │ ├── parser_traits.hpp │ │ │ │ │ └── sequence.hpp │ │ │ │ ├── static │ │ │ │ │ ├── compile.hpp │ │ │ │ │ ├── grammar.hpp │ │ │ │ │ ├── is_pure.hpp │ │ │ │ │ ├── modifier.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── static.hpp │ │ │ │ │ ├── transforms │ │ │ │ │ │ ├── as_action.hpp │ │ │ │ │ │ ├── as_alternate.hpp │ │ │ │ │ │ ├── as_independent.hpp │ │ │ │ │ │ ├── as_inverse.hpp │ │ │ │ │ │ ├── as_marker.hpp │ │ │ │ │ │ ├── as_matcher.hpp │ │ │ │ │ │ ├── as_modifier.hpp │ │ │ │ │ │ ├── as_quantifier.hpp │ │ │ │ │ │ ├── as_sequence.hpp │ │ │ │ │ │ └── as_set.hpp │ │ │ │ │ ├── transmogrify.hpp │ │ │ │ │ ├── type_traits.hpp │ │ │ │ │ ├── visitor.hpp │ │ │ │ │ └── width_of.hpp │ │ │ │ └── utility │ │ │ │ │ ├── algorithm.hpp │ │ │ │ │ ├── any.hpp │ │ │ │ │ ├── boyer_moore.hpp │ │ │ │ │ ├── chset │ │ │ │ │ ├── basic_chset.hpp │ │ │ │ │ ├── basic_chset.ipp │ │ │ │ │ ├── chset.hpp │ │ │ │ │ ├── range_run.hpp │ │ │ │ │ └── range_run.ipp │ │ │ │ │ ├── cons.hpp │ │ │ │ │ ├── counted_base.hpp │ │ │ │ │ ├── dont_care.hpp │ │ │ │ │ ├── hash_peek_bitset.hpp │ │ │ │ │ ├── ignore_unused.hpp │ │ │ │ │ ├── literals.hpp │ │ │ │ │ ├── never_true.hpp │ │ │ │ │ ├── save_restore.hpp │ │ │ │ │ ├── sequence_stack.hpp │ │ │ │ │ ├── symbols.hpp │ │ │ │ │ ├── tracking_ptr.hpp │ │ │ │ │ ├── traits_utils.hpp │ │ │ │ │ └── width.hpp │ │ │ │ ├── match_results.hpp │ │ │ │ ├── regex_actions.hpp │ │ │ │ ├── regex_algorithms.hpp │ │ │ │ ├── regex_compiler.hpp │ │ │ │ ├── regex_constants.hpp │ │ │ │ ├── regex_error.hpp │ │ │ │ ├── regex_iterator.hpp │ │ │ │ ├── regex_primitives.hpp │ │ │ │ ├── regex_token_iterator.hpp │ │ │ │ ├── regex_traits.hpp │ │ │ │ ├── sub_match.hpp │ │ │ │ ├── traits │ │ │ │ ├── c_regex_traits.hpp │ │ │ │ ├── cpp_regex_traits.hpp │ │ │ │ ├── detail │ │ │ │ │ └── c_ctype.hpp │ │ │ │ └── null_regex_traits.hpp │ │ │ │ ├── xpressive.hpp │ │ │ │ ├── xpressive_dynamic.hpp │ │ │ │ ├── xpressive_fwd.hpp │ │ │ │ ├── xpressive_static.hpp │ │ │ │ └── xpressive_typeof.hpp │ │ └── libs │ │ │ ├── date_time │ │ │ ├── data │ │ │ │ ├── README.zone_spec_csv_file │ │ │ │ └── date_time_zonespec.csv │ │ │ ├── doc │ │ │ │ ├── index.html │ │ │ │ └── time_duration_inherit.png │ │ │ ├── example │ │ │ │ ├── Jamfile │ │ │ │ ├── gregorian │ │ │ │ │ ├── Jamfile.v2 │ │ │ │ │ ├── date_serialization_demo.cpp │ │ │ │ │ ├── dates_as_strings.cpp │ │ │ │ │ ├── days_alive.cpp │ │ │ │ │ ├── days_between_new_years.cpp │ │ │ │ │ ├── days_since_year_start.cpp │ │ │ │ │ ├── days_till_new_year.cpp │ │ │ │ │ ├── end_of_month_day.cpp │ │ │ │ │ ├── find_last_day_of_months.cpp │ │ │ │ │ ├── localization.cpp │ │ │ │ │ ├── month_add.cpp │ │ │ │ │ ├── period_calc.cpp │ │ │ │ │ ├── print_holidays.cpp │ │ │ │ │ └── print_month.cpp │ │ │ │ ├── local_time │ │ │ │ │ ├── calc_rules.cpp │ │ │ │ │ ├── flight.cpp │ │ │ │ │ ├── local_date_time.cpp │ │ │ │ │ ├── seconds_since_epoch.cpp │ │ │ │ │ └── simple_time_zone.cpp │ │ │ │ ├── posix_time │ │ │ │ │ ├── Jamfile.v2 │ │ │ │ │ ├── local_utc_conversion.cpp │ │ │ │ │ ├── print_hours.cpp │ │ │ │ │ ├── time_math.cpp │ │ │ │ │ └── time_periods.cpp │ │ │ │ └── tutorial │ │ │ │ │ └── io_tutorial.cpp │ │ │ ├── index.html │ │ │ ├── src │ │ │ │ ├── date_time.doc │ │ │ │ ├── gregorian │ │ │ │ │ ├── date_generators.cpp │ │ │ │ │ ├── greg_month.cpp │ │ │ │ │ ├── greg_names.hpp │ │ │ │ │ ├── greg_weekday.cpp │ │ │ │ │ └── gregorian_types.cpp │ │ │ │ └── posix_time │ │ │ │ │ └── posix_time_types.cpp │ │ │ ├── test │ │ │ │ ├── Jamfile.v2 │ │ │ │ ├── gregorian │ │ │ │ │ ├── testcurrent_day.cpp │ │ │ │ │ ├── testdate.cpp │ │ │ │ │ ├── testdate_duration.cpp │ │ │ │ │ ├── testdate_facet_new.cpp │ │ │ │ │ ├── testdate_input_facet.cpp │ │ │ │ │ ├── testdate_iterator.cpp │ │ │ │ │ ├── testfacet.cpp │ │ │ │ │ ├── testformat_date_parser.cpp │ │ │ │ │ ├── testformatters.cpp │ │ │ │ │ ├── testgenerators.cpp │ │ │ │ │ ├── testgreg_cal.cpp │ │ │ │ │ ├── testgreg_day.cpp │ │ │ │ │ ├── testgreg_durations.cpp │ │ │ │ │ ├── testgreg_month.cpp │ │ │ │ │ ├── testgreg_serialize.cpp │ │ │ │ │ ├── testgreg_wstream.cpp │ │ │ │ │ ├── testgreg_year.cpp │ │ │ │ │ ├── testparse_date.cpp │ │ │ │ │ └── testperiod.cpp │ │ │ │ ├── local_time │ │ │ │ │ ├── README.poorly_formed_zonespec │ │ │ │ │ ├── poorly_formed_zonespec.csv │ │ │ │ │ ├── testclocks.cpp │ │ │ │ │ ├── testcustom_time_zone.cpp │ │ │ │ │ ├── testdst_transition_day_rule.cpp │ │ │ │ │ ├── testlocal_time.cpp │ │ │ │ │ ├── testlocal_time_facet.cpp │ │ │ │ │ ├── testlocal_time_input_facet.cpp │ │ │ │ │ ├── testlocal_time_iterator.cpp │ │ │ │ │ ├── testlocal_time_period.cpp │ │ │ │ │ ├── testposix_time_zone.cpp │ │ │ │ │ ├── testtz_database.cpp │ │ │ │ │ ├── testwcustom_time_zone.cpp │ │ │ │ │ └── testwposix_time_zone.cpp │ │ │ │ ├── posix_time │ │ │ │ │ ├── testc_local_adjustor.cpp │ │ │ │ │ ├── testclock.cpp │ │ │ │ │ ├── testdst_rules.cpp │ │ │ │ │ ├── testduration.cpp │ │ │ │ │ ├── testfiletime_functions.cpp │ │ │ │ │ ├── testformatters.cpp │ │ │ │ │ ├── testgreg_duration_operators.cpp │ │ │ │ │ ├── testiterator.cpp │ │ │ │ │ ├── testlocal_adjustor.cpp │ │ │ │ │ ├── testmicrosec_time_clock.cpp │ │ │ │ │ ├── testparse_time.cpp │ │ │ │ │ ├── testperiod.cpp │ │ │ │ │ ├── teststreams.cpp │ │ │ │ │ ├── testtime.cpp │ │ │ │ │ ├── testtime_facet.cpp │ │ │ │ │ ├── testtime_formatters.cpp │ │ │ │ │ ├── testtime_input_facet.cpp │ │ │ │ │ ├── testtime_period.cpp │ │ │ │ │ ├── testtime_serialize.cpp │ │ │ │ │ └── testtime_wstream.cpp │ │ │ │ ├── testconstrained_value.cpp │ │ │ │ ├── testfrmwk.hpp │ │ │ │ ├── testfrom_facet.cpp │ │ │ │ ├── testgeneric_period.cpp │ │ │ │ ├── testgregorian_calendar.cpp │ │ │ │ ├── testint64_range.cpp │ │ │ │ ├── testint_adapter.cpp │ │ │ │ ├── testtime_resolution_traits.cpp │ │ │ │ └── testwrapping_int.cpp │ │ │ └── xmldoc │ │ │ │ ├── Jamfile.v2 │ │ │ │ ├── README │ │ │ │ ├── acknowledgements.xml │ │ │ │ ├── buildinfo.xml │ │ │ │ ├── calculations.xml │ │ │ │ ├── changes.xml │ │ │ │ ├── conceptual.xml │ │ │ │ ├── custom_time_zone.xml │ │ │ │ ├── date_algorithms.xml │ │ │ │ ├── date_class.xml │ │ │ │ ├── date_duration.xml │ │ │ │ ├── date_facet.xml │ │ │ │ ├── date_input_facet.xml │ │ │ │ ├── date_iterators.xml │ │ │ │ ├── date_period.xml │ │ │ │ ├── date_time.xml │ │ │ │ ├── date_time_docs_howto.html │ │ │ │ ├── date_time_fo_stylesheet.xsl │ │ │ │ ├── date_time_io.xml │ │ │ │ ├── design_concepts.xml │ │ │ │ ├── design_goals.xml │ │ │ │ ├── details.xml │ │ │ │ ├── domain_concepts.xml │ │ │ │ ├── doxy.xml │ │ │ │ ├── ex_calc_rules.xml │ │ │ │ ├── ex_date_period_calc.xml │ │ │ │ ├── ex_dates_as_strings.xml │ │ │ │ ├── ex_days_alive.xml │ │ │ │ ├── ex_days_between_new_years.xml │ │ │ │ ├── ex_end_of_month_day.xml │ │ │ │ ├── ex_find_last_day_of_months.xml │ │ │ │ ├── ex_flight.xml │ │ │ │ ├── ex_local_utc_conversion.xml │ │ │ │ ├── ex_localization.xml │ │ │ │ ├── ex_meeting_planner.xml │ │ │ │ ├── ex_month_add.xml │ │ │ │ ├── ex_print_holidays.xml │ │ │ │ ├── ex_print_hours.xml │ │ │ │ ├── ex_print_month.xml │ │ │ │ ├── ex_seconds_since_epoch.xml │ │ │ │ ├── ex_simple_time_zone.xml │ │ │ │ ├── ex_time_math.xml │ │ │ │ ├── ex_time_periods.xml │ │ │ │ ├── examples.xml │ │ │ │ ├── exclusive_date_time.xml │ │ │ │ ├── format_flags.xml │ │ │ │ ├── gregorian.xml │ │ │ │ ├── gregorian_calendar.xml │ │ │ │ ├── io_objects.xml │ │ │ │ ├── io_tutorial.xml │ │ │ │ ├── license.xml │ │ │ │ ├── local_date_time.xml │ │ │ │ ├── local_time.xml │ │ │ │ ├── local_time_period.xml │ │ │ │ ├── motivation.xml │ │ │ │ ├── posix_time.xml │ │ │ │ ├── posix_time_zone.xml │ │ │ │ ├── ptime_class.xml │ │ │ │ ├── ref_tag_fix.pl │ │ │ │ ├── references.xml │ │ │ │ ├── serialization.xml │ │ │ │ ├── snap_to_details.xml │ │ │ │ ├── table_template.xml │ │ │ │ ├── terminology.xml │ │ │ │ ├── tests.xml │ │ │ │ ├── time_duration.xml │ │ │ │ ├── time_facet.xml │ │ │ │ ├── time_input_facet.xml │ │ │ │ ├── time_iterators.xml │ │ │ │ ├── time_period.xml │ │ │ │ ├── time_zone_base.xml │ │ │ │ ├── tradeoffs.xml │ │ │ │ ├── tz_database.xml │ │ │ │ └── usage_examples.xml │ │ │ ├── detail │ │ │ └── test │ │ │ │ ├── Jamfile │ │ │ │ ├── container_fwd │ │ │ │ ├── Jamfile │ │ │ │ ├── container_fwd_test.cpp │ │ │ │ ├── container_no_fwd_test.cpp │ │ │ │ └── correctly_disable_fail.cpp │ │ │ │ └── is_sorted_test.cpp │ │ │ ├── filesystem │ │ │ ├── doc │ │ │ │ ├── Jamfile.v2 │ │ │ │ ├── POSIX_filename_encoding.txt │ │ │ │ ├── deprecated.html │ │ │ │ ├── design.htm │ │ │ │ ├── do_list.html │ │ │ │ ├── faq.htm │ │ │ │ ├── index.htm │ │ │ │ ├── path_table.cpp │ │ │ │ ├── path_table.txt │ │ │ │ ├── portability_guide.htm │ │ │ │ ├── reference.html │ │ │ │ ├── release_history.html │ │ │ │ ├── src │ │ │ │ │ ├── README │ │ │ │ │ ├── boost-no-inspect │ │ │ │ │ ├── boost_snippets.html │ │ │ │ │ ├── build.bat │ │ │ │ │ ├── hoist.bat │ │ │ │ │ ├── source.html │ │ │ │ │ └── tr2_snippets.html │ │ │ │ ├── tutorial.html │ │ │ │ ├── v3.html │ │ │ │ └── v3_design.html │ │ │ ├── example │ │ │ │ ├── Jamfile.v2 │ │ │ │ ├── error_demo.cpp │ │ │ │ ├── file_size.cpp │ │ │ │ ├── file_status.cpp │ │ │ │ ├── mbcopy.cpp │ │ │ │ ├── mbpath.cpp │ │ │ │ ├── mbpath.hpp │ │ │ │ ├── path_info.cpp │ │ │ │ ├── simple_ls.cpp │ │ │ │ ├── stems.cpp │ │ │ │ ├── tchar.cpp │ │ │ │ ├── test │ │ │ │ │ ├── Jamfile.v2 │ │ │ │ │ ├── bld.bat │ │ │ │ │ ├── bld.sh │ │ │ │ │ ├── setup.bat │ │ │ │ │ └── setup.sh │ │ │ │ ├── tut0.cpp │ │ │ │ ├── tut1.cpp │ │ │ │ ├── tut2.cpp │ │ │ │ ├── tut3.cpp │ │ │ │ ├── tut4.cpp │ │ │ │ ├── tut5.cpp │ │ │ │ ├── tut6a.cpp │ │ │ │ ├── tut6b.cpp │ │ │ │ └── tut6c.cpp │ │ │ ├── index.html │ │ │ ├── src │ │ │ │ ├── codecvt_error_category.cpp │ │ │ │ ├── operations.cpp │ │ │ │ ├── path.cpp │ │ │ │ ├── path_traits.cpp │ │ │ │ ├── portability.cpp │ │ │ │ ├── unique_path.cpp │ │ │ │ ├── utf8_codecvt_facet.cpp │ │ │ │ ├── windows_file_codecvt.cpp │ │ │ │ └── windows_file_codecvt.hpp │ │ │ ├── test │ │ │ │ ├── Jamfile.v2 │ │ │ │ ├── convenience_test.cpp │ │ │ │ ├── deprecated_test.cpp │ │ │ │ ├── design_use_cases.cpp │ │ │ │ ├── equivalent.cpp │ │ │ │ ├── fstream_test.cpp │ │ │ │ ├── issues │ │ │ │ │ ├── fchmodat_AT_SYMLINK_NOFOLLOW_6659.cpp │ │ │ │ │ └── readme.txt │ │ │ │ ├── large_file_support_test.cpp │ │ │ │ ├── locale_info.cpp │ │ │ │ ├── long_path_test.cpp │ │ │ │ ├── macro_default_test.cpp │ │ │ │ ├── msvc10 │ │ │ │ │ ├── common.props │ │ │ │ │ ├── convenience_test │ │ │ │ │ │ └── convenience_test.vcxproj │ │ │ │ │ ├── deprecated_test │ │ │ │ │ │ └── deprecated_test.vcxproj │ │ │ │ │ ├── exec_monitor_dll │ │ │ │ │ │ └── exec_monitor_dll.vcxproj │ │ │ │ │ ├── exec_monitor_lib │ │ │ │ │ │ └── exec_monitor_lib.vcxproj │ │ │ │ │ ├── file_status │ │ │ │ │ │ └── file_status.vcxproj │ │ │ │ │ ├── filesystem-v3.sln │ │ │ │ │ ├── filesystem_dll │ │ │ │ │ │ └── filesystem_dll.vcxproj │ │ │ │ │ ├── filesystem_lib │ │ │ │ │ │ └── filesystem_lib.vcxproj │ │ │ │ │ ├── fstream_test │ │ │ │ │ │ └── fstream_test.vcxproj │ │ │ │ │ ├── locale_info │ │ │ │ │ │ └── locale_info.vcxproj │ │ │ │ │ ├── long_path_test │ │ │ │ │ │ └── long_path_test.vcxproj │ │ │ │ │ ├── macro_default_test │ │ │ │ │ │ └── macro_default_test.vcxproj │ │ │ │ │ ├── operations_test │ │ │ │ │ │ └── operations_test.vcxproj │ │ │ │ │ ├── operations_unit_test │ │ │ │ │ │ └── operations_unit_test.vcxproj │ │ │ │ │ ├── path_test │ │ │ │ │ │ └── path_test.vcxproj │ │ │ │ │ ├── path_test_static │ │ │ │ │ │ └── path_test_static.vcxproj │ │ │ │ │ ├── path_unit_test │ │ │ │ │ │ └── path_unit_test.vcxproj │ │ │ │ │ ├── stems │ │ │ │ │ │ └── stems.vcxproj │ │ │ │ │ ├── system_dll │ │ │ │ │ │ └── system_dll.vcxproj │ │ │ │ │ ├── system_lib │ │ │ │ │ │ └── system_lib.vcxproj │ │ │ │ │ ├── tut1 │ │ │ │ │ │ └── tut1.vcxproj │ │ │ │ │ ├── tut2 │ │ │ │ │ │ └── tut2.vcxproj │ │ │ │ │ ├── tut3 │ │ │ │ │ │ └── tut3.vcxproj │ │ │ │ │ ├── tut4 │ │ │ │ │ │ └── tut4.vcxproj │ │ │ │ │ ├── tut5 │ │ │ │ │ │ └── tut5.vcxproj │ │ │ │ │ ├── tut6a │ │ │ │ │ │ └── tut6a.vcxproj │ │ │ │ │ ├── tut6b │ │ │ │ │ │ └── tut6b.vcxproj │ │ │ │ │ ├── tut6c │ │ │ │ │ │ └── tut6c.vcxproj │ │ │ │ │ └── windows_attributes │ │ │ │ │ │ └── windows_attributes.vcxproj │ │ │ │ ├── operations_test.cpp │ │ │ │ ├── operations_unit_test.cpp │ │ │ │ ├── path_test.cpp │ │ │ │ ├── path_unit_test.cpp │ │ │ │ ├── sample_test.cpp │ │ │ │ ├── test_codecvt.hpp │ │ │ │ └── windows_attributes.cpp │ │ │ └── tools │ │ │ │ ├── backup.bat │ │ │ │ └── exclude.txt │ │ │ ├── graph │ │ │ ├── doc │ │ │ │ ├── AStarHeuristic.html │ │ │ │ ├── AStarVisitor.html │ │ │ │ ├── AddEdgeVisitor.html │ │ │ │ ├── AdjacencyGraph.html │ │ │ │ ├── AdjacencyMatrix.html │ │ │ │ ├── BFSVisitor.html │ │ │ │ ├── BUILD_DOCS.sh │ │ │ │ ├── BasicMatrix.html │ │ │ │ ├── BellmanFordVisitor.html │ │ │ │ ├── BidirectionalGraph.html │ │ │ │ ├── Buffer.html │ │ │ │ ├── ColorValue.html │ │ │ │ ├── DFSVisitor.html │ │ │ │ ├── DijkstraVisitor.html │ │ │ │ ├── EdgeListGraph.html │ │ │ │ ├── EdgeMutableGraph.html │ │ │ │ ├── EventVisitor.html │ │ │ │ ├── EventVisitorList.html │ │ │ │ ├── Graph.html │ │ │ │ ├── IncidenceGraph.html │ │ │ │ ├── IteratorConstructibleGraph.html │ │ │ │ ├── KeyedUpdatableQueue.html │ │ │ │ ├── Makefile │ │ │ │ ├── Monoid.html │ │ │ │ ├── MutableGraph.html │ │ │ │ ├── MutablePropertyGraph.html │ │ │ │ ├── PlanarEmbedding.html │ │ │ │ ├── PlanarFaceVisitor.html │ │ │ │ ├── PropertyGraph.html │ │ │ │ ├── PropertyTag.html │ │ │ │ ├── TSPTourVisitor.html │ │ │ │ ├── UpdatableQueue.html │ │ │ │ ├── VertexAndEdgeListGraph.html │ │ │ │ ├── VertexListGraph.html │ │ │ │ ├── VertexMutableGraph.html │ │ │ │ ├── acknowledgements.html │ │ │ │ ├── adjacency_iterator.html │ │ │ │ ├── adjacency_list.html │ │ │ │ ├── adjacency_list_traits.html │ │ │ │ ├── adjacency_matrix.html │ │ │ │ ├── astar_heuristic.html │ │ │ │ ├── astar_search.html │ │ │ │ ├── astar_visitor.html │ │ │ │ ├── awpaper.sty │ │ │ │ ├── bandwidth.html │ │ │ │ ├── bc_clustering.html │ │ │ │ ├── bellman_ford_shortest.html │ │ │ │ ├── bellman_visitor.html │ │ │ │ ├── betweenness_centrality.html │ │ │ │ ├── bfs_visitor.html │ │ │ │ ├── bgl-cover.jpg │ │ │ │ ├── bgl_named_params.html │ │ │ │ ├── bibliography.html │ │ │ │ ├── biconnected_components.html │ │ │ │ ├── biconnected_components.w │ │ │ │ ├── boyer_myrvold.html │ │ │ │ ├── boykov_kolmogorov_max_flow.html │ │ │ │ ├── breadth_first_search.html │ │ │ │ ├── breadth_first_visit.html │ │ │ │ ├── bundles.html │ │ │ │ ├── challenge.html │ │ │ │ ├── circle_layout.html │ │ │ │ ├── cochet-terrasson98numerical.pdf │ │ │ │ ├── compressed_sparse_row.html │ │ │ │ ├── connected_components.html │ │ │ │ ├── constructing_algorithms.html │ │ │ │ ├── copy_graph.html │ │ │ │ ├── cuthill_mckee_ordering.html │ │ │ │ ├── dag_shortest_paths.html │ │ │ │ ├── dasdan-dac99.pdf │ │ │ │ ├── depth_first_search.html │ │ │ │ ├── depth_first_visit.html │ │ │ │ ├── dfs_visitor.html │ │ │ │ ├── dijkstra_shortest_paths.html │ │ │ │ ├── dijkstra_shortest_paths_no_color_map.html │ │ │ │ ├── dijkstra_visitor.html │ │ │ │ ├── directed_graph.html │ │ │ │ ├── distance_recorder.html │ │ │ │ ├── edge_list.html │ │ │ │ ├── edge_predecessor_recorder.html │ │ │ │ ├── edmonds_karp_max_flow.html │ │ │ │ ├── eg1-iso.cpp │ │ │ │ ├── erdos_renyi_generator.html │ │ │ │ ├── exception.html │ │ │ │ ├── faq.html │ │ │ │ ├── figs │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── adj-list.gif │ │ │ │ │ ├── adj-list2.gif │ │ │ │ │ ├── adj-matrix-graph.gif │ │ │ │ │ ├── adj-matrix-graph2.gif │ │ │ │ │ ├── adj-matrix-graph3.gif │ │ │ │ │ ├── adj-matrix.gif │ │ │ │ │ ├── adj_list.fig │ │ │ │ │ ├── adj_list.gif │ │ │ │ │ ├── adj_matrix.fig │ │ │ │ │ ├── adj_matrix.gif │ │ │ │ │ ├── analogy.fig │ │ │ │ │ ├── analogy.gif │ │ │ │ │ ├── back_edges.fig │ │ │ │ │ ├── back_edges.gif │ │ │ │ │ ├── betweenness_centrality.gif │ │ │ │ │ ├── bfs_example.fig │ │ │ │ │ ├── bfs_example.gif │ │ │ │ │ ├── bfs_family.fig │ │ │ │ │ ├── bfs_family.gif │ │ │ │ │ ├── bfs_visitor.fig │ │ │ │ │ ├── bfs_visitor.gif │ │ │ │ │ ├── biconnected.dot │ │ │ │ │ ├── biconnected.png │ │ │ │ │ ├── bk_max_flow.gif │ │ │ │ │ ├── canonical_ordering.png │ │ │ │ │ ├── central_point_dominance.gif │ │ │ │ │ ├── concepts.fig │ │ │ │ │ ├── concepts.gif │ │ │ │ │ ├── cr.jpg │ │ │ │ │ ├── dfs.fig │ │ │ │ │ ├── dfs.gif │ │ │ │ │ ├── dfs_example.fig │ │ │ │ │ ├── dfs_example.gif │ │ │ │ │ ├── dfs_family.fig │ │ │ │ │ ├── dfs_family.gif │ │ │ │ │ ├── dfs_visitor.fig │ │ │ │ │ ├── dfs_visitor.gif │ │ │ │ │ ├── digraph.fig │ │ │ │ │ ├── digraph.gif │ │ │ │ │ ├── disjoint_set_family.fig │ │ │ │ │ ├── disjoint_set_family.gif │ │ │ │ │ ├── dominator-tree1.gif │ │ │ │ │ ├── dominator-tree2.gif │ │ │ │ │ ├── edge_list.fig │ │ │ │ │ ├── edge_list.gif │ │ │ │ │ ├── embedding_illustration.png │ │ │ │ │ ├── face_illustration.png │ │ │ │ │ ├── face_traversal_example.png │ │ │ │ │ ├── file_dep.fig │ │ │ │ │ ├── file_dep.gif │ │ │ │ │ ├── forward_or_cross_edges.fig │ │ │ │ │ ├── forward_or_cross_edges.gif │ │ │ │ │ ├── ga-circle.png │ │ │ │ │ ├── ga-heart.png │ │ │ │ │ ├── ga-square.png │ │ │ │ │ ├── graph_search.fig │ │ │ │ │ ├── graph_search.gif │ │ │ │ │ ├── grid_graph_indexed.png │ │ │ │ │ ├── grid_graph_indexed.svg │ │ │ │ │ ├── grid_graph_unindexed.svg │ │ │ │ │ ├── grid_graph_unwrapped.png │ │ │ │ │ ├── grid_graph_wrapped.png │ │ │ │ │ ├── k_5_and_k_3_3.png │ │ │ │ │ ├── knights_tour.fig │ │ │ │ │ ├── knights_tour.gif │ │ │ │ │ ├── kolmogorov_max_flow.gif │ │ │ │ │ ├── max-flow.gif │ │ │ │ │ ├── maximal-match.png │ │ │ │ │ ├── maximum-match.png │ │ │ │ │ ├── mcr.jpg │ │ │ │ │ ├── planar_plane_straight_line.png │ │ │ │ │ ├── python.gif │ │ │ │ │ ├── python_ico.gif │ │ │ │ │ ├── quick_start.fig │ │ │ │ │ ├── quick_start.gif │ │ │ │ │ ├── rel_betweenness_centrality.gif │ │ │ │ │ ├── search_states.fig │ │ │ │ │ ├── search_states.gif │ │ │ │ │ ├── seq_vertex_coloring.graffle │ │ │ │ │ ├── sequential_vertex_coloring.png │ │ │ │ │ ├── sigma_st.gif │ │ │ │ │ ├── sigma_stv.gif │ │ │ │ │ ├── stl_iter.fig │ │ │ │ │ ├── stl_iter.gif │ │ │ │ │ ├── straight_line_drawing.png │ │ │ │ │ ├── subgraph-tree.gif │ │ │ │ │ ├── subgraph.gif │ │ │ │ │ ├── tree_edges.fig │ │ │ │ │ ├── tree_edges.gif │ │ │ │ │ ├── undigraph.fig │ │ │ │ │ ├── undigraph.gif │ │ │ │ │ ├── undir-adj-list.gif │ │ │ │ │ ├── undir-adj-matrix-graph.gif │ │ │ │ │ ├── undir-adj-matrix-graph2.gif │ │ │ │ │ ├── undir-adj-matrix-graph3.gif │ │ │ │ │ ├── undir-adj-matrix.gif │ │ │ │ │ ├── undir-adj-matrix2.gif │ │ │ │ │ ├── v_star.gif │ │ │ │ │ ├── very_complex_graph.gif │ │ │ │ │ ├── visitor.fig │ │ │ │ │ ├── visitor.gif │ │ │ │ │ ├── warning.png │ │ │ │ │ └── wheel_graph.gif │ │ │ │ ├── file_dependency_example.html │ │ │ │ ├── filtered_graph.html │ │ │ │ ├── find_odd_cycle.html │ │ │ │ ├── floyd_warshall_shortest.html │ │ │ │ ├── fruchterman_reingold.html │ │ │ │ ├── graph_coloring.html │ │ │ │ ├── graph_concepts.html │ │ │ │ ├── graph_theory_review.html │ │ │ │ ├── graph_traits.html │ │ │ │ ├── grid_graph.html │ │ │ │ ├── grid_graph_export_svg.sh │ │ │ │ ├── gursoy_atun_layout.html │ │ │ │ ├── history.html │ │ │ │ ├── howard_cycle_ratio.html │ │ │ │ ├── incident.html │ │ │ │ ├── incremental_components.html │ │ │ │ ├── index.html │ │ │ │ ├── inv_adjacency_iterator.html │ │ │ │ ├── is_bipartite.html │ │ │ │ ├── is_kuratowski_subgraph.html │ │ │ │ ├── is_straight_line_drawing.html │ │ │ │ ├── iscope99.pdf │ │ │ │ ├── iso-eg.dot │ │ │ │ ├── isomorphism-impl-v2.w │ │ │ │ ├── isomorphism-impl-v3.w │ │ │ │ ├── isomorphism-impl.pdf │ │ │ │ ├── isomorphism-impl.w │ │ │ │ ├── isomorphism.html │ │ │ │ ├── johnson_all_pairs_shortest.html │ │ │ │ ├── jwebfrob.pl │ │ │ │ ├── kamada_kawai_spring_layout.html │ │ │ │ ├── kevin_bacon.html │ │ │ │ ├── king_ordering.html │ │ │ │ ├── known_problems.html │ │ │ │ ├── kruskal_min_spanning_tree.html │ │ │ │ ├── layout_tolerance.html │ │ │ │ ├── leda_conversion.html │ │ │ │ ├── lengauer_tarjan_dominator.htm │ │ │ │ ├── lgrind.sty │ │ │ │ ├── make_biconnected_planar.html │ │ │ │ ├── make_connected.html │ │ │ │ ├── make_maximal_planar.html │ │ │ │ ├── math.sty │ │ │ │ ├── maximum_adjacency_search.html │ │ │ │ ├── maximum_matching.html │ │ │ │ ├── mcgregor_common_subgraphs.html │ │ │ │ ├── metric_tsp_approx.html │ │ │ │ ├── minimum_degree_ordering.html │ │ │ │ ├── minimum_degree_ordering.w │ │ │ │ ├── mungeaux.csh │ │ │ │ ├── null_visitor.html │ │ │ │ ├── opposite.html │ │ │ │ ├── planar_canonical_ordering.html │ │ │ │ ├── planar_face_traversal.html │ │ │ │ ├── planar_graphs.html │ │ │ │ ├── plod_generator.html │ │ │ │ ├── predecessor_recorder.html │ │ │ │ ├── prim_minimum_spanning_tree.html │ │ │ │ ├── profile.htm │ │ │ │ ├── property.html │ │ │ │ ├── property_map.html │ │ │ │ ├── property_put.html │ │ │ │ ├── property_writer.html │ │ │ │ ├── publications.html │ │ │ │ ├── push_relabel_max_flow.html │ │ │ │ ├── python.html │ │ │ │ ├── quick_tour.html │ │ │ │ ├── r_c_shortest_paths.html │ │ │ │ ├── random.html │ │ │ │ ├── random_layout.html │ │ │ │ ├── random_spanning_tree.html │ │ │ │ ├── read_dimacs.html │ │ │ │ ├── read_graphml.html │ │ │ │ ├── read_graphml.rst │ │ │ │ ├── read_graphviz.html │ │ │ │ ├── read_graphviz.rst │ │ │ │ ├── reverse_graph.html │ │ │ │ ├── sequential_vertex_coloring.html │ │ │ │ ├── sloan_ordering.htm │ │ │ │ ├── sloan_start_end_vertices.htm │ │ │ │ ├── small_world_generator.html │ │ │ │ ├── sorted_erdos_renyi_gen.html │ │ │ │ ├── sparse_matrix_ordering.html │ │ │ │ ├── stanford_graph.html │ │ │ │ ├── stoer_wagner_imgs │ │ │ │ │ ├── 6e4.gif │ │ │ │ │ ├── 8b7.gif │ │ │ │ │ ├── digraph1-min-cut.dot │ │ │ │ │ ├── digraph1-min-cut.gif │ │ │ │ │ ├── digraph1.dot │ │ │ │ │ ├── digraph1.gif │ │ │ │ │ ├── f79.gif │ │ │ │ │ ├── stoer_wagner-example-c1.dot │ │ │ │ │ ├── stoer_wagner-example-c1.gif │ │ │ │ │ ├── stoer_wagner-example-min-cut.dot │ │ │ │ │ ├── stoer_wagner-example-min-cut.gif │ │ │ │ │ ├── stoer_wagner-example.dot │ │ │ │ │ ├── stoer_wagner-example.gif │ │ │ │ │ ├── stoer_wagner.cpp.dot │ │ │ │ │ └── stoer_wagner.cpp.gif │ │ │ │ ├── stoer_wagner_min_cut.html │ │ │ │ ├── straight_line_drawing.html │ │ │ │ ├── strong_components.html │ │ │ │ ├── strong_components.w │ │ │ │ ├── subgraph.html │ │ │ │ ├── table_of_contents.html │ │ │ │ ├── tc-out.gif │ │ │ │ ├── tc.gif │ │ │ │ ├── time_stamper.html │ │ │ │ ├── topological_sort.html │ │ │ │ ├── topology.html │ │ │ │ ├── transitive_closure.html │ │ │ │ ├── transitive_closure.w │ │ │ │ ├── transpose_graph.html │ │ │ │ ├── trouble_shooting.html │ │ │ │ ├── tsp_tour_len_visitor.html │ │ │ │ ├── tsp_tour_visitor.html │ │ │ │ ├── two_graphs_common_spanning_trees.html │ │ │ │ ├── undirected_dfs.html │ │ │ │ ├── undirected_graph.html │ │ │ │ ├── users.html │ │ │ │ ├── using_adjacency_list.html │ │ │ │ ├── using_property_maps.html │ │ │ │ ├── vf2_sub_graph_iso.html │ │ │ │ ├── visitor_concepts.html │ │ │ │ ├── wavefront.htm │ │ │ │ ├── write-graphviz.html │ │ │ │ ├── write_dimacs.html │ │ │ │ ├── write_graphml.html │ │ │ │ └── write_graphml.rst │ │ │ ├── example │ │ │ │ ├── Jamfile.v2 │ │ │ │ ├── accum-compile-times.cpp │ │ │ │ ├── actor_clustering.cpp │ │ │ │ ├── adj_list_ra_edgelist.cpp │ │ │ │ ├── adjacency_list.cpp │ │ │ │ ├── adjacency_list.expected │ │ │ │ ├── adjacency_list_io.cpp │ │ │ │ ├── adjacency_matrix.cpp │ │ │ │ ├── astar-cities.cpp │ │ │ │ ├── astar_maze.cpp │ │ │ │ ├── bcsstk01 │ │ │ │ ├── bcsstk01.rsa │ │ │ │ ├── bellman-example.cpp │ │ │ │ ├── bellman-ford-internet.cpp │ │ │ │ ├── bellman_ford.expected │ │ │ │ ├── bfs-example.cpp │ │ │ │ ├── bfs-example2.cpp │ │ │ │ ├── bfs-name-printer.cpp │ │ │ │ ├── bfs.cpp │ │ │ │ ├── bfs.expected │ │ │ │ ├── bfs_basics.expected │ │ │ │ ├── bfs_neighbor.cpp │ │ │ │ ├── biconnected_components.cpp │ │ │ │ ├── bipartite_example.cpp │ │ │ │ ├── boost_web.dat │ │ │ │ ├── boost_web_graph.cpp │ │ │ │ ├── boost_web_graph.expected │ │ │ │ ├── boykov_kolmogorov-eg.cpp │ │ │ │ ├── bron_kerbosch_clique_number.cpp │ │ │ │ ├── bron_kerbosch_print_cliques.cpp │ │ │ │ ├── bucket_sorter.cpp │ │ │ │ ├── canonical_ordering.cpp │ │ │ │ ├── cc-internet.cpp │ │ │ │ ├── city_visitor.cpp │ │ │ │ ├── closeness_centrality.cpp │ │ │ │ ├── clustering_coefficient.cpp │ │ │ │ ├── comm_network.graph │ │ │ │ ├── components_on_edgelist.cpp │ │ │ │ ├── components_on_edgelist.expected │ │ │ │ ├── concept_checks.expected │ │ │ │ ├── connected-components.cpp │ │ │ │ ├── connected_components.cpp │ │ │ │ ├── connected_components.expected │ │ │ │ ├── container_gen.cpp │ │ │ │ ├── container_gen.expected │ │ │ │ ├── copy-example.cpp │ │ │ │ ├── csr-example.cpp │ │ │ │ ├── cuthill_mckee_ordering.cpp │ │ │ │ ├── cuthill_mckee_ordering.expected │ │ │ │ ├── cycle-file-dep.cpp │ │ │ │ ├── cycle-file-dep2.cpp │ │ │ │ ├── cycle_ratio_example.cpp │ │ │ │ ├── dag_shortest_paths.cpp │ │ │ │ ├── data1.txt │ │ │ │ ├── data2.txt │ │ │ │ ├── data3.txt │ │ │ │ ├── dave.cpp │ │ │ │ ├── dave.expected │ │ │ │ ├── default-constructor.cpp │ │ │ │ ├── default-constructor2.cpp │ │ │ │ ├── degree_centrality.cpp │ │ │ │ ├── dfs-example.cpp │ │ │ │ ├── dfs-parenthesis.cpp │ │ │ │ ├── dfs.cpp │ │ │ │ ├── dfs.expected │ │ │ │ ├── dfs_basics.expected │ │ │ │ ├── dfs_parenthesis.cpp │ │ │ │ ├── dfs_parenthesis.expected │ │ │ │ ├── dijkstra-example-listS.cpp │ │ │ │ ├── dijkstra-example.cpp │ │ │ │ ├── dijkstra-no-color-map-example.cpp │ │ │ │ ├── dijkstra.expected │ │ │ │ ├── directed_graph.cpp │ │ │ │ ├── eccentricity.cpp │ │ │ │ ├── edge-connectivity.cpp │ │ │ │ ├── edge-function.cpp │ │ │ │ ├── edge-iter-constructor.cpp │ │ │ │ ├── edge_basics.cpp │ │ │ │ ├── edge_basics.expected │ │ │ │ ├── edge_connectivity.cpp │ │ │ │ ├── edge_iterator_constructor.cpp │ │ │ │ ├── edge_iterator_constructor.dat │ │ │ │ ├── edge_property.cpp │ │ │ │ ├── edge_property.expected │ │ │ │ ├── edmonds-karp-eg.cpp │ │ │ │ ├── exterior_properties.cpp │ │ │ │ ├── exterior_properties.expected │ │ │ │ ├── exterior_property_map.cpp │ │ │ │ ├── exterior_property_map.expected │ │ │ │ ├── family-tree-eg.cpp │ │ │ │ ├── family_tree.expected │ │ │ │ ├── fibonacci_heap.cpp │ │ │ │ ├── fibonacci_heap.expected │ │ │ │ ├── figs │ │ │ │ │ ├── cc-internet.dot │ │ │ │ │ ├── dfs-example.dot │ │ │ │ │ ├── edge-connectivity.dot │ │ │ │ │ ├── ospf-graph.dot │ │ │ │ │ ├── scc.dot │ │ │ │ │ └── telephone-network.dot │ │ │ │ ├── file_dependencies.cpp │ │ │ │ ├── file_dependencies.expected │ │ │ │ ├── filtered-copy-example.cpp │ │ │ │ ├── filtered_graph.cpp │ │ │ │ ├── filtered_graph.expected │ │ │ │ ├── filtered_graph_edge_range.cpp │ │ │ │ ├── filtered_vec_as_graph.cpp │ │ │ │ ├── fr_layout.cpp │ │ │ │ ├── gerdemann.cpp │ │ │ │ ├── gerdemann.expected │ │ │ │ ├── girth.cpp │ │ │ │ ├── graph-assoc-types.cpp │ │ │ │ ├── graph-property-iter-eg.cpp │ │ │ │ ├── graph-thingie.cpp │ │ │ │ ├── graph.cpp │ │ │ │ ├── graph_as_tree.cpp │ │ │ │ ├── graph_property.cpp │ │ │ │ ├── graphviz.cpp │ │ │ │ ├── graphviz_example.dot │ │ │ │ ├── graphviz_test.dot │ │ │ │ ├── grid_graph_example.cpp │ │ │ │ ├── grid_graph_properties.cpp │ │ │ │ ├── helper.hpp │ │ │ │ ├── implicit_graph.cpp │ │ │ │ ├── in_edges.cpp │ │ │ │ ├── in_edges.expected │ │ │ │ ├── inclusive_mean_geodesic.cpp │ │ │ │ ├── incremental-components-eg.cpp │ │ │ │ ├── incremental_components.cpp │ │ │ │ ├── incremental_components.expected │ │ │ │ ├── influence_prestige.cpp │ │ │ │ ├── info_network.graph │ │ │ │ ├── interior_pmap_bundled.cpp │ │ │ │ ├── interior_property_map.cpp │ │ │ │ ├── interior_property_map.expected │ │ │ │ ├── iohb.c │ │ │ │ ├── iohb.h │ │ │ │ ├── isomorphism.cpp │ │ │ │ ├── iteration_macros.cpp │ │ │ │ ├── iterator-property-map-eg.cpp │ │ │ │ ├── johnson-eg.cpp │ │ │ │ ├── johnson.expected │ │ │ │ ├── kevin-bacon.cpp │ │ │ │ ├── kevin-bacon.dat │ │ │ │ ├── kevin-bacon2.cpp │ │ │ │ ├── kevin-bacon2.dat │ │ │ │ ├── kevin-bacon2.expected │ │ │ │ ├── kevin_bacon.expected │ │ │ │ ├── king_ordering.cpp │ │ │ │ ├── knights-tour.cpp │ │ │ │ ├── knights_tour.expected │ │ │ │ ├── kruskal-example.cpp │ │ │ │ ├── kruskal-telephone.cpp │ │ │ │ ├── kruskal.expected │ │ │ │ ├── kuratowski_subgraph.cpp │ │ │ │ ├── labeled_graph.cpp │ │ │ │ ├── last-mod-time.cpp │ │ │ │ ├── leda-concept-check.cpp │ │ │ │ ├── leda-graph-eg.cpp │ │ │ │ ├── leda-regression.cfg │ │ │ │ ├── loops_dfs.cpp │ │ │ │ ├── make_biconnected_planar.cpp │ │ │ │ ├── make_connected.cpp │ │ │ │ ├── make_maximal_planar.cpp │ │ │ │ ├── makefile-dependencies.dat │ │ │ │ ├── makefile-target-names.dat │ │ │ │ ├── matching_example.cpp │ │ │ │ ├── max_flow.cpp │ │ │ │ ├── max_flow.dat │ │ │ │ ├── max_flow.expected │ │ │ │ ├── max_flow2.dat │ │ │ │ ├── max_flow3.dat │ │ │ │ ├── max_flow4.dat │ │ │ │ ├── max_flow5.dat │ │ │ │ ├── max_flow6.dat │ │ │ │ ├── max_flow7.dat │ │ │ │ ├── max_flow8.dat │ │ │ │ ├── max_flow9.dat │ │ │ │ ├── mcgregor_subgraphs_example.cpp │ │ │ │ ├── mean_geodesic.cpp │ │ │ │ ├── miles_span.cpp │ │ │ │ ├── miles_span.expected │ │ │ │ ├── min_max_paths.cpp │ │ │ │ ├── minimum_degree_ordering.cpp │ │ │ │ ├── modify_graph.cpp │ │ │ │ ├── modify_graph.expected │ │ │ │ ├── neighbor_bfs.cpp │ │ │ │ ├── ordered_out_edges.cpp │ │ │ │ ├── ordered_out_edges.expected │ │ │ │ ├── ospf-example.cpp │ │ │ │ ├── parallel-compile-time.cpp │ │ │ │ ├── planar_face_traversal.cpp │ │ │ │ ├── prim-example.cpp │ │ │ │ ├── prim-telephone.cpp │ │ │ │ ├── prim.expected │ │ │ │ ├── print-adjacent-vertices.cpp │ │ │ │ ├── print-edges.cpp │ │ │ │ ├── print-in-edges.cpp │ │ │ │ ├── print-out-edges.cpp │ │ │ │ ├── prism_3_2.graph │ │ │ │ ├── prob_network.graph │ │ │ │ ├── property-map-traits-eg.cpp │ │ │ │ ├── property_iterator.cpp │ │ │ │ ├── push-relabel-eg.cpp │ │ │ │ ├── put-get-helper-eg.cpp │ │ │ │ ├── quick-tour.cpp │ │ │ │ ├── quick_tour.cpp │ │ │ │ ├── quick_tour.expected │ │ │ │ ├── r_c_shortest_paths_example.cpp │ │ │ │ ├── reachable-loop-head.cpp │ │ │ │ ├── reachable-loop-tail.cpp │ │ │ │ ├── read_graphviz.cpp │ │ │ │ ├── read_write_dimacs-eg.cpp │ │ │ │ ├── regression.cfg │ │ │ │ ├── remove_edge_if_bidir.cpp │ │ │ │ ├── remove_edge_if_bidir.expected │ │ │ │ ├── remove_edge_if_dir.cpp │ │ │ │ ├── remove_edge_if_dir.expected │ │ │ │ ├── remove_edge_if_undir.cpp │ │ │ │ ├── remove_edge_if_undir.expected │ │ │ │ ├── reverse-graph-eg.cpp │ │ │ │ ├── reverse_graph.expected │ │ │ │ ├── roget_components.cpp │ │ │ │ ├── scaled_closeness_centrality.cpp │ │ │ │ ├── scc.cpp │ │ │ │ ├── scc.dot │ │ │ │ ├── sgb-regression.cfg │ │ │ │ ├── simple_planarity_test.cpp │ │ │ │ ├── sloan_ordering.cpp │ │ │ │ ├── social_network.graph │ │ │ │ ├── stoer_wagner.cpp │ │ │ │ ├── straight_line_drawing.cpp │ │ │ │ ├── strong-components.cpp │ │ │ │ ├── strong_components.cpp │ │ │ │ ├── strong_components.expected │ │ │ │ ├── subgraph.cpp │ │ │ │ ├── subgraph.expected │ │ │ │ ├── subgraph_properties.cpp │ │ │ │ ├── target-compile-costs.dat │ │ │ │ ├── tc.dot │ │ │ │ ├── test-astar-cities.dot │ │ │ │ ├── tiernan_girth_circumference.cpp │ │ │ │ ├── tiernan_print_cycles.cpp │ │ │ │ ├── topo-sort-file-dep.cpp │ │ │ │ ├── topo-sort-file-dep2.cpp │ │ │ │ ├── topo-sort-with-leda.cpp │ │ │ │ ├── topo-sort-with-sgb.cpp │ │ │ │ ├── topo-sort1.cpp │ │ │ │ ├── topo-sort2.cpp │ │ │ │ ├── topo_sort.cpp │ │ │ │ ├── topo_sort.expected │ │ │ │ ├── transitive_closure.cpp │ │ │ │ ├── transpose-example.cpp │ │ │ │ ├── two_graphs_common_spanning_trees.cpp │ │ │ │ ├── undirected_adjacency_list.cpp │ │ │ │ ├── undirected_adjacency_list.expected │ │ │ │ ├── undirected_dfs.cpp │ │ │ │ ├── undirected_graph.cpp │ │ │ │ ├── vector-as-graph.cpp │ │ │ │ ├── vector_as_graph.expected │ │ │ │ ├── vertex-name-property.cpp │ │ │ │ ├── vertex_basics.cpp │ │ │ │ ├── vertex_basics.expected │ │ │ │ ├── vf2_sub_graph_iso_example.cpp │ │ │ │ ├── vf2_sub_graph_iso_multi_example.cpp │ │ │ │ ├── visitor.cpp │ │ │ │ ├── visitor.expected │ │ │ │ └── write_graphviz.cpp │ │ │ ├── index.html │ │ │ ├── src │ │ │ │ ├── graphml.cpp │ │ │ │ └── read_graphviz_new.cpp │ │ │ └── test │ │ │ │ ├── Jamfile.v2 │ │ │ │ ├── adj_list_cc.cpp │ │ │ │ ├── adj_list_edge_list_set.cpp │ │ │ │ ├── adj_list_invalidation.cpp │ │ │ │ ├── adj_list_loops.cpp │ │ │ │ ├── adj_list_test.cpp │ │ │ │ ├── adj_matrix_cc.cpp │ │ │ │ ├── adjacency_matrix_test.cpp │ │ │ │ ├── all_planar_input_files_test.cpp │ │ │ │ ├── astar_search_test.cpp │ │ │ │ ├── basic_planarity_test.cpp │ │ │ │ ├── bellman-test.cpp │ │ │ │ ├── betweenness_centrality_test.cpp │ │ │ │ ├── bfs.cpp │ │ │ │ ├── bfs_cc.cpp │ │ │ │ ├── biconnected_components_test.cpp │ │ │ │ ├── bidir_remove_edge.cpp │ │ │ │ ├── bidir_vec_remove_edge.cpp │ │ │ │ ├── bipartite_test.cpp │ │ │ │ ├── boykov_kolmogorov_max_flow_test.cpp │ │ │ │ ├── bron_kerbosch_all_cliques.cpp │ │ │ │ ├── bundled_properties.cpp │ │ │ │ ├── closeness_centrality.cpp │ │ │ │ ├── clustering_coefficient.cpp │ │ │ │ ├── copy.cpp │ │ │ │ ├── core_numbers_test.cpp │ │ │ │ ├── csr_graph_test.cpp │ │ │ │ ├── cuthill_mckee_ordering.cpp │ │ │ │ ├── cycle_ratio_s382.90.dot │ │ │ │ ├── cycle_ratio_tests.cpp │ │ │ │ ├── dag_longest_paths.cpp │ │ │ │ ├── degree_centrality.cpp │ │ │ │ ├── dfs.cpp │ │ │ │ ├── dfs_cc.cpp │ │ │ │ ├── dijkstra_cc.cpp │ │ │ │ ├── dijkstra_heap_performance.cpp │ │ │ │ ├── dijkstra_no_color_map_compare.cpp │ │ │ │ ├── dimacs.cpp │ │ │ │ ├── dominator_tree_test.cpp │ │ │ │ ├── eccentricity.cpp │ │ │ │ ├── edge_list_cc.cpp │ │ │ │ ├── filter_graph_vp_test.cpp │ │ │ │ ├── filtered_graph_cc.cpp │ │ │ │ ├── filtered_graph_properties_dijkstra.cpp │ │ │ │ ├── floyd_warshall_test.cpp │ │ │ │ ├── generator_test.cpp │ │ │ │ ├── graph.cpp │ │ │ │ ├── graph_concepts.cpp │ │ │ │ ├── graph_type.hpp │ │ │ │ ├── graphml_test.cpp │ │ │ │ ├── graphml_test.xml │ │ │ │ ├── graphviz_test.cpp │ │ │ │ ├── grid_graph_cc.cpp │ │ │ │ ├── grid_graph_test.cpp │ │ │ │ ├── gursoy_atun_layout_test.cpp │ │ │ │ ├── incremental_components_test.cpp │ │ │ │ ├── index_graph.cpp │ │ │ │ ├── is_straight_line_draw_test.cpp │ │ │ │ ├── isomorphism.cpp │ │ │ │ ├── johnson-test.cpp │ │ │ │ ├── king_ordering.cpp │ │ │ │ ├── labeled_graph.cpp │ │ │ │ ├── layout_test.cpp │ │ │ │ ├── leda_graph_cc.cpp │ │ │ │ ├── lvalue_pmap.cpp │ │ │ │ ├── make_bicon_planar_test.cpp │ │ │ │ ├── make_connected_test.cpp │ │ │ │ ├── make_maximal_planar_test.cpp │ │ │ │ ├── mas_test.cpp │ │ │ │ ├── matching_test.cpp │ │ │ │ ├── max_flow_test.cpp │ │ │ │ ├── mcgregor_subgraphs_test.cpp │ │ │ │ ├── mean_geodesic.cpp │ │ │ │ ├── metis_test.cpp │ │ │ │ ├── metric_tsp_approx.cpp │ │ │ │ ├── metric_tsp_approx.graph │ │ │ │ ├── named_vertices_test.cpp │ │ │ │ ├── parallel_edges_loops_test.cpp │ │ │ │ ├── planar_input_graphs │ │ │ │ ├── nonplanar_K_3_3.dimacs │ │ │ │ ├── nonplanar_K_3_3_1000_p0.dimacs │ │ │ │ ├── nonplanar_K_3_3_1000_p1.dimacs │ │ │ │ ├── nonplanar_K_3_3_1000_p2.dimacs │ │ │ │ ├── nonplanar_K_3_3_1000_p3.dimacs │ │ │ │ ├── nonplanar_K_3_3_1000_p4.dimacs │ │ │ │ ├── nonplanar_K_3_3_1000_p5.dimacs │ │ │ │ ├── nonplanar_K_3_3_1000_p6.dimacs │ │ │ │ ├── nonplanar_K_3_3_1000_p7.dimacs │ │ │ │ ├── nonplanar_K_3_3_1000_p8.dimacs │ │ │ │ ├── nonplanar_K_3_3_1000_p9.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_10.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_100.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_1000.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_100_p0.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_100_p1.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_100_p2.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_100_p3.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_100_p4.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_100_p5.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_100_p6.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_100_p7.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_100_p8.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_100_p9.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_10_p0.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_10_p1.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_10_p2.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_10_p3.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_10_p4.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_10_p5.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_10_p6.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_10_p7.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_10_p8.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_10_p9.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_11.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_11_p0.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_11_p1.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_11_p2.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_11_p3.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_11_p4.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_11_p5.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_11_p6.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_11_p7.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_11_p8.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_11_p9.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_12.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_12_p0.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_12_p1.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_12_p2.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_12_p3.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_12_p4.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_12_p5.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_12_p6.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_12_p7.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_12_p8.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_12_p9.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_13.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_13_p0.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_13_p1.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_13_p2.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_13_p3.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_13_p4.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_13_p5.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_13_p6.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_13_p7.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_13_p8.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_13_p9.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_14.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_14_p0.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_14_p1.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_14_p2.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_14_p3.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_14_p4.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_14_p5.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_14_p6.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_14_p7.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_14_p8.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_14_p9.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_15.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_15_p0.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_15_p1.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_15_p2.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_15_p3.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_15_p4.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_15_p5.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_15_p6.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_15_p7.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_15_p8.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_15_p9.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_16.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_16_p0.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_16_p1.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_16_p2.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_16_p3.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_16_p4.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_16_p5.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_16_p6.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_16_p7.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_16_p8.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_16_p9.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_17.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_17_p0.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_17_p1.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_17_p2.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_17_p3.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_17_p4.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_17_p5.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_17_p6.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_17_p7.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_17_p8.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_17_p9.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_18.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_18_p0.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_18_p1.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_18_p2.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_18_p3.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_18_p4.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_18_p5.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_18_p6.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_18_p7.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_18_p8.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_18_p9.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_19.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_19_p0.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_19_p1.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_19_p2.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_19_p3.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_19_p4.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_19_p5.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_19_p6.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_19_p7.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_19_p8.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_19_p9.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_20.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_20_p0.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_20_p1.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_20_p2.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_20_p3.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_20_p4.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_20_p5.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_20_p6.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_20_p7.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_20_p8.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_20_p9.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_30.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_30_p0.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_30_p1.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_30_p2.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_30_p3.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_30_p4.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_30_p5.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_30_p6.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_30_p7.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_30_p8.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_30_p9.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_40.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_40_p0.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_40_p1.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_40_p2.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_40_p3.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_40_p4.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_40_p5.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_40_p6.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_40_p7.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_40_p8.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_40_p9.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_50.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_50_p0.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_50_p1.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_50_p2.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_50_p3.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_50_p4.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_50_p5.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_50_p6.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_50_p7.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_50_p8.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_50_p9.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_7.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_7_p0.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_7_p1.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_7_p2.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_7_p3.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_7_p4.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_7_p5.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_7_p6.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_7_p7.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_7_p8.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_7_p9.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_8.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_8_p0.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_8_p1.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_8_p2.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_8_p3.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_8_p4.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_8_p5.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_8_p6.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_8_p7.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_8_p8.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_8_p9.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_9.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_9_p0.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_9_p1.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_9_p2.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_9_p3.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_9_p4.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_9_p5.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_9_p6.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_9_p7.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_9_p8.dimacs │ │ │ │ ├── nonplanar_K_3_3_e_9_p9.dimacs │ │ │ │ ├── nonplanar_K_3_3_p0.dimacs │ │ │ │ ├── nonplanar_K_3_3_p1.dimacs │ │ │ │ ├── nonplanar_K_3_3_p2.dimacs │ │ │ │ ├── nonplanar_K_3_3_p3.dimacs │ │ │ │ ├── nonplanar_K_3_3_p4.dimacs │ │ │ │ ├── nonplanar_K_3_3_p5.dimacs │ │ │ │ ├── nonplanar_K_3_3_p6.dimacs │ │ │ │ ├── nonplanar_K_3_3_p7.dimacs │ │ │ │ ├── nonplanar_K_3_3_p8.dimacs │ │ │ │ ├── nonplanar_K_3_3_p9.dimacs │ │ │ │ ├── nonplanar_K_5.dimacs │ │ │ │ ├── nonplanar_K_5_e_10.dimacs │ │ │ │ ├── nonplanar_K_5_e_100.dimacs │ │ │ │ ├── nonplanar_K_5_e_100_p0.dimacs │ │ │ │ ├── nonplanar_K_5_e_100_p1.dimacs │ │ │ │ ├── nonplanar_K_5_e_100_p2.dimacs │ │ │ │ ├── nonplanar_K_5_e_100_p3.dimacs │ │ │ │ ├── nonplanar_K_5_e_100_p4.dimacs │ │ │ │ ├── nonplanar_K_5_e_100_p5.dimacs │ │ │ │ ├── nonplanar_K_5_e_100_p6.dimacs │ │ │ │ ├── nonplanar_K_5_e_100_p7.dimacs │ │ │ │ ├── nonplanar_K_5_e_100_p8.dimacs │ │ │ │ ├── nonplanar_K_5_e_100_p9.dimacs │ │ │ │ ├── nonplanar_K_5_e_10_p0.dimacs │ │ │ │ ├── nonplanar_K_5_e_10_p1.dimacs │ │ │ │ ├── nonplanar_K_5_e_10_p2.dimacs │ │ │ │ ├── nonplanar_K_5_e_10_p3.dimacs │ │ │ │ ├── nonplanar_K_5_e_10_p4.dimacs │ │ │ │ ├── nonplanar_K_5_e_10_p5.dimacs │ │ │ │ ├── nonplanar_K_5_e_10_p6.dimacs │ │ │ │ ├── nonplanar_K_5_e_10_p7.dimacs │ │ │ │ ├── nonplanar_K_5_e_10_p8.dimacs │ │ │ │ ├── nonplanar_K_5_e_10_p9.dimacs │ │ │ │ ├── nonplanar_K_5_e_11.dimacs │ │ │ │ ├── nonplanar_K_5_e_11_p0.dimacs │ │ │ │ ├── nonplanar_K_5_e_11_p1.dimacs │ │ │ │ ├── nonplanar_K_5_e_11_p2.dimacs │ │ │ │ ├── nonplanar_K_5_e_11_p3.dimacs │ │ │ │ ├── nonplanar_K_5_e_11_p4.dimacs │ │ │ │ ├── nonplanar_K_5_e_11_p5.dimacs │ │ │ │ ├── nonplanar_K_5_e_11_p6.dimacs │ │ │ │ ├── nonplanar_K_5_e_11_p7.dimacs │ │ │ │ ├── nonplanar_K_5_e_11_p8.dimacs │ │ │ │ ├── nonplanar_K_5_e_11_p9.dimacs │ │ │ │ ├── nonplanar_K_5_e_12.dimacs │ │ │ │ ├── nonplanar_K_5_e_12_p0.dimacs │ │ │ │ ├── nonplanar_K_5_e_12_p1.dimacs │ │ │ │ ├── nonplanar_K_5_e_12_p2.dimacs │ │ │ │ ├── nonplanar_K_5_e_12_p3.dimacs │ │ │ │ ├── nonplanar_K_5_e_12_p4.dimacs │ │ │ │ ├── nonplanar_K_5_e_12_p5.dimacs │ │ │ │ ├── nonplanar_K_5_e_12_p6.dimacs │ │ │ │ ├── nonplanar_K_5_e_12_p7.dimacs │ │ │ │ ├── nonplanar_K_5_e_12_p8.dimacs │ │ │ │ ├── nonplanar_K_5_e_12_p9.dimacs │ │ │ │ ├── nonplanar_K_5_e_13.dimacs │ │ │ │ ├── nonplanar_K_5_e_13_p0.dimacs │ │ │ │ ├── nonplanar_K_5_e_13_p1.dimacs │ │ │ │ ├── nonplanar_K_5_e_13_p2.dimacs │ │ │ │ ├── nonplanar_K_5_e_13_p3.dimacs │ │ │ │ ├── nonplanar_K_5_e_13_p4.dimacs │ │ │ │ ├── nonplanar_K_5_e_13_p5.dimacs │ │ │ │ ├── nonplanar_K_5_e_13_p6.dimacs │ │ │ │ ├── nonplanar_K_5_e_13_p7.dimacs │ │ │ │ ├── nonplanar_K_5_e_13_p8.dimacs │ │ │ │ ├── nonplanar_K_5_e_13_p9.dimacs │ │ │ │ ├── nonplanar_K_5_e_14.dimacs │ │ │ │ ├── nonplanar_K_5_e_14_p0.dimacs │ │ │ │ ├── nonplanar_K_5_e_14_p1.dimacs │ │ │ │ ├── nonplanar_K_5_e_14_p2.dimacs │ │ │ │ ├── nonplanar_K_5_e_14_p3.dimacs │ │ │ │ ├── nonplanar_K_5_e_14_p4.dimacs │ │ │ │ ├── nonplanar_K_5_e_14_p5.dimacs │ │ │ │ ├── nonplanar_K_5_e_14_p6.dimacs │ │ │ │ ├── nonplanar_K_5_e_14_p7.dimacs │ │ │ │ ├── nonplanar_K_5_e_14_p8.dimacs │ │ │ │ ├── nonplanar_K_5_e_14_p9.dimacs │ │ │ │ ├── nonplanar_K_5_e_15.dimacs │ │ │ │ ├── nonplanar_K_5_e_15_p0.dimacs │ │ │ │ ├── nonplanar_K_5_e_15_p1.dimacs │ │ │ │ ├── nonplanar_K_5_e_15_p2.dimacs │ │ │ │ ├── nonplanar_K_5_e_15_p3.dimacs │ │ │ │ ├── nonplanar_K_5_e_15_p4.dimacs │ │ │ │ ├── nonplanar_K_5_e_15_p5.dimacs │ │ │ │ ├── nonplanar_K_5_e_15_p6.dimacs │ │ │ │ ├── nonplanar_K_5_e_15_p7.dimacs │ │ │ │ ├── nonplanar_K_5_e_15_p8.dimacs │ │ │ │ ├── nonplanar_K_5_e_15_p9.dimacs │ │ │ │ ├── nonplanar_K_5_e_16.dimacs │ │ │ │ ├── nonplanar_K_5_e_16_p0.dimacs │ │ │ │ ├── nonplanar_K_5_e_16_p1.dimacs │ │ │ │ ├── nonplanar_K_5_e_16_p2.dimacs │ │ │ │ ├── nonplanar_K_5_e_16_p3.dimacs │ │ │ │ ├── nonplanar_K_5_e_16_p4.dimacs │ │ │ │ ├── nonplanar_K_5_e_16_p5.dimacs │ │ │ │ ├── nonplanar_K_5_e_16_p6.dimacs │ │ │ │ ├── nonplanar_K_5_e_16_p7.dimacs │ │ │ │ ├── nonplanar_K_5_e_16_p8.dimacs │ │ │ │ ├── nonplanar_K_5_e_16_p9.dimacs │ │ │ │ ├── nonplanar_K_5_e_17.dimacs │ │ │ │ ├── nonplanar_K_5_e_17_p0.dimacs │ │ │ │ ├── nonplanar_K_5_e_17_p1.dimacs │ │ │ │ ├── nonplanar_K_5_e_17_p2.dimacs │ │ │ │ ├── nonplanar_K_5_e_17_p3.dimacs │ │ │ │ ├── nonplanar_K_5_e_17_p4.dimacs │ │ │ │ ├── nonplanar_K_5_e_17_p5.dimacs │ │ │ │ ├── nonplanar_K_5_e_17_p6.dimacs │ │ │ │ ├── nonplanar_K_5_e_17_p7.dimacs │ │ │ │ ├── nonplanar_K_5_e_17_p8.dimacs │ │ │ │ ├── nonplanar_K_5_e_17_p9.dimacs │ │ │ │ ├── nonplanar_K_5_e_18.dimacs │ │ │ │ ├── nonplanar_K_5_e_18_p0.dimacs │ │ │ │ ├── nonplanar_K_5_e_18_p1.dimacs │ │ │ │ ├── nonplanar_K_5_e_18_p2.dimacs │ │ │ │ ├── nonplanar_K_5_e_18_p3.dimacs │ │ │ │ ├── nonplanar_K_5_e_18_p4.dimacs │ │ │ │ ├── nonplanar_K_5_e_18_p5.dimacs │ │ │ │ ├── nonplanar_K_5_e_18_p6.dimacs │ │ │ │ ├── nonplanar_K_5_e_18_p7.dimacs │ │ │ │ ├── nonplanar_K_5_e_18_p8.dimacs │ │ │ │ ├── nonplanar_K_5_e_18_p9.dimacs │ │ │ │ ├── nonplanar_K_5_e_19.dimacs │ │ │ │ ├── nonplanar_K_5_e_19_p0.dimacs │ │ │ │ ├── nonplanar_K_5_e_19_p1.dimacs │ │ │ │ ├── nonplanar_K_5_e_19_p2.dimacs │ │ │ │ ├── nonplanar_K_5_e_19_p3.dimacs │ │ │ │ ├── nonplanar_K_5_e_19_p4.dimacs │ │ │ │ ├── nonplanar_K_5_e_19_p5.dimacs │ │ │ │ ├── nonplanar_K_5_e_19_p6.dimacs │ │ │ │ ├── nonplanar_K_5_e_19_p7.dimacs │ │ │ │ ├── nonplanar_K_5_e_19_p8.dimacs │ │ │ │ ├── nonplanar_K_5_e_19_p9.dimacs │ │ │ │ ├── nonplanar_K_5_e_20.dimacs │ │ │ │ ├── nonplanar_K_5_e_20_p0.dimacs │ │ │ │ ├── nonplanar_K_5_e_20_p1.dimacs │ │ │ │ ├── nonplanar_K_5_e_20_p2.dimacs │ │ │ │ ├── nonplanar_K_5_e_20_p3.dimacs │ │ │ │ ├── nonplanar_K_5_e_20_p4.dimacs │ │ │ │ ├── nonplanar_K_5_e_20_p5.dimacs │ │ │ │ ├── nonplanar_K_5_e_20_p6.dimacs │ │ │ │ ├── nonplanar_K_5_e_20_p7.dimacs │ │ │ │ ├── nonplanar_K_5_e_20_p8.dimacs │ │ │ │ ├── nonplanar_K_5_e_20_p9.dimacs │ │ │ │ ├── nonplanar_K_5_e_30.dimacs │ │ │ │ ├── nonplanar_K_5_e_30_p0.dimacs │ │ │ │ ├── nonplanar_K_5_e_30_p1.dimacs │ │ │ │ ├── nonplanar_K_5_e_30_p2.dimacs │ │ │ │ ├── nonplanar_K_5_e_30_p3.dimacs │ │ │ │ ├── nonplanar_K_5_e_30_p4.dimacs │ │ │ │ ├── nonplanar_K_5_e_30_p5.dimacs │ │ │ │ ├── nonplanar_K_5_e_30_p6.dimacs │ │ │ │ ├── nonplanar_K_5_e_30_p7.dimacs │ │ │ │ ├── nonplanar_K_5_e_30_p8.dimacs │ │ │ │ ├── nonplanar_K_5_e_30_p9.dimacs │ │ │ │ ├── nonplanar_K_5_e_40.dimacs │ │ │ │ ├── nonplanar_K_5_e_40_p0.dimacs │ │ │ │ ├── nonplanar_K_5_e_40_p1.dimacs │ │ │ │ ├── nonplanar_K_5_e_40_p2.dimacs │ │ │ │ ├── nonplanar_K_5_e_40_p3.dimacs │ │ │ │ ├── nonplanar_K_5_e_40_p4.dimacs │ │ │ │ ├── nonplanar_K_5_e_40_p5.dimacs │ │ │ │ ├── nonplanar_K_5_e_40_p6.dimacs │ │ │ │ ├── nonplanar_K_5_e_40_p7.dimacs │ │ │ │ ├── nonplanar_K_5_e_40_p8.dimacs │ │ │ │ ├── nonplanar_K_5_e_40_p9.dimacs │ │ │ │ ├── nonplanar_K_5_e_50.dimacs │ │ │ │ ├── nonplanar_K_5_e_50_p0.dimacs │ │ │ │ ├── nonplanar_K_5_e_50_p1.dimacs │ │ │ │ ├── nonplanar_K_5_e_50_p2.dimacs │ │ │ │ ├── nonplanar_K_5_e_50_p3.dimacs │ │ │ │ ├── nonplanar_K_5_e_50_p4.dimacs │ │ │ │ ├── nonplanar_K_5_e_50_p5.dimacs │ │ │ │ ├── nonplanar_K_5_e_50_p6.dimacs │ │ │ │ ├── nonplanar_K_5_e_50_p7.dimacs │ │ │ │ ├── nonplanar_K_5_e_50_p8.dimacs │ │ │ │ ├── nonplanar_K_5_e_50_p9.dimacs │ │ │ │ ├── nonplanar_K_5_e_6.dimacs │ │ │ │ ├── nonplanar_K_5_e_6_p0.dimacs │ │ │ │ ├── nonplanar_K_5_e_6_p1.dimacs │ │ │ │ ├── nonplanar_K_5_e_6_p2.dimacs │ │ │ │ ├── nonplanar_K_5_e_6_p3.dimacs │ │ │ │ ├── nonplanar_K_5_e_6_p4.dimacs │ │ │ │ ├── nonplanar_K_5_e_6_p5.dimacs │ │ │ │ ├── nonplanar_K_5_e_6_p6.dimacs │ │ │ │ ├── nonplanar_K_5_e_6_p7.dimacs │ │ │ │ ├── nonplanar_K_5_e_6_p8.dimacs │ │ │ │ ├── nonplanar_K_5_e_6_p9.dimacs │ │ │ │ ├── nonplanar_K_5_e_7.dimacs │ │ │ │ ├── nonplanar_K_5_e_7_p0.dimacs │ │ │ │ ├── nonplanar_K_5_e_7_p1.dimacs │ │ │ │ ├── nonplanar_K_5_e_7_p2.dimacs │ │ │ │ ├── nonplanar_K_5_e_7_p3.dimacs │ │ │ │ ├── nonplanar_K_5_e_7_p4.dimacs │ │ │ │ ├── nonplanar_K_5_e_7_p5.dimacs │ │ │ │ ├── nonplanar_K_5_e_7_p6.dimacs │ │ │ │ ├── nonplanar_K_5_e_7_p7.dimacs │ │ │ │ ├── nonplanar_K_5_e_7_p8.dimacs │ │ │ │ ├── nonplanar_K_5_e_7_p9.dimacs │ │ │ │ ├── nonplanar_K_5_e_8.dimacs │ │ │ │ ├── nonplanar_K_5_e_8_p0.dimacs │ │ │ │ ├── nonplanar_K_5_e_8_p1.dimacs │ │ │ │ ├── nonplanar_K_5_e_8_p2.dimacs │ │ │ │ ├── nonplanar_K_5_e_8_p3.dimacs │ │ │ │ ├── nonplanar_K_5_e_8_p4.dimacs │ │ │ │ ├── nonplanar_K_5_e_8_p5.dimacs │ │ │ │ ├── nonplanar_K_5_e_8_p6.dimacs │ │ │ │ ├── nonplanar_K_5_e_8_p7.dimacs │ │ │ │ ├── nonplanar_K_5_e_8_p8.dimacs │ │ │ │ ├── nonplanar_K_5_e_8_p9.dimacs │ │ │ │ ├── nonplanar_K_5_e_9.dimacs │ │ │ │ ├── nonplanar_K_5_e_9_p0.dimacs │ │ │ │ ├── nonplanar_K_5_e_9_p1.dimacs │ │ │ │ ├── nonplanar_K_5_e_9_p2.dimacs │ │ │ │ ├── nonplanar_K_5_e_9_p3.dimacs │ │ │ │ ├── nonplanar_K_5_e_9_p4.dimacs │ │ │ │ ├── nonplanar_K_5_e_9_p5.dimacs │ │ │ │ ├── nonplanar_K_5_e_9_p6.dimacs │ │ │ │ ├── nonplanar_K_5_e_9_p7.dimacs │ │ │ │ ├── nonplanar_K_5_e_9_p8.dimacs │ │ │ │ ├── nonplanar_K_5_e_9_p9.dimacs │ │ │ │ ├── nonplanar_K_5_p0.dimacs │ │ │ │ ├── nonplanar_K_5_p1.dimacs │ │ │ │ ├── nonplanar_K_5_p2.dimacs │ │ │ │ ├── nonplanar_K_5_p3.dimacs │ │ │ │ ├── nonplanar_K_5_p4.dimacs │ │ │ │ ├── nonplanar_K_5_p5.dimacs │ │ │ │ ├── nonplanar_K_5_p6.dimacs │ │ │ │ ├── nonplanar_K_5_p7.dimacs │ │ │ │ ├── nonplanar_K_5_p8.dimacs │ │ │ │ ├── nonplanar_K_5_p9.dimacs │ │ │ │ ├── nonplanar_case_A_1.dimacs │ │ │ │ ├── nonplanar_case_B_1.dimacs │ │ │ │ ├── nonplanar_case_B_2.dimacs │ │ │ │ ├── nonplanar_case_B_sc.dimacs │ │ │ │ ├── nonplanar_case_B_scl.dimacs │ │ │ │ ├── nonplanar_case_B_z_w.dimacs │ │ │ │ ├── nonplanar_case_C_1.dimacs │ │ │ │ ├── nonplanar_case_C_10.dimacs │ │ │ │ ├── nonplanar_case_C_11.dimacs │ │ │ │ ├── nonplanar_case_C_2.dimacs │ │ │ │ ├── nonplanar_case_C_3.dimacs │ │ │ │ ├── nonplanar_case_C_4.dimacs │ │ │ │ ├── nonplanar_case_C_5.dimacs │ │ │ │ ├── nonplanar_case_C_6.dimacs │ │ │ │ ├── nonplanar_case_C_7.dimacs │ │ │ │ ├── nonplanar_case_C_8.dimacs │ │ │ │ ├── nonplanar_case_C_9.dimacs │ │ │ │ ├── nonplanar_case_D_1.dimacs │ │ │ │ ├── nonplanar_case_D_2.dimacs │ │ │ │ ├── nonplanar_case_D_3.dimacs │ │ │ │ ├── nonplanar_case_D_4.dimacs │ │ │ │ ├── nonplanar_case_D_5.dimacs │ │ │ │ ├── nonplanar_case_E_1.dimacs │ │ │ │ ├── nonplanar_case_E_2.dimacs │ │ │ │ ├── nonplanar_case_E_3.dimacs │ │ │ │ ├── nonplanar_case_E_4.dimacs │ │ │ │ ├── nonplanar_case_E_5.dimacs │ │ │ │ ├── nonplanar_case_E_6.dimacs │ │ │ │ ├── nonplanar_case_E_7.dimacs │ │ │ │ ├── nonplanar_mpo_10.dimacs │ │ │ │ ├── nonplanar_mpo_100.dimacs │ │ │ │ ├── nonplanar_mpo_100_p0.dimacs │ │ │ │ ├── nonplanar_mpo_100_p1.dimacs │ │ │ │ ├── nonplanar_mpo_100_p2.dimacs │ │ │ │ ├── nonplanar_mpo_100_p3.dimacs │ │ │ │ ├── nonplanar_mpo_100_p4.dimacs │ │ │ │ ├── nonplanar_mpo_100_p5.dimacs │ │ │ │ ├── nonplanar_mpo_100_p6.dimacs │ │ │ │ ├── nonplanar_mpo_100_p7.dimacs │ │ │ │ ├── nonplanar_mpo_100_p8.dimacs │ │ │ │ ├── nonplanar_mpo_100_p9.dimacs │ │ │ │ ├── nonplanar_mpo_10_p0.dimacs │ │ │ │ ├── nonplanar_mpo_10_p1.dimacs │ │ │ │ ├── nonplanar_mpo_10_p2.dimacs │ │ │ │ ├── nonplanar_mpo_10_p3.dimacs │ │ │ │ ├── nonplanar_mpo_10_p4.dimacs │ │ │ │ ├── nonplanar_mpo_10_p5.dimacs │ │ │ │ ├── nonplanar_mpo_10_p6.dimacs │ │ │ │ ├── nonplanar_mpo_10_p7.dimacs │ │ │ │ ├── nonplanar_mpo_10_p8.dimacs │ │ │ │ ├── nonplanar_mpo_10_p9.dimacs │ │ │ │ ├── nonplanar_mpo_30.dimacs │ │ │ │ ├── nonplanar_mpo_30_p0.dimacs │ │ │ │ ├── nonplanar_mpo_30_p1.dimacs │ │ │ │ ├── nonplanar_mpo_30_p2.dimacs │ │ │ │ ├── nonplanar_mpo_30_p3.dimacs │ │ │ │ ├── nonplanar_mpo_30_p4.dimacs │ │ │ │ ├── nonplanar_mpo_30_p5.dimacs │ │ │ │ ├── nonplanar_mpo_30_p6.dimacs │ │ │ │ ├── nonplanar_mpo_30_p7.dimacs │ │ │ │ ├── nonplanar_mpo_30_p8.dimacs │ │ │ │ ├── nonplanar_mpo_30_p9.dimacs │ │ │ │ ├── nonplanar_mpo_50.dimacs │ │ │ │ ├── nonplanar_mpo_50_p0.dimacs │ │ │ │ ├── nonplanar_mpo_50_p1.dimacs │ │ │ │ ├── nonplanar_mpo_50_p2.dimacs │ │ │ │ ├── nonplanar_mpo_50_p3.dimacs │ │ │ │ ├── nonplanar_mpo_50_p4.dimacs │ │ │ │ ├── nonplanar_mpo_50_p5.dimacs │ │ │ │ ├── nonplanar_mpo_50_p6.dimacs │ │ │ │ ├── nonplanar_mpo_50_p7.dimacs │ │ │ │ ├── nonplanar_mpo_50_p8.dimacs │ │ │ │ ├── nonplanar_mpo_50_p9.dimacs │ │ │ │ ├── nonplanar_peterson.dimacs │ │ │ │ ├── nonplanar_peterson_p0.dimacs │ │ │ │ ├── nonplanar_peterson_p1.dimacs │ │ │ │ ├── nonplanar_peterson_p2.dimacs │ │ │ │ ├── nonplanar_peterson_p3.dimacs │ │ │ │ ├── nonplanar_peterson_p4.dimacs │ │ │ │ ├── nonplanar_peterson_p5.dimacs │ │ │ │ ├── nonplanar_peterson_p6.dimacs │ │ │ │ ├── nonplanar_peterson_p7.dimacs │ │ │ │ ├── nonplanar_peterson_p8.dimacs │ │ │ │ ├── nonplanar_peterson_p9.dimacs │ │ │ │ ├── nonplanar_rot_case_D.dimacs │ │ │ │ ├── nonplanar_twisted_sc.dimacs │ │ │ │ ├── planar_5_con_cycles_a.dimacs │ │ │ │ ├── planar_5_con_cycles_a_p0.dimacs │ │ │ │ ├── planar_5_con_cycles_a_p1.dimacs │ │ │ │ ├── planar_5_con_cycles_a_p2.dimacs │ │ │ │ ├── planar_5_con_cycles_a_p3.dimacs │ │ │ │ ├── planar_5_con_cycles_a_p4.dimacs │ │ │ │ ├── planar_5_con_cycles_a_p5.dimacs │ │ │ │ ├── planar_5_con_cycles_a_p6.dimacs │ │ │ │ ├── planar_5_con_cycles_a_p7.dimacs │ │ │ │ ├── planar_5_con_cycles_a_p8.dimacs │ │ │ │ ├── planar_5_con_cycles_a_p9.dimacs │ │ │ │ ├── planar_5_con_cycles_b.dimacs │ │ │ │ ├── planar_5_con_cycles_b_p0.dimacs │ │ │ │ ├── planar_5_con_cycles_b_p1.dimacs │ │ │ │ ├── planar_5_con_cycles_b_p2.dimacs │ │ │ │ ├── planar_5_con_cycles_b_p3.dimacs │ │ │ │ ├── planar_5_con_cycles_b_p4.dimacs │ │ │ │ ├── planar_5_con_cycles_b_p5.dimacs │ │ │ │ ├── planar_5_con_cycles_b_p6.dimacs │ │ │ │ ├── planar_5_con_cycles_b_p7.dimacs │ │ │ │ ├── planar_5_con_cycles_b_p8.dimacs │ │ │ │ ├── planar_5_con_cycles_b_p9.dimacs │ │ │ │ ├── planar_5_con_cycles_c.dimacs │ │ │ │ ├── planar_5_con_cycles_c_p0.dimacs │ │ │ │ ├── planar_5_con_cycles_c_p1.dimacs │ │ │ │ ├── planar_5_con_cycles_c_p2.dimacs │ │ │ │ ├── planar_5_con_cycles_c_p3.dimacs │ │ │ │ ├── planar_5_con_cycles_c_p4.dimacs │ │ │ │ ├── planar_5_con_cycles_c_p5.dimacs │ │ │ │ ├── planar_5_con_cycles_c_p6.dimacs │ │ │ │ ├── planar_5_con_cycles_c_p7.dimacs │ │ │ │ ├── planar_5_con_cycles_c_p8.dimacs │ │ │ │ ├── planar_5_con_cycles_c_p9.dimacs │ │ │ │ ├── planar_5_con_cycles_d.dimacs │ │ │ │ ├── planar_5_con_cycles_d_p0.dimacs │ │ │ │ ├── planar_5_con_cycles_d_p1.dimacs │ │ │ │ ├── planar_5_con_cycles_d_p2.dimacs │ │ │ │ ├── planar_5_con_cycles_d_p3.dimacs │ │ │ │ ├── planar_5_con_cycles_d_p4.dimacs │ │ │ │ ├── planar_5_con_cycles_d_p5.dimacs │ │ │ │ ├── planar_5_con_cycles_d_p6.dimacs │ │ │ │ ├── planar_5_con_cycles_d_p7.dimacs │ │ │ │ ├── planar_5_con_cycles_d_p8.dimacs │ │ │ │ ├── planar_5_con_cycles_d_p9.dimacs │ │ │ │ ├── planar_5_con_cycles_e.dimacs │ │ │ │ ├── planar_5_con_cycles_e_p0.dimacs │ │ │ │ ├── planar_5_con_cycles_e_p1.dimacs │ │ │ │ ├── planar_5_con_cycles_e_p2.dimacs │ │ │ │ ├── planar_5_con_cycles_e_p3.dimacs │ │ │ │ ├── planar_5_con_cycles_e_p4.dimacs │ │ │ │ ├── planar_5_con_cycles_e_p5.dimacs │ │ │ │ ├── planar_5_con_cycles_e_p6.dimacs │ │ │ │ ├── planar_5_con_cycles_e_p7.dimacs │ │ │ │ ├── planar_5_con_cycles_e_p8.dimacs │ │ │ │ ├── planar_5_con_cycles_e_p9.dimacs │ │ │ │ ├── planar_K_3_3_sub_1.dimacs │ │ │ │ ├── planar_K_3_3_sub_1_p0.dimacs │ │ │ │ ├── planar_K_3_3_sub_1_p1.dimacs │ │ │ │ ├── planar_K_3_3_sub_1_p2.dimacs │ │ │ │ ├── planar_K_3_3_sub_1_p3.dimacs │ │ │ │ ├── planar_K_3_3_sub_1_p4.dimacs │ │ │ │ ├── planar_K_3_3_sub_1_p5.dimacs │ │ │ │ ├── planar_K_3_3_sub_1_p6.dimacs │ │ │ │ ├── planar_K_3_3_sub_1_p7.dimacs │ │ │ │ ├── planar_K_3_3_sub_1_p8.dimacs │ │ │ │ ├── planar_K_3_3_sub_1_p9.dimacs │ │ │ │ ├── planar_K_3_3_sub_2.dimacs │ │ │ │ ├── planar_K_3_3_sub_2_p0.dimacs │ │ │ │ ├── planar_K_3_3_sub_2_p1.dimacs │ │ │ │ ├── planar_K_3_3_sub_2_p2.dimacs │ │ │ │ ├── planar_K_3_3_sub_2_p3.dimacs │ │ │ │ ├── planar_K_3_3_sub_2_p4.dimacs │ │ │ │ ├── planar_K_3_3_sub_2_p5.dimacs │ │ │ │ ├── planar_K_3_3_sub_2_p6.dimacs │ │ │ │ ├── planar_K_3_3_sub_2_p7.dimacs │ │ │ │ ├── planar_K_3_3_sub_2_p8.dimacs │ │ │ │ ├── planar_K_3_3_sub_2_p9.dimacs │ │ │ │ ├── planar_K_3_3_sub_3.dimacs │ │ │ │ ├── planar_K_3_3_sub_3_p0.dimacs │ │ │ │ ├── planar_K_3_3_sub_3_p1.dimacs │ │ │ │ ├── planar_K_3_3_sub_3_p2.dimacs │ │ │ │ ├── planar_K_3_3_sub_3_p3.dimacs │ │ │ │ ├── planar_K_3_3_sub_3_p4.dimacs │ │ │ │ ├── planar_K_3_3_sub_3_p5.dimacs │ │ │ │ ├── planar_K_3_3_sub_3_p6.dimacs │ │ │ │ ├── planar_K_3_3_sub_3_p7.dimacs │ │ │ │ ├── planar_K_3_3_sub_3_p8.dimacs │ │ │ │ ├── planar_K_3_3_sub_3_p9.dimacs │ │ │ │ ├── planar_K_3_3_sub_4.dimacs │ │ │ │ ├── planar_K_3_3_sub_4_p0.dimacs │ │ │ │ ├── planar_K_3_3_sub_4_p1.dimacs │ │ │ │ ├── planar_K_3_3_sub_4_p2.dimacs │ │ │ │ ├── planar_K_3_3_sub_4_p3.dimacs │ │ │ │ ├── planar_K_3_3_sub_4_p4.dimacs │ │ │ │ ├── planar_K_3_3_sub_4_p5.dimacs │ │ │ │ ├── planar_K_3_3_sub_4_p6.dimacs │ │ │ │ ├── planar_K_3_3_sub_4_p7.dimacs │ │ │ │ ├── planar_K_3_3_sub_4_p8.dimacs │ │ │ │ ├── planar_K_3_3_sub_4_p9.dimacs │ │ │ │ ├── planar_K_3_3_sub_5.dimacs │ │ │ │ ├── planar_K_3_3_sub_5_p0.dimacs │ │ │ │ ├── planar_K_3_3_sub_5_p1.dimacs │ │ │ │ ├── planar_K_3_3_sub_5_p2.dimacs │ │ │ │ ├── planar_K_3_3_sub_5_p3.dimacs │ │ │ │ ├── planar_K_3_3_sub_5_p4.dimacs │ │ │ │ ├── planar_K_3_3_sub_5_p5.dimacs │ │ │ │ ├── planar_K_3_3_sub_5_p6.dimacs │ │ │ │ ├── planar_K_3_3_sub_5_p7.dimacs │ │ │ │ ├── planar_K_3_3_sub_5_p8.dimacs │ │ │ │ ├── planar_K_3_3_sub_5_p9.dimacs │ │ │ │ ├── planar_K_3_3_sub_6.dimacs │ │ │ │ ├── planar_K_3_3_sub_6_p0.dimacs │ │ │ │ ├── planar_K_3_3_sub_6_p1.dimacs │ │ │ │ ├── planar_K_3_3_sub_6_p2.dimacs │ │ │ │ ├── planar_K_3_3_sub_6_p3.dimacs │ │ │ │ ├── planar_K_3_3_sub_6_p4.dimacs │ │ │ │ ├── planar_K_3_3_sub_6_p5.dimacs │ │ │ │ ├── planar_K_3_3_sub_6_p6.dimacs │ │ │ │ ├── planar_K_3_3_sub_6_p7.dimacs │ │ │ │ ├── planar_K_3_3_sub_6_p8.dimacs │ │ │ │ ├── planar_K_3_3_sub_6_p9.dimacs │ │ │ │ ├── planar_K_3_3_sub_7.dimacs │ │ │ │ ├── planar_K_3_3_sub_7_p0.dimacs │ │ │ │ ├── planar_K_3_3_sub_7_p1.dimacs │ │ │ │ ├── planar_K_3_3_sub_7_p2.dimacs │ │ │ │ ├── planar_K_3_3_sub_7_p3.dimacs │ │ │ │ ├── planar_K_3_3_sub_7_p4.dimacs │ │ │ │ ├── planar_K_3_3_sub_7_p5.dimacs │ │ │ │ ├── planar_K_3_3_sub_7_p6.dimacs │ │ │ │ ├── planar_K_3_3_sub_7_p7.dimacs │ │ │ │ ├── planar_K_3_3_sub_7_p8.dimacs │ │ │ │ ├── planar_K_3_3_sub_7_p9.dimacs │ │ │ │ ├── planar_K_3_3_sub_8.dimacs │ │ │ │ ├── planar_K_3_3_sub_8_p0.dimacs │ │ │ │ ├── planar_K_3_3_sub_8_p1.dimacs │ │ │ │ ├── planar_K_3_3_sub_8_p2.dimacs │ │ │ │ ├── planar_K_3_3_sub_8_p3.dimacs │ │ │ │ ├── planar_K_3_3_sub_8_p4.dimacs │ │ │ │ ├── planar_K_3_3_sub_8_p5.dimacs │ │ │ │ ├── planar_K_3_3_sub_8_p6.dimacs │ │ │ │ ├── planar_K_3_3_sub_8_p7.dimacs │ │ │ │ ├── planar_K_3_3_sub_8_p8.dimacs │ │ │ │ ├── planar_K_3_3_sub_8_p9.dimacs │ │ │ │ ├── planar_K_3_3_sub_9.dimacs │ │ │ │ ├── planar_K_3_3_sub_9_p0.dimacs │ │ │ │ ├── planar_K_3_3_sub_9_p1.dimacs │ │ │ │ ├── planar_K_3_3_sub_9_p2.dimacs │ │ │ │ ├── planar_K_3_3_sub_9_p3.dimacs │ │ │ │ ├── planar_K_3_3_sub_9_p4.dimacs │ │ │ │ ├── planar_K_3_3_sub_9_p5.dimacs │ │ │ │ ├── planar_K_3_3_sub_9_p6.dimacs │ │ │ │ ├── planar_K_3_3_sub_9_p7.dimacs │ │ │ │ ├── planar_K_3_3_sub_9_p8.dimacs │ │ │ │ ├── planar_K_3_3_sub_9_p9.dimacs │ │ │ │ ├── planar_K_4.dimacs │ │ │ │ ├── planar_K_4_e_10.dimacs │ │ │ │ ├── planar_K_4_e_100.dimacs │ │ │ │ ├── planar_K_4_e_100_p0.dimacs │ │ │ │ ├── planar_K_4_e_100_p1.dimacs │ │ │ │ ├── planar_K_4_e_100_p2.dimacs │ │ │ │ ├── planar_K_4_e_100_p3.dimacs │ │ │ │ ├── planar_K_4_e_100_p4.dimacs │ │ │ │ ├── planar_K_4_e_100_p5.dimacs │ │ │ │ ├── planar_K_4_e_100_p6.dimacs │ │ │ │ ├── planar_K_4_e_100_p7.dimacs │ │ │ │ ├── planar_K_4_e_100_p8.dimacs │ │ │ │ ├── planar_K_4_e_100_p9.dimacs │ │ │ │ ├── planar_K_4_e_10_p0.dimacs │ │ │ │ ├── planar_K_4_e_10_p1.dimacs │ │ │ │ ├── planar_K_4_e_10_p2.dimacs │ │ │ │ ├── planar_K_4_e_10_p3.dimacs │ │ │ │ ├── planar_K_4_e_10_p4.dimacs │ │ │ │ ├── planar_K_4_e_10_p5.dimacs │ │ │ │ ├── planar_K_4_e_10_p6.dimacs │ │ │ │ ├── planar_K_4_e_10_p7.dimacs │ │ │ │ ├── planar_K_4_e_10_p8.dimacs │ │ │ │ ├── planar_K_4_e_10_p9.dimacs │ │ │ │ ├── planar_K_4_e_11.dimacs │ │ │ │ ├── planar_K_4_e_11_p0.dimacs │ │ │ │ ├── planar_K_4_e_11_p1.dimacs │ │ │ │ ├── planar_K_4_e_11_p2.dimacs │ │ │ │ ├── planar_K_4_e_11_p3.dimacs │ │ │ │ ├── planar_K_4_e_11_p4.dimacs │ │ │ │ ├── planar_K_4_e_11_p5.dimacs │ │ │ │ ├── planar_K_4_e_11_p6.dimacs │ │ │ │ ├── planar_K_4_e_11_p7.dimacs │ │ │ │ ├── planar_K_4_e_11_p8.dimacs │ │ │ │ ├── planar_K_4_e_11_p9.dimacs │ │ │ │ ├── planar_K_4_e_12.dimacs │ │ │ │ ├── planar_K_4_e_12_p0.dimacs │ │ │ │ ├── planar_K_4_e_12_p1.dimacs │ │ │ │ ├── planar_K_4_e_12_p2.dimacs │ │ │ │ ├── planar_K_4_e_12_p3.dimacs │ │ │ │ ├── planar_K_4_e_12_p4.dimacs │ │ │ │ ├── planar_K_4_e_12_p5.dimacs │ │ │ │ ├── planar_K_4_e_12_p6.dimacs │ │ │ │ ├── planar_K_4_e_12_p7.dimacs │ │ │ │ ├── planar_K_4_e_12_p8.dimacs │ │ │ │ ├── planar_K_4_e_12_p9.dimacs │ │ │ │ ├── planar_K_4_e_13.dimacs │ │ │ │ ├── planar_K_4_e_13_p0.dimacs │ │ │ │ ├── planar_K_4_e_13_p1.dimacs │ │ │ │ ├── planar_K_4_e_13_p2.dimacs │ │ │ │ ├── planar_K_4_e_13_p3.dimacs │ │ │ │ ├── planar_K_4_e_13_p4.dimacs │ │ │ │ ├── planar_K_4_e_13_p5.dimacs │ │ │ │ ├── planar_K_4_e_13_p6.dimacs │ │ │ │ ├── planar_K_4_e_13_p7.dimacs │ │ │ │ ├── planar_K_4_e_13_p8.dimacs │ │ │ │ ├── planar_K_4_e_13_p9.dimacs │ │ │ │ ├── planar_K_4_e_14.dimacs │ │ │ │ ├── planar_K_4_e_14_p0.dimacs │ │ │ │ ├── planar_K_4_e_14_p1.dimacs │ │ │ │ ├── planar_K_4_e_14_p2.dimacs │ │ │ │ ├── planar_K_4_e_14_p3.dimacs │ │ │ │ ├── planar_K_4_e_14_p4.dimacs │ │ │ │ ├── planar_K_4_e_14_p5.dimacs │ │ │ │ ├── planar_K_4_e_14_p6.dimacs │ │ │ │ ├── planar_K_4_e_14_p7.dimacs │ │ │ │ ├── planar_K_4_e_14_p8.dimacs │ │ │ │ ├── planar_K_4_e_14_p9.dimacs │ │ │ │ ├── planar_K_4_e_15.dimacs │ │ │ │ ├── planar_K_4_e_15_p0.dimacs │ │ │ │ ├── planar_K_4_e_15_p1.dimacs │ │ │ │ ├── planar_K_4_e_15_p2.dimacs │ │ │ │ ├── planar_K_4_e_15_p3.dimacs │ │ │ │ ├── planar_K_4_e_15_p4.dimacs │ │ │ │ ├── planar_K_4_e_15_p5.dimacs │ │ │ │ ├── planar_K_4_e_15_p6.dimacs │ │ │ │ ├── planar_K_4_e_15_p7.dimacs │ │ │ │ ├── planar_K_4_e_15_p8.dimacs │ │ │ │ ├── planar_K_4_e_15_p9.dimacs │ │ │ │ ├── planar_K_4_e_16.dimacs │ │ │ │ ├── planar_K_4_e_16_p0.dimacs │ │ │ │ ├── planar_K_4_e_16_p1.dimacs │ │ │ │ ├── planar_K_4_e_16_p2.dimacs │ │ │ │ ├── planar_K_4_e_16_p3.dimacs │ │ │ │ ├── planar_K_4_e_16_p4.dimacs │ │ │ │ ├── planar_K_4_e_16_p5.dimacs │ │ │ │ ├── planar_K_4_e_16_p6.dimacs │ │ │ │ ├── planar_K_4_e_16_p7.dimacs │ │ │ │ ├── planar_K_4_e_16_p8.dimacs │ │ │ │ ├── planar_K_4_e_16_p9.dimacs │ │ │ │ ├── planar_K_4_e_17.dimacs │ │ │ │ ├── planar_K_4_e_17_p0.dimacs │ │ │ │ ├── planar_K_4_e_17_p1.dimacs │ │ │ │ ├── planar_K_4_e_17_p2.dimacs │ │ │ │ ├── planar_K_4_e_17_p3.dimacs │ │ │ │ ├── planar_K_4_e_17_p4.dimacs │ │ │ │ ├── planar_K_4_e_17_p5.dimacs │ │ │ │ ├── planar_K_4_e_17_p6.dimacs │ │ │ │ ├── planar_K_4_e_17_p7.dimacs │ │ │ │ ├── planar_K_4_e_17_p8.dimacs │ │ │ │ ├── planar_K_4_e_17_p9.dimacs │ │ │ │ ├── planar_K_4_e_18.dimacs │ │ │ │ ├── planar_K_4_e_18_p0.dimacs │ │ │ │ ├── planar_K_4_e_18_p1.dimacs │ │ │ │ ├── planar_K_4_e_18_p2.dimacs │ │ │ │ ├── planar_K_4_e_18_p3.dimacs │ │ │ │ ├── planar_K_4_e_18_p4.dimacs │ │ │ │ ├── planar_K_4_e_18_p5.dimacs │ │ │ │ ├── planar_K_4_e_18_p6.dimacs │ │ │ │ ├── planar_K_4_e_18_p7.dimacs │ │ │ │ ├── planar_K_4_e_18_p8.dimacs │ │ │ │ ├── planar_K_4_e_18_p9.dimacs │ │ │ │ ├── planar_K_4_e_19.dimacs │ │ │ │ ├── planar_K_4_e_19_p0.dimacs │ │ │ │ ├── planar_K_4_e_19_p1.dimacs │ │ │ │ ├── planar_K_4_e_19_p2.dimacs │ │ │ │ ├── planar_K_4_e_19_p3.dimacs │ │ │ │ ├── planar_K_4_e_19_p4.dimacs │ │ │ │ ├── planar_K_4_e_19_p5.dimacs │ │ │ │ ├── planar_K_4_e_19_p6.dimacs │ │ │ │ ├── planar_K_4_e_19_p7.dimacs │ │ │ │ ├── planar_K_4_e_19_p8.dimacs │ │ │ │ ├── planar_K_4_e_19_p9.dimacs │ │ │ │ ├── planar_K_4_e_20.dimacs │ │ │ │ ├── planar_K_4_e_20_p0.dimacs │ │ │ │ ├── planar_K_4_e_20_p1.dimacs │ │ │ │ ├── planar_K_4_e_20_p2.dimacs │ │ │ │ ├── planar_K_4_e_20_p3.dimacs │ │ │ │ ├── planar_K_4_e_20_p4.dimacs │ │ │ │ ├── planar_K_4_e_20_p5.dimacs │ │ │ │ ├── planar_K_4_e_20_p6.dimacs │ │ │ │ ├── planar_K_4_e_20_p7.dimacs │ │ │ │ ├── planar_K_4_e_20_p8.dimacs │ │ │ │ ├── planar_K_4_e_20_p9.dimacs │ │ │ │ ├── planar_K_4_e_21.dimacs │ │ │ │ ├── planar_K_4_e_21_p0.dimacs │ │ │ │ ├── planar_K_4_e_21_p1.dimacs │ │ │ │ ├── planar_K_4_e_21_p2.dimacs │ │ │ │ ├── planar_K_4_e_21_p3.dimacs │ │ │ │ ├── planar_K_4_e_21_p4.dimacs │ │ │ │ ├── planar_K_4_e_21_p5.dimacs │ │ │ │ ├── planar_K_4_e_21_p6.dimacs │ │ │ │ ├── planar_K_4_e_21_p7.dimacs │ │ │ │ ├── planar_K_4_e_21_p8.dimacs │ │ │ │ ├── planar_K_4_e_21_p9.dimacs │ │ │ │ ├── planar_K_4_e_25.dimacs │ │ │ │ ├── planar_K_4_e_25_p0.dimacs │ │ │ │ ├── planar_K_4_e_25_p1.dimacs │ │ │ │ ├── planar_K_4_e_25_p2.dimacs │ │ │ │ ├── planar_K_4_e_25_p3.dimacs │ │ │ │ ├── planar_K_4_e_25_p4.dimacs │ │ │ │ ├── planar_K_4_e_25_p5.dimacs │ │ │ │ ├── planar_K_4_e_25_p6.dimacs │ │ │ │ ├── planar_K_4_e_25_p7.dimacs │ │ │ │ ├── planar_K_4_e_25_p8.dimacs │ │ │ │ ├── planar_K_4_e_25_p9.dimacs │ │ │ │ ├── planar_K_4_e_30.dimacs │ │ │ │ ├── planar_K_4_e_30_p0.dimacs │ │ │ │ ├── planar_K_4_e_30_p1.dimacs │ │ │ │ ├── planar_K_4_e_30_p2.dimacs │ │ │ │ ├── planar_K_4_e_30_p3.dimacs │ │ │ │ ├── planar_K_4_e_30_p4.dimacs │ │ │ │ ├── planar_K_4_e_30_p5.dimacs │ │ │ │ ├── planar_K_4_e_30_p6.dimacs │ │ │ │ ├── planar_K_4_e_30_p7.dimacs │ │ │ │ ├── planar_K_4_e_30_p8.dimacs │ │ │ │ ├── planar_K_4_e_30_p9.dimacs │ │ │ │ ├── planar_K_4_e_5.dimacs │ │ │ │ ├── planar_K_4_e_50.dimacs │ │ │ │ ├── planar_K_4_e_50_p0.dimacs │ │ │ │ ├── planar_K_4_e_50_p1.dimacs │ │ │ │ ├── planar_K_4_e_50_p2.dimacs │ │ │ │ ├── planar_K_4_e_50_p3.dimacs │ │ │ │ ├── planar_K_4_e_50_p4.dimacs │ │ │ │ ├── planar_K_4_e_50_p5.dimacs │ │ │ │ ├── planar_K_4_e_50_p6.dimacs │ │ │ │ ├── planar_K_4_e_50_p7.dimacs │ │ │ │ ├── planar_K_4_e_50_p8.dimacs │ │ │ │ ├── planar_K_4_e_50_p9.dimacs │ │ │ │ ├── planar_K_4_e_5_p0.dimacs │ │ │ │ ├── planar_K_4_e_5_p1.dimacs │ │ │ │ ├── planar_K_4_e_5_p2.dimacs │ │ │ │ ├── planar_K_4_e_5_p3.dimacs │ │ │ │ ├── planar_K_4_e_5_p4.dimacs │ │ │ │ ├── planar_K_4_e_5_p5.dimacs │ │ │ │ ├── planar_K_4_e_5_p6.dimacs │ │ │ │ ├── planar_K_4_e_5_p7.dimacs │ │ │ │ ├── planar_K_4_e_5_p8.dimacs │ │ │ │ ├── planar_K_4_e_5_p9.dimacs │ │ │ │ ├── planar_K_4_e_6.dimacs │ │ │ │ ├── planar_K_4_e_6_p0.dimacs │ │ │ │ ├── planar_K_4_e_6_p1.dimacs │ │ │ │ ├── planar_K_4_e_6_p2.dimacs │ │ │ │ ├── planar_K_4_e_6_p3.dimacs │ │ │ │ ├── planar_K_4_e_6_p4.dimacs │ │ │ │ ├── planar_K_4_e_6_p5.dimacs │ │ │ │ ├── planar_K_4_e_6_p6.dimacs │ │ │ │ ├── planar_K_4_e_6_p7.dimacs │ │ │ │ ├── planar_K_4_e_6_p8.dimacs │ │ │ │ ├── planar_K_4_e_6_p9.dimacs │ │ │ │ ├── planar_K_4_e_7.dimacs │ │ │ │ ├── planar_K_4_e_7_p0.dimacs │ │ │ │ ├── planar_K_4_e_7_p1.dimacs │ │ │ │ ├── planar_K_4_e_7_p2.dimacs │ │ │ │ ├── planar_K_4_e_7_p3.dimacs │ │ │ │ ├── planar_K_4_e_7_p4.dimacs │ │ │ │ ├── planar_K_4_e_7_p5.dimacs │ │ │ │ ├── planar_K_4_e_7_p6.dimacs │ │ │ │ ├── planar_K_4_e_7_p7.dimacs │ │ │ │ ├── planar_K_4_e_7_p8.dimacs │ │ │ │ ├── planar_K_4_e_7_p9.dimacs │ │ │ │ ├── planar_K_4_e_8.dimacs │ │ │ │ ├── planar_K_4_e_8_p0.dimacs │ │ │ │ ├── planar_K_4_e_8_p1.dimacs │ │ │ │ ├── planar_K_4_e_8_p2.dimacs │ │ │ │ ├── planar_K_4_e_8_p3.dimacs │ │ │ │ ├── planar_K_4_e_8_p4.dimacs │ │ │ │ ├── planar_K_4_e_8_p5.dimacs │ │ │ │ ├── planar_K_4_e_8_p6.dimacs │ │ │ │ ├── planar_K_4_e_8_p7.dimacs │ │ │ │ ├── planar_K_4_e_8_p8.dimacs │ │ │ │ ├── planar_K_4_e_8_p9.dimacs │ │ │ │ ├── planar_K_4_e_9.dimacs │ │ │ │ ├── planar_K_4_e_9_p0.dimacs │ │ │ │ ├── planar_K_4_e_9_p1.dimacs │ │ │ │ ├── planar_K_4_e_9_p2.dimacs │ │ │ │ ├── planar_K_4_e_9_p3.dimacs │ │ │ │ ├── planar_K_4_e_9_p4.dimacs │ │ │ │ ├── planar_K_4_e_9_p5.dimacs │ │ │ │ ├── planar_K_4_e_9_p6.dimacs │ │ │ │ ├── planar_K_4_e_9_p7.dimacs │ │ │ │ ├── planar_K_4_e_9_p8.dimacs │ │ │ │ ├── planar_K_4_e_9_p9.dimacs │ │ │ │ ├── planar_K_4_p0.dimacs │ │ │ │ ├── planar_K_4_p1.dimacs │ │ │ │ ├── planar_K_4_p2.dimacs │ │ │ │ ├── planar_K_4_p3.dimacs │ │ │ │ ├── planar_K_4_p4.dimacs │ │ │ │ ├── planar_K_4_p5.dimacs │ │ │ │ ├── planar_K_4_p6.dimacs │ │ │ │ ├── planar_K_4_p7.dimacs │ │ │ │ ├── planar_K_4_p8.dimacs │ │ │ │ ├── planar_K_4_p9.dimacs │ │ │ │ ├── planar_K_5_sub_1.dimacs │ │ │ │ ├── planar_K_5_sub_10.dimacs │ │ │ │ ├── planar_K_5_sub_10_p0.dimacs │ │ │ │ ├── planar_K_5_sub_10_p1.dimacs │ │ │ │ ├── planar_K_5_sub_10_p2.dimacs │ │ │ │ ├── planar_K_5_sub_10_p3.dimacs │ │ │ │ ├── planar_K_5_sub_10_p4.dimacs │ │ │ │ ├── planar_K_5_sub_10_p5.dimacs │ │ │ │ ├── planar_K_5_sub_10_p6.dimacs │ │ │ │ ├── planar_K_5_sub_10_p7.dimacs │ │ │ │ ├── planar_K_5_sub_10_p8.dimacs │ │ │ │ ├── planar_K_5_sub_10_p9.dimacs │ │ │ │ ├── planar_K_5_sub_1_p0.dimacs │ │ │ │ ├── planar_K_5_sub_1_p1.dimacs │ │ │ │ ├── planar_K_5_sub_1_p2.dimacs │ │ │ │ ├── planar_K_5_sub_1_p3.dimacs │ │ │ │ ├── planar_K_5_sub_1_p4.dimacs │ │ │ │ ├── planar_K_5_sub_1_p5.dimacs │ │ │ │ ├── planar_K_5_sub_1_p6.dimacs │ │ │ │ ├── planar_K_5_sub_1_p7.dimacs │ │ │ │ ├── planar_K_5_sub_1_p8.dimacs │ │ │ │ ├── planar_K_5_sub_1_p9.dimacs │ │ │ │ ├── planar_K_5_sub_2.dimacs │ │ │ │ ├── planar_K_5_sub_2_p0.dimacs │ │ │ │ ├── planar_K_5_sub_2_p1.dimacs │ │ │ │ ├── planar_K_5_sub_2_p2.dimacs │ │ │ │ ├── planar_K_5_sub_2_p3.dimacs │ │ │ │ ├── planar_K_5_sub_2_p4.dimacs │ │ │ │ ├── planar_K_5_sub_2_p5.dimacs │ │ │ │ ├── planar_K_5_sub_2_p6.dimacs │ │ │ │ ├── planar_K_5_sub_2_p7.dimacs │ │ │ │ ├── planar_K_5_sub_2_p8.dimacs │ │ │ │ ├── planar_K_5_sub_2_p9.dimacs │ │ │ │ ├── planar_K_5_sub_3.dimacs │ │ │ │ ├── planar_K_5_sub_3_p0.dimacs │ │ │ │ ├── planar_K_5_sub_3_p1.dimacs │ │ │ │ ├── planar_K_5_sub_3_p2.dimacs │ │ │ │ ├── planar_K_5_sub_3_p3.dimacs │ │ │ │ ├── planar_K_5_sub_3_p4.dimacs │ │ │ │ ├── planar_K_5_sub_3_p5.dimacs │ │ │ │ ├── planar_K_5_sub_3_p6.dimacs │ │ │ │ ├── planar_K_5_sub_3_p7.dimacs │ │ │ │ ├── planar_K_5_sub_3_p8.dimacs │ │ │ │ ├── planar_K_5_sub_3_p9.dimacs │ │ │ │ ├── planar_K_5_sub_4.dimacs │ │ │ │ ├── planar_K_5_sub_4_p0.dimacs │ │ │ │ ├── planar_K_5_sub_4_p1.dimacs │ │ │ │ ├── planar_K_5_sub_4_p2.dimacs │ │ │ │ ├── planar_K_5_sub_4_p3.dimacs │ │ │ │ ├── planar_K_5_sub_4_p4.dimacs │ │ │ │ ├── planar_K_5_sub_4_p5.dimacs │ │ │ │ ├── planar_K_5_sub_4_p6.dimacs │ │ │ │ ├── planar_K_5_sub_4_p7.dimacs │ │ │ │ ├── planar_K_5_sub_4_p8.dimacs │ │ │ │ ├── planar_K_5_sub_4_p9.dimacs │ │ │ │ ├── planar_K_5_sub_5.dimacs │ │ │ │ ├── planar_K_5_sub_5_p0.dimacs │ │ │ │ ├── planar_K_5_sub_5_p1.dimacs │ │ │ │ ├── planar_K_5_sub_5_p2.dimacs │ │ │ │ ├── planar_K_5_sub_5_p3.dimacs │ │ │ │ ├── planar_K_5_sub_5_p4.dimacs │ │ │ │ ├── planar_K_5_sub_5_p5.dimacs │ │ │ │ ├── planar_K_5_sub_5_p6.dimacs │ │ │ │ ├── planar_K_5_sub_5_p7.dimacs │ │ │ │ ├── planar_K_5_sub_5_p8.dimacs │ │ │ │ ├── planar_K_5_sub_5_p9.dimacs │ │ │ │ ├── planar_K_5_sub_6.dimacs │ │ │ │ ├── planar_K_5_sub_6_p0.dimacs │ │ │ │ ├── planar_K_5_sub_6_p1.dimacs │ │ │ │ ├── planar_K_5_sub_6_p2.dimacs │ │ │ │ ├── planar_K_5_sub_6_p3.dimacs │ │ │ │ ├── planar_K_5_sub_6_p4.dimacs │ │ │ │ ├── planar_K_5_sub_6_p5.dimacs │ │ │ │ ├── planar_K_5_sub_6_p6.dimacs │ │ │ │ ├── planar_K_5_sub_6_p7.dimacs │ │ │ │ ├── planar_K_5_sub_6_p8.dimacs │ │ │ │ ├── planar_K_5_sub_6_p9.dimacs │ │ │ │ ├── planar_K_5_sub_7.dimacs │ │ │ │ ├── planar_K_5_sub_7_p0.dimacs │ │ │ │ ├── planar_K_5_sub_7_p1.dimacs │ │ │ │ ├── planar_K_5_sub_7_p2.dimacs │ │ │ │ ├── planar_K_5_sub_7_p3.dimacs │ │ │ │ ├── planar_K_5_sub_7_p4.dimacs │ │ │ │ ├── planar_K_5_sub_7_p5.dimacs │ │ │ │ ├── planar_K_5_sub_7_p6.dimacs │ │ │ │ ├── planar_K_5_sub_7_p7.dimacs │ │ │ │ ├── planar_K_5_sub_7_p8.dimacs │ │ │ │ ├── planar_K_5_sub_7_p9.dimacs │ │ │ │ ├── planar_K_5_sub_8.dimacs │ │ │ │ ├── planar_K_5_sub_8_p0.dimacs │ │ │ │ ├── planar_K_5_sub_8_p1.dimacs │ │ │ │ ├── planar_K_5_sub_8_p2.dimacs │ │ │ │ ├── planar_K_5_sub_8_p3.dimacs │ │ │ │ ├── planar_K_5_sub_8_p4.dimacs │ │ │ │ ├── planar_K_5_sub_8_p5.dimacs │ │ │ │ ├── planar_K_5_sub_8_p6.dimacs │ │ │ │ ├── planar_K_5_sub_8_p7.dimacs │ │ │ │ ├── planar_K_5_sub_8_p8.dimacs │ │ │ │ ├── planar_K_5_sub_8_p9.dimacs │ │ │ │ ├── planar_K_5_sub_9.dimacs │ │ │ │ ├── planar_K_5_sub_9_p0.dimacs │ │ │ │ ├── planar_K_5_sub_9_p1.dimacs │ │ │ │ ├── planar_K_5_sub_9_p2.dimacs │ │ │ │ ├── planar_K_5_sub_9_p3.dimacs │ │ │ │ ├── planar_K_5_sub_9_p4.dimacs │ │ │ │ ├── planar_K_5_sub_9_p5.dimacs │ │ │ │ ├── planar_K_5_sub_9_p6.dimacs │ │ │ │ ├── planar_K_5_sub_9_p7.dimacs │ │ │ │ ├── planar_K_5_sub_9_p8.dimacs │ │ │ │ ├── planar_K_5_sub_9_p9.dimacs │ │ │ │ ├── planar_cycle_1.dimacs │ │ │ │ ├── planar_cycle_1_p0.dimacs │ │ │ │ ├── planar_cycle_1_p1.dimacs │ │ │ │ ├── planar_cycle_1_p2.dimacs │ │ │ │ ├── planar_cycle_1_p3.dimacs │ │ │ │ ├── planar_cycle_1_p4.dimacs │ │ │ │ ├── planar_cycle_1_p5.dimacs │ │ │ │ ├── planar_cycle_1_p6.dimacs │ │ │ │ ├── planar_cycle_1_p7.dimacs │ │ │ │ ├── planar_cycle_1_p8.dimacs │ │ │ │ ├── planar_cycle_1_p9.dimacs │ │ │ │ ├── planar_grid_graph.dimacs │ │ │ │ ├── planar_grid_graph_p0.dimacs │ │ │ │ ├── planar_grid_graph_p1.dimacs │ │ │ │ ├── planar_grid_graph_p2.dimacs │ │ │ │ ├── planar_grid_graph_p3.dimacs │ │ │ │ ├── planar_grid_graph_p4.dimacs │ │ │ │ ├── planar_grid_graph_p5.dimacs │ │ │ │ ├── planar_grid_graph_p6.dimacs │ │ │ │ ├── planar_grid_graph_p7.dimacs │ │ │ │ ├── planar_grid_graph_p8.dimacs │ │ │ │ ├── planar_grid_graph_p9.dimacs │ │ │ │ ├── planar_line_1.dimacs │ │ │ │ ├── planar_line_1_p0.dimacs │ │ │ │ ├── planar_line_1_p1.dimacs │ │ │ │ ├── planar_line_1_p2.dimacs │ │ │ │ ├── planar_line_1_p3.dimacs │ │ │ │ ├── planar_line_1_p4.dimacs │ │ │ │ ├── planar_line_1_p5.dimacs │ │ │ │ ├── planar_line_1_p6.dimacs │ │ │ │ ├── planar_line_1_p7.dimacs │ │ │ │ ├── planar_line_1_p8.dimacs │ │ │ │ ├── planar_line_1_p9.dimacs │ │ │ │ ├── planar_line_2.dimacs │ │ │ │ ├── planar_line_2_p0.dimacs │ │ │ │ ├── planar_line_2_p1.dimacs │ │ │ │ ├── planar_line_2_p2.dimacs │ │ │ │ ├── planar_line_2_p3.dimacs │ │ │ │ ├── planar_line_2_p4.dimacs │ │ │ │ ├── planar_line_2_p5.dimacs │ │ │ │ ├── planar_line_2_p6.dimacs │ │ │ │ ├── planar_line_2_p7.dimacs │ │ │ │ ├── planar_line_2_p8.dimacs │ │ │ │ ├── planar_line_2_p9.dimacs │ │ │ │ ├── planar_maximal_10.dimacs │ │ │ │ ├── planar_maximal_100.dimacs │ │ │ │ ├── planar_maximal_100_p0.dimacs │ │ │ │ ├── planar_maximal_100_p1.dimacs │ │ │ │ ├── planar_maximal_100_p2.dimacs │ │ │ │ ├── planar_maximal_100_p3.dimacs │ │ │ │ ├── planar_maximal_100_p4.dimacs │ │ │ │ ├── planar_maximal_100_p5.dimacs │ │ │ │ ├── planar_maximal_100_p6.dimacs │ │ │ │ ├── planar_maximal_100_p7.dimacs │ │ │ │ ├── planar_maximal_100_p8.dimacs │ │ │ │ ├── planar_maximal_100_p9.dimacs │ │ │ │ ├── planar_maximal_10_p0.dimacs │ │ │ │ ├── planar_maximal_10_p1.dimacs │ │ │ │ ├── planar_maximal_10_p2.dimacs │ │ │ │ ├── planar_maximal_10_p3.dimacs │ │ │ │ ├── planar_maximal_10_p4.dimacs │ │ │ │ ├── planar_maximal_10_p5.dimacs │ │ │ │ ├── planar_maximal_10_p6.dimacs │ │ │ │ ├── planar_maximal_10_p7.dimacs │ │ │ │ ├── planar_maximal_10_p8.dimacs │ │ │ │ ├── planar_maximal_10_p9.dimacs │ │ │ │ ├── planar_maximal_3.dimacs │ │ │ │ ├── planar_maximal_30.dimacs │ │ │ │ ├── planar_maximal_30_p0.dimacs │ │ │ │ ├── planar_maximal_30_p1.dimacs │ │ │ │ ├── planar_maximal_30_p2.dimacs │ │ │ │ ├── planar_maximal_30_p3.dimacs │ │ │ │ ├── planar_maximal_30_p4.dimacs │ │ │ │ ├── planar_maximal_30_p5.dimacs │ │ │ │ ├── planar_maximal_30_p6.dimacs │ │ │ │ ├── planar_maximal_30_p7.dimacs │ │ │ │ ├── planar_maximal_30_p8.dimacs │ │ │ │ ├── planar_maximal_30_p9.dimacs │ │ │ │ ├── planar_maximal_3_p0.dimacs │ │ │ │ ├── planar_maximal_3_p1.dimacs │ │ │ │ ├── planar_maximal_3_p2.dimacs │ │ │ │ ├── planar_maximal_3_p3.dimacs │ │ │ │ ├── planar_maximal_3_p4.dimacs │ │ │ │ ├── planar_maximal_3_p5.dimacs │ │ │ │ ├── planar_maximal_3_p6.dimacs │ │ │ │ ├── planar_maximal_3_p7.dimacs │ │ │ │ ├── planar_maximal_3_p8.dimacs │ │ │ │ ├── planar_maximal_3_p9.dimacs │ │ │ │ ├── planar_maximal_50.dimacs │ │ │ │ ├── planar_maximal_50_p0.dimacs │ │ │ │ ├── planar_maximal_50_p1.dimacs │ │ │ │ ├── planar_maximal_50_p2.dimacs │ │ │ │ ├── planar_maximal_50_p3.dimacs │ │ │ │ ├── planar_maximal_50_p4.dimacs │ │ │ │ ├── planar_maximal_50_p5.dimacs │ │ │ │ ├── planar_maximal_50_p6.dimacs │ │ │ │ ├── planar_maximal_50_p7.dimacs │ │ │ │ ├── planar_maximal_50_p8.dimacs │ │ │ │ ├── planar_maximal_50_p9.dimacs │ │ │ │ ├── planar_non_bicon_1.dimacs │ │ │ │ ├── planar_non_bicon_2.dimacs │ │ │ │ ├── planar_non_con.dimacs │ │ │ │ ├── planar_non_con_p0.dimacs │ │ │ │ ├── planar_non_con_p1.dimacs │ │ │ │ ├── planar_non_con_p2.dimacs │ │ │ │ ├── planar_non_con_p3.dimacs │ │ │ │ ├── planar_non_con_p4.dimacs │ │ │ │ ├── planar_non_con_p5.dimacs │ │ │ │ ├── planar_non_con_p6.dimacs │ │ │ │ ├── planar_non_con_p7.dimacs │ │ │ │ ├── planar_non_con_p8.dimacs │ │ │ │ ├── planar_non_con_p9.dimacs │ │ │ │ ├── planar_tree_1.dimacs │ │ │ │ ├── planar_tree_1_p0.dimacs │ │ │ │ ├── planar_tree_1_p1.dimacs │ │ │ │ ├── planar_tree_1_p2.dimacs │ │ │ │ ├── planar_tree_1_p3.dimacs │ │ │ │ ├── planar_tree_1_p4.dimacs │ │ │ │ ├── planar_tree_1_p5.dimacs │ │ │ │ ├── planar_tree_1_p6.dimacs │ │ │ │ ├── planar_tree_1_p7.dimacs │ │ │ │ ├── planar_tree_1_p8.dimacs │ │ │ │ └── planar_tree_1_p9.dimacs │ │ │ │ ├── prgen_input_graphs │ │ │ │ ├── prgen_20_70_2.net │ │ │ │ ├── prgen_50_40_2.net │ │ │ │ └── prgen_50_70_2.net │ │ │ │ ├── property_iter.cpp │ │ │ │ ├── r_c_shortest_paths_test.cpp │ │ │ │ ├── random_matching_test.cpp │ │ │ │ ├── random_spanning_tree_test.cpp │ │ │ │ ├── read_propmap.cpp │ │ │ │ ├── regression.cfg │ │ │ │ ├── relaxed_heap_test.cpp │ │ │ │ ├── reverse_graph_cc.cpp │ │ │ │ ├── sequential_vertex_coloring.cpp │ │ │ │ ├── serialize.cpp │ │ │ │ ├── stanford_graph_cc.cpp │ │ │ │ ├── stoer_wagner_test.cpp │ │ │ │ ├── subgraph.cpp │ │ │ │ ├── subgraph_bundled.cpp │ │ │ │ ├── subgraph_props.cpp │ │ │ │ ├── test_construction.hpp │ │ │ │ ├── test_destruction.hpp │ │ │ │ ├── test_direction.hpp │ │ │ │ ├── test_graph.hpp │ │ │ │ ├── test_graphs.cpp │ │ │ │ ├── test_iteration.hpp │ │ │ │ ├── test_properties.hpp │ │ │ │ ├── tiernan_all_cycles.cpp │ │ │ │ ├── transitive_closure_test.cpp │ │ │ │ ├── transitive_closure_test2.cpp │ │ │ │ ├── two_graphs_common_spanning_trees_test.cpp │ │ │ │ ├── typestr.hpp │ │ │ │ ├── vector_graph_cc.cpp │ │ │ │ ├── vf2_sub_graph_iso_test.cpp │ │ │ │ └── weighted_graph.gr │ │ │ ├── graph_parallel │ │ │ ├── doc │ │ │ │ ├── BUILD_DOCS.tcl │ │ │ │ ├── DistributedEdgeListGraph.rst │ │ │ │ ├── DistributedGraph.rst │ │ │ │ ├── DistributedVertexListGraph.rst │ │ │ │ ├── GlobalDescriptor.rst │ │ │ │ ├── architecture.graffle │ │ │ │ ├── architecture.png │ │ │ │ ├── betweenness_centrality.rst │ │ │ │ ├── boman_et_al_graph_coloring.rst │ │ │ │ ├── breadth_first_search.rst │ │ │ │ ├── connected_components.rst │ │ │ │ ├── connected_components_parallel_search.rst │ │ │ │ ├── dehne_gotz_min_spanning_tree.rst │ │ │ │ ├── dijkstra_dist3_graph.graffle │ │ │ │ ├── dijkstra_dist3_graph.png │ │ │ │ ├── dijkstra_example.rst │ │ │ │ ├── dijkstra_seq_graph.graffle │ │ │ │ ├── dijkstra_seq_graph.png │ │ │ │ ├── dijkstra_shortest_paths.rst │ │ │ │ ├── dist-adjlist.graffle │ │ │ │ ├── dist-adjlist.png │ │ │ │ ├── dist-pmap.graffle │ │ │ │ ├── dist-pmap.png │ │ │ │ ├── distributed-graph.graffle │ │ │ │ ├── distributed-graph.png │ │ │ │ ├── distributedS.rst │ │ │ │ ├── distributed_adjacency_list.rst │ │ │ │ ├── distributed_property_map.rst │ │ │ │ ├── distributed_queue.rst │ │ │ │ ├── fruchterman_reingold.rst │ │ │ │ ├── graph.png │ │ │ │ ├── html │ │ │ │ │ ├── DistributedEdgeListGraph.html │ │ │ │ │ ├── DistributedGraph.html │ │ │ │ │ ├── DistributedVertexListGraph.html │ │ │ │ │ ├── GlobalDescriptor.html │ │ │ │ │ ├── betweenness_centrality.html │ │ │ │ │ ├── boman_et_al_graph_coloring.html │ │ │ │ │ ├── breadth_first_search.html │ │ │ │ │ ├── chart_php_cluster_Odin_generator_ER_SF_SW_dataset_TimeDense_columns_4.png │ │ │ │ │ ├── chart_php_cluster_Odin_generator_ER_SF_SW_dataset_TimeDense_columns_4_speedup_1.png │ │ │ │ │ ├── chart_php_cluster_Odin_generator_ER_SF_SW_dataset_TimeDense_columns_5.png │ │ │ │ │ ├── chart_php_cluster_Odin_generator_ER_SF_SW_dataset_TimeDense_columns_5_speedup_1.png │ │ │ │ │ ├── chart_php_cluster_Odin_generator_ER_SF_SW_dataset_TimeSparse_columns_4.png │ │ │ │ │ ├── chart_php_cluster_Odin_generator_ER_SF_SW_dataset_TimeSparse_columns_4_speedup_1.png │ │ │ │ │ ├── chart_php_cluster_Odin_generator_ER_SF_SW_dataset_TimeSparse_columns_5.png │ │ │ │ │ ├── chart_php_cluster_Odin_generator_ER_SF_SW_dataset_TimeSparse_columns_5_speedup_1.png │ │ │ │ │ ├── chart_php_generator_ER_SF_SW_dataset_TimeDense_cluster_Odin_columns_11.png │ │ │ │ │ ├── chart_php_generator_ER_SF_SW_dataset_TimeDense_cluster_Odin_columns_11_speedup_1.png │ │ │ │ │ ├── chart_php_generator_ER_SF_SW_dataset_TimeDense_columns_4.png │ │ │ │ │ ├── chart_php_generator_ER_SF_SW_dataset_TimeDense_columns_4_speedup_1.png │ │ │ │ │ ├── chart_php_generator_ER_SF_SW_dataset_TimeDense_columns_5.png │ │ │ │ │ ├── chart_php_generator_ER_SF_SW_dataset_TimeDense_columns_5_speedup_1.png │ │ │ │ │ ├── chart_php_generator_ER_SF_SW_dataset_TimeDense_columns_6.png │ │ │ │ │ ├── chart_php_generator_ER_SF_SW_dataset_TimeDense_columns_6_speedup_1.png │ │ │ │ │ ├── chart_php_generator_ER_SF_SW_dataset_TimeDense_columns_7.png │ │ │ │ │ ├── chart_php_generator_ER_SF_SW_dataset_TimeDense_columns_7_speedup_1.png │ │ │ │ │ ├── chart_php_generator_ER_SF_SW_dataset_TimeDense_columns_8.png │ │ │ │ │ ├── chart_php_generator_ER_SF_SW_dataset_TimeDense_columns_8_speedup_1.png │ │ │ │ │ ├── chart_php_generator_ER_SF_SW_dataset_TimeDense_columns_9.png │ │ │ │ │ ├── chart_php_generator_ER_SF_SW_dataset_TimeDense_columns_9_speedup_1.png │ │ │ │ │ ├── chart_php_generator_ER_SF_SW_dataset_TimeSparse_cluster_Odin_columns_11.png │ │ │ │ │ ├── chart_php_generator_ER_SF_SW_dataset_TimeSparse_cluster_Odin_columns_11_speedup_1.png │ │ │ │ │ ├── chart_php_generator_ER_SF_SW_dataset_TimeSparse_columns_4.png │ │ │ │ │ ├── chart_php_generator_ER_SF_SW_dataset_TimeSparse_columns_4_speedup_1.png │ │ │ │ │ ├── chart_php_generator_ER_SF_SW_dataset_TimeSparse_columns_5.png │ │ │ │ │ ├── chart_php_generator_ER_SF_SW_dataset_TimeSparse_columns_5_speedup_1.png │ │ │ │ │ ├── chart_php_generator_ER_SF_SW_dataset_TimeSparse_columns_6.png │ │ │ │ │ ├── chart_php_generator_ER_SF_SW_dataset_TimeSparse_columns_6_speedup_1.png │ │ │ │ │ ├── chart_php_generator_ER_SF_SW_dataset_TimeSparse_columns_7.png │ │ │ │ │ ├── chart_php_generator_ER_SF_SW_dataset_TimeSparse_columns_7_speedup_1.png │ │ │ │ │ ├── chart_php_generator_ER_SF_SW_dataset_TimeSparse_columns_8.png │ │ │ │ │ ├── chart_php_generator_ER_SF_SW_dataset_TimeSparse_columns_8_speedup_1.png │ │ │ │ │ ├── chart_php_generator_ER_SF_SW_dataset_TimeSparse_columns_9.png │ │ │ │ │ ├── chart_php_generator_ER_SF_SW_dataset_TimeSparse_columns_9_speedup_1.png │ │ │ │ │ ├── chart_php_generator_ER_dataset_TimeDense_columns_5_6_7_8.png │ │ │ │ │ ├── chart_php_generator_ER_dataset_TimeDense_columns_5_6_7_8_speedup_1.png │ │ │ │ │ ├── chart_php_generator_ER_dataset_TimeSparse_columns_5_6_7_8.png │ │ │ │ │ ├── chart_php_generator_ER_dataset_TimeSparse_columns_5_6_7_8_speedup_1.png │ │ │ │ │ ├── chart_php_generator_SF_dataset_TimeDense_columns_5_6_7_8.png │ │ │ │ │ ├── chart_php_generator_SF_dataset_TimeDense_columns_5_6_7_8_speedup_1.png │ │ │ │ │ ├── chart_php_generator_SF_dataset_TimeSparse_columns_5_6_7_8.png │ │ │ │ │ ├── chart_php_generator_SF_dataset_TimeSparse_columns_5_6_7_8_speedup_1.png │ │ │ │ │ ├── chart_php_generator_SW_dataset_TimeDense_columns_5_6_7_8.png │ │ │ │ │ ├── chart_php_generator_SW_dataset_TimeDense_columns_5_6_7_8_speedup_1.png │ │ │ │ │ ├── chart_php_generator_SW_dataset_TimeSparse_columns_5_6_7_8.png │ │ │ │ │ ├── chart_php_generator_SW_dataset_TimeSparse_columns_5_6_7_8_speedup_1.png │ │ │ │ │ ├── connected_components.html │ │ │ │ │ ├── connected_components_parallel_search.html │ │ │ │ │ ├── dehne_gotz_min_spanning_tree.html │ │ │ │ │ ├── dijkstra_example.html │ │ │ │ │ ├── dijkstra_shortest_paths.html │ │ │ │ │ ├── distributedS.html │ │ │ │ │ ├── distributed_adjacency_list.html │ │ │ │ │ ├── distributed_property_map.html │ │ │ │ │ ├── distributed_queue.html │ │ │ │ │ ├── fruchterman_reingold.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── local_subgraph.html │ │ │ │ │ ├── mesh_generator.html │ │ │ │ │ ├── metis.html │ │ │ │ │ ├── mpi_bsp_process_group.html │ │ │ │ │ ├── non_distributed_betweenness_centrality.html │ │ │ │ │ ├── overview.html │ │ │ │ │ ├── page_rank.html │ │ │ │ │ ├── pbgl-logo.png │ │ │ │ │ ├── process_group.html │ │ │ │ │ ├── rmat_generator.html │ │ │ │ │ ├── scalable_rmat_generator.html │ │ │ │ │ ├── simple_trigger.html │ │ │ │ │ ├── sorted_rmat_generator.html │ │ │ │ │ ├── sorted_unique_rmat_generator.html │ │ │ │ │ ├── ssca_generator.html │ │ │ │ │ ├── st_connected.html │ │ │ │ │ ├── strong_components.html │ │ │ │ │ ├── tsin_depth_first_visit.html │ │ │ │ │ ├── unique_rmat_generator.html │ │ │ │ │ └── vertex_list_adaptor.html │ │ │ │ ├── index.rst │ │ │ │ ├── local_subgraph.rst │ │ │ │ ├── mesh_generator.rst │ │ │ │ ├── metis.rst │ │ │ │ ├── mpi_bsp_process_group.rst │ │ │ │ ├── non_distributed_betweenness_centrality.rst │ │ │ │ ├── overview.rst │ │ │ │ ├── page_rank.rst │ │ │ │ ├── process_group.rst │ │ │ │ ├── rmat_generator.rst │ │ │ │ ├── scalable_rmat_generator.rst │ │ │ │ ├── simple_trigger.rst │ │ │ │ ├── sorted_rmat_generator.rst │ │ │ │ ├── sorted_unique_rmat_generator.rst │ │ │ │ ├── ssca_generator.rst │ │ │ │ ├── st_connected.rst │ │ │ │ ├── strong_components.rst │ │ │ │ ├── tsin_depth_first_visit.rst │ │ │ │ ├── unique_rmat_generator.rst │ │ │ │ ├── vertex_coloring.png │ │ │ │ └── vertex_list_adaptor.rst │ │ │ ├── example │ │ │ │ ├── Jamfile.v2 │ │ │ │ ├── breadth_first_search.cpp │ │ │ │ └── dijkstra_shortest_paths.cpp │ │ │ ├── index.html │ │ │ ├── src │ │ │ │ ├── mpi_process_group.cpp │ │ │ │ └── tag_allocator.cpp │ │ │ └── test │ │ │ │ ├── Jamfile.v2 │ │ │ │ ├── adjlist_build_test.cpp │ │ │ │ ├── adjlist_redist_test.cpp │ │ │ │ ├── adjlist_remove_test.cpp │ │ │ │ ├── algorithm_performance.cpp │ │ │ │ ├── distributed_adjacency_list_test.cpp │ │ │ │ ├── distributed_betweenness_centrality_test.cpp │ │ │ │ ├── distributed_connected_components_test.cpp │ │ │ │ ├── distributed_csr_algorithm_test.cpp │ │ │ │ ├── distributed_csr_test.cpp │ │ │ │ ├── distributed_dfs_test.cpp │ │ │ │ ├── distributed_dimacs_reader.cpp │ │ │ │ ├── distributed_graph_coloring_test.cpp │ │ │ │ ├── distributed_mst_test.cpp │ │ │ │ ├── distributed_page_rank_test.cpp │ │ │ │ ├── distributed_property_map_test.cpp │ │ │ │ ├── distributed_queue_test.cpp │ │ │ │ ├── distributed_rmat_cc.cpp │ │ │ │ ├── distributed_rmat_cc_ps.cpp │ │ │ │ ├── distributed_rmat_pagerank.cpp │ │ │ │ ├── distributed_shortest_paths_test.cpp │ │ │ │ ├── distributed_st_connected_test.cpp │ │ │ │ ├── distributed_strong_components_test.cpp │ │ │ │ ├── hohberg_biconnected_components_test.cpp │ │ │ │ ├── mesh_generator_test.cpp │ │ │ │ ├── named_vertices_hash_test.cpp │ │ │ │ ├── named_vertices_seq.cpp │ │ │ │ ├── named_vertices_test.cpp │ │ │ │ ├── process_group_serialization.cpp │ │ │ │ └── ssca.cpp │ │ │ ├── iostreams │ │ │ ├── doc │ │ │ │ ├── acknowledgments.html │ │ │ │ ├── bibliography.html │ │ │ │ ├── classes │ │ │ │ │ ├── aggregate.html │ │ │ │ │ ├── array.html │ │ │ │ │ ├── back_inserter.html │ │ │ │ │ ├── bzip2.html │ │ │ │ │ ├── chain.html │ │ │ │ │ ├── char_traits.html │ │ │ │ │ ├── classes.html │ │ │ │ │ ├── code_converter.html │ │ │ │ │ ├── counter.html │ │ │ │ │ ├── device.html │ │ │ │ │ ├── file.html │ │ │ │ │ ├── file_descriptor.html │ │ │ │ │ ├── filter.html │ │ │ │ │ ├── filtering_stream.html │ │ │ │ │ ├── filtering_streambuf.html │ │ │ │ │ ├── grep_filter.html │ │ │ │ │ ├── gzip.html │ │ │ │ │ ├── line_filter.html │ │ │ │ │ ├── mapped_file.html │ │ │ │ │ ├── mode.html │ │ │ │ │ ├── newline_filter.html │ │ │ │ │ ├── null.html │ │ │ │ │ ├── regex_filter.html │ │ │ │ │ ├── stdio_filter.html │ │ │ │ │ ├── symmetric_filter.html │ │ │ │ │ └── zlib.html │ │ │ │ ├── concepts │ │ │ │ │ ├── bidirectional_device.html │ │ │ │ │ ├── bidirectional_filter.html │ │ │ │ │ ├── blocking.html │ │ │ │ │ ├── closable.html │ │ │ │ │ ├── concepts.html │ │ │ │ │ ├── device.html │ │ │ │ │ ├── direct.html │ │ │ │ │ ├── dual_use_filter.html │ │ │ │ │ ├── filter.html │ │ │ │ │ ├── flushable.html │ │ │ │ │ ├── input_filter.html │ │ │ │ │ ├── localizable.html │ │ │ │ │ ├── multi_character.html │ │ │ │ │ ├── optimally_buffered.html │ │ │ │ │ ├── output_filter.html │ │ │ │ │ ├── peekable.html │ │ │ │ │ ├── pipable.html │ │ │ │ │ ├── seekable_device.html │ │ │ │ │ ├── seekable_filter.html │ │ │ │ │ ├── sink.html │ │ │ │ │ ├── source.html │ │ │ │ │ └── symmetric_filter.html │ │ │ │ ├── faq.html │ │ │ │ ├── functions │ │ │ │ │ ├── close.html │ │ │ │ │ ├── combine.html │ │ │ │ │ ├── compose.html │ │ │ │ │ ├── copy.html │ │ │ │ │ ├── filter_test.html │ │ │ │ │ ├── flush.html │ │ │ │ │ ├── functions.html │ │ │ │ │ ├── get.html │ │ │ │ │ ├── imbue.html │ │ │ │ │ ├── invert.html │ │ │ │ │ ├── optimal_buffer_size.html │ │ │ │ │ ├── positioning.html │ │ │ │ │ ├── put.html │ │ │ │ │ ├── putback.html │ │ │ │ │ ├── read.html │ │ │ │ │ ├── restrict.html │ │ │ │ │ ├── seek.html │ │ │ │ │ ├── slice.html │ │ │ │ │ ├── tee.html │ │ │ │ │ └── write.html │ │ │ │ ├── graphics │ │ │ │ │ ├── bidirectional_chain.gif │ │ │ │ │ ├── important_modes.gif │ │ │ │ │ ├── input_chain.gif │ │ │ │ │ ├── key_bidirectional_seq.gif │ │ │ │ │ ├── key_important.gif │ │ │ │ │ ├── key_input_seq.gif │ │ │ │ │ ├── key_output_seq.gif │ │ │ │ │ ├── key_read_head.gif │ │ │ │ │ ├── key_read_write_head.gif │ │ │ │ │ ├── key_write_head.gif │ │ │ │ │ ├── modes.gif │ │ │ │ │ ├── output_chain.gif │ │ │ │ │ └── seekable_chain.gif │ │ │ │ ├── guide │ │ │ │ │ ├── asynchronous.html │ │ │ │ │ ├── buffering.html │ │ │ │ │ ├── code_conversion.html │ │ │ │ │ ├── concepts.html │ │ │ │ │ ├── exceptions.html │ │ │ │ │ ├── filtering_streams.html │ │ │ │ │ ├── generic_streams.html │ │ │ │ │ ├── guide.html │ │ │ │ │ ├── lifetimes.html │ │ │ │ │ ├── modes.html │ │ │ │ │ ├── pipelines.html │ │ │ │ │ ├── text_processing.html │ │ │ │ │ ├── traits.html │ │ │ │ │ └── views.html │ │ │ │ ├── home.html │ │ │ │ ├── index.html │ │ │ │ ├── installation.html │ │ │ │ ├── macros │ │ │ │ │ ├── buffer_sizes.html │ │ │ │ │ ├── macros.html │ │ │ │ │ └── workarounds.html │ │ │ │ ├── menu.html │ │ │ │ ├── portability.html │ │ │ │ ├── quick_reference.html │ │ │ │ ├── rationale.html │ │ │ │ ├── reference.html │ │ │ │ ├── release_notes.html │ │ │ │ ├── theme │ │ │ │ │ ├── boost.png │ │ │ │ │ ├── boost_small.png │ │ │ │ │ ├── iostreams.css │ │ │ │ │ └── wedge.gif │ │ │ │ ├── tree │ │ │ │ │ ├── tree.css │ │ │ │ │ └── tree.js │ │ │ │ └── tutorial │ │ │ │ │ ├── container_device.html │ │ │ │ │ ├── container_sink.html │ │ │ │ │ ├── container_source.html │ │ │ │ │ ├── dictionary_filters.html │ │ │ │ │ ├── dual_use_filters.html │ │ │ │ │ ├── filter_usage.html │ │ │ │ │ ├── finite_state_filters.html │ │ │ │ │ ├── line_wrapping_filters.html │ │ │ │ │ ├── multichar_filters.html │ │ │ │ │ ├── shell_comments_filters.html │ │ │ │ │ ├── tab_expanding_filters.html │ │ │ │ │ ├── tutorial.html │ │ │ │ │ ├── unix2dos_filters.html │ │ │ │ │ ├── writing_devices.html │ │ │ │ │ └── writing_filters.html │ │ │ ├── example │ │ │ │ ├── boost_back_inserter_example.cpp │ │ │ │ ├── container_device.hpp │ │ │ │ ├── container_device_example.cpp │ │ │ │ ├── container_sink_example.cpp │ │ │ │ ├── container_source_example.cpp │ │ │ │ ├── dictionary_filter.hpp │ │ │ │ ├── finite_state_filter.hpp │ │ │ │ ├── iterator_range_example.cpp │ │ │ │ ├── line_wrapping_filter.hpp │ │ │ │ ├── shell_comments_filter.hpp │ │ │ │ ├── std_back_inserter_example.cpp │ │ │ │ ├── tab_expanding_filter.hpp │ │ │ │ └── unix2dos_filter.hpp │ │ │ ├── index.html │ │ │ ├── src │ │ │ │ ├── bzip2.cpp │ │ │ │ ├── file_descriptor.cpp │ │ │ │ ├── gzip.cpp │ │ │ │ ├── mapped_file.cpp │ │ │ │ └── zlib.cpp │ │ │ └── test │ │ │ │ ├── Jamfile.v2 │ │ │ │ ├── array_test.cpp │ │ │ │ ├── auto_close_test.cpp │ │ │ │ ├── bool_trait_test.cpp │ │ │ │ ├── buffer_size_test.cpp │ │ │ │ ├── bzip2_test.cpp │ │ │ │ ├── close_test.cpp │ │ │ │ ├── code_converter_test.cpp │ │ │ │ ├── combine_test.cpp │ │ │ │ ├── component_access_test.cpp │ │ │ │ ├── compose_test.cpp │ │ │ │ ├── copy_test.cpp │ │ │ │ ├── counter_test.cpp │ │ │ │ ├── deprecated_file_descriptor_test.cpp │ │ │ │ ├── detail │ │ │ │ ├── closable.hpp │ │ │ │ ├── constants.hpp │ │ │ │ ├── file_handle.hpp │ │ │ │ ├── filters.hpp │ │ │ │ ├── null_padded_codecvt.hpp │ │ │ │ ├── operation_sequence.hpp │ │ │ │ ├── sequence.hpp │ │ │ │ ├── temp_file.hpp │ │ │ │ ├── utf8_codecvt_facet.cpp │ │ │ │ ├── utf8_codecvt_facet.hpp │ │ │ │ └── verification.hpp │ │ │ │ ├── direct_adapter_test.cpp │ │ │ │ ├── example_test.cpp │ │ │ │ ├── execute_test.cpp │ │ │ │ ├── file_descriptor_test.cpp │ │ │ │ ├── file_test.cpp │ │ │ │ ├── filter_test.cpp │ │ │ │ ├── filtering_stream_flush_test.hpp │ │ │ │ ├── filtering_stream_test.cpp │ │ │ │ ├── finite_state_filter_test.cpp │ │ │ │ ├── flush_test.cpp │ │ │ │ ├── grep_test.cpp │ │ │ │ ├── gzip_test.cpp │ │ │ │ ├── invert_test.cpp │ │ │ │ ├── large_file_test.cpp │ │ │ │ ├── line_filter_test.cpp │ │ │ │ ├── mapped_file_test.cpp │ │ │ │ ├── newline_test.cpp │ │ │ │ ├── null_test.cpp │ │ │ │ ├── operation_sequence_test.cpp │ │ │ │ ├── path_test.cpp │ │ │ │ ├── pipeline_test.cpp │ │ │ │ ├── putback_test.hpp │ │ │ │ ├── read_bidir_filter_test.hpp │ │ │ │ ├── read_bidir_streambuf_test.hpp │ │ │ │ ├── read_bidir_test.hpp │ │ │ │ ├── read_input_filter_test.hpp │ │ │ │ ├── read_input_istream_test.hpp │ │ │ │ ├── read_input_seq_test.hpp │ │ │ │ ├── read_input_test.hpp │ │ │ │ ├── read_seekable_seq_test.hpp │ │ │ │ ├── read_seekable_test.hpp │ │ │ │ ├── regex_filter_test.cpp │ │ │ │ ├── restrict_test.cpp │ │ │ │ ├── seek_test.hpp │ │ │ │ ├── seekable_file_test.cpp │ │ │ │ ├── seekable_filter_test.cpp │ │ │ │ ├── sequence_test.cpp │ │ │ │ ├── slice_test.cpp │ │ │ │ ├── stdio_filter_test.cpp │ │ │ │ ├── stream_offset_32bit_test.cpp │ │ │ │ ├── stream_offset_64bit_test.cpp │ │ │ │ ├── stream_state_test.cpp │ │ │ │ ├── symmetric_filter_test.cpp │ │ │ │ ├── tee_test.cpp │ │ │ │ ├── wide_stream_test.cpp │ │ │ │ ├── windows_pipe_test.cpp │ │ │ │ ├── write_bidir_filter_test.hpp │ │ │ │ ├── write_bidir_streambuf_test.hpp │ │ │ │ ├── write_bidir_test.hpp │ │ │ │ ├── write_output_filter_test.hpp │ │ │ │ ├── write_output_iterator_test.hpp │ │ │ │ ├── write_output_ostream_test.hpp │ │ │ │ ├── write_output_seq_test.hpp │ │ │ │ ├── write_output_test.hpp │ │ │ │ ├── write_seekable_seq_test.hpp │ │ │ │ ├── write_seekable_test.hpp │ │ │ │ └── zlib_test.cpp │ │ │ ├── mpi │ │ │ ├── doc │ │ │ │ ├── Jamfile.v2 │ │ │ │ ├── mpi.qbk │ │ │ │ └── netpipe.png │ │ │ ├── example │ │ │ │ ├── generate_collect.cpp │ │ │ │ ├── generate_collect_optional.cpp │ │ │ │ ├── hello_world.cpp │ │ │ │ ├── hello_world_broadcast.cpp │ │ │ │ ├── hello_world_nonblocking.cpp │ │ │ │ ├── parallel_example.cpp │ │ │ │ ├── python │ │ │ │ │ └── hello_world.py │ │ │ │ ├── random_content.cpp │ │ │ │ ├── random_gather.cpp │ │ │ │ ├── random_min.cpp │ │ │ │ ├── reduce_performance_test.cpp │ │ │ │ └── string_cat.cpp │ │ │ ├── index.html │ │ │ ├── src │ │ │ │ ├── broadcast.cpp │ │ │ │ ├── communicator.cpp │ │ │ │ ├── computation_tree.cpp │ │ │ │ ├── content_oarchive.cpp │ │ │ │ ├── environment.cpp │ │ │ │ ├── exception.cpp │ │ │ │ ├── graph_communicator.cpp │ │ │ │ ├── group.cpp │ │ │ │ ├── intercommunicator.cpp │ │ │ │ ├── mpi_datatype_cache.cpp │ │ │ │ ├── mpi_datatype_oarchive.cpp │ │ │ │ ├── packed_iarchive.cpp │ │ │ │ ├── packed_oarchive.cpp │ │ │ │ ├── packed_skeleton_iarchive.cpp │ │ │ │ ├── packed_skeleton_oarchive.cpp │ │ │ │ ├── point_to_point.cpp │ │ │ │ ├── python │ │ │ │ │ ├── collectives.cpp │ │ │ │ │ ├── datatypes.cpp │ │ │ │ │ ├── documentation.cpp │ │ │ │ │ ├── exception.cpp │ │ │ │ │ ├── module.cpp │ │ │ │ │ ├── py_communicator.cpp │ │ │ │ │ ├── py_environment.cpp │ │ │ │ │ ├── py_exception.cpp │ │ │ │ │ ├── py_nonblocking.cpp │ │ │ │ │ ├── py_request.cpp │ │ │ │ │ ├── py_timer.cpp │ │ │ │ │ ├── request_with_value.hpp │ │ │ │ │ ├── serialize.cpp │ │ │ │ │ ├── skeleton_and_content.cpp │ │ │ │ │ ├── status.cpp │ │ │ │ │ └── utility.hpp │ │ │ │ ├── request.cpp │ │ │ │ ├── text_skeleton_oarchive.cpp │ │ │ │ └── timer.cpp │ │ │ └── test │ │ │ │ ├── Jamfile.v2 │ │ │ │ ├── all_gather_test.cpp │ │ │ │ ├── all_reduce_test.cpp │ │ │ │ ├── all_to_all_test.cpp │ │ │ │ ├── broadcast_test.cpp │ │ │ │ ├── gather_test.cpp │ │ │ │ ├── gps_position.hpp │ │ │ │ ├── graph_topology_test.cpp │ │ │ │ ├── is_mpi_op_test.cpp │ │ │ │ ├── nonblocking_test.cpp │ │ │ │ ├── pointer_test.cpp │ │ │ │ ├── python │ │ │ │ ├── all_gather_test.py │ │ │ │ ├── all_reduce_test.py │ │ │ │ ├── all_to_all_test.py │ │ │ │ ├── broadcast_test.py │ │ │ │ ├── gather_test.py │ │ │ │ ├── generators.py │ │ │ │ ├── nonblocking_test.py │ │ │ │ ├── reduce_test.py │ │ │ │ ├── ring_test.py │ │ │ │ ├── scan_test.py │ │ │ │ ├── scatter_test.py │ │ │ │ ├── skeleton_content_test.cpp │ │ │ │ └── skeleton_content_test.py │ │ │ │ ├── reduce_test.cpp │ │ │ │ ├── ring_test.cpp │ │ │ │ ├── scan_test.cpp │ │ │ │ ├── scatter_test.cpp │ │ │ │ └── skeleton_content_test.cpp │ │ │ ├── program_options │ │ │ ├── doc │ │ │ │ ├── Jamfile.v2 │ │ │ │ ├── acknowledgements.xml │ │ │ │ ├── alternatives │ │ │ │ ├── changes.xml │ │ │ │ ├── design.xml │ │ │ │ ├── glossary.dox │ │ │ │ ├── glossary.xml │ │ │ │ ├── howto.xml │ │ │ │ ├── index.html │ │ │ │ ├── overview.xml │ │ │ │ ├── post_review_plan.txt │ │ │ │ ├── program_options.dox │ │ │ │ ├── program_options.ent │ │ │ │ ├── program_options.xml │ │ │ │ ├── questions │ │ │ │ ├── questions.dox │ │ │ │ ├── rationale │ │ │ │ ├── rationale.dox │ │ │ │ ├── recipes.dox │ │ │ │ ├── requirements-Rozental │ │ │ │ ├── todo.txt │ │ │ │ └── tutorial.xml │ │ │ ├── example │ │ │ │ ├── Jamfile.v2 │ │ │ │ ├── custom_syntax.cpp │ │ │ │ ├── first.cpp │ │ │ │ ├── multiple_sources.cfg │ │ │ │ ├── multiple_sources.cpp │ │ │ │ ├── option_groups.cpp │ │ │ │ ├── options_description.cpp │ │ │ │ ├── real.cpp │ │ │ │ ├── regex.cpp │ │ │ │ ├── response_file.cpp │ │ │ │ └── response_file.rsp │ │ │ ├── index.html │ │ │ ├── src │ │ │ │ ├── cmdline.cpp │ │ │ │ ├── config_file.cpp │ │ │ │ ├── convert.cpp │ │ │ │ ├── options_description.cpp │ │ │ │ ├── parsers.cpp │ │ │ │ ├── positional_options.cpp │ │ │ │ ├── split.cpp │ │ │ │ ├── utf8_codecvt_facet.cpp │ │ │ │ ├── value_semantic.cpp │ │ │ │ ├── variables_map.cpp │ │ │ │ └── winmain.cpp │ │ │ └── test │ │ │ │ ├── Jamfile.v2 │ │ │ │ ├── cmdline_test.cpp │ │ │ │ ├── config_test.cfg │ │ │ │ ├── exception_test.cpp │ │ │ │ ├── exception_txt_test.cpp │ │ │ │ ├── minitest.hpp │ │ │ │ ├── options_description_test.cpp │ │ │ │ ├── parsers_test.cpp │ │ │ │ ├── positional_options_test.cpp │ │ │ │ ├── program_options_size_test.py │ │ │ │ ├── required_test.cfg │ │ │ │ ├── required_test.cpp │ │ │ │ ├── split_test.cpp │ │ │ │ ├── test_convert.cpp │ │ │ │ ├── ucs2.txt │ │ │ │ ├── unicode_test.cpp │ │ │ │ ├── unrecognized_test.cpp │ │ │ │ ├── utf8.txt │ │ │ │ ├── variable_map_test.cpp │ │ │ │ ├── winmain.cpp │ │ │ │ └── winmain.py │ │ │ ├── python │ │ │ ├── build │ │ │ │ ├── Jamfile.v2 │ │ │ │ └── python_v1.zip │ │ │ ├── class.cpp │ │ │ ├── doc │ │ │ │ ├── Jamfile │ │ │ │ ├── PyConDC_2003 │ │ │ │ │ ├── bpl.html │ │ │ │ │ ├── bpl.pdf │ │ │ │ │ ├── bpl.txt │ │ │ │ │ ├── bpl_mods.txt │ │ │ │ │ ├── default.css │ │ │ │ │ ├── python_cpp_mix.jpg │ │ │ │ │ └── python_cpp_mix.png │ │ │ │ ├── boost.css │ │ │ │ ├── building.html │ │ │ │ ├── building.rst │ │ │ │ ├── index.html │ │ │ │ ├── internals.html │ │ │ │ ├── internals.rst │ │ │ │ ├── news.html │ │ │ │ ├── polymorphism.txt │ │ │ │ ├── projects.html │ │ │ │ ├── support.html │ │ │ │ ├── tutorial │ │ │ │ │ ├── doc │ │ │ │ │ │ ├── Jamfile.v2 │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ ├── alert.png │ │ │ │ │ │ │ │ ├── home.png │ │ │ │ │ │ │ │ ├── jam.png │ │ │ │ │ │ │ │ ├── next.png │ │ │ │ │ │ │ │ ├── note.png │ │ │ │ │ │ │ │ ├── prev.png │ │ │ │ │ │ │ │ ├── python.png │ │ │ │ │ │ │ │ ├── smiley.png │ │ │ │ │ │ │ │ ├── tip.png │ │ │ │ │ │ │ │ └── up.png │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── python │ │ │ │ │ │ │ │ ├── embedding.html │ │ │ │ │ │ │ │ ├── exception.html │ │ │ │ │ │ │ │ ├── exposing.html │ │ │ │ │ │ │ │ ├── functions.html │ │ │ │ │ │ │ │ ├── hello.html │ │ │ │ │ │ │ │ ├── iterators.html │ │ │ │ │ │ │ │ ├── object.html │ │ │ │ │ │ │ │ └── techniques.html │ │ │ │ │ │ └── tutorial.qbk │ │ │ │ │ └── index.html │ │ │ │ └── v2 │ │ │ │ │ ├── Apr2002.html │ │ │ │ │ ├── CallPolicies.html │ │ │ │ │ ├── Dereferenceable.html │ │ │ │ │ ├── Extractor.html │ │ │ │ │ ├── HolderGenerator.html │ │ │ │ │ ├── Jun2002.html │ │ │ │ │ ├── Mar2002.html │ │ │ │ │ ├── May2002.html │ │ │ │ │ ├── ObjectWrapper.html │ │ │ │ │ ├── ResultConverter.html │ │ │ │ │ ├── acknowledgments.html │ │ │ │ │ ├── args.html │ │ │ │ │ ├── call.html │ │ │ │ │ ├── call_method.html │ │ │ │ │ ├── callbacks.html │ │ │ │ │ ├── callbacks.txt │ │ │ │ │ ├── class.html │ │ │ │ │ ├── configuration.html │ │ │ │ │ ├── copy_const_reference.html │ │ │ │ │ ├── copy_non_const_reference.html │ │ │ │ │ ├── data_members.html │ │ │ │ │ ├── def.html │ │ │ │ │ ├── def_visitor.html │ │ │ │ │ ├── default_call_policies.html │ │ │ │ │ ├── definitions.html │ │ │ │ │ ├── dict.html │ │ │ │ │ ├── docstring_options.html │ │ │ │ │ ├── enum.html │ │ │ │ │ ├── errors.html │ │ │ │ │ ├── exception_translator.html │ │ │ │ │ ├── exec.html │ │ │ │ │ ├── extract.html │ │ │ │ │ ├── faq.html │ │ │ │ │ ├── feb2002.html │ │ │ │ │ ├── function_doc_signature.html │ │ │ │ │ ├── handle.html │ │ │ │ │ ├── has_back_reference.html │ │ │ │ │ ├── implicit.html │ │ │ │ │ ├── import.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── indexing.html │ │ │ │ │ ├── init.html │ │ │ │ │ ├── instance_holder.html │ │ │ │ │ ├── iterator.html │ │ │ │ │ ├── list.html │ │ │ │ │ ├── long.html │ │ │ │ │ ├── lvalue_from_pytype.html │ │ │ │ │ ├── make_function.html │ │ │ │ │ ├── manage_new_object.html │ │ │ │ │ ├── module.html │ │ │ │ │ ├── numeric.html │ │ │ │ │ ├── object.html │ │ │ │ │ ├── opaque.html │ │ │ │ │ ├── operators.html │ │ │ │ │ ├── overloads.html │ │ │ │ │ ├── pickle.html │ │ │ │ │ ├── platforms.html │ │ │ │ │ ├── pointee.html │ │ │ │ │ ├── progress_reports.html │ │ │ │ │ ├── ptr.html │ │ │ │ │ ├── python.html │ │ │ │ │ ├── pytype_function.html │ │ │ │ │ ├── raw_function.html │ │ │ │ │ ├── reference.html │ │ │ │ │ ├── reference_existing_object.html │ │ │ │ │ ├── register_ptr_to_python.html │ │ │ │ │ ├── return_arg.html │ │ │ │ │ ├── return_by_value.html │ │ │ │ │ ├── return_internal_reference.html │ │ │ │ │ ├── return_opaque_pointer.html │ │ │ │ │ ├── return_value_policy.html │ │ │ │ │ ├── scope.html │ │ │ │ │ ├── slice.html │ │ │ │ │ ├── ssize_t.html │ │ │ │ │ ├── stl_iterator.html │ │ │ │ │ ├── str.html │ │ │ │ │ ├── to_python_converter.html │ │ │ │ │ ├── to_python_indirect.html │ │ │ │ │ ├── to_python_value.html │ │ │ │ │ ├── tuple.html │ │ │ │ │ ├── type_id.html │ │ │ │ │ ├── with_custodian_and_ward.html │ │ │ │ │ └── wrapper.html │ │ │ ├── example │ │ │ │ ├── Jamroot │ │ │ │ ├── README │ │ │ │ ├── boost-build.jam │ │ │ │ ├── getting_started1.cpp │ │ │ │ ├── getting_started2.cpp │ │ │ │ ├── project.zip │ │ │ │ ├── quickstart │ │ │ │ │ ├── Jamroot │ │ │ │ │ ├── boost-build.jam │ │ │ │ │ ├── embedding.cpp │ │ │ │ │ ├── extending.cpp │ │ │ │ │ ├── script.py │ │ │ │ │ └── test_extending.py │ │ │ │ ├── std_pair.cpp │ │ │ │ ├── test_getting_started1.py │ │ │ │ ├── test_getting_started2.py │ │ │ │ ├── test_std_pair.py │ │ │ │ └── tutorial │ │ │ │ │ ├── Jamroot │ │ │ │ │ ├── hello.cpp │ │ │ │ │ └── hello.py │ │ │ ├── index.html │ │ │ ├── pyste │ │ │ │ ├── NEWS │ │ │ │ ├── README │ │ │ │ ├── TODO │ │ │ │ ├── dist │ │ │ │ │ ├── create_build.py │ │ │ │ │ └── setup.py │ │ │ │ ├── doc │ │ │ │ │ ├── adding_new_methods.html │ │ │ │ │ ├── exporting_an_entire_header.html │ │ │ │ │ ├── global_variables.html │ │ │ │ │ ├── inserting_code.html │ │ │ │ │ ├── introduction.html │ │ │ │ │ ├── policies.html │ │ │ │ │ ├── pyste.txt │ │ │ │ │ ├── renaming_and_excluding.html │ │ │ │ │ ├── running_pyste.html │ │ │ │ │ ├── smart_pointers.html │ │ │ │ │ ├── templates.html │ │ │ │ │ ├── the_interface_files.html │ │ │ │ │ ├── theme │ │ │ │ │ │ ├── alert.gif │ │ │ │ │ │ ├── arrow.gif │ │ │ │ │ │ ├── bkd.gif │ │ │ │ │ │ ├── bkd2.gif │ │ │ │ │ │ ├── bulb.gif │ │ │ │ │ │ ├── bullet.gif │ │ │ │ │ │ ├── l_arr.gif │ │ │ │ │ │ ├── l_arr_disabled.gif │ │ │ │ │ │ ├── note.gif │ │ │ │ │ │ ├── r_arr.gif │ │ │ │ │ │ ├── r_arr_disabled.gif │ │ │ │ │ │ ├── smiley.gif │ │ │ │ │ │ ├── style.css │ │ │ │ │ │ └── u_arr.gif │ │ │ │ │ └── wrappers.html │ │ │ │ ├── index.html │ │ │ │ ├── install │ │ │ │ │ ├── pyste.py │ │ │ │ │ └── setup.py │ │ │ │ ├── src │ │ │ │ │ └── Pyste │ │ │ │ │ │ ├── ClassExporter.py │ │ │ │ │ │ ├── CodeExporter.py │ │ │ │ │ │ ├── CppParser.py │ │ │ │ │ │ ├── EnumExporter.py │ │ │ │ │ │ ├── Exporter.py │ │ │ │ │ │ ├── FunctionExporter.py │ │ │ │ │ │ ├── GCCXMLParser.py │ │ │ │ │ │ ├── HeaderExporter.py │ │ │ │ │ │ ├── MultipleCodeUnit.py │ │ │ │ │ │ ├── SingleCodeUnit.py │ │ │ │ │ │ ├── SmartFile.py │ │ │ │ │ │ ├── VarExporter.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── declarations.py │ │ │ │ │ │ ├── exporters.py │ │ │ │ │ │ ├── exporterutils.py │ │ │ │ │ │ ├── infos.py │ │ │ │ │ │ ├── policies.py │ │ │ │ │ │ ├── pyste.py │ │ │ │ │ │ ├── settings.py │ │ │ │ │ │ └── utils.py │ │ │ │ └── tests │ │ │ │ │ ├── GCCXMLParserUT.py │ │ │ │ │ ├── SmartFileUT.py │ │ │ │ │ ├── abstract_test.h │ │ │ │ │ ├── abstract_test.pyste │ │ │ │ │ ├── abstract_testUT.py │ │ │ │ │ ├── add_test.h │ │ │ │ │ ├── add_test.pyste │ │ │ │ │ ├── add_testUT.py │ │ │ │ │ ├── basic.cpp │ │ │ │ │ ├── basic.h │ │ │ │ │ ├── basic.pyste │ │ │ │ │ ├── basicUT.py │ │ │ │ │ ├── code_test.h │ │ │ │ │ ├── code_test.pyste │ │ │ │ │ ├── code_testUT.py │ │ │ │ │ ├── enums.h │ │ │ │ │ ├── enums.pyste │ │ │ │ │ ├── enumsUT.py │ │ │ │ │ ├── header_test.h │ │ │ │ │ ├── header_test.pyste │ │ │ │ │ ├── header_testUT.py │ │ │ │ │ ├── infosUT.py │ │ │ │ │ ├── inherit.cpp │ │ │ │ │ ├── inherit.h │ │ │ │ │ ├── inherit.pyste │ │ │ │ │ ├── inherit2.h │ │ │ │ │ ├── inherit2.pyste │ │ │ │ │ ├── inherit2UT.py │ │ │ │ │ ├── inherit3.h │ │ │ │ │ ├── inherit3.pyste │ │ │ │ │ ├── inherit3UT.py │ │ │ │ │ ├── inherit4.h │ │ │ │ │ ├── inherit4.pyste │ │ │ │ │ ├── inherit4UT.py │ │ │ │ │ ├── inheritUT.py │ │ │ │ │ ├── nested.cpp │ │ │ │ │ ├── nested.h │ │ │ │ │ ├── nested.pyste │ │ │ │ │ ├── nestedUT.py │ │ │ │ │ ├── opaque.h │ │ │ │ │ ├── opaque.pyste │ │ │ │ │ ├── opaqueUT.py │ │ │ │ │ ├── operators.cpp │ │ │ │ │ ├── operators.h │ │ │ │ │ ├── operators.pyste │ │ │ │ │ ├── operatorsUT.py │ │ │ │ │ ├── policiesUT.py │ │ │ │ │ ├── runtests.py │ │ │ │ │ ├── smart_ptr.h │ │ │ │ │ ├── smart_ptr.pyste │ │ │ │ │ ├── smart_ptrUT.py │ │ │ │ │ ├── templates.h │ │ │ │ │ ├── templates.pyste │ │ │ │ │ ├── templatesUT.py │ │ │ │ │ ├── test_all.py │ │ │ │ │ ├── vars.cpp │ │ │ │ │ ├── vars.h │ │ │ │ │ ├── vars.pyste │ │ │ │ │ ├── varsUT.py │ │ │ │ │ ├── virtual.cpp │ │ │ │ │ ├── virtual.h │ │ │ │ │ ├── virtual.pyste │ │ │ │ │ ├── virtual2.h │ │ │ │ │ ├── virtual2.pyste │ │ │ │ │ ├── virtual2UT.py │ │ │ │ │ ├── virtualUT.py │ │ │ │ │ ├── wrappertest.h │ │ │ │ │ ├── wrappertest.pyste │ │ │ │ │ ├── wrappertestUT.py │ │ │ │ │ └── wrappertest_wrappers.h │ │ │ ├── release_notes.txt │ │ │ ├── src │ │ │ │ ├── converter │ │ │ │ │ ├── arg_to_python_base.cpp │ │ │ │ │ ├── builtin_converters.cpp │ │ │ │ │ ├── from_python.cpp │ │ │ │ │ ├── registry.cpp │ │ │ │ │ └── type_id.cpp │ │ │ │ ├── dict.cpp │ │ │ │ ├── errors.cpp │ │ │ │ ├── exec.cpp │ │ │ │ ├── import.cpp │ │ │ │ ├── list.cpp │ │ │ │ ├── long.cpp │ │ │ │ ├── module.cpp │ │ │ │ ├── numeric.cpp │ │ │ │ ├── object │ │ │ │ │ ├── class.cpp │ │ │ │ │ ├── enum.cpp │ │ │ │ │ ├── function.cpp │ │ │ │ │ ├── function_doc_signature.cpp │ │ │ │ │ ├── inheritance.cpp │ │ │ │ │ ├── iterator.cpp │ │ │ │ │ ├── life_support.cpp │ │ │ │ │ ├── pickle_support.cpp │ │ │ │ │ └── stl_iterator.cpp │ │ │ │ ├── object_operators.cpp │ │ │ │ ├── object_protocol.cpp │ │ │ │ ├── slice.cpp │ │ │ │ ├── str.cpp │ │ │ │ ├── tuple.cpp │ │ │ │ └── wrapper.cpp │ │ │ ├── test │ │ │ │ ├── Jamfile.v2 │ │ │ │ ├── a_map_indexing_suite.cpp │ │ │ │ ├── andreas_beyer.cpp │ │ │ │ ├── andreas_beyer.py │ │ │ │ ├── args.cpp │ │ │ │ ├── args.py │ │ │ │ ├── as_to_python_function.cpp │ │ │ │ ├── auto_ptr.cpp │ │ │ │ ├── auto_ptr.py │ │ │ │ ├── back_reference.cpp │ │ │ │ ├── back_reference.py │ │ │ │ ├── bases.cpp │ │ │ │ ├── ben_scott1.cpp │ │ │ │ ├── ben_scott1.py │ │ │ │ ├── bienstman1.cpp │ │ │ │ ├── bienstman1.py │ │ │ │ ├── bienstman2.cpp │ │ │ │ ├── bienstman2.py │ │ │ │ ├── bienstman3.cpp │ │ │ │ ├── bienstman3.py │ │ │ │ ├── bienstman4.cpp │ │ │ │ ├── bienstman4.py │ │ │ │ ├── bienstman5.cpp │ │ │ │ ├── bienstman5.py │ │ │ │ ├── borrowed.cpp │ │ │ │ ├── callbacks.cpp │ │ │ │ ├── callbacks.py │ │ │ │ ├── calling_conventions.cpp │ │ │ │ ├── calling_conventions.py │ │ │ │ ├── calling_conventions_mf.cpp │ │ │ │ ├── calling_conventions_mf.py │ │ │ │ ├── class.cpp │ │ │ │ ├── class.py │ │ │ │ ├── cltree.cpp │ │ │ │ ├── complicated.hpp │ │ │ │ ├── const_argument.cpp │ │ │ │ ├── const_argument.py │ │ │ │ ├── copy_ctor_mutates_rhs.cpp │ │ │ │ ├── crossmod_exception.py │ │ │ │ ├── crossmod_exception_a.cpp │ │ │ │ ├── crossmod_exception_b.cpp │ │ │ │ ├── crossmod_opaque.py │ │ │ │ ├── crossmod_opaque_a.cpp │ │ │ │ ├── crossmod_opaque_b.cpp │ │ │ │ ├── data_members.cpp │ │ │ │ ├── data_members.py │ │ │ │ ├── defaults.cpp │ │ │ │ ├── defaults.py │ │ │ │ ├── destroy_test.cpp │ │ │ │ ├── dict.cpp │ │ │ │ ├── dict.py │ │ │ │ ├── docstring.cpp │ │ │ │ ├── docstring.py │ │ │ │ ├── enable_shared_from_this.cpp │ │ │ │ ├── enable_shared_from_this.py │ │ │ │ ├── enum.cpp │ │ │ │ ├── enum.py │ │ │ │ ├── exception_translator.cpp │ │ │ │ ├── exception_translator.py │ │ │ │ ├── exec.cpp │ │ │ │ ├── exec.py │ │ │ │ ├── extract.cpp │ │ │ │ ├── extract.py │ │ │ │ ├── if_else.cpp │ │ │ │ ├── implicit.cpp │ │ │ │ ├── implicit.py │ │ │ │ ├── import_.cpp │ │ │ │ ├── import_.py │ │ │ │ ├── indirect_traits_test.cpp │ │ │ │ ├── injected.cpp │ │ │ │ ├── injected.py │ │ │ │ ├── input_iterator.cpp │ │ │ │ ├── int_map_indexing_suite.cpp │ │ │ │ ├── iterator.cpp │ │ │ │ ├── iterator.py │ │ │ │ ├── keywords.cpp │ │ │ │ ├── keywords_test.py │ │ │ │ ├── list.cpp │ │ │ │ ├── list.py │ │ │ │ ├── long.cpp │ │ │ │ ├── long.py │ │ │ │ ├── m1.cpp │ │ │ │ ├── m2.cpp │ │ │ │ ├── map_indexing_suite.cpp │ │ │ │ ├── map_indexing_suite.py │ │ │ │ ├── minimal.cpp │ │ │ │ ├── minimal.py │ │ │ │ ├── module_tail.cpp │ │ │ │ ├── multi_arg_constructor.cpp │ │ │ │ ├── multi_arg_constructor.py │ │ │ │ ├── nested.cpp │ │ │ │ ├── nested.py │ │ │ │ ├── newtest.py │ │ │ │ ├── numarray_tests.py │ │ │ │ ├── numeric_tests.py │ │ │ │ ├── numpy.cpp │ │ │ │ ├── numpy.py │ │ │ │ ├── object.cpp │ │ │ │ ├── object.py │ │ │ │ ├── object_fail1.cpp │ │ │ │ ├── object_manager.cpp │ │ │ │ ├── opaque.cpp │ │ │ │ ├── opaque.py │ │ │ │ ├── operators.cpp │ │ │ │ ├── operators.py │ │ │ │ ├── operators_wrapper.cpp │ │ │ │ ├── operators_wrapper.py │ │ │ │ ├── pickle1.cpp │ │ │ │ ├── pickle1.py │ │ │ │ ├── pickle2.cpp │ │ │ │ ├── pickle2.py │ │ │ │ ├── pickle3.cpp │ │ │ │ ├── pickle3.py │ │ │ │ ├── pickle4.cpp │ │ │ │ ├── pickle4.py │ │ │ │ ├── pointee.cpp │ │ │ │ ├── pointer_type_id_test.cpp │ │ │ │ ├── pointer_vector.cpp │ │ │ │ ├── pointer_vector.py │ │ │ │ ├── polymorphism.cpp │ │ │ │ ├── polymorphism.py │ │ │ │ ├── polymorphism2.cpp │ │ │ │ ├── polymorphism2.py │ │ │ │ ├── polymorphism2_auto_ptr.cpp │ │ │ │ ├── polymorphism2_auto_ptr.py │ │ │ │ ├── printer.py │ │ │ │ ├── properties.cpp │ │ │ │ ├── properties.py │ │ │ │ ├── pyrun.py │ │ │ │ ├── pytype_function.cpp │ │ │ │ ├── pytype_function.py │ │ │ │ ├── raw_ctor.cpp │ │ │ │ ├── raw_ctor.py │ │ │ │ ├── raw_pyobject_fail1.cpp │ │ │ │ ├── raw_pyobject_fail2.cpp │ │ │ │ ├── register_ptr.cpp │ │ │ │ ├── register_ptr_test.py │ │ │ │ ├── result.cpp │ │ │ │ ├── return_arg.cpp │ │ │ │ ├── return_arg.py │ │ │ │ ├── select_arg_to_python_test.cpp │ │ │ │ ├── select_from_python_test.cpp │ │ │ │ ├── select_holder.cpp │ │ │ │ ├── shared_ptr.cpp │ │ │ │ ├── shared_ptr.py │ │ │ │ ├── simple_type.hpp │ │ │ │ ├── slice.cpp │ │ │ │ ├── slice.py │ │ │ │ ├── staticmethod.cpp │ │ │ │ ├── staticmethod.py │ │ │ │ ├── stl_iterator.cpp │ │ │ │ ├── stl_iterator.py │ │ │ │ ├── str.cpp │ │ │ │ ├── str.py │ │ │ │ ├── string_literal.cpp │ │ │ │ ├── test_builtin_converters.cpp │ │ │ │ ├── test_builtin_converters.py │ │ │ │ ├── test_class.hpp │ │ │ │ ├── test_cltree.py │ │ │ │ ├── test_overload_resolution.cpp │ │ │ │ ├── test_pointer_adoption.cpp │ │ │ │ ├── test_pointer_adoption.py │ │ │ │ ├── tuple.cpp │ │ │ │ ├── tuple.py │ │ │ │ ├── upcast.cpp │ │ │ │ ├── vector_indexing_suite.cpp │ │ │ │ ├── vector_indexing_suite.py │ │ │ │ ├── virtual_functions.cpp │ │ │ │ ├── virtual_functions.py │ │ │ │ ├── voidptr.cpp │ │ │ │ ├── voidptr.py │ │ │ │ ├── wrapper_held_type.cpp │ │ │ │ └── wrapper_held_type.py │ │ │ ├── todo.html │ │ │ └── todo.txt │ │ │ ├── regex │ │ │ ├── doc │ │ │ │ ├── Jamfile.v2 │ │ │ │ ├── acknowledgements.qbk │ │ │ │ ├── bad_expression.qbk │ │ │ │ ├── basic_regex.qbk │ │ │ │ ├── captures.qbk │ │ │ │ ├── character_class_names.qbk │ │ │ │ ├── collating_names.qbk │ │ │ │ ├── concepts.qbk │ │ │ │ ├── configuration.qbk │ │ │ │ ├── error_type.qbk │ │ │ │ ├── examples.qbk │ │ │ │ ├── faq.qbk │ │ │ │ ├── format_boost_syntax.qbk │ │ │ │ ├── format_perl_syntax.qbk │ │ │ │ ├── format_sed_syntax.qbk │ │ │ │ ├── format_syntax.qbk │ │ │ │ ├── further_info.qbk │ │ │ │ ├── gcc-performance.html │ │ │ │ ├── headers.qbk │ │ │ │ ├── history.qbk │ │ │ │ ├── html │ │ │ │ │ ├── boost_regex │ │ │ │ │ │ ├── background_information.html │ │ │ │ │ │ ├── background_information │ │ │ │ │ │ │ ├── acknowledgements.html │ │ │ │ │ │ │ ├── examples.html │ │ │ │ │ │ │ ├── faq.html │ │ │ │ │ │ │ ├── futher.html │ │ │ │ │ │ │ ├── headers.html │ │ │ │ │ │ │ ├── history.html │ │ │ │ │ │ │ ├── locale.html │ │ │ │ │ │ │ ├── performance.html │ │ │ │ │ │ │ ├── redist.html │ │ │ │ │ │ │ ├── standards.html │ │ │ │ │ │ │ └── thread_safety.html │ │ │ │ │ │ ├── captures.html │ │ │ │ │ │ ├── configuration.html │ │ │ │ │ │ ├── configuration │ │ │ │ │ │ │ ├── algorithm.html │ │ │ │ │ │ │ ├── compiler.html │ │ │ │ │ │ │ ├── linkage.html │ │ │ │ │ │ │ ├── locale.html │ │ │ │ │ │ │ └── tuning.html │ │ │ │ │ │ ├── format.html │ │ │ │ │ │ ├── format │ │ │ │ │ │ │ ├── boost_format_syntax.html │ │ │ │ │ │ │ ├── perl_format.html │ │ │ │ │ │ │ └── sed_format.html │ │ │ │ │ │ ├── install.html │ │ │ │ │ │ ├── introduction_and_overview.html │ │ │ │ │ │ ├── partial_matches.html │ │ │ │ │ │ ├── ref.html │ │ │ │ │ │ ├── ref │ │ │ │ │ │ │ ├── bad_expression.html │ │ │ │ │ │ │ ├── basic_regex.html │ │ │ │ │ │ │ ├── concepts.html │ │ │ │ │ │ │ ├── concepts │ │ │ │ │ │ │ │ ├── charT_concept.html │ │ │ │ │ │ │ │ ├── iterator_concepts.html │ │ │ │ │ │ │ │ └── traits_concept.html │ │ │ │ │ │ │ ├── deprecated_interfaces.html │ │ │ │ │ │ │ ├── deprecated_interfaces │ │ │ │ │ │ │ │ ├── old_regex.html │ │ │ │ │ │ │ │ ├── regex_format.html │ │ │ │ │ │ │ │ ├── regex_grep.html │ │ │ │ │ │ │ │ └── regex_split.html │ │ │ │ │ │ │ ├── error_type.html │ │ │ │ │ │ │ ├── internal_details.html │ │ │ │ │ │ │ ├── internal_details │ │ │ │ │ │ │ │ └── uni_iter.html │ │ │ │ │ │ │ ├── match_flag_type.html │ │ │ │ │ │ │ ├── match_results.html │ │ │ │ │ │ │ ├── non_std_strings.html │ │ │ │ │ │ │ ├── non_std_strings │ │ │ │ │ │ │ │ ├── icu.html │ │ │ │ │ │ │ │ ├── icu │ │ │ │ │ │ │ │ │ ├── intro.html │ │ │ │ │ │ │ │ │ ├── unicode_algo.html │ │ │ │ │ │ │ │ │ ├── unicode_iter.html │ │ │ │ │ │ │ │ │ └── unicode_types.html │ │ │ │ │ │ │ │ ├── mfc_strings.html │ │ │ │ │ │ │ │ └── mfc_strings │ │ │ │ │ │ │ │ │ ├── mfc_algo.html │ │ │ │ │ │ │ │ │ ├── mfc_intro.html │ │ │ │ │ │ │ │ │ ├── mfc_iter.html │ │ │ │ │ │ │ │ │ ├── mfc_regex_create.html │ │ │ │ │ │ │ │ │ └── mfc_regex_types.html │ │ │ │ │ │ │ ├── posix.html │ │ │ │ │ │ │ ├── regex_iterator.html │ │ │ │ │ │ │ ├── regex_match.html │ │ │ │ │ │ │ ├── regex_replace.html │ │ │ │ │ │ │ ├── regex_search.html │ │ │ │ │ │ │ ├── regex_token_iterator.html │ │ │ │ │ │ │ ├── regex_traits.html │ │ │ │ │ │ │ ├── sub_match.html │ │ │ │ │ │ │ ├── syntax_option_type.html │ │ │ │ │ │ │ └── syntax_option_type │ │ │ │ │ │ │ │ ├── syntax_option_type_basic.html │ │ │ │ │ │ │ │ ├── syntax_option_type_extended.html │ │ │ │ │ │ │ │ ├── syntax_option_type_literal.html │ │ │ │ │ │ │ │ ├── syntax_option_type_overview.html │ │ │ │ │ │ │ │ ├── syntax_option_type_perl.html │ │ │ │ │ │ │ │ └── syntax_option_type_synopsis.html │ │ │ │ │ │ ├── syntax.html │ │ │ │ │ │ ├── syntax │ │ │ │ │ │ │ ├── basic_extended.html │ │ │ │ │ │ │ ├── basic_syntax.html │ │ │ │ │ │ │ ├── character_classes.html │ │ │ │ │ │ │ ├── character_classes │ │ │ │ │ │ │ │ ├── optional_char_class_names.html │ │ │ │ │ │ │ │ └── std_char_clases.html │ │ │ │ │ │ │ ├── collating_names.html │ │ │ │ │ │ │ ├── collating_names │ │ │ │ │ │ │ │ ├── digraphs.html │ │ │ │ │ │ │ │ ├── named_unicode.html │ │ │ │ │ │ │ │ └── posix_symbolic_names.html │ │ │ │ │ │ │ ├── leftmost_longest_rule.html │ │ │ │ │ │ │ └── perl_syntax.html │ │ │ │ │ │ └── unicode.html │ │ │ │ │ └── index.html │ │ │ │ ├── icu_strings.qbk │ │ │ │ ├── install.qbk │ │ │ │ ├── introduction.qbk │ │ │ │ ├── leftmost_longest.qbk │ │ │ │ ├── locale.qbk │ │ │ │ ├── match_flag_type.qbk │ │ │ │ ├── match_result.qbk │ │ │ │ ├── mfc_strings.qbk │ │ │ │ ├── non_std_strings.qbk │ │ │ │ ├── old_regex.qbk │ │ │ │ ├── partial_matches.qbk │ │ │ │ ├── performance.qbk │ │ │ │ ├── posix_api.qbk │ │ │ │ ├── redistributables.qbk │ │ │ │ ├── regex.qbk │ │ │ │ ├── regex_format.qbk │ │ │ │ ├── regex_grep.qbk │ │ │ │ ├── regex_iterator.qbk │ │ │ │ ├── regex_match.qbk │ │ │ │ ├── regex_replace.qbk │ │ │ │ ├── regex_search.qbk │ │ │ │ ├── regex_split.qbk │ │ │ │ ├── regex_token_iterator.qbk │ │ │ │ ├── regex_traits.qbk │ │ │ │ ├── standards.qbk │ │ │ │ ├── sub_match.qbk │ │ │ │ ├── syntax.qbk │ │ │ │ ├── syntax_basic.qbk │ │ │ │ ├── syntax_extended.qbk │ │ │ │ ├── syntax_option_type.qbk │ │ │ │ ├── syntax_perl.qbk │ │ │ │ ├── thread_safety.qbk │ │ │ │ ├── unicode.qbk │ │ │ │ ├── unicode_iterators.qbk │ │ │ │ └── vc71-performance.html │ │ │ ├── example │ │ │ │ ├── Jamfile.v2 │ │ │ │ ├── grep │ │ │ │ │ └── grep.cpp │ │ │ │ ├── snippets │ │ │ │ │ ├── captures_example.cpp │ │ │ │ │ ├── credit_card_example.cpp │ │ │ │ │ ├── icu_example.cpp │ │ │ │ │ ├── mfc_example.cpp │ │ │ │ │ ├── partial_regex_grep.cpp │ │ │ │ │ ├── partial_regex_iterate.cpp │ │ │ │ │ ├── partial_regex_match.cpp │ │ │ │ │ ├── regex_grep_example_1.cpp │ │ │ │ │ ├── regex_grep_example_2.cpp │ │ │ │ │ ├── regex_grep_example_3.cpp │ │ │ │ │ ├── regex_grep_example_4.cpp │ │ │ │ │ ├── regex_iterator_example.cpp │ │ │ │ │ ├── regex_match_example.cpp │ │ │ │ │ ├── regex_merge_example.cpp │ │ │ │ │ ├── regex_replace_example.cpp │ │ │ │ │ ├── regex_search_example.cpp │ │ │ │ │ ├── regex_split_example_1.cpp │ │ │ │ │ ├── regex_split_example_2.cpp │ │ │ │ │ ├── regex_token_iterator_eg_1.cpp │ │ │ │ │ └── regex_token_iterator_eg_2.cpp │ │ │ │ └── timer │ │ │ │ │ ├── bc55.mak │ │ │ │ │ ├── bcb4.mak │ │ │ │ │ ├── bcb5.mak │ │ │ │ │ ├── gcc.mak │ │ │ │ │ ├── input_script.txt │ │ │ │ │ ├── regex_timer.cpp │ │ │ │ │ ├── vc6-stlport.mak │ │ │ │ │ └── vc6.mak │ │ │ ├── index.html │ │ │ ├── performance │ │ │ │ ├── Jamfile.v2 │ │ │ │ ├── command_line.cpp │ │ │ │ ├── input.html │ │ │ │ ├── main.cpp │ │ │ │ ├── regex_comparison.hpp │ │ │ │ ├── time_boost.cpp │ │ │ │ ├── time_dynamic_xpressive.cpp │ │ │ │ ├── time_greta.cpp │ │ │ │ ├── time_localised_boost.cpp │ │ │ │ ├── time_pcre.cpp │ │ │ │ ├── time_posix.cpp │ │ │ │ ├── time_safe_greta.cpp │ │ │ │ └── time_std.cpp │ │ │ ├── readme.txt │ │ │ ├── src │ │ │ │ ├── c_regex_traits.cpp │ │ │ │ ├── cpp_regex_traits.cpp │ │ │ │ ├── cregex.cpp │ │ │ │ ├── fileiter.cpp │ │ │ │ ├── icu.cpp │ │ │ │ ├── instances.cpp │ │ │ │ ├── internals.hpp │ │ │ │ ├── posix_api.cpp │ │ │ │ ├── regex.cpp │ │ │ │ ├── regex_debug.cpp │ │ │ │ ├── regex_raw_buffer.cpp │ │ │ │ ├── regex_traits_defaults.cpp │ │ │ │ ├── static_mutex.cpp │ │ │ │ ├── usinstances.cpp │ │ │ │ ├── w32_regex_traits.cpp │ │ │ │ ├── wc_regex_traits.cpp │ │ │ │ ├── wide_posix_api.cpp │ │ │ │ └── winstances.cpp │ │ │ ├── test │ │ │ │ ├── Jamfile.v2 │ │ │ │ ├── auto-link-test │ │ │ │ │ └── Jamfile │ │ │ │ ├── c_compiler_checks │ │ │ │ │ ├── posix_api_check.c │ │ │ │ │ ├── posix_api_check.cpp │ │ │ │ │ ├── wide_posix_api_check.c │ │ │ │ │ └── wide_posix_api_check.cpp │ │ │ │ ├── captures │ │ │ │ │ ├── Jamfile.v2 │ │ │ │ │ └── captures_test.cpp │ │ │ │ ├── collate_info │ │ │ │ │ └── collate_info.cpp │ │ │ │ ├── concepts │ │ │ │ │ ├── concept_check.cpp │ │ │ │ │ └── icu_concept_check.cpp │ │ │ │ ├── config_info │ │ │ │ │ └── regex_config_info.cpp │ │ │ │ ├── named_subexpressions │ │ │ │ │ └── named_subexpressions_test.cpp │ │ │ │ ├── noeh_test │ │ │ │ │ └── Jamfile.v2 │ │ │ │ ├── object_cache │ │ │ │ │ └── object_cache_test.cpp │ │ │ │ ├── pathology │ │ │ │ │ ├── bad_expression_test.cpp │ │ │ │ │ └── recursion_test.cpp │ │ │ │ ├── profile │ │ │ │ │ └── Makefile │ │ │ │ ├── regress │ │ │ │ │ ├── basic_tests.cpp │ │ │ │ │ ├── bcb6.mak │ │ │ │ │ ├── gcc.mak │ │ │ │ │ ├── info.hpp │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── sunpro.mak │ │ │ │ │ ├── test.hpp │ │ │ │ │ ├── test_alt.cpp │ │ │ │ │ ├── test_anchors.cpp │ │ │ │ │ ├── test_asserts.cpp │ │ │ │ │ ├── test_backrefs.cpp │ │ │ │ │ ├── test_deprecated.cpp │ │ │ │ │ ├── test_deprecated.hpp │ │ │ │ │ ├── test_emacs.cpp │ │ │ │ │ ├── test_escapes.cpp │ │ │ │ │ ├── test_grep.cpp │ │ │ │ │ ├── test_icu.cpp │ │ │ │ │ ├── test_icu.hpp │ │ │ │ │ ├── test_locale.cpp │ │ │ │ │ ├── test_locale.hpp │ │ │ │ │ ├── test_mfc.cpp │ │ │ │ │ ├── test_mfc.hpp │ │ │ │ │ ├── test_non_greedy_repeats.cpp │ │ │ │ │ ├── test_not_regex.hpp │ │ │ │ │ ├── test_operators.cpp │ │ │ │ │ ├── test_overloads.cpp │ │ │ │ │ ├── test_partial_match.hpp │ │ │ │ │ ├── test_perl_ex.cpp │ │ │ │ │ ├── test_regex_replace.hpp │ │ │ │ │ ├── test_regex_search.hpp │ │ │ │ │ ├── test_replace.cpp │ │ │ │ │ ├── test_sets.cpp │ │ │ │ │ ├── test_simple_repeats.cpp │ │ │ │ │ ├── test_tricky_cases.cpp │ │ │ │ │ ├── test_unicode.cpp │ │ │ │ │ ├── vc6-stlport.mak │ │ │ │ │ ├── vc6.mak │ │ │ │ │ ├── vc7.mak │ │ │ │ │ ├── vc71.mak │ │ │ │ │ └── vc8.mak │ │ │ │ ├── static_mutex │ │ │ │ │ └── static_mutex_test.cpp │ │ │ │ ├── test_consolidated.cpp │ │ │ │ └── unicode │ │ │ │ │ └── unicode_iterator_test.cpp │ │ │ └── tools │ │ │ │ └── generate │ │ │ │ └── tables.cpp │ │ │ ├── serialization │ │ │ ├── doc │ │ │ │ ├── acknowledgments.html │ │ │ │ ├── archive_reference.html │ │ │ │ ├── archives.html │ │ │ │ ├── bibliography.html │ │ │ │ ├── class_diagram.html │ │ │ │ ├── codecvt.html │ │ │ │ ├── configuration.html │ │ │ │ ├── contents.html │ │ │ │ ├── dataflow.html │ │ │ │ ├── definitions.html │ │ │ │ ├── derivation.html │ │ │ │ ├── dot.gif │ │ │ │ ├── exception_safety.html │ │ │ │ ├── exceptions.html │ │ │ │ ├── extended_type_info.html │ │ │ │ ├── faq.html │ │ │ │ ├── headers.html │ │ │ │ ├── history.html │ │ │ │ ├── implementation.html │ │ │ │ ├── index.html │ │ │ │ ├── minus.gif │ │ │ │ ├── new_case_studies.html │ │ │ │ ├── overview.html │ │ │ │ ├── performance_status.html │ │ │ │ ├── pimpl.html │ │ │ │ ├── plus.gif │ │ │ │ ├── profile1.txt │ │ │ │ ├── profile2.txt │ │ │ │ ├── profile3.txt │ │ │ │ ├── rationale.html │ │ │ │ ├── reference.html │ │ │ │ ├── release.html │ │ │ │ ├── serialization.html │ │ │ │ ├── shared_ptr.html │ │ │ │ ├── shared_ptr2.html │ │ │ │ ├── simple_log.html │ │ │ │ ├── singleton.html │ │ │ │ ├── smart_cast.html │ │ │ │ ├── special.html │ │ │ │ ├── state_saver.html │ │ │ │ ├── static_warning.html │ │ │ │ ├── strong_typedef.html │ │ │ │ ├── style.css │ │ │ │ ├── todo.html │ │ │ │ ├── traits.html │ │ │ │ ├── tutorial.html │ │ │ │ ├── void_cast.html │ │ │ │ └── wrappers.html │ │ │ ├── example │ │ │ │ ├── Jamfile.v2 │ │ │ │ ├── demo.cpp │ │ │ │ ├── demo_auto_ptr.cpp │ │ │ │ ├── demo_dll.cpp │ │ │ │ ├── demo_dll_a.hpp │ │ │ │ ├── demo_dll_a.ipp │ │ │ │ ├── demo_dll_b.hpp │ │ │ │ ├── demo_dll_b.ipp │ │ │ │ ├── demo_exception.cpp │ │ │ │ ├── demo_fast_archive.cpp │ │ │ │ ├── demo_gps.hpp │ │ │ │ ├── demo_log.cpp │ │ │ │ ├── demo_output.txt │ │ │ │ ├── demo_pimpl.cpp │ │ │ │ ├── demo_pimpl_A.cpp │ │ │ │ ├── demo_pimpl_A.hpp │ │ │ │ ├── demo_polymorphic.cpp │ │ │ │ ├── demo_polymorphic_A.cpp │ │ │ │ ├── demo_polymorphic_A.hpp │ │ │ │ ├── demo_portable_archive.cpp │ │ │ │ ├── demo_save.xml │ │ │ │ ├── demo_shared_ptr.cpp │ │ │ │ ├── demo_simple_log.cpp │ │ │ │ ├── demo_trivial_archive.cpp │ │ │ │ ├── demo_xml.cpp │ │ │ │ ├── demo_xml.hpp │ │ │ │ ├── demo_xml_load.cpp │ │ │ │ ├── demo_xml_save.cpp │ │ │ │ ├── demofile.txt │ │ │ │ ├── fix_six.cpp │ │ │ │ ├── log_archive.cpp │ │ │ │ ├── log_archive.hpp │ │ │ │ ├── polymorphic_portable_binary_iarchive.cpp │ │ │ │ ├── polymorphic_portable_binary_iarchive.hpp │ │ │ │ ├── polymorphic_portable_binary_oarchive.cpp │ │ │ │ ├── polymorphic_portable_binary_oarchive.hpp │ │ │ │ ├── portable_binary_archive.hpp │ │ │ │ ├── portable_binary_iarchive.cpp │ │ │ │ ├── portable_binary_iarchive.hpp │ │ │ │ ├── portable_binary_oarchive.cpp │ │ │ │ ├── portable_binary_oarchive.hpp │ │ │ │ └── simple_log_archive.hpp │ │ │ ├── index.html │ │ │ ├── performance │ │ │ │ ├── Jamfile.v2 │ │ │ │ ├── binary_archive.hpp │ │ │ │ ├── binary_warchive.hpp │ │ │ │ ├── peformance_array.cpp │ │ │ │ ├── performance_binary.cpp │ │ │ │ ├── performance_codecvt_null.cpp │ │ │ │ ├── performance_iterators.cpp │ │ │ │ ├── performance_iterators_base64.cpp │ │ │ │ ├── performance_no_rtti.cpp │ │ │ │ ├── performance_polymorphic.cpp │ │ │ │ ├── performance_simple_class.cpp │ │ │ │ ├── performance_utf8_codecvt.cpp │ │ │ │ ├── performance_vector.cpp │ │ │ │ ├── polymorphic_array_binary_archive.hpp │ │ │ │ ├── polymorphic_binary_archive.hpp │ │ │ │ ├── polymorphic_text_archive.hpp │ │ │ │ ├── polymorphic_text_warchive.hpp │ │ │ │ ├── polymorphic_xml_archive.hpp │ │ │ │ ├── polymorphic_xml_warchive.hpp │ │ │ │ ├── portable_binary_archive.hpp │ │ │ │ ├── profile.sh │ │ │ │ ├── text_archive.hpp │ │ │ │ ├── text_warchive.hpp │ │ │ │ ├── xml │ │ │ │ │ ├── Jamfile.v2 │ │ │ │ │ ├── harness.hpp │ │ │ │ │ ├── high_resolution_timer.hpp │ │ │ │ │ ├── int16_results.xml │ │ │ │ │ ├── int16_test.cpp │ │ │ │ │ ├── int256_results.xml │ │ │ │ │ ├── int256_test.cpp │ │ │ │ │ ├── int4_results.xml │ │ │ │ │ ├── int4_test.cpp │ │ │ │ │ ├── int64_results.xml │ │ │ │ │ ├── int64_test.cpp │ │ │ │ │ ├── macro.hpp │ │ │ │ │ ├── node.hpp │ │ │ │ │ ├── string16_results.xml │ │ │ │ │ ├── string16_test.cpp │ │ │ │ │ ├── string256_results.xml │ │ │ │ │ ├── string256_test.cpp │ │ │ │ │ ├── string4_results.xml │ │ │ │ │ ├── string4_test.cpp │ │ │ │ │ ├── string64_results.xml │ │ │ │ │ └── string64_test.cpp │ │ │ │ ├── xml_archive.hpp │ │ │ │ └── xml_warchive.hpp │ │ │ ├── src │ │ │ │ ├── archive_exception.cpp │ │ │ │ ├── basic_archive.cpp │ │ │ │ ├── basic_iarchive.cpp │ │ │ │ ├── basic_iserializer.cpp │ │ │ │ ├── basic_oarchive.cpp │ │ │ │ ├── basic_oserializer.cpp │ │ │ │ ├── basic_pointer_iserializer.cpp │ │ │ │ ├── basic_pointer_oserializer.cpp │ │ │ │ ├── basic_serializer_map.cpp │ │ │ │ ├── basic_text_iprimitive.cpp │ │ │ │ ├── basic_text_oprimitive.cpp │ │ │ │ ├── basic_text_wiprimitive.cpp │ │ │ │ ├── basic_text_woprimitive.cpp │ │ │ │ ├── basic_xml_archive.cpp │ │ │ │ ├── basic_xml_grammar.ipp │ │ │ │ ├── binary_iarchive.cpp │ │ │ │ ├── binary_oarchive.cpp │ │ │ │ ├── binary_wiarchive.cpp │ │ │ │ ├── binary_woarchive.cpp │ │ │ │ ├── codecvt_null.cpp │ │ │ │ ├── extended_type_info.cpp │ │ │ │ ├── extended_type_info_no_rtti.cpp │ │ │ │ ├── extended_type_info_typeid.cpp │ │ │ │ ├── polymorphic_iarchive.cpp │ │ │ │ ├── polymorphic_oarchive.cpp │ │ │ │ ├── shared_ptr_helper.cpp │ │ │ │ ├── stl_port.cpp │ │ │ │ ├── text_iarchive.cpp │ │ │ │ ├── text_oarchive.cpp │ │ │ │ ├── text_wiarchive.cpp │ │ │ │ ├── text_woarchive.cpp │ │ │ │ ├── utf8_codecvt_facet.cpp │ │ │ │ ├── void_cast.cpp │ │ │ │ ├── xml_archive_exception.cpp │ │ │ │ ├── xml_grammar.cpp │ │ │ │ ├── xml_iarchive.cpp │ │ │ │ ├── xml_oarchive.cpp │ │ │ │ ├── xml_wgrammar.cpp │ │ │ │ ├── xml_wiarchive.cpp │ │ │ │ └── xml_woarchive.cpp │ │ │ ├── test │ │ │ │ ├── A.cpp │ │ │ │ ├── A.hpp │ │ │ │ ├── A.ipp │ │ │ │ ├── B.hpp │ │ │ │ ├── C.hpp │ │ │ │ ├── D.hpp │ │ │ │ ├── J.hpp │ │ │ │ ├── Jamfile.v2 │ │ │ │ ├── base.hpp │ │ │ │ ├── binary_archive.hpp │ │ │ │ ├── binary_warchive.hpp │ │ │ │ ├── derived2.hpp │ │ │ │ ├── dll_a.cpp │ │ │ │ ├── dll_base.cpp │ │ │ │ ├── dll_derived2.cpp │ │ │ │ ├── polymorphic_array_binary_archive.hpp │ │ │ │ ├── polymorphic_base.cpp │ │ │ │ ├── polymorphic_base.hpp │ │ │ │ ├── polymorphic_binary_archive.hpp │ │ │ │ ├── polymorphic_derived1.cpp │ │ │ │ ├── polymorphic_derived1.hpp │ │ │ │ ├── polymorphic_derived2.cpp │ │ │ │ ├── polymorphic_derived2.hpp │ │ │ │ ├── polymorphic_text_archive.hpp │ │ │ │ ├── polymorphic_text_warchive.hpp │ │ │ │ ├── polymorphic_xml_archive.hpp │ │ │ │ ├── polymorphic_xml_warchive.hpp │ │ │ │ ├── portable_binary_archive.hpp │ │ │ │ ├── test_array.cpp │ │ │ │ ├── test_binary.cpp │ │ │ │ ├── test_bitset.cpp │ │ │ │ ├── test_check.cpp │ │ │ │ ├── test_class_info_load.cpp │ │ │ │ ├── test_class_info_save.cpp │ │ │ │ ├── test_codecvt_null.cpp │ │ │ │ ├── test_complex.cpp │ │ │ │ ├── test_const_load_fail1.cpp │ │ │ │ ├── test_const_load_fail1_nvp.cpp │ │ │ │ ├── test_const_load_fail2.cpp │ │ │ │ ├── test_const_load_fail2_nvp.cpp │ │ │ │ ├── test_const_load_fail3.cpp │ │ │ │ ├── test_const_load_fail3_nvp.cpp │ │ │ │ ├── test_const_pass.cpp │ │ │ │ ├── test_const_save_warn1.cpp │ │ │ │ ├── test_const_save_warn1_nvp.cpp │ │ │ │ ├── test_const_save_warn2.cpp │ │ │ │ ├── test_const_save_warn2_nvp.cpp │ │ │ │ ├── test_const_save_warn3.cpp │ │ │ │ ├── test_const_save_warn3_nvp.cpp │ │ │ │ ├── test_const_save_warn4.cpp │ │ │ │ ├── test_const_save_warn4_nvp.cpp │ │ │ │ ├── test_contained_class.cpp │ │ │ │ ├── test_cyclic_ptrs.cpp │ │ │ │ ├── test_decl.hpp │ │ │ │ ├── test_delete_pointer.cpp │ │ │ │ ├── test_deque.cpp │ │ │ │ ├── test_derived.cpp │ │ │ │ ├── test_derived_class.cpp │ │ │ │ ├── test_derived_class_ptr.cpp │ │ │ │ ├── test_diamond.cpp │ │ │ │ ├── test_diamond_complex.cpp │ │ │ │ ├── test_dll_exported.cpp │ │ │ │ ├── test_dll_plugin.cpp │ │ │ │ ├── test_dll_simple.cpp │ │ │ │ ├── test_exported.cpp │ │ │ │ ├── test_inclusion.cpp │ │ │ │ ├── test_iterators.cpp │ │ │ │ ├── test_iterators_base64.cpp │ │ │ │ ├── test_list.cpp │ │ │ │ ├── test_list_ptrs.cpp │ │ │ │ ├── test_map.cpp │ │ │ │ ├── test_mi.cpp │ │ │ │ ├── test_mult_archive_types.cpp │ │ │ │ ├── test_multiple_inheritance.cpp │ │ │ │ ├── test_multiple_ptrs.cpp │ │ │ │ ├── test_new_operator.cpp │ │ │ │ ├── test_no_rtti.cpp │ │ │ │ ├── test_non_default_ctor.cpp │ │ │ │ ├── test_non_default_ctor2.cpp │ │ │ │ ├── test_non_intrusive.cpp │ │ │ │ ├── test_not_serializable.cpp │ │ │ │ ├── test_null_ptr.cpp │ │ │ │ ├── test_nvp.cpp │ │ │ │ ├── test_object.cpp │ │ │ │ ├── test_optional.cpp │ │ │ │ ├── test_pimpl.cpp │ │ │ │ ├── test_polymorphic.cpp │ │ │ │ ├── test_polymorphic2.cpp │ │ │ │ ├── test_polymorphic2.hpp │ │ │ │ ├── test_polymorphic2imp.cpp │ │ │ │ ├── test_polymorphic_A.cpp │ │ │ │ ├── test_polymorphic_A.hpp │ │ │ │ ├── test_primitive.cpp │ │ │ │ ├── test_private_base.cpp │ │ │ │ ├── test_private_ctor.cpp │ │ │ │ ├── test_recursion.cpp │ │ │ │ ├── test_registered.cpp │ │ │ │ ├── test_reset_object_address.cpp │ │ │ │ ├── test_set.cpp │ │ │ │ ├── test_shared_ptr.cpp │ │ │ │ ├── test_shared_ptr_132.cpp │ │ │ │ ├── test_shared_ptr_multi_base.cpp │ │ │ │ ├── test_simple_class.cpp │ │ │ │ ├── test_simple_class_ptr.cpp │ │ │ │ ├── test_singleton.cpp │ │ │ │ ├── test_smart_cast.cpp │ │ │ │ ├── test_split.cpp │ │ │ │ ├── test_static_warning.cpp │ │ │ │ ├── test_tools.hpp │ │ │ │ ├── test_tracking.cpp │ │ │ │ ├── test_traits_fail.cpp │ │ │ │ ├── test_traits_pass.cpp │ │ │ │ ├── test_unregistered.cpp │ │ │ │ ├── test_utf8_codecvt.cpp │ │ │ │ ├── test_valarray.cpp │ │ │ │ ├── test_variant.cpp │ │ │ │ ├── test_vector.cpp │ │ │ │ ├── test_void_cast.cpp │ │ │ │ ├── text_archive.hpp │ │ │ │ ├── text_warchive.hpp │ │ │ │ ├── xml_archive.hpp │ │ │ │ └── xml_warchive.hpp │ │ │ ├── util │ │ │ │ └── test.jam │ │ │ └── vc7ide │ │ │ │ ├── BoostSerializationLibrary.sln │ │ │ │ ├── Manual.vcproj │ │ │ │ ├── Serialization.vcproj │ │ │ │ ├── SerializationW.vcproj │ │ │ │ ├── demo.vcproj │ │ │ │ ├── demo_auto_ptr.vcproj │ │ │ │ ├── demo_dll.vcproj │ │ │ │ ├── demo_exception.vcproj │ │ │ │ ├── demo_fast_archive.vcproj │ │ │ │ ├── demo_log.vcproj │ │ │ │ ├── demo_pimpl.vcproj │ │ │ │ ├── demo_polymorphic.vcproj │ │ │ │ ├── demo_portable_archive.vcproj │ │ │ │ ├── demo_shared_ptr.vcproj │ │ │ │ ├── demo_simple_log.vcproj │ │ │ │ ├── demo_trivial_archive.vcproj │ │ │ │ ├── demo_xml.vcproj │ │ │ │ ├── demo_xml_load.vcproj │ │ │ │ ├── demo_xml_save.vcproj │ │ │ │ ├── dll_a.vcproj │ │ │ │ ├── dll_base.vcproj │ │ │ │ ├── dll_derived2.vcproj │ │ │ │ ├── dll_polymorphic_derived2.vcproj │ │ │ │ ├── fix_six.vcproj │ │ │ │ ├── test_array.vcproj │ │ │ │ ├── test_binary.vcproj │ │ │ │ ├── test_bitset.vcproj │ │ │ │ ├── test_check.vcproj │ │ │ │ ├── test_class_info_load.vcproj │ │ │ │ ├── test_class_info_save.vcproj │ │ │ │ ├── test_codecvt_null.vcproj │ │ │ │ ├── test_complex.vcproj │ │ │ │ ├── test_const.vcproj │ │ │ │ ├── test_const_fail.vcproj │ │ │ │ ├── test_const_pass.vcproj │ │ │ │ ├── test_contained_class.vcproj │ │ │ │ ├── test_cyclic_ptrs.vcproj │ │ │ │ ├── test_delete_pointer.vcproj │ │ │ │ ├── test_deque.vcproj │ │ │ │ ├── test_derived.vcproj │ │ │ │ ├── test_derived_class.vcproj │ │ │ │ ├── test_derived_class_ptr.vcproj │ │ │ │ ├── test_diamond.vcproj │ │ │ │ ├── test_diamond_complex.vcproj │ │ │ │ ├── test_dll_exported.vcproj │ │ │ │ ├── test_dll_plugin.vcproj │ │ │ │ ├── test_dll_simple.vcproj │ │ │ │ ├── test_exported.vcproj │ │ │ │ ├── test_inclusion.vcproj │ │ │ │ ├── test_iterators.vcproj │ │ │ │ ├── test_iterators_base64.vcproj │ │ │ │ ├── test_list.vcproj │ │ │ │ ├── test_list_ptrs.vcproj │ │ │ │ ├── test_map.vcproj │ │ │ │ ├── test_mi.vcproj │ │ │ │ ├── test_mult_archive_types.vcproj │ │ │ │ ├── test_multiple_inheritance.vcproj │ │ │ │ ├── test_multiple_ptrs.vcproj │ │ │ │ ├── test_new_operator.vcproj │ │ │ │ ├── test_no_rtti.vcproj │ │ │ │ ├── test_non_default_ctor.vcproj │ │ │ │ ├── test_non_default_ctor2.vcproj │ │ │ │ ├── test_non_intrusive.vcproj │ │ │ │ ├── test_not_serializable.vcproj │ │ │ │ ├── test_null_ptr.vcproj │ │ │ │ ├── test_nvp.vcproj │ │ │ │ ├── test_object.vcproj │ │ │ │ ├── test_optional.vcproj │ │ │ │ ├── test_polymorphic.vcproj │ │ │ │ ├── test_polymorphic2.vcproj │ │ │ │ ├── test_primitive.vcproj │ │ │ │ ├── test_private_base.vcproj │ │ │ │ ├── test_private_ctor.vcproj │ │ │ │ ├── test_recursion.vcproj │ │ │ │ ├── test_registered.vcproj │ │ │ │ ├── test_reset_object_addr.vcproj │ │ │ │ ├── test_set.vcproj │ │ │ │ ├── test_shared_ptr.vcproj │ │ │ │ ├── test_shared_ptr_132.vcproj │ │ │ │ ├── test_shared_ptr_multi_base.vcproj │ │ │ │ ├── test_simple_class.vcproj │ │ │ │ ├── test_simple_class_ptr.vcproj │ │ │ │ ├── test_singleton.vcproj │ │ │ │ ├── test_smart_cast.vcproj │ │ │ │ ├── test_split.vcproj │ │ │ │ ├── test_static_warning.vcproj │ │ │ │ ├── test_strong_typedef.vcproj │ │ │ │ ├── test_tracking.vcproj │ │ │ │ ├── test_traits_fail.vcproj │ │ │ │ ├── test_traits_pass.vcproj │ │ │ │ ├── test_unregistered.vcproj │ │ │ │ ├── test_utf8_codecvt.vcproj │ │ │ │ ├── test_valarray.vcproj │ │ │ │ ├── test_variant.vcproj │ │ │ │ ├── test_vector.vcproj │ │ │ │ └── test_void_cast.vcproj │ │ │ ├── system │ │ │ ├── doc │ │ │ │ ├── index.html │ │ │ │ └── reference.html │ │ │ ├── index.html │ │ │ ├── src │ │ │ │ ├── error_code.cpp │ │ │ │ └── local_free_on_destruction.hpp │ │ │ └── test │ │ │ │ ├── Jamfile.v2 │ │ │ │ ├── dynamic_link_test.cpp │ │ │ │ ├── error_code_test.cpp │ │ │ │ ├── error_code_user_test.cpp │ │ │ │ ├── header_only_test.cpp │ │ │ │ ├── initialization_test.cpp │ │ │ │ ├── system_error_test.cpp │ │ │ │ ├── system_msvc │ │ │ │ ├── common.vsprops │ │ │ │ ├── error_code_test │ │ │ │ │ └── error_code_test.vcproj │ │ │ │ └── system_msvc.sln │ │ │ │ └── throw_test.cpp │ │ │ ├── test │ │ │ ├── Jamfile.v2 │ │ │ ├── README │ │ │ ├── doc │ │ │ │ ├── html │ │ │ │ │ ├── aknowledgements.html │ │ │ │ │ ├── execution-monitor.html │ │ │ │ │ ├── execution-monitor │ │ │ │ │ │ ├── compilation.html │ │ │ │ │ │ ├── reference.html │ │ │ │ │ │ └── user-guide.html │ │ │ │ │ ├── faq.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── intro.html │ │ │ │ │ ├── minimal.html │ │ │ │ │ ├── open-issues.html │ │ │ │ │ ├── prg-exec-monitor.html │ │ │ │ │ ├── prg-exec-monitor │ │ │ │ │ │ ├── compilation.html │ │ │ │ │ │ └── impl.html │ │ │ │ │ ├── tutorials │ │ │ │ │ │ ├── hello-the-testing-world.html │ │ │ │ │ │ ├── intro-in-testing.html │ │ │ │ │ │ └── new-year-resolution.html │ │ │ │ │ ├── utf.html │ │ │ │ │ └── utf │ │ │ │ │ │ ├── compilation.html │ │ │ │ │ │ ├── compilation │ │ │ │ │ │ ├── auto-linking.html │ │ │ │ │ │ ├── direct-include.html │ │ │ │ │ │ └── standalone.html │ │ │ │ │ │ ├── intro.html │ │ │ │ │ │ ├── testing-tools.html │ │ │ │ │ │ ├── testing-tools │ │ │ │ │ │ ├── custom-predicate.html │ │ │ │ │ │ ├── floating_point_comparison.html │ │ │ │ │ │ ├── output-test.html │ │ │ │ │ │ └── reference.html │ │ │ │ │ │ ├── tutorials.html │ │ │ │ │ │ ├── usage-recomendations.html │ │ │ │ │ │ ├── usage-recomendations │ │ │ │ │ │ ├── command-line-specific.html │ │ │ │ │ │ ├── dot-net-specific.html │ │ │ │ │ │ └── generic.html │ │ │ │ │ │ ├── usage-recommendations.html │ │ │ │ │ │ ├── usage-recommendations │ │ │ │ │ │ ├── command-line-specific.html │ │ │ │ │ │ ├── dot-net-specific.html │ │ │ │ │ │ └── generic.html │ │ │ │ │ │ ├── user-guide.html │ │ │ │ │ │ └── user-guide │ │ │ │ │ │ ├── fixture.html │ │ │ │ │ │ ├── fixture │ │ │ │ │ │ ├── global.html │ │ │ │ │ │ ├── model.html │ │ │ │ │ │ ├── per-test-case.html │ │ │ │ │ │ └── test-suite-shared.html │ │ │ │ │ │ ├── initialization.html │ │ │ │ │ │ ├── runtime-config.html │ │ │ │ │ │ ├── runtime-config │ │ │ │ │ │ ├── reference.html │ │ │ │ │ │ └── run-by-name.html │ │ │ │ │ │ ├── test-organization.html │ │ │ │ │ │ ├── test-organization │ │ │ │ │ │ ├── auto-nullary-test-case.html │ │ │ │ │ │ ├── auto-test-case-template.html │ │ │ │ │ │ ├── auto-test-suite.html │ │ │ │ │ │ ├── expected-failures.html │ │ │ │ │ │ ├── manual-nullary-test-case.html │ │ │ │ │ │ ├── manual-test-case-template.html │ │ │ │ │ │ ├── manual-test-suite.html │ │ │ │ │ │ ├── master-test-suite.html │ │ │ │ │ │ ├── nullary-test-case.html │ │ │ │ │ │ ├── test-case-template.html │ │ │ │ │ │ ├── test-suite.html │ │ │ │ │ │ └── unary-test-case.html │ │ │ │ │ │ ├── test-output.html │ │ │ │ │ │ ├── test-output │ │ │ │ │ │ ├── BOOST_TEST_CHECKPOINT.html │ │ │ │ │ │ ├── BOOST_TEST_MESSAGE.html │ │ │ │ │ │ ├── BOOST_TEST_PASSPOINT.html │ │ │ │ │ │ ├── log-ct-config.html │ │ │ │ │ │ ├── log-hr-format.html │ │ │ │ │ │ ├── log-xml-format.html │ │ │ │ │ │ ├── results-report.html │ │ │ │ │ │ ├── test-log.html │ │ │ │ │ │ └── test-progress.html │ │ │ │ │ │ ├── test-runners.html │ │ │ │ │ │ ├── usage-variants.html │ │ │ │ │ │ └── usage-variants │ │ │ │ │ │ ├── dynamic-lib-variant.html │ │ │ │ │ │ ├── extern-test-runner-variant.html │ │ │ │ │ │ ├── extern-test-runner.html │ │ │ │ │ │ ├── single-header-variant.html │ │ │ │ │ │ └── static-lib-variant.html │ │ │ │ ├── img │ │ │ │ │ ├── boost.test.logo.png │ │ │ │ │ ├── class-hier.jpg │ │ │ │ │ ├── level.png │ │ │ │ │ ├── post_build_event.jpg │ │ │ │ │ ├── post_build_out.jpg │ │ │ │ │ └── run_args.jpg │ │ │ │ ├── js │ │ │ │ │ └── boost-test.js │ │ │ │ ├── src │ │ │ │ │ ├── UTF.log.xsd │ │ │ │ │ ├── UTF.report.xsd │ │ │ │ │ └── examples │ │ │ │ │ │ ├── example.sln │ │ │ │ │ │ ├── example.vcproj │ │ │ │ │ │ ├── example01.cpp │ │ │ │ │ │ ├── example01.output │ │ │ │ │ │ ├── example02.cpp │ │ │ │ │ │ ├── example02.output │ │ │ │ │ │ ├── example03.cpp │ │ │ │ │ │ ├── example03.output │ │ │ │ │ │ ├── example04.cpp │ │ │ │ │ │ ├── example04.output │ │ │ │ │ │ ├── example05.cpp │ │ │ │ │ │ ├── example05.output │ │ │ │ │ │ ├── example06.cpp │ │ │ │ │ │ ├── example06.output │ │ │ │ │ │ ├── example07.cpp │ │ │ │ │ │ ├── example07.output │ │ │ │ │ │ ├── example08.cpp │ │ │ │ │ │ ├── example08.output │ │ │ │ │ │ ├── example09.cpp │ │ │ │ │ │ ├── example09.output │ │ │ │ │ │ ├── example10.cpp │ │ │ │ │ │ ├── example10.output │ │ │ │ │ │ ├── example11.cpp │ │ │ │ │ │ ├── example11.output │ │ │ │ │ │ ├── example12.cpp │ │ │ │ │ │ ├── example12.output │ │ │ │ │ │ ├── example13.cpp │ │ │ │ │ │ ├── example13.output │ │ │ │ │ │ ├── example14.cpp │ │ │ │ │ │ ├── example14.output │ │ │ │ │ │ ├── example15.cpp │ │ │ │ │ │ ├── example15.output │ │ │ │ │ │ ├── example16.cpp │ │ │ │ │ │ ├── example16.output │ │ │ │ │ │ ├── example17.cpp │ │ │ │ │ │ ├── example17.output │ │ │ │ │ │ ├── example18.cpp │ │ │ │ │ │ ├── example18.output │ │ │ │ │ │ ├── example19.cpp │ │ │ │ │ │ ├── example19.output │ │ │ │ │ │ ├── example20.cpp │ │ │ │ │ │ ├── example20.output │ │ │ │ │ │ ├── example21.cpp │ │ │ │ │ │ ├── example21.output │ │ │ │ │ │ ├── example22.cpp │ │ │ │ │ │ ├── example22.output │ │ │ │ │ │ ├── example23.cpp │ │ │ │ │ │ ├── example23.output │ │ │ │ │ │ ├── example24.cpp │ │ │ │ │ │ ├── example24.output │ │ │ │ │ │ ├── example25.cpp │ │ │ │ │ │ ├── example25.output │ │ │ │ │ │ ├── example26.cpp │ │ │ │ │ │ ├── example26.output │ │ │ │ │ │ ├── example27.cpp │ │ │ │ │ │ ├── example27.output │ │ │ │ │ │ ├── example28.cpp │ │ │ │ │ │ ├── example28.output │ │ │ │ │ │ ├── example29.cpp │ │ │ │ │ │ ├── example29.output │ │ │ │ │ │ ├── example30.cpp │ │ │ │ │ │ ├── example30.output │ │ │ │ │ │ ├── example31.cpp │ │ │ │ │ │ ├── example31.output │ │ │ │ │ │ ├── example32.cpp │ │ │ │ │ │ ├── example32.output │ │ │ │ │ │ ├── example33.cpp │ │ │ │ │ │ ├── example33.output │ │ │ │ │ │ ├── example34.cpp │ │ │ │ │ │ ├── example34.output │ │ │ │ │ │ ├── example35.cpp │ │ │ │ │ │ ├── example35.output │ │ │ │ │ │ ├── example36.cpp │ │ │ │ │ │ ├── example36.output │ │ │ │ │ │ ├── example37.cpp │ │ │ │ │ │ ├── example37.output │ │ │ │ │ │ ├── example38.cpp │ │ │ │ │ │ ├── example38.output │ │ │ │ │ │ ├── example39.cpp │ │ │ │ │ │ ├── example39.output │ │ │ │ │ │ ├── example40.cpp │ │ │ │ │ │ ├── example40.output │ │ │ │ │ │ ├── example41.cpp │ │ │ │ │ │ ├── example41.output │ │ │ │ │ │ ├── example42.cpp │ │ │ │ │ │ ├── example42.output │ │ │ │ │ │ ├── example43.cpp │ │ │ │ │ │ ├── example43.output │ │ │ │ │ │ ├── example44.cpp │ │ │ │ │ │ ├── example44.output │ │ │ │ │ │ ├── example45.cpp │ │ │ │ │ │ ├── example45.output │ │ │ │ │ │ ├── example46.cpp │ │ │ │ │ │ ├── example46.output │ │ │ │ │ │ ├── example47.cpp │ │ │ │ │ │ ├── example47.output │ │ │ │ │ │ ├── example48.cpp │ │ │ │ │ │ ├── example48.output │ │ │ │ │ │ ├── example49.cpp │ │ │ │ │ │ ├── example49.output │ │ │ │ │ │ ├── example50.cpp │ │ │ │ │ │ ├── example50.output │ │ │ │ │ │ ├── example51.cpp │ │ │ │ │ │ ├── example51.output │ │ │ │ │ │ ├── example52.cpp │ │ │ │ │ │ ├── example52.output │ │ │ │ │ │ ├── example53.cpp │ │ │ │ │ │ ├── example53.output │ │ │ │ │ │ ├── example54.cpp │ │ │ │ │ │ ├── example54.output │ │ │ │ │ │ ├── example55.cpp │ │ │ │ │ │ ├── example55.output │ │ │ │ │ │ ├── example56.cpp │ │ │ │ │ │ ├── example56.output │ │ │ │ │ │ ├── example57.cpp │ │ │ │ │ │ ├── example57.output │ │ │ │ │ │ ├── example58.cpp │ │ │ │ │ │ └── example58.output │ │ │ │ └── style │ │ │ │ │ ├── boostbook.css │ │ │ │ │ ├── btl-headers.css │ │ │ │ │ ├── btl-inline.css │ │ │ │ │ ├── btl-links.css │ │ │ │ │ ├── btl-lists.css │ │ │ │ │ ├── btl-paragraphs.css │ │ │ │ │ ├── btl-structure.css │ │ │ │ │ ├── btl-tables.css │ │ │ │ │ └── style.css │ │ │ ├── docbook │ │ │ │ └── img │ │ │ │ │ ├── boost.test.logo.png │ │ │ │ │ ├── class-hier.jpg │ │ │ │ │ ├── level.png │ │ │ │ │ ├── post_build_event.jpg │ │ │ │ │ ├── post_build_out.jpg │ │ │ │ │ └── run_args.jpg │ │ │ ├── example │ │ │ │ ├── Jamfile.v2 │ │ │ │ ├── cla │ │ │ │ │ ├── Jamfile │ │ │ │ │ ├── assign_to.cpp │ │ │ │ │ ├── basic_float.cpp │ │ │ │ │ ├── basic_int.cpp │ │ │ │ │ ├── basic_list.cpp │ │ │ │ │ ├── basic_string.cpp │ │ │ │ │ ├── basic_udt.cpp │ │ │ │ │ ├── char_parameter.cpp │ │ │ │ │ ├── custom_handler.cpp │ │ │ │ │ ├── custom_interpreter.cpp │ │ │ │ │ ├── custom_parameter.cpp │ │ │ │ │ ├── default_value.cpp │ │ │ │ │ ├── dual_name.cpp │ │ │ │ │ ├── global.cpp │ │ │ │ │ ├── guess_name.cpp │ │ │ │ │ ├── help.cpp │ │ │ │ │ ├── ignore_mismatch.cpp │ │ │ │ │ ├── input_separator.cpp │ │ │ │ │ ├── multiplicable.cpp │ │ │ │ │ ├── name.cpp │ │ │ │ │ ├── optional.cpp │ │ │ │ │ ├── optional_value.cpp │ │ │ │ │ ├── positional.cpp │ │ │ │ │ ├── prefix.cpp │ │ │ │ │ ├── reference.cpp │ │ │ │ │ ├── remainder.cpp │ │ │ │ │ ├── separator.cpp │ │ │ │ │ ├── usage.cpp │ │ │ │ │ ├── validation │ │ │ │ │ │ ├── Jamfile │ │ │ │ │ │ ├── access_unknown.cpp │ │ │ │ │ │ ├── ambiguous_access.cpp │ │ │ │ │ │ ├── ambiguous_input.cpp │ │ │ │ │ │ ├── definition_conflict.cpp │ │ │ │ │ │ ├── invalid_short_name.cpp │ │ │ │ │ │ ├── multiple_generators.cpp │ │ │ │ │ │ ├── multiple_value_handlers.cpp │ │ │ │ │ │ ├── opt_with_default_value.cpp │ │ │ │ │ │ ├── optional_plus_multiplicable.cpp │ │ │ │ │ │ ├── required_missing.cpp │ │ │ │ │ │ ├── unexpected_input.cpp │ │ │ │ │ │ └── unexpected_repetition.cpp │ │ │ │ │ └── wide_string.cpp │ │ │ │ ├── const_string.hpp │ │ │ │ ├── const_string_test.cpp │ │ │ │ ├── env │ │ │ │ │ ├── Jamfile │ │ │ │ │ ├── custom_interpreter_env.cpp │ │ │ │ │ ├── env_var_default_value.cpp │ │ │ │ │ ├── environment_ex.cpp │ │ │ │ │ ├── global_id.cpp │ │ │ │ │ ├── modifier_combination.cpp │ │ │ │ │ ├── validation │ │ │ │ │ │ ├── Jamfile │ │ │ │ │ │ └── need_typed_access.cpp │ │ │ │ │ └── variable_ex.cpp │ │ │ │ ├── est_example1.cpp │ │ │ │ ├── est_example2.cpp │ │ │ │ ├── exec_mon_example.cpp │ │ │ │ ├── external_main_example_1.cpp │ │ │ │ ├── external_main_example_2.cpp │ │ │ │ ├── external_main_example_3.cpp │ │ │ │ ├── logged_exp_example.cpp │ │ │ │ ├── named_param_example.cpp │ │ │ │ ├── prg_exec_example.cpp │ │ │ │ ├── test_case_template_example.cpp │ │ │ │ ├── unit_test_example_01.cpp │ │ │ │ ├── unit_test_example_011.cpp │ │ │ │ ├── unit_test_example_012.cpp │ │ │ │ ├── unit_test_example_02.cpp │ │ │ │ ├── unit_test_example_03.cpp │ │ │ │ ├── unit_test_example_04.cpp │ │ │ │ ├── unit_test_example_05.cpp │ │ │ │ ├── unit_test_example_06.cpp │ │ │ │ ├── unit_test_example_07.cpp │ │ │ │ ├── unit_test_example_08.cpp │ │ │ │ ├── unit_test_example_09_1.cpp │ │ │ │ ├── unit_test_example_09_2.cpp │ │ │ │ ├── unit_test_example_10.cpp │ │ │ │ ├── unit_test_example_11.cpp │ │ │ │ ├── unit_test_example_12.cpp │ │ │ │ └── unit_test_example_12.input │ │ │ ├── index.html │ │ │ ├── src │ │ │ │ ├── compiler_log_formatter.cpp │ │ │ │ ├── cpp_main.cpp │ │ │ │ ├── debug.cpp │ │ │ │ ├── exception_safety.cpp │ │ │ │ ├── execution_monitor.cpp │ │ │ │ ├── framework.cpp │ │ │ │ ├── interaction_based.cpp │ │ │ │ ├── logged_expectations.cpp │ │ │ │ ├── plain_report_formatter.cpp │ │ │ │ ├── progress_monitor.cpp │ │ │ │ ├── results_collector.cpp │ │ │ │ ├── results_reporter.cpp │ │ │ │ ├── test_main.cpp │ │ │ │ ├── test_tools.cpp │ │ │ │ ├── unit_test_log.cpp │ │ │ │ ├── unit_test_main.cpp │ │ │ │ ├── unit_test_monitor.cpp │ │ │ │ ├── unit_test_parameters.cpp │ │ │ │ ├── unit_test_suite.cpp │ │ │ │ ├── xml_log_formatter.cpp │ │ │ │ └── xml_report_formatter.cpp │ │ │ ├── test │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Jamfile.v2 │ │ │ │ ├── algorithms_test.cpp │ │ │ │ ├── auto-link-test │ │ │ │ │ └── auto_link_with_utf.cpp │ │ │ │ ├── basic_cstring_test.cpp │ │ │ │ ├── boost_check_equal_str.cpp │ │ │ │ ├── class_properties_test.cpp │ │ │ │ ├── config_file_iterator_test.cpp │ │ │ │ ├── config_file_test.cpp │ │ │ │ ├── custom_exception_test.cpp │ │ │ │ ├── errors_handling_test.cpp │ │ │ │ ├── fixed_mapping_test.cpp │ │ │ │ ├── foreach_test.cpp │ │ │ │ ├── ifstream_line_iterator_test.cpp │ │ │ │ ├── minimal_test.cpp │ │ │ │ ├── online_test.cpp │ │ │ │ ├── output_test_stream_test.cpp │ │ │ │ ├── parameterized_test_test.cpp │ │ │ │ ├── prg_exec_fail1.cpp │ │ │ │ ├── prg_exec_fail2.cpp │ │ │ │ ├── prg_exec_fail3.cpp │ │ │ │ ├── prg_exec_fail4.cpp │ │ │ │ ├── result_report_test.cpp │ │ │ │ ├── sync_access_test.cpp │ │ │ │ ├── test_case_template_test.cpp │ │ │ │ ├── test_files │ │ │ │ │ ├── cfg_file_tst1.cfg │ │ │ │ │ ├── cfg_file_tst2.cfg │ │ │ │ │ ├── cfg_file_tst3.cfg │ │ │ │ │ ├── cfg_file_tst4.cfg │ │ │ │ │ ├── cfg_file_tst5.cfg │ │ │ │ │ ├── cfg_file_tst6.cfg │ │ │ │ │ ├── cfg_file_tst7.cfg │ │ │ │ │ ├── errors_handling_test.pattern │ │ │ │ │ ├── errors_handling_test.pattern2 │ │ │ │ │ ├── ifstream_line_iterator.tst1 │ │ │ │ │ ├── ifstream_line_iterator.tst2 │ │ │ │ │ ├── par_alias1.cfg │ │ │ │ │ ├── par_alias2.cfg │ │ │ │ │ ├── par_alias3.cfg │ │ │ │ │ ├── result_report_test.pattern │ │ │ │ │ ├── test_broken_line.cfg │ │ │ │ │ ├── test_comments_and_blanks.cfg │ │ │ │ │ ├── test_constructor.cfg │ │ │ │ │ ├── test_define.cfg │ │ │ │ │ ├── test_ifdef.cfg │ │ │ │ │ ├── test_ifdef1.cfg │ │ │ │ │ ├── test_ifdef2.cfg │ │ │ │ │ ├── test_ifdef3.cfg │ │ │ │ │ ├── test_ifdef4.cfg │ │ │ │ │ ├── test_include1.cfg │ │ │ │ │ ├── test_include1_include1.cfg │ │ │ │ │ ├── test_include2.cfg │ │ │ │ │ ├── test_include3.cfg │ │ │ │ │ ├── test_incomplete_broken_line.cfg │ │ │ │ │ ├── test_macro_def1.cfg │ │ │ │ │ ├── test_macro_subst1.cfg │ │ │ │ │ ├── test_macro_subst2.cfg │ │ │ │ │ ├── test_macro_subst3.cfg │ │ │ │ │ ├── test_macro_subst4.cfg │ │ │ │ │ ├── test_multipart_value1.cfg │ │ │ │ │ ├── test_multipart_value10.cfg │ │ │ │ │ ├── test_multipart_value11.cfg │ │ │ │ │ ├── test_multipart_value12.cfg │ │ │ │ │ ├── test_multipart_value13.cfg │ │ │ │ │ ├── test_multipart_value2.cfg │ │ │ │ │ ├── test_multipart_value3.cfg │ │ │ │ │ ├── test_multipart_value4.cfg │ │ │ │ │ ├── test_multipart_value5.cfg │ │ │ │ │ ├── test_multipart_value6.cfg │ │ │ │ │ ├── test_multipart_value7.cfg │ │ │ │ │ ├── test_multipart_value8.cfg │ │ │ │ │ ├── test_multipart_value9.cfg │ │ │ │ │ ├── test_tools_test.pattern │ │ │ │ │ └── test_undef.cfg │ │ │ │ ├── test_fp_comparisons.cpp │ │ │ │ ├── test_tools_test.cpp │ │ │ │ ├── test_tree_management_test.cpp │ │ │ │ └── token_iterator_test.cpp │ │ │ └── tools │ │ │ │ └── console_test_runner │ │ │ │ ├── Jamfile.v2 │ │ │ │ ├── src │ │ │ │ └── console_test_runner.cpp │ │ │ │ └── test │ │ │ │ └── test_runner_test.cpp │ │ │ ├── thread │ │ │ ├── doc │ │ │ │ ├── Jamfile.v2 │ │ │ │ ├── acknowledgements.qbk │ │ │ │ ├── barrier.qbk │ │ │ │ ├── changes.qbk │ │ │ │ ├── compliance.qbk │ │ │ │ ├── condition_variables.qbk │ │ │ │ ├── configuration.qbk │ │ │ │ ├── emulations.qbk │ │ │ │ ├── external_locking.qbk │ │ │ │ ├── future_ref.qbk │ │ │ │ ├── futures.qbk │ │ │ │ ├── index.html │ │ │ │ ├── internal_locking.qbk │ │ │ │ ├── latch.qbk │ │ │ │ ├── lockable_adapter.qbk │ │ │ │ ├── mutex_concepts.qbk │ │ │ │ ├── mutexes.qbk │ │ │ │ ├── once.qbk │ │ │ │ ├── overview.qbk │ │ │ │ ├── scoped_thread.qbk │ │ │ │ ├── shared_mutex_ref.qbk │ │ │ │ ├── sync_queues_ref.qbk │ │ │ │ ├── sync_streams.qbk │ │ │ │ ├── sync_tutorial.qbk │ │ │ │ ├── synchronized_value.qbk │ │ │ │ ├── synchronized_value_ref.qbk │ │ │ │ ├── thread.qbk │ │ │ │ ├── thread_ref.qbk │ │ │ │ ├── time.qbk │ │ │ │ └── tss.qbk │ │ │ ├── example │ │ │ │ ├── Jamfile.v2 │ │ │ │ ├── ba_externallly_locked.cpp │ │ │ │ ├── condition.cpp │ │ │ │ ├── future_then.cpp │ │ │ │ ├── lambda_future.cpp │ │ │ │ ├── make_future.cpp │ │ │ │ ├── monitor.cpp │ │ │ │ ├── mutex.cpp │ │ │ │ ├── not_interleaved.cpp │ │ │ │ ├── once.cpp │ │ │ │ ├── perf_condition_variable.cpp │ │ │ │ ├── perf_shared_mutex.cpp │ │ │ │ ├── producer_consumer.cpp │ │ │ │ ├── producer_consumer_bounded.cpp │ │ │ │ ├── recursive_mutex.cpp │ │ │ │ ├── scoped_thread.cpp │ │ │ │ ├── shared_monitor.cpp │ │ │ │ ├── shared_mutex.cpp │ │ │ │ ├── starvephil.cpp │ │ │ │ ├── strict_lock.cpp │ │ │ │ ├── synchronized_person.cpp │ │ │ │ ├── synchronized_value.cpp │ │ │ │ ├── tennis.cpp │ │ │ │ ├── thread.cpp │ │ │ │ ├── thread_group.cpp │ │ │ │ ├── thread_guard.cpp │ │ │ │ ├── tss.cpp │ │ │ │ └── xtime.cpp │ │ │ ├── index.html │ │ │ ├── src │ │ │ │ ├── future.cpp │ │ │ │ ├── pthread │ │ │ │ │ ├── once.cpp │ │ │ │ │ ├── once_atomic.cpp │ │ │ │ │ ├── thread.cpp │ │ │ │ │ └── timeconv.inl │ │ │ │ ├── tss_null.cpp │ │ │ │ └── win32 │ │ │ │ │ ├── thread.cpp │ │ │ │ │ ├── timeconv.inl │ │ │ │ │ ├── tss_dll.cpp │ │ │ │ │ └── tss_pe.cpp │ │ │ ├── test │ │ │ │ ├── Carbon.r │ │ │ │ ├── Jamfile.v2 │ │ │ │ ├── condition_test_common.hpp │ │ │ │ ├── no_implicit_assign_from_lvalue_thread.cpp │ │ │ │ ├── no_implicit_move_from_lvalue_thread.cpp │ │ │ │ ├── remove_error_code_unused_warning.hpp │ │ │ │ ├── shared_mutex_locking_thread.hpp │ │ │ │ ├── sync │ │ │ │ │ ├── conditions │ │ │ │ │ │ ├── condition_variable │ │ │ │ │ │ │ ├── assign_fail.cpp │ │ │ │ │ │ │ ├── copy_fail.cpp │ │ │ │ │ │ │ ├── default_pass.cpp │ │ │ │ │ │ │ ├── dtor_pass.cpp │ │ │ │ │ │ │ ├── native_handle_pass.cpp │ │ │ │ │ │ │ ├── wait_for_pass.cpp │ │ │ │ │ │ │ ├── wait_for_pred_pass.cpp │ │ │ │ │ │ │ ├── wait_pass.cpp │ │ │ │ │ │ │ ├── wait_until_pass.cpp │ │ │ │ │ │ │ └── wait_until_pred_pass.cpp │ │ │ │ │ │ ├── condition_variable_any │ │ │ │ │ │ │ ├── assign_fail.cpp │ │ │ │ │ │ │ ├── copy_fail.cpp │ │ │ │ │ │ │ ├── default_pass.cpp │ │ │ │ │ │ │ ├── dtor_pass.cpp │ │ │ │ │ │ │ ├── wait_for_pass.cpp │ │ │ │ │ │ │ ├── wait_for_pred_pass.cpp │ │ │ │ │ │ │ ├── wait_until_pass.cpp │ │ │ │ │ │ │ └── wait_until_pred_pass.cpp │ │ │ │ │ │ ├── cv_status │ │ │ │ │ │ │ └── cv_status_pass.cpp │ │ │ │ │ │ └── notify_all_at_thread_exit_pass.cpp │ │ │ │ │ ├── futures │ │ │ │ │ │ ├── async │ │ │ │ │ │ │ └── async_pass.cpp │ │ │ │ │ │ ├── future │ │ │ │ │ │ │ ├── copy_assign_fail.cpp │ │ │ │ │ │ │ ├── copy_ctor_fail.cpp │ │ │ │ │ │ │ ├── default_pass.cpp │ │ │ │ │ │ │ ├── dtor_pass.cpp │ │ │ │ │ │ │ ├── get_pass.cpp │ │ │ │ │ │ │ ├── move_assign_pass.cpp │ │ │ │ │ │ │ ├── move_ctor_pass.cpp │ │ │ │ │ │ │ ├── share_pass.cpp │ │ │ │ │ │ │ ├── then_pass.cpp │ │ │ │ │ │ │ ├── wait_for_pass.cpp │ │ │ │ │ │ │ ├── wait_pass.cpp │ │ │ │ │ │ │ └── wait_until_pass.cpp │ │ │ │ │ │ ├── packaged_task │ │ │ │ │ │ │ ├── alloc_ctor_pass.cpp │ │ │ │ │ │ │ ├── copy_assign_fail.cpp │ │ │ │ │ │ │ ├── copy_ctor_fail.cpp │ │ │ │ │ │ │ ├── default_ctor_pass.cpp │ │ │ │ │ │ │ ├── dtor_pass.cpp │ │ │ │ │ │ │ ├── func_ctor_pass.cpp │ │ │ │ │ │ │ ├── get_future_pass.cpp │ │ │ │ │ │ │ ├── make_ready_at_thread_exit_pass.cpp │ │ │ │ │ │ │ ├── member_swap_pass.cpp │ │ │ │ │ │ │ ├── move_assign_pass.cpp │ │ │ │ │ │ │ ├── move_ctor_pass.cpp │ │ │ │ │ │ │ ├── non_member_swap_pass.cpp │ │ │ │ │ │ │ ├── operator_pass.cpp │ │ │ │ │ │ │ ├── reset_pass.cpp │ │ │ │ │ │ │ ├── types_pass.cpp │ │ │ │ │ │ │ └── use_allocator_pass.cpp │ │ │ │ │ │ ├── promise │ │ │ │ │ │ │ ├── alloc_ctor_pass.cpp │ │ │ │ │ │ │ ├── copy_assign_fail.cpp │ │ │ │ │ │ │ ├── copy_ctor_fail.cpp │ │ │ │ │ │ │ ├── default_pass.cpp │ │ │ │ │ │ │ ├── dtor_pass.cpp │ │ │ │ │ │ │ ├── get_future_pass.cpp │ │ │ │ │ │ │ ├── move_assign_pass.cpp │ │ │ │ │ │ │ ├── move_ctor_pass.cpp │ │ │ │ │ │ │ ├── set_exception_at_thread_exit_pass.cpp │ │ │ │ │ │ │ ├── set_exception_pass.cpp │ │ │ │ │ │ │ ├── set_lvalue_at_thread_exit_pass.cpp │ │ │ │ │ │ │ ├── set_lvalue_pass.cpp │ │ │ │ │ │ │ ├── set_rvalue_at_thread_exit_pass.cpp │ │ │ │ │ │ │ ├── set_rvalue_pass.cpp │ │ │ │ │ │ │ ├── set_value_at_thread_exit_const_pass.cpp │ │ │ │ │ │ │ ├── set_value_at_thread_exit_void_pass.cpp │ │ │ │ │ │ │ ├── set_value_const_pass.cpp │ │ │ │ │ │ │ ├── set_value_void_pass.cpp │ │ │ │ │ │ │ └── use_allocator_pass.cpp │ │ │ │ │ │ ├── shared_future │ │ │ │ │ │ │ ├── copy_assign_pass.cpp │ │ │ │ │ │ │ ├── copy_ctor_pass.cpp │ │ │ │ │ │ │ ├── default_pass.cpp │ │ │ │ │ │ │ ├── dtor_pass.cpp │ │ │ │ │ │ │ ├── get_pass.cpp │ │ │ │ │ │ │ ├── move_assign_pass.cpp │ │ │ │ │ │ │ ├── move_ctor_pass.cpp │ │ │ │ │ │ │ ├── wait_for_pass.cpp │ │ │ │ │ │ │ ├── wait_pass.cpp │ │ │ │ │ │ │ └── wait_until_pass.cpp │ │ │ │ │ │ └── test_allocator.hpp │ │ │ │ │ └── mutual_exclusion │ │ │ │ │ │ ├── locks │ │ │ │ │ │ ├── lock_guard │ │ │ │ │ │ │ ├── adopt_lock_pass.cpp │ │ │ │ │ │ │ ├── copy_assign_fail.cpp │ │ │ │ │ │ │ ├── copy_ctor_fail.cpp │ │ │ │ │ │ │ ├── default_pass.cpp │ │ │ │ │ │ │ ├── make_lock_guard_adopt_lock_pass.cpp │ │ │ │ │ │ │ ├── make_lock_guard_pass.cpp │ │ │ │ │ │ │ └── types_pass.cpp │ │ │ │ │ │ ├── nested_strict_lock │ │ │ │ │ │ │ ├── copy_assign_fail.cpp │ │ │ │ │ │ │ ├── copy_ctor_fail.cpp │ │ │ │ │ │ │ ├── default_pass.cpp │ │ │ │ │ │ │ ├── make_nested_strict_lock_pass.cpp │ │ │ │ │ │ │ ├── owns_lock_pass.cpp │ │ │ │ │ │ │ └── types_pass.cpp │ │ │ │ │ │ ├── reverse_lock │ │ │ │ │ │ │ ├── copy_assign_fail.cpp │ │ │ │ │ │ │ ├── copy_ctor_fail.cpp │ │ │ │ │ │ │ ├── types_pass.cpp │ │ │ │ │ │ │ └── unique_lock_ctor_pass.cpp │ │ │ │ │ │ ├── shared_lock │ │ │ │ │ │ │ ├── cons │ │ │ │ │ │ │ │ ├── adopt_lock_pass.cpp │ │ │ │ │ │ │ │ ├── copy_assign_fail.cpp │ │ │ │ │ │ │ │ ├── copy_ctor_fail.cpp │ │ │ │ │ │ │ │ ├── default_pass.cpp │ │ │ │ │ │ │ │ ├── defer_lock_pass.cpp │ │ │ │ │ │ │ │ ├── duration_pass.cpp │ │ │ │ │ │ │ │ ├── move_assign_pass.cpp │ │ │ │ │ │ │ │ ├── move_ctor_pass.cpp │ │ │ │ │ │ │ │ ├── move_ctor_unique_lock_pass.cpp │ │ │ │ │ │ │ │ ├── move_ctor_upgrade_lock_pass.cpp │ │ │ │ │ │ │ │ ├── mutex_pass.cpp │ │ │ │ │ │ │ │ ├── time_point_pass.cpp │ │ │ │ │ │ │ │ └── try_to_lock_pass.cpp │ │ │ │ │ │ │ ├── locking │ │ │ │ │ │ │ │ ├── lock_pass.cpp │ │ │ │ │ │ │ │ ├── try_lock_for_pass.cpp │ │ │ │ │ │ │ │ ├── try_lock_pass.cpp │ │ │ │ │ │ │ │ ├── try_lock_until_pass.cpp │ │ │ │ │ │ │ │ └── unlock_pass.cpp │ │ │ │ │ │ │ ├── mod │ │ │ │ │ │ │ │ ├── member_swap_pass.cpp │ │ │ │ │ │ │ │ ├── non_member_swap_pass.cpp │ │ │ │ │ │ │ │ └── release_pass.cpp │ │ │ │ │ │ │ ├── obs │ │ │ │ │ │ │ │ ├── mutex_pass.cpp │ │ │ │ │ │ │ │ ├── op_bool_pass.cpp │ │ │ │ │ │ │ │ └── owns_lock_pass.cpp │ │ │ │ │ │ │ └── types_pass.cpp │ │ │ │ │ │ ├── shared_lock_guard │ │ │ │ │ │ │ ├── adopt_lock_pass.cpp │ │ │ │ │ │ │ ├── copy_assign_fail.cpp │ │ │ │ │ │ │ ├── copy_ctor_fail.cpp │ │ │ │ │ │ │ ├── default_pass.cpp │ │ │ │ │ │ │ └── types_pass.cpp │ │ │ │ │ │ ├── strict_lock │ │ │ │ │ │ │ ├── copy_assign_fail.cpp │ │ │ │ │ │ │ ├── copy_ctor_fail.cpp │ │ │ │ │ │ │ ├── default_pass.cpp │ │ │ │ │ │ │ ├── make_strict_lock_pass.cpp │ │ │ │ │ │ │ ├── owns_lock_pass.cpp │ │ │ │ │ │ │ └── types_pass.cpp │ │ │ │ │ │ ├── unique_lock │ │ │ │ │ │ │ ├── cons │ │ │ │ │ │ │ │ ├── adopt_lock_pass.cpp │ │ │ │ │ │ │ │ ├── copy_assign_fail.cpp │ │ │ │ │ │ │ │ ├── copy_ctor_fail.cpp │ │ │ │ │ │ │ │ ├── default_pass.cpp │ │ │ │ │ │ │ │ ├── defer_lock_pass.cpp │ │ │ │ │ │ │ │ ├── duration_pass.cpp │ │ │ │ │ │ │ │ ├── make_unique_lock_adopt_lock_pass.cpp │ │ │ │ │ │ │ │ ├── make_unique_lock_defer_lock_pass.cpp │ │ │ │ │ │ │ │ ├── make_unique_lock_mutex_pass.cpp │ │ │ │ │ │ │ │ ├── make_unique_lock_try_to_lock_pass.cpp │ │ │ │ │ │ │ │ ├── make_unique_locks_mutex_pass.cpp │ │ │ │ │ │ │ │ ├── move_assign_pass.cpp │ │ │ │ │ │ │ │ ├── move_ctor_pass.cpp │ │ │ │ │ │ │ │ ├── move_ctor_shared_lock_for_pass.cpp │ │ │ │ │ │ │ │ ├── move_ctor_shared_lock_try_pass.cpp │ │ │ │ │ │ │ │ ├── move_ctor_shared_lock_until_pass.cpp │ │ │ │ │ │ │ │ ├── move_ctor_upgrade_lock_for_pass.cpp │ │ │ │ │ │ │ │ ├── move_ctor_upgrade_lock_pass.cpp │ │ │ │ │ │ │ │ ├── move_ctor_upgrade_lock_try_pass.cpp │ │ │ │ │ │ │ │ ├── move_ctor_upgrade_lock_until_pass.cpp │ │ │ │ │ │ │ │ ├── mutex_pass.cpp │ │ │ │ │ │ │ │ ├── time_point_pass.cpp │ │ │ │ │ │ │ │ └── try_to_lock_pass.cpp │ │ │ │ │ │ │ ├── locking │ │ │ │ │ │ │ │ ├── lock_pass.cpp │ │ │ │ │ │ │ │ ├── try_lock_for_pass.cpp │ │ │ │ │ │ │ │ ├── try_lock_pass.cpp │ │ │ │ │ │ │ │ ├── try_lock_until_pass.cpp │ │ │ │ │ │ │ │ └── unlock_pass.cpp │ │ │ │ │ │ │ ├── mod │ │ │ │ │ │ │ │ ├── member_swap_pass.cpp │ │ │ │ │ │ │ │ ├── non_member_swap_pass.cpp │ │ │ │ │ │ │ │ └── release_pass.cpp │ │ │ │ │ │ │ ├── obs │ │ │ │ │ │ │ │ ├── mutex_pass.cpp │ │ │ │ │ │ │ │ ├── op_bool_pass.cpp │ │ │ │ │ │ │ │ ├── op_int_fail.cpp │ │ │ │ │ │ │ │ └── owns_lock_pass.cpp │ │ │ │ │ │ │ └── types_pass.cpp │ │ │ │ │ │ └── upgrade_lock │ │ │ │ │ │ │ ├── cons │ │ │ │ │ │ │ ├── adopt_lock_pass.cpp │ │ │ │ │ │ │ ├── copy_assign_fail.cpp │ │ │ │ │ │ │ ├── copy_ctor_fail.cpp │ │ │ │ │ │ │ ├── default_pass.cpp │ │ │ │ │ │ │ ├── defer_lock_pass.cpp │ │ │ │ │ │ │ ├── duration_pass.cpp │ │ │ │ │ │ │ ├── move_assign_pass.cpp │ │ │ │ │ │ │ ├── move_ctor_pass.cpp │ │ │ │ │ │ │ ├── move_ctor_shared_lock_for_pass.cpp │ │ │ │ │ │ │ ├── move_ctor_shared_lock_try_pass.cpp │ │ │ │ │ │ │ ├── move_ctor_shared_lock_until_pass.cpp │ │ │ │ │ │ │ ├── move_ctor_unique_lock_pass.cpp │ │ │ │ │ │ │ ├── mutex_pass.cpp │ │ │ │ │ │ │ ├── time_point_pass.cpp │ │ │ │ │ │ │ └── try_to_lock_pass.cpp │ │ │ │ │ │ │ ├── locking │ │ │ │ │ │ │ ├── lock_pass.cpp │ │ │ │ │ │ │ ├── try_lock_for_pass.cpp │ │ │ │ │ │ │ ├── try_lock_pass.cpp │ │ │ │ │ │ │ ├── try_lock_until_pass.cpp │ │ │ │ │ │ │ └── unlock_pass.cpp │ │ │ │ │ │ │ ├── mod │ │ │ │ │ │ │ ├── member_swap_pass.cpp │ │ │ │ │ │ │ ├── non_member_swap_pass.cpp │ │ │ │ │ │ │ └── release_pass.cpp │ │ │ │ │ │ │ ├── obs │ │ │ │ │ │ │ ├── mutex_pass.cpp │ │ │ │ │ │ │ ├── op_bool_pass.cpp │ │ │ │ │ │ │ └── owns_lock_pass.cpp │ │ │ │ │ │ │ └── types_pass.cpp │ │ │ │ │ │ ├── mutex │ │ │ │ │ │ ├── assign_fail.cpp │ │ │ │ │ │ ├── copy_fail.cpp │ │ │ │ │ │ ├── default_pass.cpp │ │ │ │ │ │ ├── lock_pass.cpp │ │ │ │ │ │ ├── native_handle_pass.cpp │ │ │ │ │ │ └── try_lock_pass.cpp │ │ │ │ │ │ ├── null_mutex │ │ │ │ │ │ ├── assign_fail.cpp │ │ │ │ │ │ ├── copy_fail.cpp │ │ │ │ │ │ ├── default_pass.cpp │ │ │ │ │ │ ├── lock_pass.cpp │ │ │ │ │ │ ├── try_lock_for_pass.cpp │ │ │ │ │ │ ├── try_lock_pass.cpp │ │ │ │ │ │ └── try_lock_until_pass.cpp │ │ │ │ │ │ ├── once │ │ │ │ │ │ └── call_once │ │ │ │ │ │ │ └── call_once_pass.cpp │ │ │ │ │ │ ├── recursive_mutex │ │ │ │ │ │ ├── assign_fail.cpp │ │ │ │ │ │ ├── copy_fail.cpp │ │ │ │ │ │ ├── default_pass.cpp │ │ │ │ │ │ ├── lock_pass.cpp │ │ │ │ │ │ ├── native_handle_pass.cpp │ │ │ │ │ │ └── try_lock_pass.cpp │ │ │ │ │ │ ├── recursive_timed_mutex │ │ │ │ │ │ ├── assign_fail.cpp │ │ │ │ │ │ ├── copy_fail.cpp │ │ │ │ │ │ ├── default_pass.cpp │ │ │ │ │ │ ├── lock_pass.cpp │ │ │ │ │ │ ├── native_handle_pass.cpp │ │ │ │ │ │ ├── try_lock_for_pass.cpp │ │ │ │ │ │ ├── try_lock_pass.cpp │ │ │ │ │ │ └── try_lock_until_pass.cpp │ │ │ │ │ │ ├── shared_mutex │ │ │ │ │ │ ├── assign_fail.cpp │ │ │ │ │ │ ├── copy_fail.cpp │ │ │ │ │ │ ├── default_pass.cpp │ │ │ │ │ │ ├── lock_pass.cpp │ │ │ │ │ │ ├── try_lock_for_pass.cpp │ │ │ │ │ │ ├── try_lock_pass.cpp │ │ │ │ │ │ └── try_lock_until_pass.cpp │ │ │ │ │ │ ├── synchronized_value │ │ │ │ │ │ ├── copy_T_assign_pass.cpp │ │ │ │ │ │ ├── copy_T_ctor_pass.cpp │ │ │ │ │ │ ├── copy_assign_pass.cpp │ │ │ │ │ │ ├── copy_ctor_pass.cpp │ │ │ │ │ │ ├── default_ctor_pass.cpp │ │ │ │ │ │ ├── indirect_pass.cpp │ │ │ │ │ │ ├── move_T_assign_pass.cpp │ │ │ │ │ │ ├── move_T_ctor_pass.cpp │ │ │ │ │ │ ├── move_assign_pass.cpp │ │ │ │ │ │ ├── move_ctor_pass.cpp │ │ │ │ │ │ ├── swap_T_pass.cpp │ │ │ │ │ │ ├── swap_pass.cpp │ │ │ │ │ │ └── synchronize_pass.cpp │ │ │ │ │ │ └── timed_mutex │ │ │ │ │ │ ├── assign_fail.cpp │ │ │ │ │ │ ├── copy_fail.cpp │ │ │ │ │ │ ├── default_pass.cpp │ │ │ │ │ │ ├── lock_pass.cpp │ │ │ │ │ │ ├── native_handle_pass.cpp │ │ │ │ │ │ ├── try_lock_for_pass.cpp │ │ │ │ │ │ ├── try_lock_pass.cpp │ │ │ │ │ │ └── try_lock_until_pass.cpp │ │ │ │ ├── test.mcp │ │ │ │ ├── test_2309.cpp │ │ │ │ ├── test_2501.cpp │ │ │ │ ├── test_2741.cpp │ │ │ │ ├── test_3628.cpp │ │ │ │ ├── test_3837.cpp │ │ │ │ ├── test_4521.cpp │ │ │ │ ├── test_4648.cpp │ │ │ │ ├── test_4882.cpp │ │ │ │ ├── test_5351.cpp │ │ │ │ ├── test_5502.cpp │ │ │ │ ├── test_5542_1.cpp │ │ │ │ ├── test_5542_2.cpp │ │ │ │ ├── test_5542_3.cpp │ │ │ │ ├── test_5891.cpp │ │ │ │ ├── test_6130.cpp │ │ │ │ ├── test_6170.cpp │ │ │ │ ├── test_6174.cpp │ │ │ │ ├── test_7160.cpp │ │ │ │ ├── test_7328.cpp │ │ │ │ ├── test_7571.cpp │ │ │ │ ├── test_7665.cpp │ │ │ │ ├── test_7666.cpp │ │ │ │ ├── test_7720.cpp │ │ │ │ ├── test_7755.cpp │ │ │ │ ├── test_8508.cpp │ │ │ │ ├── test_8596.cpp │ │ │ │ ├── test_barrier.cpp │ │ │ │ ├── test_completion_latch.cpp │ │ │ │ ├── test_condition.cpp │ │ │ │ ├── test_condition_notify_all.cpp │ │ │ │ ├── test_condition_notify_one.cpp │ │ │ │ ├── test_condition_timed_wait_times_out.cpp │ │ │ │ ├── test_futures.cpp │ │ │ │ ├── test_generic_locks.cpp │ │ │ │ ├── test_hardware_concurrency.cpp │ │ │ │ ├── test_latch.cpp │ │ │ │ ├── test_lock_concept.cpp │ │ │ │ ├── test_ml.cpp │ │ │ │ ├── test_ml2.cpp │ │ │ │ ├── test_move_function.cpp │ │ │ │ ├── test_mutex.cpp │ │ │ │ ├── test_once.cpp │ │ │ │ ├── test_shared_mutex.cpp │ │ │ │ ├── test_shared_mutex_part_2.cpp │ │ │ │ ├── test_shared_mutex_timed_locks.cpp │ │ │ │ ├── test_shared_mutex_timed_locks_chrono.cpp │ │ │ │ ├── test_thread.cpp │ │ │ │ ├── test_thread_exit.cpp │ │ │ │ ├── test_thread_id.cpp │ │ │ │ ├── test_thread_launching.cpp │ │ │ │ ├── test_thread_mf.cpp │ │ │ │ ├── test_thread_move.cpp │ │ │ │ ├── test_thread_move_return.cpp │ │ │ │ ├── test_thread_return_local.cpp │ │ │ │ ├── test_tss.cpp │ │ │ │ ├── test_xtime.cpp │ │ │ │ ├── threads │ │ │ │ │ ├── container │ │ │ │ │ │ ├── thread_ptr_list_pass.cpp │ │ │ │ │ │ └── thread_vector_pass.cpp │ │ │ │ │ ├── this_thread │ │ │ │ │ │ ├── get_id │ │ │ │ │ │ │ └── get_id_pass.cpp │ │ │ │ │ │ ├── sleep_for │ │ │ │ │ │ │ └── sleep_for_pass.cpp │ │ │ │ │ │ └── sleep_until │ │ │ │ │ │ │ └── sleep_until_pass.cpp │ │ │ │ │ └── thread │ │ │ │ │ │ ├── assign │ │ │ │ │ │ ├── copy_fail.cpp │ │ │ │ │ │ └── move_pass.cpp │ │ │ │ │ │ ├── constr │ │ │ │ │ │ ├── FArgs_pass.cpp │ │ │ │ │ │ ├── F_pass.cpp │ │ │ │ │ │ ├── FrvalueArgs_pass.cpp │ │ │ │ │ │ ├── Frvalue_pass.cpp │ │ │ │ │ │ ├── copy_fail.cpp │ │ │ │ │ │ ├── default_pass.cpp │ │ │ │ │ │ ├── lambda_pass.cpp │ │ │ │ │ │ └── move_pass.cpp │ │ │ │ │ │ ├── destr │ │ │ │ │ │ └── dtor_pass.cpp │ │ │ │ │ │ ├── id │ │ │ │ │ │ └── hash_pass.cpp │ │ │ │ │ │ ├── members │ │ │ │ │ │ ├── detach_pass.cpp │ │ │ │ │ │ ├── get_id_pass.cpp │ │ │ │ │ │ ├── join_pass.cpp │ │ │ │ │ │ ├── joinable_pass.cpp │ │ │ │ │ │ ├── native_handle_pass.cpp │ │ │ │ │ │ ├── swap_pass.cpp │ │ │ │ │ │ ├── try_join_for_pass.cpp │ │ │ │ │ │ └── try_join_until_pass.cpp │ │ │ │ │ │ ├── non_members │ │ │ │ │ │ └── swap_pass.cpp │ │ │ │ │ │ └── static │ │ │ │ │ │ └── hardware_concurrency_pass.cpp │ │ │ │ └── util.inl │ │ │ └── tutorial │ │ │ │ ├── bounded_buffer.cpp │ │ │ │ ├── counter.cpp │ │ │ │ ├── factorial.cpp │ │ │ │ ├── factorial2.cpp │ │ │ │ ├── factorial3.cpp │ │ │ │ ├── helloworld.cpp │ │ │ │ ├── helloworld2.cpp │ │ │ │ ├── helloworld3.cpp │ │ │ │ ├── once.cpp │ │ │ │ └── tss.cpp │ │ │ └── wave │ │ │ ├── ChangeLog │ │ │ ├── doc │ │ │ ├── acknowledgements.html │ │ │ ├── class_ref_ctxpolicy_depr.html │ │ │ ├── class_reference_context.html │ │ │ ├── class_reference_ctxpolicy.html │ │ │ ├── class_reference_filepos.html │ │ │ ├── class_reference_inptpolcy.html │ │ │ ├── class_reference_lexer.html │ │ │ ├── class_reference_tokentype.html │ │ │ ├── compiletime_config.html │ │ │ ├── introduction.html │ │ │ ├── macro_expansion_process.html │ │ │ ├── predefined_macros.html │ │ │ ├── preface.html │ │ │ ├── quickstart.html │ │ │ ├── references.html │ │ │ ├── samples.html │ │ │ ├── supported_pragmas.html │ │ │ ├── theme │ │ │ │ ├── bkd.gif │ │ │ │ ├── bkd2.gif │ │ │ │ ├── bullet.gif │ │ │ │ ├── l_arr.gif │ │ │ │ ├── l_arr_disabled.gif │ │ │ │ ├── r_arr.gif │ │ │ │ ├── r_arr_disabled.gif │ │ │ │ ├── style.css │ │ │ │ ├── u_arr.gif │ │ │ │ ├── uc.gif │ │ │ │ └── wave.gif │ │ │ ├── token_ids.html │ │ │ ├── tracing_facility.html │ │ │ └── wave_driver.html │ │ │ ├── index.html │ │ │ ├── samples │ │ │ ├── Jamfile.v2 │ │ │ ├── advanced_hooks │ │ │ │ ├── advanced_hooks.cpp │ │ │ │ └── advanced_hooks.hpp │ │ │ ├── cpp_tokens │ │ │ │ ├── cpp_tokens.cpp │ │ │ │ ├── cpp_tokens.hpp │ │ │ │ ├── cpp_tokens_config.hpp │ │ │ │ ├── instantiate_cpp_exprgrammar.cpp │ │ │ │ ├── instantiate_cpp_grammar.cpp │ │ │ │ ├── instantiate_cpp_literalgrs.cpp │ │ │ │ ├── instantiate_defined_grammar.cpp │ │ │ │ ├── instantiate_slex_lexer.cpp │ │ │ │ ├── slex │ │ │ │ │ ├── cpp_slex_lexer.hpp │ │ │ │ │ └── lexer.hpp │ │ │ │ ├── slex_interface.hpp │ │ │ │ ├── slex_iterator.hpp │ │ │ │ └── slex_token.hpp │ │ │ ├── custom_directives │ │ │ │ ├── custom_directives.cpp │ │ │ │ ├── custom_directives.hpp │ │ │ │ └── custom_directives.input │ │ │ ├── emit_custom_line_directives │ │ │ │ ├── emit_custom_line_directives.cpp │ │ │ │ └── emit_custom_line_directives.hpp │ │ │ ├── hannibal │ │ │ │ ├── hannibal.cpp │ │ │ │ ├── translation_unit_parser.h │ │ │ │ └── translation_unit_skipper.h │ │ │ ├── lexed_tokens │ │ │ │ └── lexed_tokens.cpp │ │ │ ├── list_includes │ │ │ │ ├── instantiate_cpp_exprgrammar.cpp │ │ │ │ ├── instantiate_cpp_grammar.cpp │ │ │ │ ├── instantiate_cpp_literalgrs.cpp │ │ │ │ ├── instantiate_defined_grammar.cpp │ │ │ │ ├── instantiate_lexertl_lexer.cpp │ │ │ │ ├── lexertl │ │ │ │ │ ├── lexertl_lexer.hpp │ │ │ │ │ ├── wave_lexertl_config.hpp │ │ │ │ │ └── wave_lexertl_tables.hpp │ │ │ │ ├── lexertl_interface.hpp │ │ │ │ ├── lexertl_iterator.hpp │ │ │ │ ├── list_includes.cpp │ │ │ │ ├── list_includes.hpp │ │ │ │ ├── list_includes_config.hpp │ │ │ │ └── list_includes_version.hpp │ │ │ ├── preprocess_pragma_output │ │ │ │ ├── example.cpp │ │ │ │ ├── preprocess_pragma_output.cpp │ │ │ │ └── preprocess_pragma_output.hpp │ │ │ ├── quick_start │ │ │ │ └── quick_start.cpp │ │ │ ├── real_positions │ │ │ │ ├── correct_token_positions.hpp │ │ │ │ ├── instantiate_cpp_exprgrammar.cpp │ │ │ │ ├── instantiate_cpp_grammar.cpp │ │ │ │ ├── instantiate_cpp_literalgrs.cpp │ │ │ │ ├── instantiate_defined_grammar.cpp │ │ │ │ ├── instantiate_re2c_lexer.cpp │ │ │ │ ├── instantiate_re2c_lexer_str.cpp │ │ │ │ ├── real_position_token.hpp │ │ │ │ └── real_positions.cpp │ │ │ ├── token_statistics │ │ │ │ ├── collect_token_statistics.hpp │ │ │ │ ├── instantiate_cpp_grammar.cpp │ │ │ │ ├── instantiate_defined_grammar.cpp │ │ │ │ ├── instantiate_xlex_lexer.cpp │ │ │ │ ├── token_statistics.cpp │ │ │ │ ├── token_statistics.hpp │ │ │ │ ├── token_statistics_version.hpp │ │ │ │ ├── xlex │ │ │ │ │ ├── xlex_lexer.hpp │ │ │ │ │ └── xpressive_lexer.hpp │ │ │ │ ├── xlex_interface.hpp │ │ │ │ └── xlex_iterator.hpp │ │ │ └── waveidl │ │ │ │ ├── idl.cpp │ │ │ │ ├── idl.hpp │ │ │ │ ├── idl_config.hpp │ │ │ │ ├── idl_version.hpp │ │ │ │ ├── idllexer │ │ │ │ ├── idl.re │ │ │ │ ├── idl_lex_interface.hpp │ │ │ │ ├── idl_lex_iterator.hpp │ │ │ │ ├── idl_re.cpp │ │ │ │ ├── idl_re.hpp │ │ │ │ └── idl_re2c_lexer.hpp │ │ │ │ ├── instantiate_cpp_grammar.cpp │ │ │ │ ├── instantiate_defined_grammar.cpp │ │ │ │ ├── instantiate_predef_macros.cpp │ │ │ │ ├── instantiate_re2c_lexer.cpp │ │ │ │ └── instantiate_re2c_lexer_str.cpp │ │ │ ├── src │ │ │ ├── cpplexer │ │ │ │ └── re2clex │ │ │ │ │ ├── aq.cpp │ │ │ │ │ ├── cpp.re │ │ │ │ │ ├── cpp_re.cpp │ │ │ │ │ ├── cpp_re.inc │ │ │ │ │ ├── strict_cpp.re │ │ │ │ │ └── strict_cpp_re.inc │ │ │ ├── instantiate_cpp_exprgrammar.cpp │ │ │ ├── instantiate_cpp_grammar.cpp │ │ │ ├── instantiate_cpp_literalgrs.cpp │ │ │ ├── instantiate_defined_grammar.cpp │ │ │ ├── instantiate_predef_macros.cpp │ │ │ ├── instantiate_re2c_lexer.cpp │ │ │ ├── instantiate_re2c_lexer_str.cpp │ │ │ ├── token_ids.cpp │ │ │ └── wave_config_constant.cpp │ │ │ └── test │ │ │ ├── testlexers │ │ │ ├── cpp_tokens.hpp │ │ │ ├── test_lexertl_lexer.cpp │ │ │ ├── test_re2c_lexer.cpp │ │ │ ├── test_slex_lexer.cpp │ │ │ └── test_xlex_lexer.cpp │ │ │ └── testwave │ │ │ ├── cmd_line_utils.hpp │ │ │ ├── collect_hooks_information.hpp │ │ │ ├── testfiles │ │ │ ├── t_1_001.cpp │ │ │ ├── t_1_002.cpp │ │ │ ├── t_1_003.cpp │ │ │ ├── t_1_004.cpp │ │ │ ├── t_1_005.cpp │ │ │ ├── t_1_006.cpp │ │ │ ├── t_1_007.cpp │ │ │ ├── t_1_008.cpp │ │ │ ├── t_1_009.cpp │ │ │ ├── t_1_010.cpp │ │ │ ├── t_1_011.cpp │ │ │ ├── t_1_012.cpp │ │ │ ├── t_1_013.cpp │ │ │ ├── t_1_014.cpp │ │ │ ├── t_1_015.cpp │ │ │ ├── t_1_016.cpp │ │ │ ├── t_1_017.cpp │ │ │ ├── t_1_018.cpp │ │ │ ├── t_1_019.cpp │ │ │ ├── t_1_020.cpp │ │ │ ├── t_1_021.cpp │ │ │ ├── t_1_022.cpp │ │ │ ├── t_1_023.cpp │ │ │ ├── t_1_024.cpp │ │ │ ├── t_1_025.cpp │ │ │ ├── t_1_026.cpp │ │ │ ├── t_1_027.cpp │ │ │ ├── t_1_028.cpp │ │ │ ├── t_1_029.cpp │ │ │ ├── t_1_030.cpp │ │ │ ├── t_1_031.cpp │ │ │ ├── t_1_032.cpp │ │ │ ├── t_1_033.cpp │ │ │ ├── t_1_034.cpp │ │ │ ├── t_1_035.cpp │ │ │ ├── t_1_036.cpp │ │ │ ├── t_1_037.cpp │ │ │ ├── t_1_038.cpp │ │ │ ├── t_2_001.cpp │ │ │ ├── t_2_002.cpp │ │ │ ├── t_2_003.cpp │ │ │ ├── t_2_004.cpp │ │ │ ├── t_2_005.cpp │ │ │ ├── t_2_006.cpp │ │ │ ├── t_2_007.cpp │ │ │ ├── t_2_008.cpp │ │ │ ├── t_2_009.cpp │ │ │ ├── t_2_010.cpp │ │ │ ├── t_2_011.cpp │ │ │ ├── t_2_012.cpp │ │ │ ├── t_2_013.cpp │ │ │ ├── t_2_014.cpp │ │ │ ├── t_2_015.cpp │ │ │ ├── t_2_016.cpp │ │ │ ├── t_2_017.cpp │ │ │ ├── t_2_018.cpp │ │ │ ├── t_2_019.cpp │ │ │ ├── t_2_019_001.hpp │ │ │ ├── t_2_019_002.hpp │ │ │ ├── t_2_019_003.hpp │ │ │ ├── t_2_020.cpp │ │ │ ├── t_2_021.cpp │ │ │ ├── t_2_022.cpp │ │ │ ├── t_2_022.hpp │ │ │ ├── t_3_001.cpp │ │ │ ├── t_3_002.cpp │ │ │ ├── t_3_003.cpp │ │ │ ├── t_3_004.cpp │ │ │ ├── t_4_001.cpp │ │ │ ├── t_4_002.cpp │ │ │ ├── t_4_003.cpp │ │ │ ├── t_4_004.cpp │ │ │ ├── t_5_001.cpp │ │ │ ├── t_5_002.cpp │ │ │ ├── t_5_003.cpp │ │ │ ├── t_5_004.cpp │ │ │ ├── t_5_005.cpp │ │ │ ├── t_5_006.cpp │ │ │ ├── t_5_007.cpp │ │ │ ├── t_5_007.hpp │ │ │ ├── t_5_008.cpp │ │ │ ├── t_5_009.cpp │ │ │ ├── t_5_010.cpp │ │ │ ├── t_5_011.cpp │ │ │ ├── t_5_012.cpp │ │ │ ├── t_5_013.cpp │ │ │ ├── t_5_014.cpp │ │ │ ├── t_5_015.cpp │ │ │ ├── t_5_016.cpp │ │ │ ├── t_5_017.cpp │ │ │ ├── t_5_018.cpp │ │ │ ├── t_5_019.cpp │ │ │ ├── t_5_020.cpp │ │ │ ├── t_5_021.cpp │ │ │ ├── t_5_022.cpp │ │ │ ├── t_5_023.cpp │ │ │ ├── t_5_024.cpp │ │ │ ├── t_5_025.cpp │ │ │ ├── t_5_026.cpp │ │ │ ├── t_5_027.cpp │ │ │ ├── t_5_028.cpp │ │ │ ├── t_5_029.cpp │ │ │ ├── t_5_030.cpp │ │ │ ├── t_5_031.cpp │ │ │ ├── t_5_031.hpp │ │ │ ├── t_5_032.cpp │ │ │ ├── t_5_033.cpp │ │ │ ├── t_5_034.cpp │ │ │ ├── t_5_035.cpp │ │ │ ├── t_5_035.hpp │ │ │ ├── t_5_035_01.hpp │ │ │ ├── t_5_035_02.hpp │ │ │ ├── t_5_035_03.hpp │ │ │ ├── t_5_035_04.hpp │ │ │ ├── t_5_035_05.hpp │ │ │ ├── t_5_035_06.hpp │ │ │ ├── t_5_035_07.hpp │ │ │ ├── t_5_035_08.hpp │ │ │ ├── t_5_035_09.hpp │ │ │ ├── t_5_035_10.hpp │ │ │ ├── t_5_035_11.hpp │ │ │ ├── t_5_035_12.hpp │ │ │ ├── t_5_035_13.hpp │ │ │ ├── t_5_035_14.hpp │ │ │ ├── t_5_035_15.hpp │ │ │ ├── t_6_001.cpp │ │ │ ├── t_6_002.cpp │ │ │ ├── t_6_003.cpp │ │ │ ├── t_6_004.cpp │ │ │ ├── t_6_005.cpp │ │ │ ├── t_6_006.cpp │ │ │ ├── t_6_007.cpp │ │ │ ├── t_6_008.cpp │ │ │ ├── t_6_009.cpp │ │ │ ├── t_6_010.cpp │ │ │ ├── t_6_011.cpp │ │ │ ├── t_6_012.cpp │ │ │ ├── t_6_013.cpp │ │ │ ├── t_6_014.cpp │ │ │ ├── t_6_015.cpp │ │ │ ├── t_6_016.cpp │ │ │ ├── t_6_017.cpp │ │ │ ├── t_6_018.cpp │ │ │ ├── t_6_019.cpp │ │ │ ├── t_6_020.cpp │ │ │ ├── t_6_021.cpp │ │ │ ├── t_6_022.cpp │ │ │ ├── t_6_023.cpp │ │ │ ├── t_6_024.cpp │ │ │ ├── t_6_025.cpp │ │ │ ├── t_6_026.cpp │ │ │ ├── t_6_027.cpp │ │ │ ├── t_6_028.cpp │ │ │ ├── t_6_029.cpp │ │ │ ├── t_6_029.hpp │ │ │ ├── t_6_030.cpp │ │ │ ├── t_6_030.hpp │ │ │ ├── t_6_031.cpp │ │ │ ├── t_6_032.cpp │ │ │ ├── t_6_033.cpp │ │ │ ├── t_6_034.cpp │ │ │ ├── t_6_035.cpp │ │ │ ├── t_6_036.cpp │ │ │ ├── t_6_037.cpp │ │ │ ├── t_6_038.cpp │ │ │ ├── t_6_039.cpp │ │ │ ├── t_6_040.cpp │ │ │ ├── t_6_041.cpp │ │ │ ├── t_6_042.cpp │ │ │ ├── t_6_043.cpp │ │ │ ├── t_6_044.cpp │ │ │ ├── t_6_045.cpp │ │ │ ├── t_6_046.cpp │ │ │ ├── t_6_047.cpp │ │ │ ├── t_6_048.cpp │ │ │ ├── t_6_049.cpp │ │ │ ├── t_6_050.cpp │ │ │ ├── t_6_051.cpp │ │ │ ├── t_6_052.cpp │ │ │ ├── t_6_053.cpp │ │ │ ├── t_6_054.cpp │ │ │ ├── t_6_055.cpp │ │ │ ├── t_6_056.cpp │ │ │ ├── t_6_057.cpp │ │ │ ├── t_6_058.cpp │ │ │ ├── t_6_059.cpp │ │ │ ├── t_6_060.cpp │ │ │ ├── t_6_061.cpp │ │ │ ├── t_6_062.cpp │ │ │ ├── t_6_063.cpp │ │ │ ├── t_6_063.hpp │ │ │ ├── t_6_064.cpp │ │ │ ├── t_6_065.cpp │ │ │ ├── t_6_066.cpp │ │ │ ├── t_6_066.hpp │ │ │ ├── t_6_067.cpp │ │ │ ├── t_6_067.hpp │ │ │ ├── t_6_068.cpp │ │ │ ├── t_6_069.cpp │ │ │ ├── t_7_001.cpp │ │ │ ├── t_9_001.cpp │ │ │ ├── t_9_002.cpp │ │ │ ├── t_9_003.cpp │ │ │ ├── t_9_004.cpp │ │ │ ├── t_9_005.cpp │ │ │ ├── t_9_006.cpp │ │ │ ├── t_9_007.cpp │ │ │ ├── t_9_008.cpp │ │ │ ├── t_9_009.cpp │ │ │ ├── t_9_010.cpp │ │ │ ├── t_9_011.cpp │ │ │ ├── t_9_012.cpp │ │ │ ├── t_9_013.cpp │ │ │ ├── t_9_014.cpp │ │ │ ├── t_9_015.cpp │ │ │ ├── t_9_016.cpp │ │ │ ├── t_9_016.hpp │ │ │ ├── t_9_017.cpp │ │ │ ├── t_9_018.cpp │ │ │ ├── t_9_019.cpp │ │ │ ├── t_9_019.hpp │ │ │ ├── t_9_020.cpp │ │ │ ├── t_9_021.cpp │ │ │ ├── t_9_022.cpp │ │ │ ├── t_9_023.cpp │ │ │ └── test.cfg │ │ │ ├── testwave.cpp │ │ │ ├── testwave_app.cpp │ │ │ ├── testwave_app.hpp │ │ │ ├── testwave_app_dll.cpp │ │ │ └── testwave_dll.cpp │ ├── glew │ │ ├── CMakeLists.txt │ │ ├── glew.c │ │ └── include │ │ │ └── GL │ │ │ ├── glew.h │ │ │ ├── glxew.h │ │ │ └── wglew.h │ ├── glut-3.7.6-win32 │ │ ├── README-win32.txt │ │ ├── Release │ │ │ ├── glut32.dll │ │ │ └── glut32.lib │ │ └── include │ │ │ └── GL │ │ │ ├── glut.def │ │ │ └── glut.h │ ├── glut │ │ ├── include │ │ │ └── GL │ │ │ │ ├── glut.def │ │ │ │ └── glut.h │ │ └── release │ │ │ ├── glut32.lib │ │ │ ├── glut64.dll │ │ │ └── glut64.lib │ ├── jenkins │ │ ├── ElVis_Commit.sh │ │ ├── ElVis_Nightly.sh │ │ ├── ElVis_Weekly.sh │ │ ├── ElVis_developer.sh │ │ ├── ElVis_email.template │ │ ├── ElVis_parse │ │ ├── Makefile.jenkins │ │ ├── README.txt │ │ ├── cmake_jenkins.sh │ │ ├── configure_jenkins.sh │ │ ├── jenkins_env.sh │ │ └── lcov_cobertura.py │ ├── libpng │ │ ├── ANNOUNCE │ │ ├── CHANGES │ │ ├── CMakeLists.txt │ │ ├── INSTALL │ │ ├── KNOWNBUG │ │ ├── LICENSE │ │ ├── README │ │ ├── TODO │ │ ├── Y2KINFO │ │ ├── example.c │ │ ├── libpng-1.2.35.txt │ │ ├── libpng.3 │ │ ├── libpngpf.3 │ │ ├── png.5 │ │ ├── png.c │ │ ├── png.h │ │ ├── pngbar.jpg │ │ ├── pngbar.png │ │ ├── pngconf.h │ │ ├── pngerror.c │ │ ├── pnggccrd.c │ │ ├── pngget.c │ │ ├── pngmem.c │ │ ├── pngnow.png │ │ ├── pngpread.c │ │ ├── pngread.c │ │ ├── pngrio.c │ │ ├── pngrtran.c │ │ ├── pngrutil.c │ │ ├── pngset.c │ │ ├── pngtest.c │ │ ├── pngtest.png │ │ ├── pngtrans.c │ │ ├── pngvcrd.c │ │ ├── pngwio.c │ │ ├── pngwrite.c │ │ ├── pngwtran.c │ │ ├── pngwutil.c │ │ ├── sci_png_mangle.h │ │ ├── scripts │ │ │ ├── libpng-config-body.in │ │ │ ├── libpng-config-head.in │ │ │ ├── libpng-config.in │ │ │ ├── libpng.pc-configure.in │ │ │ ├── libpng.pc.in │ │ │ ├── pngw32.def │ │ │ └── pngw32.rc │ │ └── test-pngtest.sh │ ├── protobuf │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── BUILD │ │ ├── CHANGES.txt │ │ ├── CONTRIBUTORS.txt │ │ ├── INSTALL.txt │ │ ├── LICENSE │ │ ├── Makefile.am │ │ ├── Protobuf.podspec │ │ ├── README.md │ │ ├── WORKSPACE │ │ ├── appveyor.bat │ │ ├── appveyor.yml │ │ ├── autogen.sh │ │ ├── benchmarks │ │ │ ├── ProtoBench.java │ │ │ ├── google_message1.dat │ │ │ ├── google_message2.dat │ │ │ ├── google_size.proto │ │ │ ├── google_speed.proto │ │ │ └── readme.txt │ │ ├── cmake │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── extract_includes.bat.in │ │ │ ├── install.cmake │ │ │ ├── libprotobuf-lite.cmake │ │ │ ├── libprotobuf.cmake │ │ │ ├── libprotoc.cmake │ │ │ ├── protobuf-config-version.cmake.in │ │ │ ├── protobuf-config.cmake.in │ │ │ ├── protobuf-module.cmake.in │ │ │ ├── protoc.cmake │ │ │ └── tests.cmake │ │ ├── configure.ac │ │ ├── conformance │ │ │ ├── ConformanceJava.java │ │ │ ├── Makefile.am │ │ │ ├── README.md │ │ │ ├── conformance.proto │ │ │ ├── conformance_cpp.cc │ │ │ ├── conformance_ruby.rb │ │ │ ├── conformance_test.cc │ │ │ ├── conformance_test.h │ │ │ ├── conformance_test_runner.cc │ │ │ ├── failure_list_cpp.txt │ │ │ ├── failure_list_csharp.txt │ │ │ └── failure_list_ruby.txt │ │ ├── csharp │ │ │ ├── .gitignore │ │ │ ├── CHANGES.txt │ │ │ ├── README.md │ │ │ ├── build_packages.bat │ │ │ ├── buildall.sh │ │ │ ├── generate_protos.sh │ │ │ ├── keys │ │ │ │ ├── Google.Protobuf.public.snk │ │ │ │ └── README.md │ │ │ ├── protos │ │ │ │ └── unittest_issues.proto │ │ │ └── src │ │ │ │ ├── AddressBook │ │ │ │ ├── AddPerson.cs │ │ │ │ ├── AddressBook.csproj │ │ │ │ ├── Addressbook.cs │ │ │ │ ├── ListPeople.cs │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── SampleUsage.cs │ │ │ │ └── app.config │ │ │ │ ├── Google.Protobuf.Conformance │ │ │ │ ├── App.config │ │ │ │ ├── Conformance.cs │ │ │ │ ├── Google.Protobuf.Conformance.csproj │ │ │ │ ├── Program.cs │ │ │ │ └── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── Google.Protobuf.JsonDump │ │ │ │ ├── Google.Protobuf.JsonDump.csproj │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ └── app.config │ │ │ │ ├── Google.Protobuf.Test │ │ │ │ ├── ByteStringTest.cs │ │ │ │ ├── CodedInputStreamExtensions.cs │ │ │ │ ├── CodedInputStreamTest.cs │ │ │ │ ├── CodedOutputStreamTest.cs │ │ │ │ ├── Collections │ │ │ │ │ ├── MapFieldTest.cs │ │ │ │ │ └── RepeatedFieldTest.cs │ │ │ │ ├── Compatibility │ │ │ │ │ ├── PropertyInfoExtensionsTest.cs │ │ │ │ │ └── TypeExtensionsTest.cs │ │ │ │ ├── DeprecatedMemberTest.cs │ │ │ │ ├── EqualityTester.cs │ │ │ │ ├── FieldCodecTest.cs │ │ │ │ ├── GeneratedMessageTest.cs │ │ │ │ ├── Google.Protobuf.Test.csproj │ │ │ │ ├── IssuesTest.cs │ │ │ │ ├── JsonFormatterTest.cs │ │ │ │ ├── Properties │ │ │ │ │ ├── AppManifest.xml │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── Reflection │ │ │ │ │ ├── DescriptorsTest.cs │ │ │ │ │ └── FieldAccessTest.cs │ │ │ │ ├── SampleEnum.cs │ │ │ │ ├── SampleMessages.cs │ │ │ │ ├── TestCornerCases.cs │ │ │ │ ├── TestProtos │ │ │ │ │ ├── MapUnittestProto3.cs │ │ │ │ │ ├── UnittestImportProto3.cs │ │ │ │ │ ├── UnittestImportPublicProto3.cs │ │ │ │ │ ├── UnittestIssues.cs │ │ │ │ │ ├── UnittestProto3.cs │ │ │ │ │ └── UnittestWellKnownTypes.cs │ │ │ │ ├── WellKnownTypes │ │ │ │ │ ├── AnyTest.cs │ │ │ │ │ ├── DurationTest.cs │ │ │ │ │ ├── TimestampTest.cs │ │ │ │ │ └── WrappersTest.cs │ │ │ │ └── packages.config │ │ │ │ ├── Google.Protobuf.sln │ │ │ │ ├── Google.Protobuf │ │ │ │ ├── ByteArray.cs │ │ │ │ ├── ByteString.cs │ │ │ │ ├── CodedInputStream.cs │ │ │ │ ├── CodedOutputStream.ComputeSize.cs │ │ │ │ ├── CodedOutputStream.cs │ │ │ │ ├── Collections │ │ │ │ │ ├── MapField.cs │ │ │ │ │ ├── ReadOnlyDictionary.cs │ │ │ │ │ └── RepeatedField.cs │ │ │ │ ├── Compatibility │ │ │ │ │ ├── PropertyInfoExtensions.cs │ │ │ │ │ └── TypeExtensions.cs │ │ │ │ ├── FieldCodec.cs │ │ │ │ ├── FrameworkPortability.cs │ │ │ │ ├── Google.Protobuf.csproj │ │ │ │ ├── Google.Protobuf.nuspec │ │ │ │ ├── IDeepCloneable.cs │ │ │ │ ├── IMessage.cs │ │ │ │ ├── InvalidProtocolBufferException.cs │ │ │ │ ├── JsonFormatter.cs │ │ │ │ ├── LimitedInputStream.cs │ │ │ │ ├── MessageExtensions.cs │ │ │ │ ├── MessageParser.cs │ │ │ │ ├── Preconditions.cs │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── Reflection │ │ │ │ │ ├── DescriptorBase.cs │ │ │ │ │ ├── DescriptorPool.cs │ │ │ │ │ ├── DescriptorProtoFile.cs │ │ │ │ │ ├── DescriptorUtil.cs │ │ │ │ │ ├── DescriptorValidationException.cs │ │ │ │ │ ├── EnumDescriptor.cs │ │ │ │ │ ├── EnumValueDescriptor.cs │ │ │ │ │ ├── FieldAccessorBase.cs │ │ │ │ │ ├── FieldDescriptor.cs │ │ │ │ │ ├── FieldType.cs │ │ │ │ │ ├── FileDescriptor.cs │ │ │ │ │ ├── GeneratedCodeInfo.cs │ │ │ │ │ ├── IDescriptor.cs │ │ │ │ │ ├── IFieldAccessor.cs │ │ │ │ │ ├── MapFieldAccessor.cs │ │ │ │ │ ├── MessageDescriptor.cs │ │ │ │ │ ├── MethodDescriptor.cs │ │ │ │ │ ├── OneofAccessor.cs │ │ │ │ │ ├── OneofDescriptor.cs │ │ │ │ │ ├── PackageDescriptor.cs │ │ │ │ │ ├── PartialClasses.cs │ │ │ │ │ ├── ReflectionUtil.cs │ │ │ │ │ ├── RepeatedFieldAccessor.cs │ │ │ │ │ ├── ServiceDescriptor.cs │ │ │ │ │ └── SingleFieldAccessor.cs │ │ │ │ ├── WellKnownTypes │ │ │ │ │ ├── Any.cs │ │ │ │ │ ├── AnyPartial.cs │ │ │ │ │ ├── Api.cs │ │ │ │ │ ├── Duration.cs │ │ │ │ │ ├── DurationPartial.cs │ │ │ │ │ ├── Empty.cs │ │ │ │ │ ├── FieldMask.cs │ │ │ │ │ ├── SourceContext.cs │ │ │ │ │ ├── Struct.cs │ │ │ │ │ ├── TimeExtensions.cs │ │ │ │ │ ├── Timestamp.cs │ │ │ │ │ ├── TimestampPartial.cs │ │ │ │ │ ├── Type.cs │ │ │ │ │ └── Wrappers.cs │ │ │ │ └── WireFormat.cs │ │ │ │ └── packages │ │ │ │ └── repositories.config │ │ ├── editors │ │ │ ├── README.txt │ │ │ ├── proto.vim │ │ │ └── protobuf-mode.el │ │ ├── examples │ │ │ ├── AddPerson.java │ │ │ ├── ListPeople.java │ │ │ ├── README.txt │ │ │ ├── add_person.cc │ │ │ ├── add_person.py │ │ │ ├── addressbook.proto │ │ │ ├── list_people.cc │ │ │ └── list_people.py │ │ ├── generate_descriptor_proto.sh │ │ ├── gmock.BUILD │ │ ├── java │ │ │ ├── README.md │ │ │ ├── pom.xml │ │ │ ├── src │ │ │ │ ├── main │ │ │ │ │ └── java │ │ │ │ │ │ └── com │ │ │ │ │ │ └── google │ │ │ │ │ │ └── protobuf │ │ │ │ │ │ ├── AbstractMessage.java │ │ │ │ │ │ ├── AbstractMessageLite.java │ │ │ │ │ │ ├── AbstractParser.java │ │ │ │ │ │ ├── AbstractProtobufList.java │ │ │ │ │ │ ├── BlockingRpcChannel.java │ │ │ │ │ │ ├── BlockingService.java │ │ │ │ │ │ ├── BooleanArrayList.java │ │ │ │ │ │ ├── BoundedByteString.java │ │ │ │ │ │ ├── ByteString.java │ │ │ │ │ │ ├── CodedInputStream.java │ │ │ │ │ │ ├── CodedOutputStream.java │ │ │ │ │ │ ├── Descriptors.java │ │ │ │ │ │ ├── DoubleArrayList.java │ │ │ │ │ │ ├── DynamicMessage.java │ │ │ │ │ │ ├── Extension.java │ │ │ │ │ │ ├── ExtensionLite.java │ │ │ │ │ │ ├── ExtensionRegistry.java │ │ │ │ │ │ ├── ExtensionRegistryLite.java │ │ │ │ │ │ ├── FieldSet.java │ │ │ │ │ │ ├── FloatArrayList.java │ │ │ │ │ │ ├── GeneratedMessage.java │ │ │ │ │ │ ├── GeneratedMessageLite.java │ │ │ │ │ │ ├── IntArrayList.java │ │ │ │ │ │ ├── Internal.java │ │ │ │ │ │ ├── InvalidProtocolBufferException.java │ │ │ │ │ │ ├── LazyField.java │ │ │ │ │ │ ├── LazyFieldLite.java │ │ │ │ │ │ ├── LazyStringArrayList.java │ │ │ │ │ │ ├── LazyStringList.java │ │ │ │ │ │ ├── LiteralByteString.java │ │ │ │ │ │ ├── LongArrayList.java │ │ │ │ │ │ ├── MapEntry.java │ │ │ │ │ │ ├── MapEntryLite.java │ │ │ │ │ │ ├── MapField.java │ │ │ │ │ │ ├── MapFieldLite.java │ │ │ │ │ │ ├── Message.java │ │ │ │ │ │ ├── MessageLite.java │ │ │ │ │ │ ├── MessageLiteOrBuilder.java │ │ │ │ │ │ ├── MessageOrBuilder.java │ │ │ │ │ │ ├── MessageReflection.java │ │ │ │ │ │ ├── MutabilityOracle.java │ │ │ │ │ │ ├── Parser.java │ │ │ │ │ │ ├── ProtobufArrayList.java │ │ │ │ │ │ ├── ProtocolMessageEnum.java │ │ │ │ │ │ ├── ProtocolStringList.java │ │ │ │ │ │ ├── RepeatedFieldBuilder.java │ │ │ │ │ │ ├── RopeByteString.java │ │ │ │ │ │ ├── RpcCallback.java │ │ │ │ │ │ ├── RpcChannel.java │ │ │ │ │ │ ├── RpcController.java │ │ │ │ │ │ ├── RpcUtil.java │ │ │ │ │ │ ├── Service.java │ │ │ │ │ │ ├── ServiceException.java │ │ │ │ │ │ ├── SingleFieldBuilder.java │ │ │ │ │ │ ├── SmallSortedMap.java │ │ │ │ │ │ ├── TextFormat.java │ │ │ │ │ │ ├── UninitializedMessageException.java │ │ │ │ │ │ ├── UnknownFieldSet.java │ │ │ │ │ │ ├── UnknownFieldSetLite.java │ │ │ │ │ │ ├── UnmodifiableLazyStringList.java │ │ │ │ │ │ ├── Utf8.java │ │ │ │ │ │ └── WireFormat.java │ │ │ │ └── test │ │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── google │ │ │ │ │ └── protobuf │ │ │ │ │ ├── AbstractMessageTest.java │ │ │ │ │ ├── AnyTest.java │ │ │ │ │ ├── BooleanArrayListTest.java │ │ │ │ │ ├── BoundedByteStringTest.java │ │ │ │ │ ├── ByteStringTest.java │ │ │ │ │ ├── CheckUtf8Test.java │ │ │ │ │ ├── CodedInputStreamTest.java │ │ │ │ │ ├── CodedOutputStreamTest.java │ │ │ │ │ ├── DeprecatedFieldTest.java │ │ │ │ │ ├── DescriptorsTest.java │ │ │ │ │ ├── DoubleArrayListTest.java │ │ │ │ │ ├── DynamicMessageTest.java │ │ │ │ │ ├── FieldPresenceTest.java │ │ │ │ │ ├── FloatArrayListTest.java │ │ │ │ │ ├── ForceFieldBuildersPreRun.java │ │ │ │ │ ├── GeneratedMessageTest.java │ │ │ │ │ ├── IntArrayListTest.java │ │ │ │ │ ├── IsValidUtf8Test.java │ │ │ │ │ ├── IsValidUtf8TestUtil.java │ │ │ │ │ ├── LazyFieldLiteTest.java │ │ │ │ │ ├── LazyFieldTest.java │ │ │ │ │ ├── LazyMessageLiteTest.java │ │ │ │ │ ├── LazyStringArrayListTest.java │ │ │ │ │ ├── LazyStringEndToEndTest.java │ │ │ │ │ ├── LiteEqualsAndHashTest.java │ │ │ │ │ ├── LiteTest.java │ │ │ │ │ ├── LiteralByteStringTest.java │ │ │ │ │ ├── LongArrayListTest.java │ │ │ │ │ ├── MapForProto2LiteTest.java │ │ │ │ │ ├── MapForProto2Test.java │ │ │ │ │ ├── MapTest.java │ │ │ │ │ ├── MessageTest.java │ │ │ │ │ ├── NestedBuildersTest.java │ │ │ │ │ ├── ParserTest.java │ │ │ │ │ ├── ProtobufArrayListTest.java │ │ │ │ │ ├── RepeatedFieldBuilderTest.java │ │ │ │ │ ├── RopeByteStringSubstringTest.java │ │ │ │ │ ├── RopeByteStringTest.java │ │ │ │ │ ├── ServiceTest.java │ │ │ │ │ ├── SingleFieldBuilderTest.java │ │ │ │ │ ├── SmallSortedMapTest.java │ │ │ │ │ ├── TestBadIdentifiers.java │ │ │ │ │ ├── TestUtil.java │ │ │ │ │ ├── TextFormatTest.java │ │ │ │ │ ├── UnknownEnumValueTest.java │ │ │ │ │ ├── UnknownFieldSetLiteTest.java │ │ │ │ │ ├── UnknownFieldSetTest.java │ │ │ │ │ ├── UnmodifiableLazyStringListTest.java │ │ │ │ │ ├── WellKnownTypesTest.java │ │ │ │ │ ├── WireFormatTest.java │ │ │ │ │ ├── any_test.proto │ │ │ │ │ ├── field_presence_test.proto │ │ │ │ │ ├── lazy_fields_lite.proto │ │ │ │ │ ├── lite_equals_and_hash.proto │ │ │ │ │ ├── map_for_proto2_lite_test.proto │ │ │ │ │ ├── map_for_proto2_test.proto │ │ │ │ │ ├── map_initialization_order_test.proto │ │ │ │ │ ├── map_test.proto │ │ │ │ │ ├── multiple_files_test.proto │ │ │ │ │ ├── nested_builders_test.proto │ │ │ │ │ ├── nested_extension.proto │ │ │ │ │ ├── nested_extension_lite.proto │ │ │ │ │ ├── non_nested_extension.proto │ │ │ │ │ ├── non_nested_extension_lite.proto │ │ │ │ │ ├── outer_class_name_test.proto │ │ │ │ │ ├── outer_class_name_test2.proto │ │ │ │ │ ├── outer_class_name_test3.proto │ │ │ │ │ ├── test_bad_identifiers.proto │ │ │ │ │ ├── test_check_utf8.proto │ │ │ │ │ ├── test_check_utf8_size.proto │ │ │ │ │ ├── test_custom_options.proto │ │ │ │ │ └── test_extra_interfaces.proto │ │ │ └── util │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── google │ │ │ │ │ └── protobuf │ │ │ │ │ └── util │ │ │ │ │ ├── FieldMaskTree.java │ │ │ │ │ ├── FieldMaskUtil.java │ │ │ │ │ ├── JsonFormat.java │ │ │ │ │ └── TimeUtil.java │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── google │ │ │ │ └── protobuf │ │ │ │ └── util │ │ │ │ ├── FieldMaskTreeTest.java │ │ │ │ ├── FieldMaskUtilTest.java │ │ │ │ ├── JsonFormatTest.java │ │ │ │ ├── TimeUtilTest.java │ │ │ │ └── json_test.proto │ │ ├── javanano │ │ │ ├── README.md │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── google │ │ │ │ │ └── protobuf │ │ │ │ │ └── nano │ │ │ │ │ ├── CodedInputByteBufferNano.java │ │ │ │ │ ├── CodedOutputByteBufferNano.java │ │ │ │ │ ├── ExtendableMessageNano.java │ │ │ │ │ ├── Extension.java │ │ │ │ │ ├── FieldArray.java │ │ │ │ │ ├── FieldData.java │ │ │ │ │ ├── InternalNano.java │ │ │ │ │ ├── InvalidProtocolBufferNanoException.java │ │ │ │ │ ├── MapFactories.java │ │ │ │ │ ├── MessageNano.java │ │ │ │ │ ├── MessageNanoPrinter.java │ │ │ │ │ ├── UnknownFieldData.java │ │ │ │ │ └── WireFormatNano.java │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── google │ │ │ │ └── protobuf │ │ │ │ └── nano │ │ │ │ ├── NanoTest.java │ │ │ │ ├── map_test.proto │ │ │ │ ├── unittest_accessors_nano.proto │ │ │ │ ├── unittest_enum_class_multiple_nano.proto │ │ │ │ ├── unittest_enum_class_nano.proto │ │ │ │ ├── unittest_enum_validity_nano.proto │ │ │ │ ├── unittest_extension_nano.proto │ │ │ │ ├── unittest_extension_packed_nano.proto │ │ │ │ ├── unittest_extension_repeated_nano.proto │ │ │ │ ├── unittest_extension_singular_nano.proto │ │ │ │ ├── unittest_has_nano.proto │ │ │ │ ├── unittest_import_nano.proto │ │ │ │ ├── unittest_multiple_nameclash_nano.proto │ │ │ │ ├── unittest_multiple_nano.proto │ │ │ │ ├── unittest_nano.proto │ │ │ │ ├── unittest_recursive_nano.proto │ │ │ │ ├── unittest_reference_types_nano.proto │ │ │ │ ├── unittest_repeated_merge_nano.proto │ │ │ │ ├── unittest_repeated_packables_nano.proto │ │ │ │ ├── unittest_simple_nano.proto │ │ │ │ ├── unittest_single_nano.proto │ │ │ │ └── unittest_stringutf8_nano.proto │ │ ├── m4 │ │ │ ├── ac_system_extensions.m4 │ │ │ ├── acx_check_suncc.m4 │ │ │ ├── acx_pthread.m4 │ │ │ └── stl_hash.m4 │ │ ├── objectivec │ │ │ ├── DevTools │ │ │ │ ├── check_version_stamps.sh │ │ │ │ ├── compile_testing_protos.sh │ │ │ │ ├── full_mac_build.sh │ │ │ │ ├── pddm.py │ │ │ │ └── pddm_tests.py │ │ │ ├── GPBArray.h │ │ │ ├── GPBArray.m │ │ │ ├── GPBArray_PackagePrivate.h │ │ │ ├── GPBBootstrap.h │ │ │ ├── GPBCodedInputStream.h │ │ │ ├── GPBCodedInputStream.m │ │ │ ├── GPBCodedInputStream_PackagePrivate.h │ │ │ ├── GPBCodedOutputStream.h │ │ │ ├── GPBCodedOutputStream.m │ │ │ ├── GPBDescriptor.h │ │ │ ├── GPBDescriptor.m │ │ │ ├── GPBDescriptor_PackagePrivate.h │ │ │ ├── GPBDictionary.h │ │ │ ├── GPBDictionary.m │ │ │ ├── GPBDictionary_PackagePrivate.h │ │ │ ├── GPBExtensionInternals.h │ │ │ ├── GPBExtensionInternals.m │ │ │ ├── GPBExtensionRegistry.h │ │ │ ├── GPBExtensionRegistry.m │ │ │ ├── GPBMessage.h │ │ │ ├── GPBMessage.m │ │ │ ├── GPBMessage_PackagePrivate.h │ │ │ ├── GPBProtocolBuffers.h │ │ │ ├── GPBProtocolBuffers.m │ │ │ ├── GPBProtocolBuffers_RuntimeSupport.h │ │ │ ├── GPBRootObject.h │ │ │ ├── GPBRootObject.m │ │ │ ├── GPBRootObject_PackagePrivate.h │ │ │ ├── GPBRuntimeTypes.h │ │ │ ├── GPBUnknownField.h │ │ │ ├── GPBUnknownField.m │ │ │ ├── GPBUnknownFieldSet.h │ │ │ ├── GPBUnknownFieldSet.m │ │ │ ├── GPBUnknownFieldSet_PackagePrivate.h │ │ │ ├── GPBUnknownField_PackagePrivate.h │ │ │ ├── GPBUtilities.h │ │ │ ├── GPBUtilities.m │ │ │ ├── GPBUtilities_PackagePrivate.h │ │ │ ├── GPBWellKnownTypes.h │ │ │ ├── GPBWellKnownTypes.m │ │ │ ├── GPBWireFormat.h │ │ │ ├── GPBWireFormat.m │ │ │ ├── ProtocolBuffers_OSX.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ ├── PerformanceTests.xcscheme │ │ │ │ │ └── ProtocolBuffers.xcscheme │ │ │ ├── ProtocolBuffers_iOS.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ └── xcshareddata │ │ │ │ │ ├── xcbaselines │ │ │ │ │ └── 8BBEA4A5147C727100C4ADB7.xcbaseline │ │ │ │ │ │ ├── FFE465CA-0E74-40E8-9F09-500B66B7DCB2.plist │ │ │ │ │ │ └── Info.plist │ │ │ │ │ └── xcschemes │ │ │ │ │ ├── PerformanceTests.xcscheme │ │ │ │ │ └── ProtocolBuffers.xcscheme │ │ │ ├── README.md │ │ │ ├── Tests │ │ │ │ ├── GPBARCUnittestProtos.m │ │ │ │ ├── GPBArrayTests.m │ │ │ │ ├── GPBCodedInputStreamTests.m │ │ │ │ ├── GPBCodedOuputStreamTests.m │ │ │ │ ├── GPBConcurrencyTests.m │ │ │ │ ├── GPBDescriptorTests.m │ │ │ │ ├── GPBDictionaryTests+Bool.m │ │ │ │ ├── GPBDictionaryTests+Int32.m │ │ │ │ ├── GPBDictionaryTests+Int64.m │ │ │ │ ├── GPBDictionaryTests+String.m │ │ │ │ ├── GPBDictionaryTests+UInt32.m │ │ │ │ ├── GPBDictionaryTests+UInt64.m │ │ │ │ ├── GPBDictionaryTests.pddm │ │ │ │ ├── GPBMessageTests+Merge.m │ │ │ │ ├── GPBMessageTests+Runtime.m │ │ │ │ ├── GPBMessageTests+Serialization.m │ │ │ │ ├── GPBMessageTests.m │ │ │ │ ├── GPBPerfTests.m │ │ │ │ ├── GPBStringTests.m │ │ │ │ ├── GPBSwiftTests.swift │ │ │ │ ├── GPBTestUtilities.h │ │ │ │ ├── GPBTestUtilities.m │ │ │ │ ├── GPBUnittestProtos.m │ │ │ │ ├── GPBUnknownFieldSetTest.m │ │ │ │ ├── GPBUtilitiesTests.m │ │ │ │ ├── GPBWellKnownTypesTest.m │ │ │ │ ├── GPBWireFormatTests.m │ │ │ │ ├── UnitTests-Bridging-Header.h │ │ │ │ ├── UnitTests-Info.plist │ │ │ │ ├── golden_message │ │ │ │ ├── golden_packed_fields_message │ │ │ │ ├── iOSTestHarness │ │ │ │ │ ├── AppDelegate.m │ │ │ │ │ ├── Images.xcassets │ │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── iPad6.png │ │ │ │ │ │ │ ├── iPad6_2x.png │ │ │ │ │ │ │ ├── iPad7.png │ │ │ │ │ │ │ ├── iPad7_2x.png │ │ │ │ │ │ │ ├── iPhone6.png │ │ │ │ │ │ │ ├── iPhone6_2x.png │ │ │ │ │ │ │ ├── iPhone7_2x.png │ │ │ │ │ │ │ └── iPhone7_3x.png │ │ │ │ │ │ └── LaunchImage.launchimage │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── LaunchScreen.xib │ │ │ │ │ └── en.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── text_format_map_unittest_data.txt │ │ │ │ ├── text_format_unittest_data.txt │ │ │ │ ├── unittest_cycle.proto │ │ │ │ ├── unittest_objc.proto │ │ │ │ ├── unittest_objc_startup.proto │ │ │ │ ├── unittest_runtime_proto2.proto │ │ │ │ └── unittest_runtime_proto3.proto │ │ │ ├── generate_descriptors_proto.sh │ │ │ └── google │ │ │ │ └── protobuf │ │ │ │ ├── Any.pbobjc.h │ │ │ │ ├── Any.pbobjc.m │ │ │ │ ├── Api.pbobjc.h │ │ │ │ ├── Api.pbobjc.m │ │ │ │ ├── Descriptor.pbobjc.h │ │ │ │ ├── Descriptor.pbobjc.m │ │ │ │ ├── Duration.pbobjc.h │ │ │ │ ├── Duration.pbobjc.m │ │ │ │ ├── Empty.pbobjc.h │ │ │ │ ├── Empty.pbobjc.m │ │ │ │ ├── FieldMask.pbobjc.h │ │ │ │ ├── FieldMask.pbobjc.m │ │ │ │ ├── SourceContext.pbobjc.h │ │ │ │ ├── SourceContext.pbobjc.m │ │ │ │ ├── Struct.pbobjc.h │ │ │ │ ├── Struct.pbobjc.m │ │ │ │ ├── Timestamp.pbobjc.h │ │ │ │ ├── Timestamp.pbobjc.m │ │ │ │ ├── Type.pbobjc.h │ │ │ │ ├── Type.pbobjc.m │ │ │ │ ├── Wrappers.pbobjc.h │ │ │ │ └── Wrappers.pbobjc.m │ │ ├── post_process_dist.sh │ │ ├── protobuf-lite.pc.in │ │ ├── protobuf.pc.in │ │ ├── protoc-artifacts │ │ │ ├── Dockerfile │ │ │ ├── README.md │ │ │ ├── build-protoc.sh │ │ │ └── pom.xml │ │ ├── python │ │ │ ├── MANIFEST.in │ │ │ ├── README.md │ │ │ ├── google │ │ │ │ ├── __init__.py │ │ │ │ └── protobuf │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── descriptor.py │ │ │ │ │ ├── descriptor_database.py │ │ │ │ │ ├── descriptor_pool.py │ │ │ │ │ ├── internal │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _parameterized.py │ │ │ │ │ ├── api_implementation.cc │ │ │ │ │ ├── api_implementation.py │ │ │ │ │ ├── containers.py │ │ │ │ │ ├── decoder.py │ │ │ │ │ ├── descriptor_database_test.py │ │ │ │ │ ├── descriptor_pool_test.py │ │ │ │ │ ├── descriptor_pool_test1.proto │ │ │ │ │ ├── descriptor_pool_test2.proto │ │ │ │ │ ├── descriptor_test.py │ │ │ │ │ ├── encoder.py │ │ │ │ │ ├── enum_type_wrapper.py │ │ │ │ │ ├── factory_test1.proto │ │ │ │ │ ├── factory_test2.proto │ │ │ │ │ ├── generator_test.py │ │ │ │ │ ├── import_test_package │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── inner.proto │ │ │ │ │ │ └── outer.proto │ │ │ │ │ ├── message_factory_test.py │ │ │ │ │ ├── message_listener.py │ │ │ │ │ ├── message_set_extensions.proto │ │ │ │ │ ├── message_test.py │ │ │ │ │ ├── missing_enum_values.proto │ │ │ │ │ ├── more_extensions.proto │ │ │ │ │ ├── more_extensions_dynamic.proto │ │ │ │ │ ├── more_messages.proto │ │ │ │ │ ├── packed_field_test.proto │ │ │ │ │ ├── proto_builder_test.py │ │ │ │ │ ├── python_message.py │ │ │ │ │ ├── reflection_test.py │ │ │ │ │ ├── service_reflection_test.py │ │ │ │ │ ├── symbol_database_test.py │ │ │ │ │ ├── test_bad_identifiers.proto │ │ │ │ │ ├── test_util.py │ │ │ │ │ ├── text_encoding_test.py │ │ │ │ │ ├── text_format_test.py │ │ │ │ │ ├── type_checkers.py │ │ │ │ │ ├── unknown_fields_test.py │ │ │ │ │ ├── wire_format.py │ │ │ │ │ └── wire_format_test.py │ │ │ │ │ ├── message.py │ │ │ │ │ ├── message_factory.py │ │ │ │ │ ├── proto_builder.py │ │ │ │ │ ├── pyext │ │ │ │ │ ├── README │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── cpp_message.py │ │ │ │ │ ├── descriptor.cc │ │ │ │ │ ├── descriptor.h │ │ │ │ │ ├── descriptor_containers.cc │ │ │ │ │ ├── descriptor_containers.h │ │ │ │ │ ├── descriptor_pool.cc │ │ │ │ │ ├── descriptor_pool.h │ │ │ │ │ ├── extension_dict.cc │ │ │ │ │ ├── extension_dict.h │ │ │ │ │ ├── message.cc │ │ │ │ │ ├── message.h │ │ │ │ │ ├── message_map_container.cc │ │ │ │ │ ├── message_map_container.h │ │ │ │ │ ├── proto2_api_test.proto │ │ │ │ │ ├── python.proto │ │ │ │ │ ├── python_protobuf.h │ │ │ │ │ ├── repeated_composite_container.cc │ │ │ │ │ ├── repeated_composite_container.h │ │ │ │ │ ├── repeated_scalar_container.cc │ │ │ │ │ ├── repeated_scalar_container.h │ │ │ │ │ ├── scalar_map_container.cc │ │ │ │ │ ├── scalar_map_container.h │ │ │ │ │ └── scoped_pyobject_ptr.h │ │ │ │ │ ├── reflection.py │ │ │ │ │ ├── service.py │ │ │ │ │ ├── service_reflection.py │ │ │ │ │ ├── symbol_database.py │ │ │ │ │ ├── text_encoding.py │ │ │ │ │ └── text_format.py │ │ │ ├── mox.py │ │ │ ├── setup.py │ │ │ ├── stubout.py │ │ │ └── tox.ini │ │ ├── ruby │ │ │ ├── .gitignore │ │ │ ├── Gemfile │ │ │ ├── Gemfile.lock │ │ │ ├── README.md │ │ │ ├── Rakefile │ │ │ ├── ext │ │ │ │ └── google │ │ │ │ │ └── protobuf_c │ │ │ │ │ ├── defs.c │ │ │ │ │ ├── encode_decode.c │ │ │ │ │ ├── extconf.rb │ │ │ │ │ ├── map.c │ │ │ │ │ ├── message.c │ │ │ │ │ ├── protobuf.c │ │ │ │ │ ├── protobuf.h │ │ │ │ │ ├── repeated_field.c │ │ │ │ │ ├── storage.c │ │ │ │ │ ├── upb.c │ │ │ │ │ └── upb.h │ │ │ ├── google-protobuf.gemspec │ │ │ ├── lib │ │ │ │ └── google │ │ │ │ │ ├── protobuf.rb │ │ │ │ │ └── protobuf │ │ │ │ │ ├── message_exts.rb │ │ │ │ │ └── repeated_field.rb │ │ │ ├── pom.xml │ │ │ ├── src │ │ │ │ └── main │ │ │ │ │ ├── java │ │ │ │ │ ├── com │ │ │ │ │ │ └── google │ │ │ │ │ │ │ └── protobuf │ │ │ │ │ │ │ └── jruby │ │ │ │ │ │ │ ├── RubyBuilder.java │ │ │ │ │ │ │ ├── RubyDescriptor.java │ │ │ │ │ │ │ ├── RubyDescriptorPool.java │ │ │ │ │ │ │ ├── RubyEnum.java │ │ │ │ │ │ │ ├── RubyEnumBuilderContext.java │ │ │ │ │ │ │ ├── RubyEnumDescriptor.java │ │ │ │ │ │ │ ├── RubyFieldDescriptor.java │ │ │ │ │ │ │ ├── RubyMap.java │ │ │ │ │ │ │ ├── RubyMessage.java │ │ │ │ │ │ │ ├── RubyMessageBuilderContext.java │ │ │ │ │ │ │ ├── RubyOneofBuilderContext.java │ │ │ │ │ │ │ ├── RubyOneofDescriptor.java │ │ │ │ │ │ │ ├── RubyProtobuf.java │ │ │ │ │ │ │ ├── RubyRepeatedField.java │ │ │ │ │ │ │ ├── SentinelOuterClass.java │ │ │ │ │ │ │ └── Utils.java │ │ │ │ │ └── google │ │ │ │ │ │ └── ProtobufJavaService.java │ │ │ │ │ └── sentinel.proto │ │ │ ├── tests │ │ │ │ ├── basic.rb │ │ │ │ ├── generated_code.proto │ │ │ │ ├── generated_code.rb │ │ │ │ ├── generated_code_test.rb │ │ │ │ ├── repeated_field_test.rb │ │ │ │ └── stress.rb │ │ │ └── travis-test.sh │ │ ├── src │ │ │ ├── Makefile.am │ │ │ └── google │ │ │ │ └── protobuf │ │ │ │ ├── any.cc │ │ │ │ ├── any.h │ │ │ │ ├── any.pb.cc │ │ │ │ ├── any.pb.h │ │ │ │ ├── any.proto │ │ │ │ ├── any_test.cc │ │ │ │ ├── any_test.proto │ │ │ │ ├── api.pb.cc │ │ │ │ ├── api.pb.h │ │ │ │ ├── api.proto │ │ │ │ ├── arena.cc │ │ │ │ ├── arena.h │ │ │ │ ├── arena_nc.cc │ │ │ │ ├── arena_nc_test.py │ │ │ │ ├── arena_test_util.cc │ │ │ │ ├── arena_test_util.h │ │ │ │ ├── arena_unittest.cc │ │ │ │ ├── arenastring.cc │ │ │ │ ├── arenastring.h │ │ │ │ ├── arenastring_unittest.cc │ │ │ │ ├── compiler │ │ │ │ ├── code_generator.cc │ │ │ │ ├── code_generator.h │ │ │ │ ├── command_line_interface.cc │ │ │ │ ├── command_line_interface.h │ │ │ │ ├── command_line_interface_unittest.cc │ │ │ │ ├── cpp │ │ │ │ │ ├── cpp_bootstrap_unittest.cc │ │ │ │ │ ├── cpp_enum.cc │ │ │ │ │ ├── cpp_enum.h │ │ │ │ │ ├── cpp_enum_field.cc │ │ │ │ │ ├── cpp_enum_field.h │ │ │ │ │ ├── cpp_extension.cc │ │ │ │ │ ├── cpp_extension.h │ │ │ │ │ ├── cpp_field.cc │ │ │ │ │ ├── cpp_field.h │ │ │ │ │ ├── cpp_file.cc │ │ │ │ │ ├── cpp_file.h │ │ │ │ │ ├── cpp_generator.cc │ │ │ │ │ ├── cpp_generator.h │ │ │ │ │ ├── cpp_helpers.cc │ │ │ │ │ ├── cpp_helpers.h │ │ │ │ │ ├── cpp_map_field.cc │ │ │ │ │ ├── cpp_map_field.h │ │ │ │ │ ├── cpp_message.cc │ │ │ │ │ ├── cpp_message.h │ │ │ │ │ ├── cpp_message_field.cc │ │ │ │ │ ├── cpp_message_field.h │ │ │ │ │ ├── cpp_options.h │ │ │ │ │ ├── cpp_plugin_unittest.cc │ │ │ │ │ ├── cpp_primitive_field.cc │ │ │ │ │ ├── cpp_primitive_field.h │ │ │ │ │ ├── cpp_service.cc │ │ │ │ │ ├── cpp_service.h │ │ │ │ │ ├── cpp_string_field.cc │ │ │ │ │ ├── cpp_string_field.h │ │ │ │ │ ├── cpp_test_bad_identifiers.proto │ │ │ │ │ ├── cpp_test_large_enum_value.proto │ │ │ │ │ ├── cpp_unittest.cc │ │ │ │ │ ├── cpp_unittest.h │ │ │ │ │ └── test_large_enum_value.proto │ │ │ │ ├── csharp │ │ │ │ │ ├── csharp_enum.cc │ │ │ │ │ ├── csharp_enum.h │ │ │ │ │ ├── csharp_enum_field.cc │ │ │ │ │ ├── csharp_enum_field.h │ │ │ │ │ ├── csharp_field_base.cc │ │ │ │ │ ├── csharp_field_base.h │ │ │ │ │ ├── csharp_generator.cc │ │ │ │ │ ├── csharp_generator.h │ │ │ │ │ ├── csharp_generator_unittest.cc │ │ │ │ │ ├── csharp_helpers.cc │ │ │ │ │ ├── csharp_helpers.h │ │ │ │ │ ├── csharp_map_field.cc │ │ │ │ │ ├── csharp_map_field.h │ │ │ │ │ ├── csharp_message.cc │ │ │ │ │ ├── csharp_message.h │ │ │ │ │ ├── csharp_message_field.cc │ │ │ │ │ ├── csharp_message_field.h │ │ │ │ │ ├── csharp_names.h │ │ │ │ │ ├── csharp_primitive_field.cc │ │ │ │ │ ├── csharp_primitive_field.h │ │ │ │ │ ├── csharp_repeated_enum_field.cc │ │ │ │ │ ├── csharp_repeated_enum_field.h │ │ │ │ │ ├── csharp_repeated_message_field.cc │ │ │ │ │ ├── csharp_repeated_message_field.h │ │ │ │ │ ├── csharp_repeated_primitive_field.cc │ │ │ │ │ ├── csharp_repeated_primitive_field.h │ │ │ │ │ ├── csharp_source_generator_base.cc │ │ │ │ │ ├── csharp_source_generator_base.h │ │ │ │ │ ├── csharp_umbrella_class.cc │ │ │ │ │ ├── csharp_umbrella_class.h │ │ │ │ │ ├── csharp_wrapper_field.cc │ │ │ │ │ └── csharp_wrapper_field.h │ │ │ │ ├── importer.cc │ │ │ │ ├── importer.h │ │ │ │ ├── importer_unittest.cc │ │ │ │ ├── java │ │ │ │ │ ├── java_context.cc │ │ │ │ │ ├── java_context.h │ │ │ │ │ ├── java_doc_comment.cc │ │ │ │ │ ├── java_doc_comment.h │ │ │ │ │ ├── java_doc_comment_unittest.cc │ │ │ │ │ ├── java_enum.cc │ │ │ │ │ ├── java_enum.h │ │ │ │ │ ├── java_enum_field.cc │ │ │ │ │ ├── java_enum_field.h │ │ │ │ │ ├── java_enum_field_lite.cc │ │ │ │ │ ├── java_enum_field_lite.h │ │ │ │ │ ├── java_enum_lite.cc │ │ │ │ │ ├── java_enum_lite.h │ │ │ │ │ ├── java_extension.cc │ │ │ │ │ ├── java_extension.h │ │ │ │ │ ├── java_field.cc │ │ │ │ │ ├── java_field.h │ │ │ │ │ ├── java_file.cc │ │ │ │ │ ├── java_file.h │ │ │ │ │ ├── java_generator.cc │ │ │ │ │ ├── java_generator.h │ │ │ │ │ ├── java_generator_factory.cc │ │ │ │ │ ├── java_generator_factory.h │ │ │ │ │ ├── java_helpers.cc │ │ │ │ │ ├── java_helpers.h │ │ │ │ │ ├── java_lazy_message_field.cc │ │ │ │ │ ├── java_lazy_message_field.h │ │ │ │ │ ├── java_lazy_message_field_lite.cc │ │ │ │ │ ├── java_lazy_message_field_lite.h │ │ │ │ │ ├── java_map_field.cc │ │ │ │ │ ├── java_map_field.h │ │ │ │ │ ├── java_map_field_lite.cc │ │ │ │ │ ├── java_map_field_lite.h │ │ │ │ │ ├── java_message.cc │ │ │ │ │ ├── java_message.h │ │ │ │ │ ├── java_message_builder.cc │ │ │ │ │ ├── java_message_builder.h │ │ │ │ │ ├── java_message_builder_lite.cc │ │ │ │ │ ├── java_message_builder_lite.h │ │ │ │ │ ├── java_message_field.cc │ │ │ │ │ ├── java_message_field.h │ │ │ │ │ ├── java_message_field_lite.cc │ │ │ │ │ ├── java_message_field_lite.h │ │ │ │ │ ├── java_message_lite.cc │ │ │ │ │ ├── java_message_lite.h │ │ │ │ │ ├── java_name_resolver.cc │ │ │ │ │ ├── java_name_resolver.h │ │ │ │ │ ├── java_names.h │ │ │ │ │ ├── java_plugin_unittest.cc │ │ │ │ │ ├── java_primitive_field.cc │ │ │ │ │ ├── java_primitive_field.h │ │ │ │ │ ├── java_primitive_field_lite.cc │ │ │ │ │ ├── java_primitive_field_lite.h │ │ │ │ │ ├── java_service.cc │ │ │ │ │ ├── java_service.h │ │ │ │ │ ├── java_shared_code_generator.cc │ │ │ │ │ ├── java_shared_code_generator.h │ │ │ │ │ ├── java_string_field.cc │ │ │ │ │ ├── java_string_field.h │ │ │ │ │ ├── java_string_field_lite.cc │ │ │ │ │ └── java_string_field_lite.h │ │ │ │ ├── javanano │ │ │ │ │ ├── javanano_enum.cc │ │ │ │ │ ├── javanano_enum.h │ │ │ │ │ ├── javanano_enum_field.cc │ │ │ │ │ ├── javanano_enum_field.h │ │ │ │ │ ├── javanano_extension.cc │ │ │ │ │ ├── javanano_extension.h │ │ │ │ │ ├── javanano_field.cc │ │ │ │ │ ├── javanano_field.h │ │ │ │ │ ├── javanano_file.cc │ │ │ │ │ ├── javanano_file.h │ │ │ │ │ ├── javanano_generator.cc │ │ │ │ │ ├── javanano_generator.h │ │ │ │ │ ├── javanano_helpers.cc │ │ │ │ │ ├── javanano_helpers.h │ │ │ │ │ ├── javanano_map_field.cc │ │ │ │ │ ├── javanano_map_field.h │ │ │ │ │ ├── javanano_message.cc │ │ │ │ │ ├── javanano_message.h │ │ │ │ │ ├── javanano_message_field.cc │ │ │ │ │ ├── javanano_message_field.h │ │ │ │ │ ├── javanano_params.h │ │ │ │ │ ├── javanano_primitive_field.cc │ │ │ │ │ └── javanano_primitive_field.h │ │ │ │ ├── main.cc │ │ │ │ ├── mock_code_generator.cc │ │ │ │ ├── mock_code_generator.h │ │ │ │ ├── objectivec │ │ │ │ │ ├── objectivec_enum.cc │ │ │ │ │ ├── objectivec_enum.h │ │ │ │ │ ├── objectivec_enum_field.cc │ │ │ │ │ ├── objectivec_enum_field.h │ │ │ │ │ ├── objectivec_extension.cc │ │ │ │ │ ├── objectivec_extension.h │ │ │ │ │ ├── objectivec_field.cc │ │ │ │ │ ├── objectivec_field.h │ │ │ │ │ ├── objectivec_file.cc │ │ │ │ │ ├── objectivec_file.h │ │ │ │ │ ├── objectivec_generator.cc │ │ │ │ │ ├── objectivec_generator.h │ │ │ │ │ ├── objectivec_helpers.cc │ │ │ │ │ ├── objectivec_helpers.h │ │ │ │ │ ├── objectivec_helpers_unittest.cc │ │ │ │ │ ├── objectivec_map_field.cc │ │ │ │ │ ├── objectivec_map_field.h │ │ │ │ │ ├── objectivec_message.cc │ │ │ │ │ ├── objectivec_message.h │ │ │ │ │ ├── objectivec_message_field.cc │ │ │ │ │ ├── objectivec_message_field.h │ │ │ │ │ ├── objectivec_oneof.cc │ │ │ │ │ ├── objectivec_oneof.h │ │ │ │ │ ├── objectivec_primitive_field.cc │ │ │ │ │ └── objectivec_primitive_field.h │ │ │ │ ├── package_info.h │ │ │ │ ├── parser.cc │ │ │ │ ├── parser.h │ │ │ │ ├── parser_unittest.cc │ │ │ │ ├── plugin.cc │ │ │ │ ├── plugin.h │ │ │ │ ├── plugin.pb.cc │ │ │ │ ├── plugin.pb.h │ │ │ │ ├── plugin.proto │ │ │ │ ├── python │ │ │ │ │ ├── python_generator.cc │ │ │ │ │ ├── python_generator.h │ │ │ │ │ └── python_plugin_unittest.cc │ │ │ │ ├── ruby │ │ │ │ │ ├── ruby_generated_code.proto │ │ │ │ │ ├── ruby_generated_code.rb │ │ │ │ │ ├── ruby_generator.cc │ │ │ │ │ ├── ruby_generator.h │ │ │ │ │ └── ruby_generator_unittest.cc │ │ │ │ ├── subprocess.cc │ │ │ │ ├── subprocess.h │ │ │ │ ├── test_plugin.cc │ │ │ │ ├── zip_output_unittest.sh │ │ │ │ ├── zip_writer.cc │ │ │ │ └── zip_writer.h │ │ │ │ ├── descriptor.cc │ │ │ │ ├── descriptor.h │ │ │ │ ├── descriptor.pb.cc │ │ │ │ ├── descriptor.pb.h │ │ │ │ ├── descriptor.proto │ │ │ │ ├── descriptor_database.cc │ │ │ │ ├── descriptor_database.h │ │ │ │ ├── descriptor_database_unittest.cc │ │ │ │ ├── descriptor_unittest.cc │ │ │ │ ├── drop_unknown_fields_test.cc │ │ │ │ ├── duration.pb.cc │ │ │ │ ├── duration.pb.h │ │ │ │ ├── duration.proto │ │ │ │ ├── dynamic_message.cc │ │ │ │ ├── dynamic_message.h │ │ │ │ ├── dynamic_message_unittest.cc │ │ │ │ ├── empty.pb.cc │ │ │ │ ├── empty.pb.h │ │ │ │ ├── empty.proto │ │ │ │ ├── extension_set.cc │ │ │ │ ├── extension_set.h │ │ │ │ ├── extension_set_heavy.cc │ │ │ │ ├── extension_set_unittest.cc │ │ │ │ ├── field_mask.pb.cc │ │ │ │ ├── field_mask.pb.h │ │ │ │ ├── field_mask.proto │ │ │ │ ├── generated_enum_reflection.h │ │ │ │ ├── generated_enum_util.h │ │ │ │ ├── generated_message_reflection.cc │ │ │ │ ├── generated_message_reflection.h │ │ │ │ ├── generated_message_reflection_unittest.cc │ │ │ │ ├── generated_message_util.cc │ │ │ │ ├── generated_message_util.h │ │ │ │ ├── io │ │ │ │ ├── coded_stream.cc │ │ │ │ ├── coded_stream.h │ │ │ │ ├── coded_stream_inl.h │ │ │ │ ├── coded_stream_unittest.cc │ │ │ │ ├── gzip_stream.cc │ │ │ │ ├── gzip_stream.h │ │ │ │ ├── gzip_stream_unittest.sh │ │ │ │ ├── package_info.h │ │ │ │ ├── printer.cc │ │ │ │ ├── printer.h │ │ │ │ ├── printer_unittest.cc │ │ │ │ ├── strtod.cc │ │ │ │ ├── strtod.h │ │ │ │ ├── tokenizer.cc │ │ │ │ ├── tokenizer.h │ │ │ │ ├── tokenizer_unittest.cc │ │ │ │ ├── zero_copy_stream.cc │ │ │ │ ├── zero_copy_stream.h │ │ │ │ ├── zero_copy_stream_impl.cc │ │ │ │ ├── zero_copy_stream_impl.h │ │ │ │ ├── zero_copy_stream_impl_lite.cc │ │ │ │ ├── zero_copy_stream_impl_lite.h │ │ │ │ └── zero_copy_stream_unittest.cc │ │ │ │ ├── lite_arena_unittest.cc │ │ │ │ ├── lite_unittest.cc │ │ │ │ ├── map.h │ │ │ │ ├── map_entry.h │ │ │ │ ├── map_entry_lite.h │ │ │ │ ├── map_field.cc │ │ │ │ ├── map_field.h │ │ │ │ ├── map_field_inl.h │ │ │ │ ├── map_field_lite.h │ │ │ │ ├── map_field_test.cc │ │ │ │ ├── map_lite_test_util.cc │ │ │ │ ├── map_lite_test_util.h │ │ │ │ ├── map_lite_unittest.proto │ │ │ │ ├── map_proto2_unittest.proto │ │ │ │ ├── map_test.cc │ │ │ │ ├── map_test_util.cc │ │ │ │ ├── map_test_util.h │ │ │ │ ├── map_test_util_impl.h │ │ │ │ ├── map_type_handler.h │ │ │ │ ├── map_unittest.proto │ │ │ │ ├── map_unittest_proto3.proto │ │ │ │ ├── message.cc │ │ │ │ ├── message.h │ │ │ │ ├── message_lite.cc │ │ │ │ ├── message_lite.h │ │ │ │ ├── message_unittest.cc │ │ │ │ ├── metadata.h │ │ │ │ ├── no_field_presence_test.cc │ │ │ │ ├── package_info.h │ │ │ │ ├── preserve_unknown_enum_test.cc │ │ │ │ ├── proto3_arena_unittest.cc │ │ │ │ ├── proto_cast.h │ │ │ │ ├── proto_cast_test.cc │ │ │ │ ├── reflection.h │ │ │ │ ├── reflection_internal.h │ │ │ │ ├── reflection_ops.cc │ │ │ │ ├── reflection_ops.h │ │ │ │ ├── reflection_ops_unittest.cc │ │ │ │ ├── repeated_field.cc │ │ │ │ ├── repeated_field.h │ │ │ │ ├── repeated_field_reflection.h │ │ │ │ ├── repeated_field_reflection_unittest.cc │ │ │ │ ├── repeated_field_unittest.cc │ │ │ │ ├── service.cc │ │ │ │ ├── service.h │ │ │ │ ├── source_context.pb.cc │ │ │ │ ├── source_context.pb.h │ │ │ │ ├── source_context.proto │ │ │ │ ├── struct.pb.cc │ │ │ │ ├── struct.pb.h │ │ │ │ ├── struct.proto │ │ │ │ ├── stubs │ │ │ │ ├── atomic_sequence_num.h │ │ │ │ ├── atomicops.h │ │ │ │ ├── atomicops_internals_aix.h │ │ │ │ ├── atomicops_internals_arm64_gcc.h │ │ │ │ ├── atomicops_internals_arm_gcc.h │ │ │ │ ├── atomicops_internals_arm_qnx.h │ │ │ │ ├── atomicops_internals_atomicword_compat.h │ │ │ │ ├── atomicops_internals_generic_gcc.h │ │ │ │ ├── atomicops_internals_macosx.h │ │ │ │ ├── atomicops_internals_mips_gcc.h │ │ │ │ ├── atomicops_internals_pnacl.h │ │ │ │ ├── atomicops_internals_solaris.h │ │ │ │ ├── atomicops_internals_tsan.h │ │ │ │ ├── atomicops_internals_x86_gcc.cc │ │ │ │ ├── atomicops_internals_x86_gcc.h │ │ │ │ ├── atomicops_internals_x86_msvc.cc │ │ │ │ ├── atomicops_internals_x86_msvc.h │ │ │ │ ├── bytestream.cc │ │ │ │ ├── bytestream.h │ │ │ │ ├── bytestream_unittest.cc │ │ │ │ ├── callback.h │ │ │ │ ├── casts.h │ │ │ │ ├── common.cc │ │ │ │ ├── common.h │ │ │ │ ├── common_unittest.cc │ │ │ │ ├── fastmem.h │ │ │ │ ├── hash.h │ │ │ │ ├── int128.cc │ │ │ │ ├── int128.h │ │ │ │ ├── int128_unittest.cc │ │ │ │ ├── logging.h │ │ │ │ ├── macros.h │ │ │ │ ├── map_util.h │ │ │ │ ├── mathlimits.cc │ │ │ │ ├── mathlimits.h │ │ │ │ ├── mathutil.h │ │ │ │ ├── mutex.h │ │ │ │ ├── once.cc │ │ │ │ ├── once.h │ │ │ │ ├── once_unittest.cc │ │ │ │ ├── platform_macros.h │ │ │ │ ├── port.h │ │ │ │ ├── scoped_ptr.h │ │ │ │ ├── shared_ptr.h │ │ │ │ ├── singleton.h │ │ │ │ ├── status.cc │ │ │ │ ├── status.h │ │ │ │ ├── status_macros.h │ │ │ │ ├── status_test.cc │ │ │ │ ├── statusor.cc │ │ │ │ ├── statusor.h │ │ │ │ ├── statusor_test.cc │ │ │ │ ├── stl_util.h │ │ │ │ ├── stringpiece.cc │ │ │ │ ├── stringpiece.h │ │ │ │ ├── stringpiece_unittest.cc │ │ │ │ ├── stringprintf.cc │ │ │ │ ├── stringprintf.h │ │ │ │ ├── stringprintf_unittest.cc │ │ │ │ ├── structurally_valid.cc │ │ │ │ ├── structurally_valid_unittest.cc │ │ │ │ ├── strutil.cc │ │ │ │ ├── strutil.h │ │ │ │ ├── strutil_unittest.cc │ │ │ │ ├── substitute.cc │ │ │ │ ├── substitute.h │ │ │ │ ├── template_util.h │ │ │ │ ├── template_util_unittest.cc │ │ │ │ ├── time.cc │ │ │ │ ├── time.h │ │ │ │ ├── time_test.cc │ │ │ │ ├── type_traits.h │ │ │ │ └── type_traits_unittest.cc │ │ │ │ ├── test_util.cc │ │ │ │ ├── test_util.h │ │ │ │ ├── test_util_lite.cc │ │ │ │ ├── test_util_lite.h │ │ │ │ ├── testdata │ │ │ │ ├── bad_utf8_string │ │ │ │ ├── golden_message │ │ │ │ ├── golden_message_oneof_implemented │ │ │ │ ├── golden_message_proto3 │ │ │ │ ├── golden_packed_fields_message │ │ │ │ ├── map_test_data.txt │ │ │ │ ├── text_format_unittest_data.txt │ │ │ │ ├── text_format_unittest_data_oneof_implemented.txt │ │ │ │ ├── text_format_unittest_data_pointy.txt │ │ │ │ ├── text_format_unittest_data_pointy_oneof.txt │ │ │ │ ├── text_format_unittest_extensions_data.txt │ │ │ │ └── text_format_unittest_extensions_data_pointy.txt │ │ │ │ ├── testing │ │ │ │ ├── file.cc │ │ │ │ ├── file.h │ │ │ │ ├── googletest.cc │ │ │ │ ├── googletest.h │ │ │ │ ├── zcgunzip.cc │ │ │ │ └── zcgzip.cc │ │ │ │ ├── text_format.cc │ │ │ │ ├── text_format.h │ │ │ │ ├── text_format_unittest.cc │ │ │ │ ├── timestamp.pb.cc │ │ │ │ ├── timestamp.pb.h │ │ │ │ ├── timestamp.proto │ │ │ │ ├── type.pb.cc │ │ │ │ ├── type.pb.h │ │ │ │ ├── type.proto │ │ │ │ ├── unittest.proto │ │ │ │ ├── unittest_arena.proto │ │ │ │ ├── unittest_custom_options.proto │ │ │ │ ├── unittest_drop_unknown_fields.proto │ │ │ │ ├── unittest_embed_optimize_for.proto │ │ │ │ ├── unittest_empty.proto │ │ │ │ ├── unittest_enormous_descriptor.proto │ │ │ │ ├── unittest_import.proto │ │ │ │ ├── unittest_import_lite.proto │ │ │ │ ├── unittest_import_proto3.proto │ │ │ │ ├── unittest_import_public.proto │ │ │ │ ├── unittest_import_public_lite.proto │ │ │ │ ├── unittest_import_public_proto3.proto │ │ │ │ ├── unittest_lite.proto │ │ │ │ ├── unittest_lite_imports_nonlite.proto │ │ │ │ ├── unittest_mset.proto │ │ │ │ ├── unittest_mset_wire_format.proto │ │ │ │ ├── unittest_no_arena.proto │ │ │ │ ├── unittest_no_arena_import.proto │ │ │ │ ├── unittest_no_arena_lite.proto │ │ │ │ ├── unittest_no_field_presence.proto │ │ │ │ ├── unittest_no_generic_services.proto │ │ │ │ ├── unittest_optimize_for.proto │ │ │ │ ├── unittest_preserve_unknown_enum.proto │ │ │ │ ├── unittest_preserve_unknown_enum2.proto │ │ │ │ ├── unittest_proto3.proto │ │ │ │ ├── unittest_proto3_arena.proto │ │ │ │ ├── unittest_well_known_types.proto │ │ │ │ ├── unknown_enum_impl.h │ │ │ │ ├── unknown_enum_test.proto │ │ │ │ ├── unknown_field_set.cc │ │ │ │ ├── unknown_field_set.h │ │ │ │ ├── unknown_field_set_unittest.cc │ │ │ │ ├── util │ │ │ │ ├── field_comparator.cc │ │ │ │ ├── field_comparator.h │ │ │ │ ├── field_comparator_test.cc │ │ │ │ ├── field_mask_util.cc │ │ │ │ ├── field_mask_util.h │ │ │ │ ├── field_mask_util_test.cc │ │ │ │ ├── internal │ │ │ │ │ ├── constants.h │ │ │ │ │ ├── datapiece.cc │ │ │ │ │ ├── datapiece.h │ │ │ │ │ ├── default_value_objectwriter.cc │ │ │ │ │ ├── default_value_objectwriter.h │ │ │ │ │ ├── default_value_objectwriter_test.cc │ │ │ │ │ ├── error_listener.cc │ │ │ │ │ ├── error_listener.h │ │ │ │ │ ├── expecting_objectwriter.h │ │ │ │ │ ├── field_mask_utility.cc │ │ │ │ │ ├── field_mask_utility.h │ │ │ │ │ ├── json_escaping.cc │ │ │ │ │ ├── json_escaping.h │ │ │ │ │ ├── json_objectwriter.cc │ │ │ │ │ ├── json_objectwriter.h │ │ │ │ │ ├── json_objectwriter_test.cc │ │ │ │ │ ├── json_stream_parser.cc │ │ │ │ │ ├── json_stream_parser.h │ │ │ │ │ ├── json_stream_parser_test.cc │ │ │ │ │ ├── location_tracker.h │ │ │ │ │ ├── mock_error_listener.h │ │ │ │ │ ├── object_location_tracker.h │ │ │ │ │ ├── object_source.h │ │ │ │ │ ├── object_writer.cc │ │ │ │ │ ├── object_writer.h │ │ │ │ │ ├── protostream_objectsource.cc │ │ │ │ │ ├── protostream_objectsource.h │ │ │ │ │ ├── protostream_objectsource_test.cc │ │ │ │ │ ├── protostream_objectwriter.cc │ │ │ │ │ ├── protostream_objectwriter.h │ │ │ │ │ ├── protostream_objectwriter_test.cc │ │ │ │ │ ├── snake2camel_objectwriter.h │ │ │ │ │ ├── snake2camel_objectwriter_test.cc │ │ │ │ │ ├── structured_objectwriter.h │ │ │ │ │ ├── testdata │ │ │ │ │ │ ├── anys.proto │ │ │ │ │ │ ├── books.proto │ │ │ │ │ │ ├── default_value.proto │ │ │ │ │ │ ├── default_value_test.proto │ │ │ │ │ │ ├── field_mask.proto │ │ │ │ │ │ ├── maps.proto │ │ │ │ │ │ ├── oneofs.proto │ │ │ │ │ │ ├── struct.proto │ │ │ │ │ │ ├── timestamp_duration.proto │ │ │ │ │ │ └── wrappers.proto │ │ │ │ │ ├── type_info.cc │ │ │ │ │ ├── type_info.h │ │ │ │ │ ├── type_info_test_helper.cc │ │ │ │ │ ├── type_info_test_helper.h │ │ │ │ │ ├── utility.cc │ │ │ │ │ └── utility.h │ │ │ │ ├── json_format_proto3.proto │ │ │ │ ├── json_util.cc │ │ │ │ ├── json_util.h │ │ │ │ ├── json_util_test.cc │ │ │ │ ├── message_differencer.cc │ │ │ │ ├── message_differencer.h │ │ │ │ ├── message_differencer_unittest.cc │ │ │ │ ├── message_differencer_unittest.proto │ │ │ │ ├── time_util.cc │ │ │ │ ├── time_util.h │ │ │ │ ├── time_util_test.cc │ │ │ │ ├── type_resolver.h │ │ │ │ ├── type_resolver_util.cc │ │ │ │ ├── type_resolver_util.h │ │ │ │ └── type_resolver_util_test.cc │ │ │ │ ├── well_known_types_unittest.cc │ │ │ │ ├── wire_format.cc │ │ │ │ ├── wire_format.h │ │ │ │ ├── wire_format_lite.cc │ │ │ │ ├── wire_format_lite.h │ │ │ │ ├── wire_format_lite_inl.h │ │ │ │ ├── wire_format_unittest.cc │ │ │ │ ├── wrappers.pb.cc │ │ │ │ ├── wrappers.pb.h │ │ │ │ └── wrappers.proto │ │ ├── travis.sh │ │ └── update_file_lists.sh │ ├── tinyxml │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── changes.txt │ │ ├── docs │ │ │ ├── annotated.html │ │ │ ├── classTiXmlAttribute-members.html │ │ │ ├── classTiXmlAttribute.html │ │ │ ├── classTiXmlAttribute.png │ │ │ ├── classTiXmlBase-members.html │ │ │ ├── classTiXmlBase.html │ │ │ ├── classTiXmlBase.png │ │ │ ├── classTiXmlComment-members.html │ │ │ ├── classTiXmlComment.html │ │ │ ├── classTiXmlComment.png │ │ │ ├── classTiXmlDeclaration-members.html │ │ │ ├── classTiXmlDeclaration.html │ │ │ ├── classTiXmlDeclaration.png │ │ │ ├── classTiXmlDocument-members.html │ │ │ ├── classTiXmlDocument.html │ │ │ ├── classTiXmlDocument.png │ │ │ ├── classTiXmlElement-members.html │ │ │ ├── classTiXmlElement.html │ │ │ ├── classTiXmlElement.png │ │ │ ├── classTiXmlHandle-members.html │ │ │ ├── classTiXmlHandle.html │ │ │ ├── classTiXmlNode-members.html │ │ │ ├── classTiXmlNode.html │ │ │ ├── classTiXmlNode.png │ │ │ ├── classTiXmlText-members.html │ │ │ ├── classTiXmlText.html │ │ │ ├── classTiXmlText.png │ │ │ ├── classTiXmlUnknown-members.html │ │ │ ├── classTiXmlUnknown.html │ │ │ ├── classTiXmlUnknown.png │ │ │ ├── doxygen.css │ │ │ ├── doxygen.png │ │ │ ├── files.html │ │ │ ├── functions.html │ │ │ ├── functions_enum.html │ │ │ ├── functions_func.html │ │ │ ├── functions_rela.html │ │ │ ├── functions_vars.html │ │ │ ├── hierarchy.html │ │ │ ├── index.html │ │ │ ├── tinystr_8h-source.html │ │ │ ├── tinyxml_8h-source.html │ │ │ └── tutorial0.html │ │ ├── echo.dsp │ │ ├── readme.txt │ │ ├── tinyXmlTest.dsp │ │ ├── tinyXmlTestSTL.dsp │ │ ├── tinystr.cpp │ │ ├── tinystr.h │ │ ├── tinyxml.cpp │ │ ├── tinyxml.dsw │ │ ├── tinyxml.h │ │ ├── tinyxmlSTL.dsp │ │ ├── tinyxml_lib.dsp │ │ ├── tinyxmlerror.cpp │ │ ├── tinyxmlparser.cpp │ │ ├── utf8test.gif │ │ ├── utf8test.xml │ │ ├── utf8testverify.xml │ │ └── xmltest.cpp │ ├── valgrind │ │ ├── ElVis.supp │ │ ├── OSX.supp │ │ ├── OptiX.supp │ │ ├── Qt.supp │ │ ├── glut.supp │ │ └── sgcheck.supp │ └── zlib │ │ ├── CMakeLists.txt │ │ ├── ChangeLog │ │ ├── FAQ │ │ ├── INDEX │ │ ├── README │ │ ├── adler32.c │ │ ├── algorithm.txt │ │ ├── compress.c │ │ ├── configure │ │ ├── crc32.c │ │ ├── crc32.h │ │ ├── deflate.c │ │ ├── deflate.h │ │ ├── example.c │ │ ├── gzio.c │ │ ├── infback.c │ │ ├── inffast.c │ │ ├── inffast.h │ │ ├── inffixed.h │ │ ├── inflate.c │ │ ├── inflate.h │ │ ├── inftrees.c │ │ ├── inftrees.h │ │ ├── make_vms.com │ │ ├── minigzip.c │ │ ├── trees.c │ │ ├── trees.h │ │ ├── uncompr.c │ │ ├── win32 │ │ ├── DLL_FAQ.txt │ │ ├── Makefile.bor │ │ ├── Makefile.emx │ │ ├── Makefile.gcc │ │ ├── Makefile.msc │ │ ├── VisualC.txt │ │ ├── zlib.def │ │ └── zlib1.rc │ │ ├── zconf.h │ │ ├── zlib.3 │ │ ├── zlib.h │ │ ├── zutil.c │ │ └── zutil.h ├── Utilities │ ├── CMakeLists.txt │ ├── CodeGenerator │ │ ├── CMakeLists.txt │ │ └── main.cpp │ ├── CreateElementByElementJacobianVolumes │ │ ├── CMakeLists.txt │ │ └── main.cpp │ ├── GenerateNektar++HexMesh │ │ ├── CMakeLists.txt │ │ └── main.cpp │ ├── GenerateStaticTables │ │ ├── CMakeLists.txt │ │ └── main.cpp │ ├── GenerateVTKColorMaps │ │ ├── CMakeLists.txt │ │ └── main.cpp │ └── Stats │ │ ├── CMakeLists.txt │ │ └── main.cpp └── _clang-format ├── unittests ├── Makefile ├── testMouseLeftCtrlClick.cpp ├── testMouseLeftCtrlClick.moc └── unittests.pro ├── volumes ├── Hex_01_01_01_03Mode_x2.fld ├── Hex_01_01_01_03Mode_x2.mesh ├── Hex_01_01_01_03Mode_x2.xml ├── Hex_01_01_01_03Modes_x2_Offset2.fld ├── Hex_01_01_01_03Modes_x2_Offset2.mesh ├── Hex_01_01_01_03Modes_x2_Offset2.xml ├── Hex_01_01_01_03Modes_x2_Offset3.fld ├── Hex_01_01_01_03Modes_x2_Offset3.mesh ├── Hex_01_01_01_03Modes_x2_Offset3.xml ├── Hex_01_01_01_04Modes_x2_Offset3.fld ├── Hex_01_01_01_04Modes_x2_Offset3.xml ├── Hex_CurvedFace.fld ├── Hex_CurvedFace.xml ├── Hex_Mushroom.fld ├── Hex_Mushroom.xml ├── Quad.fld ├── Quad.xml ├── bulletH1P2.dat ├── bulletH1P3.dat ├── naca_Euler2d_CurvedAdapt_TEST_P2_a02_Primal_1.pxa ├── naca_Euler2d_TEST_P0_Primal_0.pxa ├── naca_Euler2d_TEST_P1_Primal_0.pxa ├── naca_Euler2d_TEST_P2_Primal_0.pxa ├── paddles1H1P3.dat ├── raySincBox_F4_P4.dat └── raySkewHex_F2_8_P8.dat └── workflows ├── BulletH1P2ColorMap.vt ├── BulletH1P2ColorMapAlongYAxis.vt ├── BulletH1P3ColorMap.vt ├── BulletH1P3ColorMapAndContours.vt ├── CannisterEqualizedTemperature.cmap ├── CannisterEqualizedTemperature.xml ├── ColorMapAndContour.vt ├── ModifiedML.vt ├── ModifiedMLWithElVisContours.vt ├── ModifiedMLWithWorldSpaceContours.vt ├── NektarModelColorMap.vt ├── PaddlesColorMap.vt ├── PaddlesEqualizedTemperature.cmap ├── RedToBlue.cmap ├── Screenshots.vt ├── diverging.cmap ├── diverging257.cmap ├── grayscale.cmap └── verify.cmap /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ColorMaps/BlackBody.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/ColorMaps/BlackBody.xml -------------------------------------------------------------------------------- /ColorMaps/BlueToYellow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/ColorMaps/BlueToYellow.xml -------------------------------------------------------------------------------- /ColorMaps/Grayscale.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/ColorMaps/Grayscale.xml -------------------------------------------------------------------------------- /ColorMaps/Rainbow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/ColorMaps/Rainbow.xml -------------------------------------------------------------------------------- /ColorMaps/diverging.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/ColorMaps/diverging.xml -------------------------------------------------------------------------------- /DeveloperEmailAddresses: -------------------------------------------------------------------------------- 1 | galbramc@mit.edu, payne.gene@gmail.com, bnelson@cs.utah.edu 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/README.md -------------------------------------------------------------------------------- /ThirdParty/INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/ThirdParty/INSTALL.txt -------------------------------------------------------------------------------- /ThirdParty/glut-3.7.6-win32.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/ThirdParty/glut-3.7.6-win32.tar -------------------------------------------------------------------------------- /ThirdParty/glut-3.7.6-win32.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/ThirdParty/glut-3.7.6-win32.tar.gz -------------------------------------------------------------------------------- /ThirdParty/libpng-1.5.10.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/ThirdParty/libpng-1.5.10.tar.gz -------------------------------------------------------------------------------- /ThirdParty/zlib-1.2.6.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/ThirdParty/zlib-1.2.6.tar.gz -------------------------------------------------------------------------------- /ViewingParameters/IsosurfacePaper_10b.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/ViewingParameters/IsosurfacePaper_10b.bin -------------------------------------------------------------------------------- /ViewingParameters/IsosurfacePaper_10b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/ViewingParameters/IsosurfacePaper_10b.xml -------------------------------------------------------------------------------- /ViewingParameters/IsosurfacePaper_4a.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/ViewingParameters/IsosurfacePaper_4a.bin -------------------------------------------------------------------------------- /ViewingParameters/IsosurfacePaper_4a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/ViewingParameters/IsosurfacePaper_4a.xml -------------------------------------------------------------------------------- /ViewingParameters/IsosurfacePaper_5b.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/ViewingParameters/IsosurfacePaper_5b.bin -------------------------------------------------------------------------------- /ViewingParameters/IsosurfacePaper_5b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/ViewingParameters/IsosurfacePaper_5b.xml -------------------------------------------------------------------------------- /ViewingParameters/IsosurfacePaper_6b.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/ViewingParameters/IsosurfacePaper_6b.bin -------------------------------------------------------------------------------- /ViewingParameters/IsosurfacePaper_6b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/ViewingParameters/IsosurfacePaper_6b.xml -------------------------------------------------------------------------------- /ViewingParameters/IsosurfacePaper_9a.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/ViewingParameters/IsosurfacePaper_9a.bin -------------------------------------------------------------------------------- /ViewingParameters/IsosurfacePaper_9a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/ViewingParameters/IsosurfacePaper_9a.xml -------------------------------------------------------------------------------- /ViewingParameters/IsosurfacePaper_9b.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/ViewingParameters/IsosurfacePaper_9b.bin -------------------------------------------------------------------------------- /ViewingParameters/IsosurfacePaper_9b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/ViewingParameters/IsosurfacePaper_9b.xml -------------------------------------------------------------------------------- /doc/INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/doc/INSTALL.txt -------------------------------------------------------------------------------- /src/CMake/BoostTest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/CMake/BoostTest.cmake -------------------------------------------------------------------------------- /src/CMake/CallGrind.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/CMake/CallGrind.cmake -------------------------------------------------------------------------------- /src/CMake/CompilerFlags.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/CMake/CompilerFlags.cmake -------------------------------------------------------------------------------- /src/CMake/Coverage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/CMake/Coverage.cmake -------------------------------------------------------------------------------- /src/CMake/ElVisCommon.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/CMake/ElVisCommon.cmake -------------------------------------------------------------------------------- /src/CMake/ElVisConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/CMake/ElVisConfig.cmake.in -------------------------------------------------------------------------------- /src/CMake/FindCUDA.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/CMake/FindCUDA.cmake -------------------------------------------------------------------------------- /src/CMake/FindCUDA/make2cmake.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/CMake/FindCUDA/make2cmake.cmake -------------------------------------------------------------------------------- /src/CMake/FindCUDA/parse_cubin.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/CMake/FindCUDA/parse_cubin.cmake -------------------------------------------------------------------------------- /src/CMake/FindCUDA/run_nvcc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/CMake/FindCUDA/run_nvcc.cmake -------------------------------------------------------------------------------- /src/CMake/FindGLEW.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/CMake/FindGLEW.cmake -------------------------------------------------------------------------------- /src/CMake/FindOptiX.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/CMake/FindOptiX.cmake -------------------------------------------------------------------------------- /src/CMake/QTest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/CMake/QTest.cmake -------------------------------------------------------------------------------- /src/CMake/SetCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/CMake/SetCompiler.cmake -------------------------------------------------------------------------------- /src/CMake/SetupOptiX.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/CMake/SetupOptiX.cmake -------------------------------------------------------------------------------- /src/CMake/UnitTest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/CMake/UnitTest.cmake -------------------------------------------------------------------------------- /src/CMake/Valgrind.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/CMake/Valgrind.cmake -------------------------------------------------------------------------------- /src/CMake/XCodeFileGlob.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/CMake/XCodeFileGlob.cmake -------------------------------------------------------------------------------- /src/CMake/cuda_compute_capability.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/CMake/cuda_compute_capability.c -------------------------------------------------------------------------------- /src/CMake/main_boost_btest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/CMake/main_boost_btest.cpp -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Doxyfile -------------------------------------------------------------------------------- /src/ElVis/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/CMakeLists.txt -------------------------------------------------------------------------------- /src/ElVis/Core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/CMakeLists.txt -------------------------------------------------------------------------------- /src/ElVis/Core/CMakeLists.txt.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/CMakeLists.txt.bak -------------------------------------------------------------------------------- /src/ElVis/Core/Camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/Camera.cpp -------------------------------------------------------------------------------- /src/ElVis/Core/Camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/Camera.h -------------------------------------------------------------------------------- /src/ElVis/Core/Camera.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/Camera.pb.cc -------------------------------------------------------------------------------- /src/ElVis/Core/Camera.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/Camera.pb.h -------------------------------------------------------------------------------- /src/ElVis/Core/Camera.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/Camera.proto -------------------------------------------------------------------------------- /src/ElVis/Core/Color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/Color.cpp -------------------------------------------------------------------------------- /src/ElVis/Core/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/Color.h -------------------------------------------------------------------------------- /src/ElVis/Core/Color.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/Color.pb.cc -------------------------------------------------------------------------------- /src/ElVis/Core/Color.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/Color.pb.h -------------------------------------------------------------------------------- /src/ElVis/Core/Color.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/Color.proto -------------------------------------------------------------------------------- /src/ElVis/Core/ColorMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/ColorMap.cpp -------------------------------------------------------------------------------- /src/ElVis/Core/ColorMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/ColorMap.h -------------------------------------------------------------------------------- /src/ElVis/Core/ColorMap.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/ColorMap.pb.cc -------------------------------------------------------------------------------- /src/ElVis/Core/ColorMap.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/ColorMap.pb.h -------------------------------------------------------------------------------- /src/ElVis/Core/ColorMap.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/ColorMap.proto -------------------------------------------------------------------------------- /src/ElVis/Core/ColorMapperModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/ColorMapperModule.cpp -------------------------------------------------------------------------------- /src/ElVis/Core/ColorMapperModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/ColorMapperModule.h -------------------------------------------------------------------------------- /src/ElVis/Core/ColorMapperModule.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/ColorMapperModule.pb.cc -------------------------------------------------------------------------------- /src/ElVis/Core/ColorMapperModule.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/ColorMapperModule.pb.h -------------------------------------------------------------------------------- /src/ElVis/Core/ColorMapperModule.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/ColorMapperModule.proto -------------------------------------------------------------------------------- /src/ElVis/Core/ConvertToColor.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/ConvertToColor.cu -------------------------------------------------------------------------------- /src/ElVis/Core/Cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/Cuda.h -------------------------------------------------------------------------------- /src/ElVis/Core/CutCylinder.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/CutCylinder.cu -------------------------------------------------------------------------------- /src/ElVis/Core/CutSphere.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/CutSphere.cu -------------------------------------------------------------------------------- /src/ElVis/Core/CutSurfaceContourModule.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/CutSurfaceContourModule.cu -------------------------------------------------------------------------------- /src/ElVis/Core/CutSurfaceContourModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/CutSurfaceContourModule.h -------------------------------------------------------------------------------- /src/ElVis/Core/CutSurfaceMeshModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/CutSurfaceMeshModule.cpp -------------------------------------------------------------------------------- /src/ElVis/Core/CutSurfaceMeshModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/CutSurfaceMeshModule.h -------------------------------------------------------------------------------- /src/ElVis/Core/CutSurfacePayloads.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/CutSurfacePayloads.cu -------------------------------------------------------------------------------- /src/ElVis/Core/Cylinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/Cylinder.cpp -------------------------------------------------------------------------------- /src/ElVis/Core/Cylinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/Cylinder.h -------------------------------------------------------------------------------- /src/ElVis/Core/DiffuseLighting.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/DiffuseLighting.cu -------------------------------------------------------------------------------- /src/ElVis/Core/DynamicLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/DynamicLib.cpp -------------------------------------------------------------------------------- /src/ElVis/Core/DynamicLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/DynamicLib.h -------------------------------------------------------------------------------- /src/ElVis/Core/ElVisConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/ElVisConfig.cmake.in -------------------------------------------------------------------------------- /src/ElVis/Core/ElVisConfig.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/ElVisConfig.cpp.in -------------------------------------------------------------------------------- /src/ElVis/Core/ElVisConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/ElVisConfig.h -------------------------------------------------------------------------------- /src/ElVis/Core/ElVisDeclspec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/ElVisDeclspec.h -------------------------------------------------------------------------------- /src/ElVis/Core/ElVisOptiX.cu.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/ElVisOptiX.cu.in -------------------------------------------------------------------------------- /src/ElVis/Core/ElementId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/ElementId.h -------------------------------------------------------------------------------- /src/ElVis/Core/ElementTraversal.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/ElementTraversal.cu -------------------------------------------------------------------------------- /src/ElVis/Core/ExtensionPTXConfig.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/ExtensionPTXConfig.cpp.in -------------------------------------------------------------------------------- /src/ElVis/Core/ExtensionPTXConfig.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/ExtensionPTXConfig.h.in -------------------------------------------------------------------------------- /src/ElVis/Core/FaceInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/FaceInfo.h -------------------------------------------------------------------------------- /src/ElVis/Core/FaceIntersection.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/FaceIntersection.cu -------------------------------------------------------------------------------- /src/ElVis/Core/FaceObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/FaceObject.cpp -------------------------------------------------------------------------------- /src/ElVis/Core/FaceObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/FaceObject.h -------------------------------------------------------------------------------- /src/ElVis/Core/FieldEvaluator.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/FieldEvaluator.cu -------------------------------------------------------------------------------- /src/ElVis/Core/FieldInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/FieldInfo.h -------------------------------------------------------------------------------- /src/ElVis/Core/FindElement.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/FindElement.cu -------------------------------------------------------------------------------- /src/ElVis/Core/Float.cu.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/Float.cu.in -------------------------------------------------------------------------------- /src/ElVis/Core/Float.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/Float.h.in -------------------------------------------------------------------------------- /src/ElVis/Core/GaussKronrod.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/GaussKronrod.cu -------------------------------------------------------------------------------- /src/ElVis/Core/HostTransferFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/HostTransferFunction.h -------------------------------------------------------------------------------- /src/ElVis/Core/InnerIntegralFunctor.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/InnerIntegralFunctor.cu -------------------------------------------------------------------------------- /src/ElVis/Core/Interval.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/Interval.hpp -------------------------------------------------------------------------------- /src/ElVis/Core/IntervalMatrix.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/IntervalMatrix.cu -------------------------------------------------------------------------------- /src/ElVis/Core/IntervalPoint.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/IntervalPoint.cu -------------------------------------------------------------------------------- /src/ElVis/Core/IsosurfaceModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/IsosurfaceModule.cpp -------------------------------------------------------------------------------- /src/ElVis/Core/IsosurfaceModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/IsosurfaceModule.h -------------------------------------------------------------------------------- /src/ElVis/Core/IsosurfaceModule.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/IsosurfaceModule.pb.cc -------------------------------------------------------------------------------- /src/ElVis/Core/IsosurfaceModule.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/IsosurfaceModule.pb.h -------------------------------------------------------------------------------- /src/ElVis/Core/IsosurfaceModule.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/IsosurfaceModule.proto -------------------------------------------------------------------------------- /src/ElVis/Core/IsosurfaceModuleCuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/IsosurfaceModuleCuda.cu -------------------------------------------------------------------------------- /src/ElVis/Core/IsosurfaceOptiXModule.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/IsosurfaceOptiXModule.cu -------------------------------------------------------------------------------- /src/ElVis/Core/Jacobi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/Jacobi.hpp -------------------------------------------------------------------------------- /src/ElVis/Core/Light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/Light.cpp -------------------------------------------------------------------------------- /src/ElVis/Core/Light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/Light.h -------------------------------------------------------------------------------- /src/ElVis/Core/LightingModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/LightingModule.cpp -------------------------------------------------------------------------------- /src/ElVis/Core/LightingModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/LightingModule.h -------------------------------------------------------------------------------- /src/ElVis/Core/LightingModule.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/LightingModule.pb.cc -------------------------------------------------------------------------------- /src/ElVis/Core/LightingModule.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/LightingModule.pb.h -------------------------------------------------------------------------------- /src/ElVis/Core/LightingModule.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/LightingModule.proto -------------------------------------------------------------------------------- /src/ElVis/Core/Model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/Model.cpp -------------------------------------------------------------------------------- /src/ElVis/Core/Model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/Model.h -------------------------------------------------------------------------------- /src/ElVis/Core/Nodes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/Nodes.txt -------------------------------------------------------------------------------- /src/ElVis/Core/Object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/Object.cpp -------------------------------------------------------------------------------- /src/ElVis/Core/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/Object.h -------------------------------------------------------------------------------- /src/ElVis/Core/Octree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/Octree.hpp -------------------------------------------------------------------------------- /src/ElVis/Core/OpenGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/OpenGL.h -------------------------------------------------------------------------------- /src/ElVis/Core/OpenGLLighting.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/OpenGLLighting.cu -------------------------------------------------------------------------------- /src/ElVis/Core/OptiXBuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/OptiXBuffer.hpp -------------------------------------------------------------------------------- /src/ElVis/Core/OptiXExtensions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/OptiXExtensions.hpp -------------------------------------------------------------------------------- /src/ElVis/Core/OptiXSynchedObject.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ElVis/Core/OptixVariables.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/OptixVariables.cu -------------------------------------------------------------------------------- /src/ElVis/Core/PlanarFaceIntersection.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/PlanarFaceIntersection.cu -------------------------------------------------------------------------------- /src/ElVis/Core/Plane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/Plane.cpp -------------------------------------------------------------------------------- /src/ElVis/Core/Plane.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/Plane.cu -------------------------------------------------------------------------------- /src/ElVis/Core/Plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/Plane.h -------------------------------------------------------------------------------- /src/ElVis/Core/Plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/Plugin.cpp -------------------------------------------------------------------------------- /src/ElVis/Core/Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/Plugin.h -------------------------------------------------------------------------------- /src/ElVis/Core/Point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/Point.hpp -------------------------------------------------------------------------------- /src/ElVis/Core/Point.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/Point.pb.cc -------------------------------------------------------------------------------- /src/ElVis/Core/Point.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/Point.pb.h -------------------------------------------------------------------------------- /src/ElVis/Core/Point.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/Point.proto -------------------------------------------------------------------------------- /src/ElVis/Core/PrimaryRayGenerator.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/PrimaryRayGenerator.cu -------------------------------------------------------------------------------- /src/ElVis/Core/PrimaryRayModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/PrimaryRayModule.cpp -------------------------------------------------------------------------------- /src/ElVis/Core/PrimaryRayModule.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/PrimaryRayModule.cu -------------------------------------------------------------------------------- /src/ElVis/Core/PrimaryRayModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/PrimaryRayModule.h -------------------------------------------------------------------------------- /src/ElVis/Core/PrimaryRayModule.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/PrimaryRayModule.pb.cc -------------------------------------------------------------------------------- /src/ElVis/Core/PrimaryRayModule.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/PrimaryRayModule.pb.h -------------------------------------------------------------------------------- /src/ElVis/Core/PrimaryRayModule.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/PrimaryRayModule.proto -------------------------------------------------------------------------------- /src/ElVis/Core/PrimaryRayObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/PrimaryRayObject.cpp -------------------------------------------------------------------------------- /src/ElVis/Core/PrimaryRayObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/PrimaryRayObject.h -------------------------------------------------------------------------------- /src/ElVis/Core/Printf.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/Printf.cu -------------------------------------------------------------------------------- /src/ElVis/Core/PtxManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/PtxManager.cpp -------------------------------------------------------------------------------- /src/ElVis/Core/PtxManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/PtxManager.h -------------------------------------------------------------------------------- /src/ElVis/Core/RayGeneratorProgram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/RayGeneratorProgram.h -------------------------------------------------------------------------------- /src/ElVis/Core/ReferencePointParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/ReferencePointParameter.h -------------------------------------------------------------------------------- /src/ElVis/Core/RenderModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/RenderModule.cpp -------------------------------------------------------------------------------- /src/ElVis/Core/RenderModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/RenderModule.h -------------------------------------------------------------------------------- /src/ElVis/Core/RenderModule.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/RenderModule.pb.cc -------------------------------------------------------------------------------- /src/ElVis/Core/RenderModule.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/RenderModule.pb.h -------------------------------------------------------------------------------- /src/ElVis/Core/RenderModule.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/RenderModule.proto -------------------------------------------------------------------------------- /src/ElVis/Core/RenderModuleFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/RenderModuleFactory.cpp -------------------------------------------------------------------------------- /src/ElVis/Core/RenderModuleFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/RenderModuleFactory.h -------------------------------------------------------------------------------- /src/ElVis/Core/SampleFaceObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/SampleFaceObject.cpp -------------------------------------------------------------------------------- /src/ElVis/Core/SampleFaceObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/SampleFaceObject.h -------------------------------------------------------------------------------- /src/ElVis/Core/SampleOntoNrrdModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/SampleOntoNrrdModule.cpp -------------------------------------------------------------------------------- /src/ElVis/Core/SampleOntoNrrdModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/SampleOntoNrrdModule.h -------------------------------------------------------------------------------- /src/ElVis/Core/Scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/Scene.cpp -------------------------------------------------------------------------------- /src/ElVis/Core/Scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/Scene.h -------------------------------------------------------------------------------- /src/ElVis/Core/SceneView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/SceneView.cpp -------------------------------------------------------------------------------- /src/ElVis/Core/SceneView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/SceneView.h -------------------------------------------------------------------------------- /src/ElVis/Core/SceneView.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/SceneView.pb.cc -------------------------------------------------------------------------------- /src/ElVis/Core/SceneView.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/SceneView.pb.h -------------------------------------------------------------------------------- /src/ElVis/Core/SceneView.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/SceneView.proto -------------------------------------------------------------------------------- /src/ElVis/Core/SceneViewProjection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/SceneViewProjection.h -------------------------------------------------------------------------------- /src/ElVis/Core/SetupOptix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/SetupOptix.h -------------------------------------------------------------------------------- /src/ElVis/Core/Spaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/Spaces.h -------------------------------------------------------------------------------- /src/ElVis/Core/Stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/Stat.h -------------------------------------------------------------------------------- /src/ElVis/Core/SurfaceObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/SurfaceObject.cpp -------------------------------------------------------------------------------- /src/ElVis/Core/SurfaceObject.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/SurfaceObject.cu -------------------------------------------------------------------------------- /src/ElVis/Core/SurfaceObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/SurfaceObject.h -------------------------------------------------------------------------------- /src/ElVis/Core/SynchedObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/SynchedObject.hpp -------------------------------------------------------------------------------- /src/ElVis/Core/TextureColorMap.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/TextureColorMap.cu -------------------------------------------------------------------------------- /src/ElVis/Core/ThrustInterface.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/ThrustInterface.cu -------------------------------------------------------------------------------- /src/ElVis/Core/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/Timer.cpp -------------------------------------------------------------------------------- /src/ElVis/Core/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/Timer.h -------------------------------------------------------------------------------- /src/ElVis/Core/TransferFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/TransferFunction.cpp -------------------------------------------------------------------------------- /src/ElVis/Core/TransferFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/TransferFunction.h -------------------------------------------------------------------------------- /src/ElVis/Core/Triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/Triangle.cpp -------------------------------------------------------------------------------- /src/ElVis/Core/Triangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/Triangle.h -------------------------------------------------------------------------------- /src/ElVis/Core/TwoDPrimaryElements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/TwoDPrimaryElements.cpp -------------------------------------------------------------------------------- /src/ElVis/Core/TwoDPrimaryElements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/TwoDPrimaryElements.h -------------------------------------------------------------------------------- /src/ElVis/Core/Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/Util.cpp -------------------------------------------------------------------------------- /src/ElVis/Core/Util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/Util.hpp -------------------------------------------------------------------------------- /src/ElVis/Core/Vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/Vector.hpp -------------------------------------------------------------------------------- /src/ElVis/Core/VolumeRendering.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/VolumeRendering.cu -------------------------------------------------------------------------------- /src/ElVis/Core/VolumeRenderingFull.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/VolumeRenderingFull.cu -------------------------------------------------------------------------------- /src/ElVis/Core/VolumeRenderingModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/VolumeRenderingModule.cpp -------------------------------------------------------------------------------- /src/ElVis/Core/VolumeRenderingModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/VolumeRenderingModule.h -------------------------------------------------------------------------------- /src/ElVis/Core/VolumeRenderingModule.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/VolumeRenderingModule.pb.h -------------------------------------------------------------------------------- /src/ElVis/Core/VolumeRenderingPayload.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/VolumeRenderingPayload.cu -------------------------------------------------------------------------------- /src/ElVis/Core/Weights.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/Weights.txt -------------------------------------------------------------------------------- /src/ElVis/Core/jacobi.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/jacobi.cu -------------------------------------------------------------------------------- /src/ElVis/Core/matrix.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/matrix.cu -------------------------------------------------------------------------------- /src/ElVis/Core/prism.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/prism.cu -------------------------------------------------------------------------------- /src/ElVis/Core/sutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/sutil.h -------------------------------------------------------------------------------- /src/ElVis/Core/triangle.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/triangle.cu -------------------------------------------------------------------------------- /src/ElVis/Core/typedefs.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/typedefs.cu -------------------------------------------------------------------------------- /src/ElVis/Core/unitCore/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | GenerateBoostTests( ElVisCore ) -------------------------------------------------------------------------------- /src/ElVis/Core/unitCore/Color_btest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/unitCore/Color_btest.cpp -------------------------------------------------------------------------------- /src/ElVis/Core/util.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Core/util.cu -------------------------------------------------------------------------------- /src/ElVis/ElVisCLI/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/ElVisCLI/CMakeLists.txt -------------------------------------------------------------------------------- /src/ElVis/ElVisCLI/CMakeLists.txt.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/ElVisCLI/CMakeLists.txt.bak -------------------------------------------------------------------------------- /src/ElVis/ElVisCLI/NewApproachCanister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/ElVisCLI/NewApproachCanister.h -------------------------------------------------------------------------------- /src/ElVis/ElVisCLI/VolumeRendering.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/ElVisCLI/VolumeRendering.cpp -------------------------------------------------------------------------------- /src/ElVis/ElVisCLI/VolumeRendering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/ElVisCLI/VolumeRendering.h -------------------------------------------------------------------------------- /src/ElVis/ElVisCLI/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/ElVisCLI/main.cpp -------------------------------------------------------------------------------- /src/ElVis/Extensions/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Extensions/CMakeLists.txt -------------------------------------------------------------------------------- /src/ElVis/Extensions/JacobiExtension/IPolyhedron.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ElVis/Extensions/JacobiExtension/NumericalIntegration.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ElVis/Extensions/JacobiExtension/Polynomial.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ElVis/Extensions/JacobiExtension/PolynomialInterpolation.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ElVis/Extensions/NektarExtension/Flags/sim860.inc: -------------------------------------------------------------------------------- 1 | CPPFLAGS = -Dsim860 $(defines) -I$(INCDIR) 2 | -------------------------------------------------------------------------------- /src/ElVis/Gui/ApplicationState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Gui/ApplicationState.cpp -------------------------------------------------------------------------------- /src/ElVis/Gui/ApplicationState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Gui/ApplicationState.h -------------------------------------------------------------------------------- /src/ElVis/Gui/BreakpointPropertyManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Gui/BreakpointPropertyManager.h -------------------------------------------------------------------------------- /src/ElVis/Gui/Breakpoints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Gui/Breakpoints.cpp -------------------------------------------------------------------------------- /src/ElVis/Gui/Breakpoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Gui/Breakpoints.h -------------------------------------------------------------------------------- /src/ElVis/Gui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Gui/CMakeLists.txt -------------------------------------------------------------------------------- /src/ElVis/Gui/CMakeLists.txt.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Gui/CMakeLists.txt.bak -------------------------------------------------------------------------------- /src/ElVis/Gui/CameraPropertyManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Gui/CameraPropertyManager.h -------------------------------------------------------------------------------- /src/ElVis/Gui/ColorMapEditorWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Gui/ColorMapEditorWidget.cpp -------------------------------------------------------------------------------- /src/ElVis/Gui/ColorMapEditorWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Gui/ColorMapEditorWidget.h -------------------------------------------------------------------------------- /src/ElVis/Gui/ColorMapRect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Gui/ColorMapRect.cpp -------------------------------------------------------------------------------- /src/ElVis/Gui/ColorMapRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Gui/ColorMapRect.h -------------------------------------------------------------------------------- /src/ElVis/Gui/ColorMapWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Gui/ColorMapWidget.cpp -------------------------------------------------------------------------------- /src/ElVis/Gui/ColorMapWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Gui/ColorMapWidget.h -------------------------------------------------------------------------------- /src/ElVis/Gui/ColorPropertyManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Gui/ColorPropertyManager.h -------------------------------------------------------------------------------- /src/ElVis/Gui/ContourDockWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Gui/ContourDockWidget.cpp -------------------------------------------------------------------------------- /src/ElVis/Gui/ContourDockWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Gui/ContourDockWidget.h -------------------------------------------------------------------------------- /src/ElVis/Gui/DebugSettingsDockWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Gui/DebugSettingsDockWidget.cpp -------------------------------------------------------------------------------- /src/ElVis/Gui/DebugSettingsDockWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Gui/DebugSettingsDockWidget.h -------------------------------------------------------------------------------- /src/ElVis/Gui/ElVis.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Gui/ElVis.qss -------------------------------------------------------------------------------- /src/ElVis/Gui/ElVis.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Gui/ElVis.ui -------------------------------------------------------------------------------- /src/ElVis/Gui/ElVisUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Gui/ElVisUI.cpp -------------------------------------------------------------------------------- /src/ElVis/Gui/ElVisUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Gui/ElVisUI.h -------------------------------------------------------------------------------- /src/ElVis/Gui/IsosurfaceDockWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Gui/IsosurfaceDockWidget.cpp -------------------------------------------------------------------------------- /src/ElVis/Gui/IsosurfaceDockWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Gui/IsosurfaceDockWidget.h -------------------------------------------------------------------------------- /src/ElVis/Gui/LightingDockWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Gui/LightingDockWidget.cpp -------------------------------------------------------------------------------- /src/ElVis/Gui/LightingDockWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Gui/LightingDockWidget.h -------------------------------------------------------------------------------- /src/ElVis/Gui/ModelInspectorWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Gui/ModelInspectorWidget.cpp -------------------------------------------------------------------------------- /src/ElVis/Gui/ModelInspectorWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Gui/ModelInspectorWidget.h -------------------------------------------------------------------------------- /src/ElVis/Gui/ObjectInspectorUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Gui/ObjectInspectorUI.cpp -------------------------------------------------------------------------------- /src/ElVis/Gui/ObjectInspectorUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Gui/ObjectInspectorUI.h -------------------------------------------------------------------------------- /src/ElVis/Gui/PlanePropertyManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Gui/PlanePropertyManager.h -------------------------------------------------------------------------------- /src/ElVis/Gui/PointPropertyManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Gui/PointPropertyManager.h -------------------------------------------------------------------------------- /src/ElVis/Gui/Property.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Gui/Property.hpp -------------------------------------------------------------------------------- /src/ElVis/Gui/RenderSettingsDockWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Gui/RenderSettingsDockWidget.h -------------------------------------------------------------------------------- /src/ElVis/Gui/SampleOntoNrrdDockWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Gui/SampleOntoNrrdDockWidget.h -------------------------------------------------------------------------------- /src/ElVis/Gui/SceneItemsDockWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Gui/SceneItemsDockWidget.cpp -------------------------------------------------------------------------------- /src/ElVis/Gui/SceneItemsDockWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Gui/SceneItemsDockWidget.h -------------------------------------------------------------------------------- /src/ElVis/Gui/SceneViewWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Gui/SceneViewWidget.cpp -------------------------------------------------------------------------------- /src/ElVis/Gui/SceneViewWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Gui/SceneViewWidget.h -------------------------------------------------------------------------------- /src/ElVis/Gui/VectorPropertyManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Gui/VectorPropertyManager.h -------------------------------------------------------------------------------- /src/ElVis/Gui/ViewSettingsUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Gui/ViewSettingsUI.cpp -------------------------------------------------------------------------------- /src/ElVis/Gui/ViewSettingsUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Gui/ViewSettingsUI.h -------------------------------------------------------------------------------- /src/ElVis/Gui/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Gui/main.cpp -------------------------------------------------------------------------------- /src/ElVis/Gui/unitGui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Gui/unitGui/CMakeLists.txt -------------------------------------------------------------------------------- /src/ElVis/Gui/unitGui/Example_btest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Gui/unitGui/Example_btest.cpp -------------------------------------------------------------------------------- /src/ElVis/Gui/unitGui/qstring_qtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Gui/unitGui/qstring_qtest.cpp -------------------------------------------------------------------------------- /src/ElVis/Math/AdaptiveQuadrature.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Math/AdaptiveQuadrature.hpp -------------------------------------------------------------------------------- /src/ElVis/Math/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Math/CMakeLists.txt -------------------------------------------------------------------------------- /src/ElVis/Math/GaussLegendreQuadrature.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ElVis/Math/Integration.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ElVis/Math/Integration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Math/Integration.hpp -------------------------------------------------------------------------------- /src/ElVis/Math/Jacobi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Math/Jacobi.hpp -------------------------------------------------------------------------------- /src/ElVis/Math/Polynomial.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Math/Polynomial.hpp -------------------------------------------------------------------------------- /src/ElVis/Math/PolynomialProjection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Math/PolynomialProjection.hpp -------------------------------------------------------------------------------- /src/ElVis/Math/TrapezoidalIntegration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/Math/TrapezoidalIntegration.hpp -------------------------------------------------------------------------------- /src/ElVis/ModelConversion/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/ElVis/ModelConversion/CMakeLists.txt -------------------------------------------------------------------------------- /src/ElVis/ModelConversion/NektarConversion/Flags/sim860.inc: -------------------------------------------------------------------------------- 1 | CPPFLAGS = -Dsim860 $(defines) -I$(INCDIR) 2 | -------------------------------------------------------------------------------- /src/ElVis/QtPropertyBrowser/QtAbstractEditorFactoryBase: -------------------------------------------------------------------------------- 1 | #include "qtpropertybrowser.h" 2 | -------------------------------------------------------------------------------- /src/ElVis/QtPropertyBrowser/QtAbstractPropertyBrowser: -------------------------------------------------------------------------------- 1 | #include "qtpropertybrowser.h" 2 | -------------------------------------------------------------------------------- /src/ElVis/QtPropertyBrowser/QtAbstractPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertybrowser.h" 2 | -------------------------------------------------------------------------------- /src/ElVis/QtPropertyBrowser/QtBoolPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /src/ElVis/QtPropertyBrowser/QtBrowserItem: -------------------------------------------------------------------------------- 1 | #include "qtpropertybrowser.h" 2 | -------------------------------------------------------------------------------- /src/ElVis/QtPropertyBrowser/QtButtonPropertyBrowser: -------------------------------------------------------------------------------- 1 | #include "qtbuttonpropertybrowser.h" 2 | -------------------------------------------------------------------------------- /src/ElVis/QtPropertyBrowser/QtCharEditorFactory: -------------------------------------------------------------------------------- 1 | #include "qteditorfactory.h" 2 | -------------------------------------------------------------------------------- /src/ElVis/QtPropertyBrowser/QtCharPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /src/ElVis/QtPropertyBrowser/QtCheckBoxFactory: -------------------------------------------------------------------------------- 1 | #include "qteditorfactory.h" 2 | -------------------------------------------------------------------------------- /src/ElVis/QtPropertyBrowser/QtColorEditorFactory: -------------------------------------------------------------------------------- 1 | #include "qteditorfactory.h" 2 | -------------------------------------------------------------------------------- /src/ElVis/QtPropertyBrowser/QtColorPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /src/ElVis/QtPropertyBrowser/QtCursorEditorFactory: -------------------------------------------------------------------------------- 1 | #include "qteditorfactory.h" 2 | -------------------------------------------------------------------------------- /src/ElVis/QtPropertyBrowser/QtCursorPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /src/ElVis/QtPropertyBrowser/QtDateEditFactory: -------------------------------------------------------------------------------- 1 | #include "qteditorfactory.h" 2 | -------------------------------------------------------------------------------- /src/ElVis/QtPropertyBrowser/QtDatePropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /src/ElVis/QtPropertyBrowser/QtDateTimeEditFactory: -------------------------------------------------------------------------------- 1 | #include "qteditorfactory.h" 2 | -------------------------------------------------------------------------------- /src/ElVis/QtPropertyBrowser/QtDateTimePropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /src/ElVis/QtPropertyBrowser/QtDoublePropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /src/ElVis/QtPropertyBrowser/QtDoubleSpinBoxFactory: -------------------------------------------------------------------------------- 1 | #include "qteditorfactory.h" 2 | -------------------------------------------------------------------------------- /src/ElVis/QtPropertyBrowser/QtEnumEditorFactory: -------------------------------------------------------------------------------- 1 | #include "qteditorfactory.h" 2 | -------------------------------------------------------------------------------- /src/ElVis/QtPropertyBrowser/QtEnumPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /src/ElVis/QtPropertyBrowser/QtFlagPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /src/ElVis/QtPropertyBrowser/QtFontEditorFactory: -------------------------------------------------------------------------------- 1 | #include "qteditorfactory.h" 2 | -------------------------------------------------------------------------------- /src/ElVis/QtPropertyBrowser/QtFontPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /src/ElVis/QtPropertyBrowser/QtGroupBoxPropertyBrowser: -------------------------------------------------------------------------------- 1 | #include "qtgroupboxpropertybrowser.h" 2 | -------------------------------------------------------------------------------- /src/ElVis/QtPropertyBrowser/QtGroupPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /src/ElVis/QtPropertyBrowser/QtIntPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /src/ElVis/QtPropertyBrowser/QtKeySequenceEditorFactory: -------------------------------------------------------------------------------- 1 | #include "qteditorfactory.h" 2 | -------------------------------------------------------------------------------- /src/ElVis/QtPropertyBrowser/QtKeySequencePropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /src/ElVis/QtPropertyBrowser/QtLineEditFactory: -------------------------------------------------------------------------------- 1 | #include "qteditorfactory.h" 2 | -------------------------------------------------------------------------------- /src/ElVis/QtPropertyBrowser/QtLocalePropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /src/ElVis/QtPropertyBrowser/QtPointFPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /src/ElVis/QtPropertyBrowser/QtPointPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /src/ElVis/QtPropertyBrowser/QtProperty: -------------------------------------------------------------------------------- 1 | #include "qtpropertybrowser.h" 2 | -------------------------------------------------------------------------------- /src/ElVis/QtPropertyBrowser/QtRectFPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /src/ElVis/QtPropertyBrowser/QtRectPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /src/ElVis/QtPropertyBrowser/QtScrollBarFactory: -------------------------------------------------------------------------------- 1 | #include "qteditorfactory.h" 2 | -------------------------------------------------------------------------------- /src/ElVis/QtPropertyBrowser/QtSizeFPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /src/ElVis/QtPropertyBrowser/QtSizePolicyPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /src/ElVis/QtPropertyBrowser/QtSizePropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /src/ElVis/QtPropertyBrowser/QtSliderFactory: -------------------------------------------------------------------------------- 1 | #include "qteditorfactory.h" 2 | -------------------------------------------------------------------------------- /src/ElVis/QtPropertyBrowser/QtSpinBoxFactory: -------------------------------------------------------------------------------- 1 | #include "qteditorfactory.h" 2 | -------------------------------------------------------------------------------- /src/ElVis/QtPropertyBrowser/QtStringPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /src/ElVis/QtPropertyBrowser/QtTimeEditFactory: -------------------------------------------------------------------------------- 1 | #include "qteditorfactory.h" 2 | -------------------------------------------------------------------------------- /src/ElVis/QtPropertyBrowser/QtTimePropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /src/ElVis/QtPropertyBrowser/QtTreePropertyBrowser: -------------------------------------------------------------------------------- 1 | #include "qttreepropertybrowser.h" 2 | -------------------------------------------------------------------------------- /src/ElVis/QtPropertyBrowser/QtVariantEditorFactory: -------------------------------------------------------------------------------- 1 | #include "qtvariantproperty.h" 2 | -------------------------------------------------------------------------------- /src/ElVis/QtPropertyBrowser/QtVariantProperty: -------------------------------------------------------------------------------- 1 | #include "qtvariantproperty.h" 2 | -------------------------------------------------------------------------------- /src/ElVis/QtPropertyBrowser/QtVariantPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtvariantproperty.h" 2 | -------------------------------------------------------------------------------- /src/Externals/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/CMakeLists.txt -------------------------------------------------------------------------------- /src/Externals/boost/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/CMakeLists.txt -------------------------------------------------------------------------------- /src/Externals/boost/LICENSE_1_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/LICENSE_1_0.txt -------------------------------------------------------------------------------- /src/Externals/boost/Modifications.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/Modifications.txt -------------------------------------------------------------------------------- /src/Externals/boost/boost/any.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/any.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/array.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/asio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/asio.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/asio/buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/asio/buffer.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/asio/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/asio/error.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/asio/ip/tcp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/asio/ip/tcp.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/asio/ip/udp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/asio/ip/udp.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/asio/read.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/asio/read.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/asio/spawn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/asio/spawn.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/asio/ssl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/asio/ssl.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/asio/strand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/asio/strand.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/asio/write.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/asio/write.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/asio/yield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/asio/yield.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/assert.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/assign.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/assign.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/assign/std.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/assign/std.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/atomic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/atomic.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/bimap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/bimap.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/bimap/bimap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/bimap/bimap.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/bind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/bind.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/bind/apply.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/bind/apply.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/bind/arg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/bind/arg.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/bind/bind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/bind/bind.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/bind/mem_fn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/bind/mem_fn.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/blank.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/blank.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/blank_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/blank_fwd.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/call_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/call_traits.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/cast.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/cerrno.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/cerrno.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/chrono.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/chrono.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/chrono/ceil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/chrono/ceil.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/config.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/config/user.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/config/user.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/context/all.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/context/all.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/crc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/crc.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/cregex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/cregex.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/cstdint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/cstdint.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/cstdlib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/cstdlib.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/date_time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/date_time.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/detail/fenv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/detail/fenv.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/exception.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/filesystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/filesystem.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/flyweight.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/flyweight.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/foreach.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/foreach.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/foreach_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/foreach_fwd.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/format.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/function.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/functional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/functional.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/fusion/mpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/fusion/mpl.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/fusion/view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/fusion/view.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/geometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/geometry.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/get_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/get_pointer.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/gil/channel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/gil/channel.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/gil/cmyk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/gil/cmyk.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/gil/gil_all.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/gil/gil_all.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/gil/gray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/gil/gray.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/gil/image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/gil/image.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/gil/locator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/gil/locator.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/gil/pixel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/gil/pixel.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/gil/rgb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/gil/rgb.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/gil/rgba.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/gil/rgba.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/graph/copy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/graph/copy.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/graph/metis.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/graph/metis.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/graph/relax.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/graph/relax.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/icl/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/icl/map.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/icl/ptime.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/icl/ptime.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/icl/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/icl/set.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/integer.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/integer_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/integer_fwd.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/io_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/io_fwd.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/iterator.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/lambda/bind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/lambda/bind.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/lambda/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/lambda/core.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/lambda/if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/lambda/if.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/last_value.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/last_value.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/limits.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/locale.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/locale.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/locale/info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/locale/info.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/locale/utf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/locale/utf.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/locale/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/locale/util.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/log/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/log/common.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/log/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/log/core.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/log/sinks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/log/sinks.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/log/trivial.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/log/trivial.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/make_shared.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/make_shared.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/math/tr1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/math/tr1.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/math_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/math_fwd.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mem_fn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mem_fn.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/move/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/move/core.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/move/move.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/move/move.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/move/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/move/traits.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpi.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpi/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpi/config.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpi/group.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpi/group.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpi/python.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpi/python.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpi/request.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpi/request.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpi/status.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpi/status.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpi/timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpi/timer.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/O1_size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/O1_size.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/advance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/advance.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/alias.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/alias.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/always.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/always.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/and.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/and.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/apply.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/apply.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/arg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/arg.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/arg_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/arg_fwd.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/assert.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/at.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/at_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/at_fwd.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/aux_/na.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/aux_/na.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/back.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/base.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/begin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/begin.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/bind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/bind.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/bitand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/bitand.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/bitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/bitor.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/bitwise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/bitwise.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/bitxor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/bitxor.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/bool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/bool.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/char.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/char.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/clear.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/clear.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/copy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/copy.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/copy_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/copy_if.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/count.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/count.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/deque.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/deque.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/deref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/deref.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/divides.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/divides.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/empty.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/end.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/equal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/equal.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/erase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/erase.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/eval_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/eval_if.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/find.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/find.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/find_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/find_if.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/fold.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/fold.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/front.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/greater.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/greater.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/has_key.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/has_key.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/has_xxx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/has_xxx.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/if.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/inherit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/inherit.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/insert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/insert.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/int.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/int_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/int_fwd.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/lambda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/lambda.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/less.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/less.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/list.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/list_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/list_c.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/logical.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/logical.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/long.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/long.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/map.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/max.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/min.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/min.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/min_max.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/minus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/minus.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/modulus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/modulus.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/negate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/negate.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/next.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/next.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/not.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/not.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/or.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/or.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/order.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/order.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/pair.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/pair.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/plus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/plus.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/print.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/print.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/prior.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/prior.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/protect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/protect.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/quote.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/quote.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/range_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/range_c.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/remove.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/remove.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/replace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/replace.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/reverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/reverse.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/same_as.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/same_as.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/set.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/set_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/set_c.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/size.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/size_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/size_t.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/sizeof.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/sizeof.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/sort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/sort.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/string.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/switch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/switch.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/tag.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/times.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/times.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/unique.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/unique.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/vector.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/mpl/void.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/mpl/void.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/msm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/msm/common.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/multi_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/multi_array.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/next_prior.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/next_prior.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/non_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/non_type.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/noncopyable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/noncopyable.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/none.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/none.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/none_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/none_t.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/operators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/operators.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/optional.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/parameter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/parameter.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/phoenix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/phoenix.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/phoenix/stl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/phoenix/stl.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/pointee.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/pointee.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/polygon/gtl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/polygon/gtl.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/pool/pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/pool/pool.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/progress.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/progress.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/proto/args.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/proto/args.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/proto/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/proto/core.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/proto/debug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/proto/debug.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/proto/eval.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/proto/eval.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/proto/expr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/proto/expr.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/proto/proto.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/proto/proto.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/proto/tags.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/proto/tags.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/python.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/python.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/python/args.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/python/args.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/python/call.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/python/call.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/python/cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/python/cast.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/python/def.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/python/def.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/python/dict.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/python/dict.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/python/enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/python/enum.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/python/exec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/python/exec.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/python/init.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/python/init.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/python/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/python/list.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/python/long.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/python/long.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/python/ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/python/ptr.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/python/self.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/python/self.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/python/str.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/python/str.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/python/tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/python/tag.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/random.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/range.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/range/atl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/range/atl.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/range/begin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/range/begin.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/range/empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/range/empty.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/range/end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/range/end.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/range/join.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/range/join.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/range/mfc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/range/mfc.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/range/rend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/range/rend.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/range/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/range/size.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/ratio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/ratio.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/ratio/ratio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/ratio/ratio.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/rational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/rational.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/ref.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/regex.h -------------------------------------------------------------------------------- /src/Externals/boost/boost/regex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/regex.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/regex/icu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/regex/icu.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/regex/mfc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/regex/mfc.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/regex/user.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/regex/user.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/regex_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/regex_fwd.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/scope_exit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/scope_exit.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/scoped_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/scoped_ptr.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/shared_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/shared_ptr.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/signal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/signal.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/signals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/signals.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/signals2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/signals2.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/smart_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/smart_ptr.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/spirit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/spirit.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/swap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/swap.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/test/debug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/test/debug.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/thread.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/thread/once.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/thread/once.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/thread/tss.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/thread/tss.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/timer.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/timer/timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/timer/timer.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/tokenizer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/tokenizer.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/tr1/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/tr1/array.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/tr1/cmath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/tr1/cmath.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/tr1/complex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/tr1/complex.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/tr1/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/tr1/memory.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/tr1/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/tr1/random.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/tr1/regex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/tr1/regex.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/tr1/tr1/array: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/tr1/tr1/array -------------------------------------------------------------------------------- /src/Externals/boost/boost/tr1/tr1/bitset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/tr1/tr1/bitset -------------------------------------------------------------------------------- /src/Externals/boost/boost/tr1/tr1/cmath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/tr1/tr1/cmath -------------------------------------------------------------------------------- /src/Externals/boost/boost/tr1/tr1/complex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/tr1/tr1/complex -------------------------------------------------------------------------------- /src/Externals/boost/boost/tr1/tr1/deque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/tr1/tr1/deque -------------------------------------------------------------------------------- /src/Externals/boost/boost/tr1/tr1/fstream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/tr1/tr1/fstream -------------------------------------------------------------------------------- /src/Externals/boost/boost/tr1/tr1/ios: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/tr1/tr1/ios -------------------------------------------------------------------------------- /src/Externals/boost/boost/tr1/tr1/list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/tr1/tr1/list -------------------------------------------------------------------------------- /src/Externals/boost/boost/tr1/tr1/map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/tr1/tr1/map -------------------------------------------------------------------------------- /src/Externals/boost/boost/tr1/tr1/new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/tr1/tr1/new -------------------------------------------------------------------------------- /src/Externals/boost/boost/tr1/tr1/set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/tr1/tr1/set -------------------------------------------------------------------------------- /src/Externals/boost/boost/tti/tti.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/tti/tti.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/type.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/units/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/units/io.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/utility.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/variant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/variant.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/version.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/wave.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/wave.hpp -------------------------------------------------------------------------------- /src/Externals/boost/boost/weak_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/boost/weak_ptr.hpp -------------------------------------------------------------------------------- /src/Externals/boost/libs/filesystem/doc/src/boost-no-inspect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Externals/boost/libs/graph/example/bellman_ford.expected: -------------------------------------------------------------------------------- 1 | u: 2 v 2 | v: 4 x 3 | x: 7 z 4 | y: -2 u 5 | z: 0 z 6 | -------------------------------------------------------------------------------- /src/Externals/boost/libs/graph/example/concept_checks.expected: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Externals/boost/libs/graph/example/container_gen.expected: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Externals/boost/libs/graph/example/dfs_parenthesis.expected: -------------------------------------------------------------------------------- 1 | DFS parenthesis: 2 | (0(2(1(3(44)3)1)2)0) 3 | -------------------------------------------------------------------------------- /src/Externals/boost/libs/graph/example/fibonacci_heap.expected: -------------------------------------------------------------------------------- 1 | fibonacci heap passed test 2 | -------------------------------------------------------------------------------- /src/Externals/boost/libs/graph/example/modify_graph.expected: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Externals/boost/libs/graph/example/topo_sort.expected: -------------------------------------------------------------------------------- 1 | A topological ordering: 2 5 0 1 4 3 2 | -------------------------------------------------------------------------------- /src/Externals/boost/libs/graph/test/planar_input_graphs/planar_non_con_p0.dimacs: -------------------------------------------------------------------------------- 1 | p edge 4 2 2 | e 1 0 3 | e 3 1 4 | -------------------------------------------------------------------------------- /src/Externals/boost/libs/graph/test/planar_input_graphs/planar_non_con_p1.dimacs: -------------------------------------------------------------------------------- 1 | p edge 4 2 2 | e 2 3 3 | e 3 0 4 | -------------------------------------------------------------------------------- /src/Externals/boost/libs/graph/test/planar_input_graphs/planar_non_con_p2.dimacs: -------------------------------------------------------------------------------- 1 | p edge 4 2 2 | e 0 1 3 | e 1 3 4 | -------------------------------------------------------------------------------- /src/Externals/boost/libs/graph/test/planar_input_graphs/planar_non_con_p5.dimacs: -------------------------------------------------------------------------------- 1 | p edge 4 2 2 | e 1 3 3 | e 2 1 4 | -------------------------------------------------------------------------------- /src/Externals/boost/libs/graph/test/planar_input_graphs/planar_non_con_p7.dimacs: -------------------------------------------------------------------------------- 1 | p edge 4 2 2 | e 0 1 3 | e 3 0 4 | -------------------------------------------------------------------------------- /src/Externals/boost/libs/graph/test/planar_input_graphs/planar_non_con_p9.dimacs: -------------------------------------------------------------------------------- 1 | p edge 4 2 2 | e 0 1 3 | e 1 3 4 | -------------------------------------------------------------------------------- /src/Externals/boost/libs/program_options/example/response_file.rsp: -------------------------------------------------------------------------------- 1 | -I bar 2 | -I biz 3 | --magic 10 -------------------------------------------------------------------------------- /src/Externals/boost/libs/python/pyste/tests/vars.pyste: -------------------------------------------------------------------------------- 1 | AllFromHeader('vars.h') 2 | -------------------------------------------------------------------------------- /src/Externals/boost/libs/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/boost/libs/test/README -------------------------------------------------------------------------------- /src/Externals/boost/libs/test/doc/src/examples/example13.output: -------------------------------------------------------------------------------- 1 | > example 1 2 | Test setup error: test tree is empty -------------------------------------------------------------------------------- /src/Externals/boost/libs/test/doc/src/examples/example24.output: -------------------------------------------------------------------------------- 1 | Hello, world 2 | 3 | no errors detected -------------------------------------------------------------------------------- /src/Externals/boost/libs/test/doc/src/examples/example27.output: -------------------------------------------------------------------------------- 1 | 2 | **** no errors detected 3 | -------------------------------------------------------------------------------- /src/Externals/boost/libs/test/test/test_files/cfg_file_tst3.cfg: -------------------------------------------------------------------------------- 1 | par1 = 1 2 | -------------------------------------------------------------------------------- /src/Externals/boost/libs/test/test/test_files/cfg_file_tst4.cfg: -------------------------------------------------------------------------------- 1 | NS::par2 = 1 2 2 | -------------------------------------------------------------------------------- /src/Externals/boost/libs/test/test/test_files/cfg_file_tst5.cfg: -------------------------------------------------------------------------------- 1 | NS::par2 => 2 2 | -------------------------------------------------------------------------------- /src/Externals/boost/libs/test/test/test_files/cfg_file_tst6.cfg: -------------------------------------------------------------------------------- 1 | par1 1 2 | -------------------------------------------------------------------------------- /src/Externals/boost/libs/test/test/test_files/cfg_file_tst7.cfg: -------------------------------------------------------------------------------- 1 | NS1/NS2/par 1 2 | -------------------------------------------------------------------------------- /src/Externals/boost/libs/test/test/test_files/ifstream_line_iterator.tst1: -------------------------------------------------------------------------------- 1 | acv ffg 2 | 3 | 4 | 1 -------------------------------------------------------------------------------- /src/Externals/boost/libs/test/test/test_files/ifstream_line_iterator.tst2: -------------------------------------------------------------------------------- 1 | { abc d } 2 | { d 3 | dsfg 4 | } 5 | -------------------------------------------------------------------------------- /src/Externals/boost/libs/test/test/test_files/par_alias2.cfg: -------------------------------------------------------------------------------- 1 | #not exitent parameter 2 | par1 BLA::bla 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/Externals/boost/libs/test/test/test_files/test_constructor.cfg: -------------------------------------------------------------------------------- 1 | { abc d } 2 | { d 3 | dsfg 4 | } 5 | -------------------------------------------------------------------------------- /src/Externals/boost/libs/test/test/test_files/test_ifdef1.cfg: -------------------------------------------------------------------------------- 1 | $ifdef -------------------------------------------------------------------------------- /src/Externals/boost/libs/test/test/test_files/test_ifdef2.cfg: -------------------------------------------------------------------------------- 1 | $ifdef 2 | $else 3 | -------------------------------------------------------------------------------- /src/Externals/boost/libs/test/test/test_files/test_ifdef3.cfg: -------------------------------------------------------------------------------- 1 | $else 2 | $endif 3 | 4 | -------------------------------------------------------------------------------- /src/Externals/boost/libs/test/test/test_files/test_ifdef4.cfg: -------------------------------------------------------------------------------- 1 | $endif 2 | 3 | -------------------------------------------------------------------------------- /src/Externals/boost/libs/test/test/test_files/test_include1_include1.cfg: -------------------------------------------------------------------------------- 1 | c 2 | -------------------------------------------------------------------------------- /src/Externals/boost/libs/test/test/test_files/test_incomplete_broken_line.cfg: -------------------------------------------------------------------------------- 1 | a\ 2 | -------------------------------------------------------------------------------- /src/Externals/boost/libs/test/test/test_files/test_macro_subst1.cfg: -------------------------------------------------------------------------------- 1 | a$aa$ -------------------------------------------------------------------------------- /src/Externals/boost/libs/test/test/test_files/test_macro_subst2.cfg: -------------------------------------------------------------------------------- 1 | a$TEST_MACRO$ -------------------------------------------------------------------------------- /src/Externals/boost/libs/test/test/test_files/test_macro_subst3.cfg: -------------------------------------------------------------------------------- 1 | a$1a$ -------------------------------------------------------------------------------- /src/Externals/boost/libs/test/test/test_files/test_macro_subst4.cfg: -------------------------------------------------------------------------------- 1 | $define AA bb 2 | a$AA$ -------------------------------------------------------------------------------- /src/Externals/boost/libs/test/test/test_files/test_multipart_value1.cfg: -------------------------------------------------------------------------------- 1 | a " 2 | -------------------------------------------------------------------------------- /src/Externals/boost/libs/test/test/test_files/test_multipart_value10.cfg: -------------------------------------------------------------------------------- 1 | a abc"def 2 | -------------------------------------------------------------------------------- /src/Externals/boost/libs/test/test/test_files/test_multipart_value11.cfg: -------------------------------------------------------------------------------- 1 | a "abc" 123 "def" 2 | -------------------------------------------------------------------------------- /src/Externals/boost/libs/test/test/test_files/test_multipart_value12.cfg: -------------------------------------------------------------------------------- 1 | a abc " 123 " def 2 | -------------------------------------------------------------------------------- /src/Externals/boost/libs/test/test/test_files/test_multipart_value13.cfg: -------------------------------------------------------------------------------- 1 | a \"abc\" 2 | -------------------------------------------------------------------------------- /src/Externals/boost/libs/test/test/test_files/test_multipart_value2.cfg: -------------------------------------------------------------------------------- 1 | a "" 2 | -------------------------------------------------------------------------------- /src/Externals/boost/libs/test/test/test_files/test_multipart_value3.cfg: -------------------------------------------------------------------------------- 1 | a """ 2 | -------------------------------------------------------------------------------- /src/Externals/boost/libs/test/test/test_files/test_multipart_value4.cfg: -------------------------------------------------------------------------------- 1 | a "\"" 2 | -------------------------------------------------------------------------------- /src/Externals/boost/libs/test/test/test_files/test_multipart_value5.cfg: -------------------------------------------------------------------------------- 1 | a abc"" 2 | -------------------------------------------------------------------------------- /src/Externals/boost/libs/test/test/test_files/test_multipart_value6.cfg: -------------------------------------------------------------------------------- 1 | a abc" 2 | -------------------------------------------------------------------------------- /src/Externals/boost/libs/test/test/test_files/test_multipart_value7.cfg: -------------------------------------------------------------------------------- 1 | a "abc 2 | -------------------------------------------------------------------------------- /src/Externals/boost/libs/test/test/test_files/test_multipart_value8.cfg: -------------------------------------------------------------------------------- 1 | a "abc" "def" 2 | -------------------------------------------------------------------------------- /src/Externals/glew/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/glew/CMakeLists.txt -------------------------------------------------------------------------------- /src/Externals/glew/glew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/glew/glew.c -------------------------------------------------------------------------------- /src/Externals/glew/include/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/glew/include/GL/glew.h -------------------------------------------------------------------------------- /src/Externals/glew/include/GL/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/glew/include/GL/glxew.h -------------------------------------------------------------------------------- /src/Externals/glew/include/GL/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/glew/include/GL/wglew.h -------------------------------------------------------------------------------- /src/Externals/glut/include/GL/glut.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/glut/include/GL/glut.def -------------------------------------------------------------------------------- /src/Externals/glut/include/GL/glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/glut/include/GL/glut.h -------------------------------------------------------------------------------- /src/Externals/glut/release/glut32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/glut/release/glut32.lib -------------------------------------------------------------------------------- /src/Externals/glut/release/glut64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/glut/release/glut64.dll -------------------------------------------------------------------------------- /src/Externals/glut/release/glut64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/glut/release/glut64.lib -------------------------------------------------------------------------------- /src/Externals/jenkins/ElVis_Commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/jenkins/ElVis_Commit.sh -------------------------------------------------------------------------------- /src/Externals/jenkins/ElVis_Nightly.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/jenkins/ElVis_Nightly.sh -------------------------------------------------------------------------------- /src/Externals/jenkins/ElVis_Weekly.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/jenkins/ElVis_Weekly.sh -------------------------------------------------------------------------------- /src/Externals/jenkins/ElVis_parse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/jenkins/ElVis_parse -------------------------------------------------------------------------------- /src/Externals/jenkins/Makefile.jenkins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/jenkins/Makefile.jenkins -------------------------------------------------------------------------------- /src/Externals/jenkins/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/jenkins/README.txt -------------------------------------------------------------------------------- /src/Externals/jenkins/cmake_jenkins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/jenkins/cmake_jenkins.sh -------------------------------------------------------------------------------- /src/Externals/jenkins/jenkins_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/jenkins/jenkins_env.sh -------------------------------------------------------------------------------- /src/Externals/libpng/ANNOUNCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/libpng/ANNOUNCE -------------------------------------------------------------------------------- /src/Externals/libpng/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/libpng/CHANGES -------------------------------------------------------------------------------- /src/Externals/libpng/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/libpng/CMakeLists.txt -------------------------------------------------------------------------------- /src/Externals/libpng/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/libpng/INSTALL -------------------------------------------------------------------------------- /src/Externals/libpng/KNOWNBUG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/libpng/KNOWNBUG -------------------------------------------------------------------------------- /src/Externals/libpng/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/libpng/LICENSE -------------------------------------------------------------------------------- /src/Externals/libpng/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/libpng/README -------------------------------------------------------------------------------- /src/Externals/libpng/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/libpng/TODO -------------------------------------------------------------------------------- /src/Externals/libpng/Y2KINFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/libpng/Y2KINFO -------------------------------------------------------------------------------- /src/Externals/libpng/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/libpng/example.c -------------------------------------------------------------------------------- /src/Externals/libpng/libpng-1.2.35.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/libpng/libpng-1.2.35.txt -------------------------------------------------------------------------------- /src/Externals/libpng/libpng.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/libpng/libpng.3 -------------------------------------------------------------------------------- /src/Externals/libpng/libpngpf.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/libpng/libpngpf.3 -------------------------------------------------------------------------------- /src/Externals/libpng/png.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/libpng/png.5 -------------------------------------------------------------------------------- /src/Externals/libpng/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/libpng/png.c -------------------------------------------------------------------------------- /src/Externals/libpng/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/libpng/png.h -------------------------------------------------------------------------------- /src/Externals/libpng/pngbar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/libpng/pngbar.jpg -------------------------------------------------------------------------------- /src/Externals/libpng/pngbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/libpng/pngbar.png -------------------------------------------------------------------------------- /src/Externals/libpng/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/libpng/pngconf.h -------------------------------------------------------------------------------- /src/Externals/libpng/pngerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/libpng/pngerror.c -------------------------------------------------------------------------------- /src/Externals/libpng/pnggccrd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/libpng/pnggccrd.c -------------------------------------------------------------------------------- /src/Externals/libpng/pngget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/libpng/pngget.c -------------------------------------------------------------------------------- /src/Externals/libpng/pngmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/libpng/pngmem.c -------------------------------------------------------------------------------- /src/Externals/libpng/pngnow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/libpng/pngnow.png -------------------------------------------------------------------------------- /src/Externals/libpng/pngpread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/libpng/pngpread.c -------------------------------------------------------------------------------- /src/Externals/libpng/pngread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/libpng/pngread.c -------------------------------------------------------------------------------- /src/Externals/libpng/pngrio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/libpng/pngrio.c -------------------------------------------------------------------------------- /src/Externals/libpng/pngrtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/libpng/pngrtran.c -------------------------------------------------------------------------------- /src/Externals/libpng/pngrutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/libpng/pngrutil.c -------------------------------------------------------------------------------- /src/Externals/libpng/pngset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/libpng/pngset.c -------------------------------------------------------------------------------- /src/Externals/libpng/pngtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/libpng/pngtest.c -------------------------------------------------------------------------------- /src/Externals/libpng/pngtest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/libpng/pngtest.png -------------------------------------------------------------------------------- /src/Externals/libpng/pngtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/libpng/pngtrans.c -------------------------------------------------------------------------------- /src/Externals/libpng/pngvcrd.c: -------------------------------------------------------------------------------- 1 | /* pnggvrd.c was removed from libpng-1.2.20. */ 2 | -------------------------------------------------------------------------------- /src/Externals/libpng/pngwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/libpng/pngwio.c -------------------------------------------------------------------------------- /src/Externals/libpng/pngwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/libpng/pngwrite.c -------------------------------------------------------------------------------- /src/Externals/libpng/pngwtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/libpng/pngwtran.c -------------------------------------------------------------------------------- /src/Externals/libpng/pngwutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/libpng/pngwutil.c -------------------------------------------------------------------------------- /src/Externals/libpng/sci_png_mangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/libpng/sci_png_mangle.h -------------------------------------------------------------------------------- /src/Externals/libpng/scripts/pngw32.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/libpng/scripts/pngw32.rc -------------------------------------------------------------------------------- /src/Externals/libpng/test-pngtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/libpng/test-pngtest.sh -------------------------------------------------------------------------------- /src/Externals/protobuf/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/protobuf/.gitignore -------------------------------------------------------------------------------- /src/Externals/protobuf/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/protobuf/.travis.yml -------------------------------------------------------------------------------- /src/Externals/protobuf/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/protobuf/BUILD -------------------------------------------------------------------------------- /src/Externals/protobuf/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/protobuf/CHANGES.txt -------------------------------------------------------------------------------- /src/Externals/protobuf/INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/protobuf/INSTALL.txt -------------------------------------------------------------------------------- /src/Externals/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/protobuf/LICENSE -------------------------------------------------------------------------------- /src/Externals/protobuf/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/protobuf/Makefile.am -------------------------------------------------------------------------------- /src/Externals/protobuf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/protobuf/README.md -------------------------------------------------------------------------------- /src/Externals/protobuf/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/protobuf/WORKSPACE -------------------------------------------------------------------------------- /src/Externals/protobuf/appveyor.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/protobuf/appveyor.bat -------------------------------------------------------------------------------- /src/Externals/protobuf/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/protobuf/appveyor.yml -------------------------------------------------------------------------------- /src/Externals/protobuf/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/protobuf/autogen.sh -------------------------------------------------------------------------------- /src/Externals/protobuf/cmake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/protobuf/cmake/README.md -------------------------------------------------------------------------------- /src/Externals/protobuf/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/protobuf/configure.ac -------------------------------------------------------------------------------- /src/Externals/protobuf/conformance/failure_list_csharp.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Externals/protobuf/gmock.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/protobuf/gmock.BUILD -------------------------------------------------------------------------------- /src/Externals/protobuf/java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/protobuf/java/README.md -------------------------------------------------------------------------------- /src/Externals/protobuf/java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/protobuf/java/pom.xml -------------------------------------------------------------------------------- /src/Externals/protobuf/m4/stl_hash.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/protobuf/m4/stl_hash.m4 -------------------------------------------------------------------------------- /src/Externals/protobuf/protobuf.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/protobuf/protobuf.pc.in -------------------------------------------------------------------------------- /src/Externals/protobuf/python/google/protobuf/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Externals/protobuf/python/google/protobuf/pyext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Externals/protobuf/python/mox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/protobuf/python/mox.py -------------------------------------------------------------------------------- /src/Externals/protobuf/python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/protobuf/python/setup.py -------------------------------------------------------------------------------- /src/Externals/protobuf/python/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/protobuf/python/tox.ini -------------------------------------------------------------------------------- /src/Externals/protobuf/ruby/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/protobuf/ruby/.gitignore -------------------------------------------------------------------------------- /src/Externals/protobuf/ruby/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/protobuf/ruby/Gemfile -------------------------------------------------------------------------------- /src/Externals/protobuf/ruby/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/protobuf/ruby/README.md -------------------------------------------------------------------------------- /src/Externals/protobuf/ruby/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/protobuf/ruby/Rakefile -------------------------------------------------------------------------------- /src/Externals/protobuf/ruby/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/protobuf/ruby/pom.xml -------------------------------------------------------------------------------- /src/Externals/protobuf/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/protobuf/src/Makefile.am -------------------------------------------------------------------------------- /src/Externals/protobuf/travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/protobuf/travis.sh -------------------------------------------------------------------------------- /src/Externals/tinyxml/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/tinyxml/CMakeLists.txt -------------------------------------------------------------------------------- /src/Externals/tinyxml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/tinyxml/Makefile -------------------------------------------------------------------------------- /src/Externals/tinyxml/changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/tinyxml/changes.txt -------------------------------------------------------------------------------- /src/Externals/tinyxml/docs/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/tinyxml/docs/doxygen.css -------------------------------------------------------------------------------- /src/Externals/tinyxml/docs/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/tinyxml/docs/doxygen.png -------------------------------------------------------------------------------- /src/Externals/tinyxml/docs/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/tinyxml/docs/files.html -------------------------------------------------------------------------------- /src/Externals/tinyxml/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/tinyxml/docs/index.html -------------------------------------------------------------------------------- /src/Externals/tinyxml/echo.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/tinyxml/echo.dsp -------------------------------------------------------------------------------- /src/Externals/tinyxml/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/tinyxml/readme.txt -------------------------------------------------------------------------------- /src/Externals/tinyxml/tinyXmlTest.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/tinyxml/tinyXmlTest.dsp -------------------------------------------------------------------------------- /src/Externals/tinyxml/tinystr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/tinyxml/tinystr.cpp -------------------------------------------------------------------------------- /src/Externals/tinyxml/tinystr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/tinyxml/tinystr.h -------------------------------------------------------------------------------- /src/Externals/tinyxml/tinyxml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/tinyxml/tinyxml.cpp -------------------------------------------------------------------------------- /src/Externals/tinyxml/tinyxml.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/tinyxml/tinyxml.dsw -------------------------------------------------------------------------------- /src/Externals/tinyxml/tinyxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/tinyxml/tinyxml.h -------------------------------------------------------------------------------- /src/Externals/tinyxml/tinyxmlSTL.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/tinyxml/tinyxmlSTL.dsp -------------------------------------------------------------------------------- /src/Externals/tinyxml/tinyxml_lib.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/tinyxml/tinyxml_lib.dsp -------------------------------------------------------------------------------- /src/Externals/tinyxml/tinyxmlerror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/tinyxml/tinyxmlerror.cpp -------------------------------------------------------------------------------- /src/Externals/tinyxml/utf8test.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/tinyxml/utf8test.gif -------------------------------------------------------------------------------- /src/Externals/tinyxml/utf8test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/tinyxml/utf8test.xml -------------------------------------------------------------------------------- /src/Externals/tinyxml/xmltest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/tinyxml/xmltest.cpp -------------------------------------------------------------------------------- /src/Externals/valgrind/ElVis.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/valgrind/ElVis.supp -------------------------------------------------------------------------------- /src/Externals/valgrind/OSX.supp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Externals/valgrind/OptiX.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/valgrind/OptiX.supp -------------------------------------------------------------------------------- /src/Externals/valgrind/Qt.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/valgrind/Qt.supp -------------------------------------------------------------------------------- /src/Externals/valgrind/glut.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/valgrind/glut.supp -------------------------------------------------------------------------------- /src/Externals/valgrind/sgcheck.supp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Externals/zlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/zlib/CMakeLists.txt -------------------------------------------------------------------------------- /src/Externals/zlib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/zlib/ChangeLog -------------------------------------------------------------------------------- /src/Externals/zlib/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/zlib/FAQ -------------------------------------------------------------------------------- /src/Externals/zlib/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/zlib/INDEX -------------------------------------------------------------------------------- /src/Externals/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/zlib/README -------------------------------------------------------------------------------- /src/Externals/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/zlib/adler32.c -------------------------------------------------------------------------------- /src/Externals/zlib/algorithm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/zlib/algorithm.txt -------------------------------------------------------------------------------- /src/Externals/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/zlib/compress.c -------------------------------------------------------------------------------- /src/Externals/zlib/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/zlib/configure -------------------------------------------------------------------------------- /src/Externals/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/zlib/crc32.c -------------------------------------------------------------------------------- /src/Externals/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/zlib/crc32.h -------------------------------------------------------------------------------- /src/Externals/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/zlib/deflate.c -------------------------------------------------------------------------------- /src/Externals/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/zlib/deflate.h -------------------------------------------------------------------------------- /src/Externals/zlib/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/zlib/example.c -------------------------------------------------------------------------------- /src/Externals/zlib/gzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/zlib/gzio.c -------------------------------------------------------------------------------- /src/Externals/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/zlib/infback.c -------------------------------------------------------------------------------- /src/Externals/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/zlib/inffast.c -------------------------------------------------------------------------------- /src/Externals/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/zlib/inffast.h -------------------------------------------------------------------------------- /src/Externals/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/zlib/inffixed.h -------------------------------------------------------------------------------- /src/Externals/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/zlib/inflate.c -------------------------------------------------------------------------------- /src/Externals/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/zlib/inflate.h -------------------------------------------------------------------------------- /src/Externals/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/zlib/inftrees.c -------------------------------------------------------------------------------- /src/Externals/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/zlib/inftrees.h -------------------------------------------------------------------------------- /src/Externals/zlib/make_vms.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/zlib/make_vms.com -------------------------------------------------------------------------------- /src/Externals/zlib/minigzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/zlib/minigzip.c -------------------------------------------------------------------------------- /src/Externals/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/zlib/trees.c -------------------------------------------------------------------------------- /src/Externals/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/zlib/trees.h -------------------------------------------------------------------------------- /src/Externals/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/zlib/uncompr.c -------------------------------------------------------------------------------- /src/Externals/zlib/win32/DLL_FAQ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/zlib/win32/DLL_FAQ.txt -------------------------------------------------------------------------------- /src/Externals/zlib/win32/Makefile.bor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/zlib/win32/Makefile.bor -------------------------------------------------------------------------------- /src/Externals/zlib/win32/Makefile.emx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/zlib/win32/Makefile.emx -------------------------------------------------------------------------------- /src/Externals/zlib/win32/Makefile.gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/zlib/win32/Makefile.gcc -------------------------------------------------------------------------------- /src/Externals/zlib/win32/Makefile.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/zlib/win32/Makefile.msc -------------------------------------------------------------------------------- /src/Externals/zlib/win32/VisualC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/zlib/win32/VisualC.txt -------------------------------------------------------------------------------- /src/Externals/zlib/win32/zlib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/zlib/win32/zlib.def -------------------------------------------------------------------------------- /src/Externals/zlib/win32/zlib1.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/zlib/win32/zlib1.rc -------------------------------------------------------------------------------- /src/Externals/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/zlib/zconf.h -------------------------------------------------------------------------------- /src/Externals/zlib/zlib.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/zlib/zlib.3 -------------------------------------------------------------------------------- /src/Externals/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/zlib/zlib.h -------------------------------------------------------------------------------- /src/Externals/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/zlib/zutil.c -------------------------------------------------------------------------------- /src/Externals/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Externals/zlib/zutil.h -------------------------------------------------------------------------------- /src/Utilities/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Utilities/CMakeLists.txt -------------------------------------------------------------------------------- /src/Utilities/CodeGenerator/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Utilities/CodeGenerator/main.cpp -------------------------------------------------------------------------------- /src/Utilities/Stats/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Utilities/Stats/CMakeLists.txt -------------------------------------------------------------------------------- /src/Utilities/Stats/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/Utilities/Stats/main.cpp -------------------------------------------------------------------------------- /src/_clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/src/_clang-format -------------------------------------------------------------------------------- /unittests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/unittests/Makefile -------------------------------------------------------------------------------- /unittests/testMouseLeftCtrlClick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/unittests/testMouseLeftCtrlClick.cpp -------------------------------------------------------------------------------- /unittests/testMouseLeftCtrlClick.moc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/unittests/testMouseLeftCtrlClick.moc -------------------------------------------------------------------------------- /unittests/unittests.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/unittests/unittests.pro -------------------------------------------------------------------------------- /volumes/Hex_01_01_01_03Mode_x2.fld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/volumes/Hex_01_01_01_03Mode_x2.fld -------------------------------------------------------------------------------- /volumes/Hex_01_01_01_03Mode_x2.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/volumes/Hex_01_01_01_03Mode_x2.mesh -------------------------------------------------------------------------------- /volumes/Hex_01_01_01_03Mode_x2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/volumes/Hex_01_01_01_03Mode_x2.xml -------------------------------------------------------------------------------- /volumes/Hex_CurvedFace.fld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/volumes/Hex_CurvedFace.fld -------------------------------------------------------------------------------- /volumes/Hex_CurvedFace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/volumes/Hex_CurvedFace.xml -------------------------------------------------------------------------------- /volumes/Hex_Mushroom.fld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/volumes/Hex_Mushroom.fld -------------------------------------------------------------------------------- /volumes/Hex_Mushroom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/volumes/Hex_Mushroom.xml -------------------------------------------------------------------------------- /volumes/Quad.fld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/volumes/Quad.fld -------------------------------------------------------------------------------- /volumes/Quad.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/volumes/Quad.xml -------------------------------------------------------------------------------- /volumes/bulletH1P2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/volumes/bulletH1P2.dat -------------------------------------------------------------------------------- /volumes/bulletH1P3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/volumes/bulletH1P3.dat -------------------------------------------------------------------------------- /volumes/paddles1H1P3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/volumes/paddles1H1P3.dat -------------------------------------------------------------------------------- /volumes/raySincBox_F4_P4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/volumes/raySincBox_F4_P4.dat -------------------------------------------------------------------------------- /volumes/raySkewHex_F2_8_P8.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/volumes/raySkewHex_F2_8_P8.dat -------------------------------------------------------------------------------- /workflows/BulletH1P2ColorMap.vt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/workflows/BulletH1P2ColorMap.vt -------------------------------------------------------------------------------- /workflows/BulletH1P3ColorMap.vt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/workflows/BulletH1P3ColorMap.vt -------------------------------------------------------------------------------- /workflows/ColorMapAndContour.vt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/workflows/ColorMapAndContour.vt -------------------------------------------------------------------------------- /workflows/ModifiedML.vt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/workflows/ModifiedML.vt -------------------------------------------------------------------------------- /workflows/NektarModelColorMap.vt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/workflows/NektarModelColorMap.vt -------------------------------------------------------------------------------- /workflows/PaddlesColorMap.vt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/workflows/PaddlesColorMap.vt -------------------------------------------------------------------------------- /workflows/RedToBlue.cmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/workflows/RedToBlue.cmap -------------------------------------------------------------------------------- /workflows/Screenshots.vt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/workflows/Screenshots.vt -------------------------------------------------------------------------------- /workflows/diverging.cmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/workflows/diverging.cmap -------------------------------------------------------------------------------- /workflows/diverging257.cmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/workflows/diverging257.cmap -------------------------------------------------------------------------------- /workflows/grayscale.cmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/workflows/grayscale.cmap -------------------------------------------------------------------------------- /workflows/verify.cmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCI-ElVis/ElVis/HEAD/workflows/verify.cmap --------------------------------------------------------------------------------