├── .github ├── scripts │ └── sync-wiki.py └── workflows │ ├── static.yml │ └── sync-wiki.yml ├── .gitignore ├── CMakeLists.txt ├── DEMSystems ├── CMakeLists.txt ├── DEMSystem │ ├── DEMSystem.cpp │ └── DEMSystem.hpp ├── domainDistribute │ ├── domainDistribute.cpp │ └── domainDistribute.hpp ├── grainDEMSystem │ ├── grainDEMSystem.cpp │ ├── grainDEMSystem.hpp │ ├── grainFluidParticles.cpp │ ├── grainFluidParticles.hpp │ └── grainFluidParticlesKernels.hpp └── sphereDEMSystem │ ├── sphereDEMSystem.cpp │ ├── sphereDEMSystem.hpp │ ├── sphereFluidParticles.cpp │ ├── sphereFluidParticles.hpp │ └── sphereFluidParticlesKernels.hpp ├── LICENSE ├── README.md ├── benchmarks ├── helicalMixer │ ├── helicalMixer_1m │ │ ├── caseSetup │ │ │ ├── interaction │ │ │ ├── particleInsertion │ │ │ └── shapes │ │ ├── cleanThisCase │ │ ├── runThisCase │ │ └── settings │ │ │ ├── domainDict │ │ │ ├── geometryDict │ │ │ ├── particlesDict │ │ │ └── settingsDict │ ├── helicalMixer_250K │ │ ├── caseSetup │ │ │ ├── interaction │ │ │ ├── particleInsertion │ │ │ └── shapes │ │ ├── cleanThisCase │ │ ├── runThisCase │ │ └── settings │ │ │ ├── domainDict │ │ │ ├── geometryDict │ │ │ ├── particlesDict │ │ │ └── settingsDict │ ├── helicalMixer_2m │ │ ├── caseSetup │ │ │ ├── interaction │ │ │ ├── particleInsertion │ │ │ └── shapes │ │ ├── cleanThisCase │ │ ├── runThisCase │ │ └── settings │ │ │ ├── domainDict │ │ │ ├── geometryDict │ │ │ ├── particlesDict │ │ │ └── settingsDict │ ├── helicalMixer_4m │ │ ├── caseSetup │ │ │ ├── interaction │ │ │ ├── particleInsertion │ │ │ └── shapes │ │ ├── cleanThisCase │ │ ├── runThisCase │ │ └── settings │ │ │ ├── domainDict │ │ │ ├── geometryDict │ │ │ ├── particlesDict │ │ │ └── settingsDict │ ├── helicalMixer_500k │ │ ├── caseSetup │ │ │ ├── interaction │ │ │ ├── particleInsertion │ │ │ └── shapes │ │ ├── cleanThisCase │ │ ├── runThisCase │ │ └── settings │ │ │ ├── domainDict │ │ │ ├── geometryDict │ │ │ ├── particlesDict │ │ │ └── settingsDict │ ├── images │ │ ├── commericalDEMsnapshot.png │ │ ├── performance.png │ │ └── phasicFlow_snapshot.png │ └── readme.md ├── readme.md └── rotatingDrum │ ├── images │ ├── commericalDEMsnapshot.png │ ├── performance1.png │ └── phasicFlow_snapshot.png │ ├── readme.md │ ├── rotatingDrum_1mParticles │ ├── caseSetup │ │ ├── interaction │ │ └── shapes │ ├── cleanThisCase │ ├── runThisCase │ └── settings │ │ ├── domainDict │ │ ├── geometryDict │ │ ├── particlesDict │ │ └── settingsDict │ ├── rotatingDrum_250kParticles │ ├── caseSetup │ │ ├── interaction │ │ └── shapes │ ├── cleanThisCase │ ├── runThisCase │ └── settings │ │ ├── domainDict │ │ ├── geometryDict │ │ ├── particlesDict │ │ └── settingsDict │ ├── rotatingDrum_2mParticles │ ├── caseSetup │ │ ├── interaction │ │ └── shapes │ ├── cleanThisCase │ ├── runThisCase │ └── settings │ │ ├── domainDict │ │ ├── geometryDict │ │ ├── particlesDict │ │ └── settingsDict │ ├── rotatingDrum_4mParticles │ ├── caseSetup │ │ ├── interaction │ │ └── shapes │ ├── cleanThisCase │ ├── runThisCase │ └── settings │ │ ├── domainDict │ │ ├── geometryDict │ │ ├── particlesDict │ │ └── settingsDict │ ├── rotatingDrum_500kParticles │ ├── caseSetup │ │ ├── interaction │ │ └── shapes │ ├── cleanThisCase │ ├── runThisCase │ └── settings │ │ ├── domainDict │ │ ├── geometryDict │ │ ├── particlesDict │ │ └── settingsDict │ └── rotatingDrum_8mParticles │ ├── caseSetup │ ├── interaction │ └── shapes │ ├── cleanThisCase │ ├── runThisCase │ └── settings │ ├── domainDict │ ├── geometryDict │ ├── particlesDict │ └── settingsDict ├── cmake ├── autoComplete ├── bashrc ├── globals.cmake ├── makeExecutableGlobals.cmake ├── makeLibraryGlobals.cmake ├── preReq.cmake └── zoltanInstallCheck.cmake ├── doc ├── Doxyfile ├── customdoxygen.css ├── footer.html ├── header.html ├── mdDocs │ ├── codingStyle.md │ ├── howToBuild-V1.0.md │ ├── howToUsePhasicFlow.md │ ├── mainpage.md │ ├── markdownList.yml │ └── phasicFlowFeatures.md ├── phasicFlow_logo.png └── phasicFlow_logo_github.png ├── phasicFlowConfig.H.in ├── resources └── stls │ └── helicalMixer │ ├── helix2.stl │ └── shell2.stl ├── solvers ├── CMakeLists.txt ├── grainGranFlow │ ├── CMakeLists.txt │ ├── createDEMComponents.hpp │ └── grainGranFlow.cpp ├── iterateGeometry │ ├── CMakeLists.txt │ └── iterateGeometry.cpp ├── iterateSphereParticles │ ├── CMakeLists.txt │ ├── createDEMComponents.hpp │ └── iterateSphereParticles.cpp └── sphereGranFlow │ ├── CMakeLists.txt │ ├── createDEMComponents.hpp │ └── sphereGranFlow.cpp ├── src ├── CMakeLists.txt ├── Geometry │ ├── CMakeLists.txt │ ├── geometry │ │ ├── demGeometry.hpp │ │ ├── geometry.cpp │ │ └── geometry.hpp │ └── geometryMotion │ │ ├── geometryMotion.cpp │ │ ├── geometryMotion.hpp │ │ ├── geometryMotions.cpp │ │ └── geometryMotions.hpp ├── Integration │ ├── AdamsBashforth2 │ │ ├── AB2Kernels.hpp │ │ ├── AdamsBashforth2.cpp │ │ ├── AdamsBashforth2.hpp │ │ ├── processorAB2BoundaryIntegration.cpp │ │ └── processorAB2BoundaryIntegration.hpp │ ├── AdamsBashforth3 │ │ ├── AdamsBashforth3.cpp │ │ └── AdamsBashforth3.hpp │ ├── AdamsBashforth4 │ │ ├── AdamsBashforth4.cpp │ │ └── AdamsBashforth4.hpp │ ├── AdamsBashforth5 │ │ ├── AdamsBashforth5.cpp │ │ └── AdamsBashforth5.hpp │ ├── AdamsMoulton3 │ │ ├── AdamsMoulton3.cpp │ │ └── AdamsMoulton3.hpp │ ├── AdamsMoulton4 │ │ ├── AdamsMoulton4.cpp │ │ └── AdamsMoulton4.hpp │ ├── AdamsMoulton5 │ │ ├── AdamsMoulton5.cpp │ │ └── AdamsMoulton5.hpp │ ├── CMakeLists.txt │ ├── boundaries │ │ ├── boundaryIntegration.cpp │ │ ├── boundaryIntegration.hpp │ │ ├── boundaryIntegrationList.cpp │ │ └── boundaryIntegrationList.hpp │ └── integration │ │ ├── integration.cpp │ │ └── integration.hpp ├── Interaction │ ├── CMakeLists.txt │ ├── Models │ │ ├── contactForce │ │ │ ├── cGAbsoluteLinearCF.hpp │ │ │ ├── cGNonLinearCF.hpp │ │ │ ├── cGRelativeLinearCF.hpp │ │ │ ├── linearCF.hpp │ │ │ ├── nonLinearCF.hpp │ │ │ └── nonLinearMod.hpp │ │ ├── contactForceModels.hpp │ │ ├── grainContactForceModels.hpp │ │ └── rolling │ │ │ ├── grainRolling.hpp │ │ │ └── normalRolling.hpp │ ├── contactLists │ │ ├── sortedContactList.hpp │ │ ├── sortedPairs.hpp │ │ ├── unsortedContactList.hpp │ │ └── unsortedPairs.hpp │ ├── contactSearch │ │ ├── ContactSearch │ │ │ ├── ContactSearch.hpp │ │ │ └── ContactSearchs.cpp │ │ ├── boundaries │ │ │ ├── boundaryContactSearch │ │ │ │ ├── boundaryContactSearch.cpp │ │ │ │ └── boundaryContactSearch.hpp │ │ │ ├── boundaryContactSearchList.cpp │ │ │ ├── boundaryContactSearchList.hpp │ │ │ ├── periodicBoundaryContactSearch │ │ │ │ ├── periodicBoundaryContactSearch.cpp │ │ │ │ ├── periodicBoundaryContactSearch.hpp │ │ │ │ ├── ppwBndryContactSearch.cpp │ │ │ │ ├── ppwBndryContactSearch.hpp │ │ │ │ ├── ppwBndryContactSearchKernels.cpp │ │ │ │ ├── ppwBndryContactSearchKernels.hpp │ │ │ │ ├── wallBoundaryContactSearch.cpp │ │ │ │ └── wallBoundaryContactSearch.hpp │ │ │ ├── processorBoundaryContactSearch │ │ │ │ ├── processorBoundaryContactSearch.cpp │ │ │ │ └── processorBoundaryContactSearch.hpp │ │ │ └── twoPartContactSearch │ │ │ │ ├── twoPartContactSearch.cpp │ │ │ │ ├── twoPartContactSearch.hpp │ │ │ │ ├── twoPartContactSearchKernels.cpp │ │ │ │ └── twoPartContactSearchKernels.hpp │ │ ├── contactSearch │ │ │ ├── contactSearch.cpp │ │ │ └── contactSearch.hpp │ │ ├── contactSearchFunctions.hpp │ │ ├── contactSearchGlobals.hpp │ │ └── methods │ │ │ ├── cellBased │ │ │ ├── NBS │ │ │ │ ├── NBS.cpp │ │ │ │ ├── NBS.hpp │ │ │ │ ├── NBSLevel0.cpp │ │ │ │ ├── NBSLevel0.hpp │ │ │ │ ├── NBSLevel0Kernels.hpp │ │ │ │ ├── NBSLoop.hpp │ │ │ │ ├── cellsWallLevel0.cpp │ │ │ │ ├── cellsWallLevel0.hpp │ │ │ │ ├── mapperNBS.cpp │ │ │ │ ├── mapperNBS.hpp │ │ │ │ ├── mapperNBSKernels.cpp │ │ │ │ └── mapperNBSKernels.hpp │ │ │ └── cells.hpp │ │ │ ├── particleWallContactSearchs.cpp │ │ │ └── particleWallContactSearchs.hpp │ ├── grainInteraction │ │ ├── boundaries │ │ │ ├── boundaryGrainInteraction │ │ │ │ ├── boundaryGrainInteraction.cpp │ │ │ │ └── boundaryGrainInteraction.hpp │ │ │ ├── boundaryGrainInteractionList.cpp │ │ │ ├── boundaryGrainInteractionList.hpp │ │ │ ├── createBoundaryGrainInteraction.hpp │ │ │ └── periodicBoundaryGrainInteraction │ │ │ │ ├── periodicBoundaryGrainInteraction.cpp │ │ │ │ ├── periodicBoundaryGrainInteraction.hpp │ │ │ │ └── periodicBoundarySIKernels.hpp │ │ ├── grainInteraction │ │ │ ├── grainInteraction.cpp │ │ │ ├── grainInteraction.hpp │ │ │ ├── grainInteractionKernels.hpp │ │ │ ├── grainTriSurfaceContact.hpp │ │ │ ├── pLine.hpp │ │ │ └── triWall.hpp │ │ ├── grainInteractionsLinearModels.cpp │ │ ├── grainInteractionsNonLinearModModels.cpp │ │ └── grainInteractionsNonLinearModels.cpp │ ├── interaction │ │ ├── interaction.cpp │ │ └── interaction.hpp │ └── sphereInteraction │ │ ├── boundaries │ │ ├── boundarySphereInteraction │ │ │ ├── boundarySphereInteraction.cpp │ │ │ └── boundarySphereInteraction.hpp │ │ ├── boundarySphereInteractionList.cpp │ │ ├── boundarySphereInteractionList.hpp │ │ ├── createBoundarySphereInteraction.hpp │ │ ├── periodicBoundarySphereInteraction │ │ │ ├── periodicBoundarySIKernels.hpp │ │ │ ├── periodicBoundarySphereInteraction.cpp │ │ │ └── periodicBoundarySphereInteraction.hpp │ │ └── processorBoundarySphereInteraction │ │ │ ├── processorBoundarySIKernels.hpp │ │ │ ├── processorBoundarySphereInteraction.cpp │ │ │ ├── processorBoundarySphereInteraction.hpp │ │ │ └── processorBoundarySphereInteractions.cpp │ │ ├── sphereInteraction │ │ ├── pLine.hpp │ │ ├── sphereInteraction.cpp │ │ ├── sphereInteraction.hpp │ │ ├── sphereInteractionKernels.hpp │ │ ├── sphereTriSurfaceContact.hpp │ │ └── triWall.hpp │ │ ├── sphereInteractionsLinearModels.cpp │ │ ├── sphereInteractionsNonLinearModModels.cpp │ │ └── sphereInteractionsNonLinearModels.cpp ├── MotionModel │ ├── CMakeLists.txt │ ├── MotionModel │ │ ├── MotionModel.cpp │ │ └── MotionModel.hpp │ ├── conveyorBeltMotion │ │ ├── conveyorBeltMotion.cpp │ │ └── conveyorBeltMotion.hpp │ ├── entities │ │ ├── conveyorBelt │ │ │ ├── conveyorBelt.cpp │ │ │ └── conveyorBelt.hpp │ │ ├── multiRotatingAxis │ │ │ ├── multiRotatingAxis.cpp │ │ │ └── multiRotatingAxis.hpp │ │ ├── rotatingAxis │ │ │ ├── rotatingAxis.cpp │ │ │ ├── rotatingAxis.hpp │ │ │ ├── rotatingAxisFwd.hpp │ │ │ └── rotatingAxisI.hpp │ │ ├── stationary │ │ │ ├── stationary.cpp │ │ │ └── stationary.hpp │ │ ├── timeInterval │ │ │ ├── timeInterval.cpp │ │ │ └── timeInterval.hpp │ │ └── vibrating │ │ │ ├── vibrating.cpp │ │ │ └── vibrating.hpp │ ├── multiRotatingAxisMotion │ │ ├── multiRotatingAxisMotion.cpp │ │ └── multiRotatingAxisMotion.hpp │ ├── rotatingAxisMotion │ │ ├── rotatingAxisMotion.cpp │ │ └── rotatingAxisMotion.hpp │ ├── stationaryWall │ │ ├── stationaryWall.cpp │ │ └── stationaryWall.hpp │ └── vibratingMotion │ │ ├── vibratingMotion.cpp │ │ └── vibratingMotion.hpp ├── Particles │ ├── CMakeLists.txt │ ├── GrainParticles │ │ ├── boundaryGrainParticles.cpp │ │ ├── boundaryGrainParticles.hpp │ │ ├── boundaryGrainParticlesList.cpp │ │ ├── boundaryGrainParticlesList.hpp │ │ ├── grainParticles │ │ │ ├── grainParticles.cpp │ │ │ ├── grainParticles.hpp │ │ │ ├── grainParticlesKernels.cpp │ │ │ └── grainParticlesKernels.hpp │ │ └── grainShape │ │ │ ├── grainShape.cpp │ │ │ └── grainShape.hpp │ ├── Insertion │ │ ├── Insertion │ │ │ ├── Insertion.cpp │ │ │ ├── Insertion.hpp │ │ │ ├── Insertions.cpp │ │ │ └── Insertions.hpp │ │ ├── InsertionRegion │ │ │ ├── InsertionRegion.cpp │ │ │ └── InsertionRegion.hpp │ │ ├── collisionCheck │ │ │ ├── collisionCheck.cpp │ │ │ └── collisionCheck.hpp │ │ ├── insertion │ │ │ ├── insertion.cpp │ │ │ └── insertion.hpp │ │ ├── insertionRegion │ │ │ ├── insertionRegion.cpp │ │ │ └── insertionRegion.hpp │ │ └── shapeMixture │ │ │ ├── shapeMixture.cpp │ │ │ └── shapeMixture.hpp │ ├── SphereParticles │ │ ├── boundarySphereParticles.cpp │ │ ├── boundarySphereParticles.hpp │ │ ├── boundarySphereParticlesList.cpp │ │ ├── boundarySphereParticlesList.hpp │ │ ├── processorBoundarySphereParticles.cpp │ │ ├── processorBoundarySphereParticles.hpp │ │ ├── sphereParticles │ │ │ ├── sphereParticles.cpp │ │ │ ├── sphereParticles.hpp │ │ │ ├── sphereParticlesKernels.cpp │ │ │ └── sphereParticlesKernels.hpp │ │ └── sphereShape │ │ │ ├── sphereShape.cpp │ │ │ └── sphereShape.hpp │ ├── dynamicPointStructure │ │ ├── dynamicPointStructure.cpp │ │ └── dynamicPointStructure.hpp │ ├── globalDamping │ │ ├── globalDamping.cpp │ │ └── globalDamping.hpp │ └── particles │ │ ├── MPIParticleIdHandler │ │ ├── MPIParticleIdHandler.cpp │ │ └── MPIParticleIdHandler.hpp │ │ ├── particleIdHandler │ │ ├── particleIdHandler.cpp │ │ └── particleIdHandler.hpp │ │ ├── particles.cpp │ │ ├── particles.hpp │ │ ├── regularParticleIdHandler │ │ ├── regularParticleIdHandler.cpp │ │ └── regularParticleIdHandler.hpp │ │ └── shape │ │ ├── baseShapeNames.cpp │ │ ├── baseShapeNames.hpp │ │ ├── shape.cpp │ │ └── shape.hpp ├── PostprocessData │ ├── CMakeLists.txt │ ├── fieldsDataBase │ │ ├── fieldFunctions.hpp │ │ ├── fieldsDataBase.cpp │ │ ├── fieldsDataBase.hpp │ │ ├── fieldsDataBaseDclr.hpp │ │ ├── fieldsDataBaseTemplates.cpp │ │ ├── simulationFieldsDataBase.cpp │ │ └── simulationFieldsDataBase.hpp │ ├── operation │ │ ├── PostprocessOperation │ │ │ ├── PostprocessOperationAvMassVelocity.cpp │ │ │ ├── PostprocessOperationAvMassVelocity.hpp │ │ │ ├── PostprocessOperationAverage.cpp │ │ │ ├── PostprocessOperationAverage.hpp │ │ │ ├── PostprocessOperationBulkDensity.cpp │ │ │ ├── PostprocessOperationBulkDensity.hpp │ │ │ ├── PostprocessOperationSolidVolFraction.cpp │ │ │ ├── PostprocessOperationSolidVolFraction.hpp │ │ │ ├── PostprocessOperationSum.cpp │ │ │ ├── PostprocessOperationSum.hpp │ │ │ └── operationFunctions.hpp │ │ ├── includeMask │ │ │ ├── IncludeMask.hpp │ │ │ ├── IncludeMasks.cpp │ │ │ ├── includeMask.cpp │ │ │ ├── includeMask.hpp │ │ │ └── maskOperations.hpp │ │ └── postprocessOperation │ │ │ ├── postprocessOperation.cpp │ │ │ ├── postprocessOperation.hpp │ │ │ └── postprocessOperationFunctions.hpp │ ├── postprocessComponent │ │ ├── PostprocessComponent │ │ │ ├── PostprocessComponent.cpp │ │ │ ├── PostprocessComponent.hpp │ │ │ ├── PostprocessComponentArithmetic.hpp │ │ │ ├── PostprocessComponentGaussian.hpp │ │ │ ├── PostprocessComponentUniform.hpp │ │ │ └── PostprocessComponents.cpp │ │ ├── particleProbePostprocessComponent │ │ │ ├── particleProbePostprocessComponent.cpp │ │ │ └── particleProbePostprocessComponent.hpp │ │ └── postprocessComponent │ │ │ ├── postprocessComponent.cpp │ │ │ └── postprocessComponent.hpp │ ├── postprocessData │ │ ├── postprocessData.cpp │ │ ├── postprocessData.hpp │ │ ├── postprocessGlobals.hpp │ │ └── postprocessTimeControl.hpp │ ├── processMethod │ │ ├── GaussianDistribution.hpp │ │ ├── arithmetic.hpp │ │ └── uniformDistribution.hpp │ ├── readme.md │ ├── region │ │ ├── regionFields │ │ │ ├── regionField.hpp │ │ │ └── regionFieldTemplate.cpp │ │ └── regionPoints │ │ │ ├── boxRegionPoints │ │ │ ├── boxRegionPoints.cpp │ │ │ └── boxRegionPoints.hpp │ │ │ ├── centerPointsRegionPoints │ │ │ ├── centerPointsRegionPoints.cpp │ │ │ └── centerPointsRegionPoints.hpp │ │ │ ├── lineRegionPoints │ │ │ ├── lineRegionPoints.cpp │ │ │ └── lineRegionPoints.hpp │ │ │ ├── multipleSpheresRegionPoints │ │ │ ├── multipleSpheresRegionPoints.cpp │ │ │ └── multipleSpheresRegionPoints.hpp │ │ │ ├── rectMeshRegionPoints │ │ │ ├── cellMapper.hpp │ │ │ ├── rectMeshRegionPoints.cpp │ │ │ └── rectMeshRegionPoints.hpp │ │ │ ├── regionPoints │ │ │ ├── regionPoints.cpp │ │ │ └── regionPoints.hpp │ │ │ └── sphereRegionPoints │ │ │ ├── sphereRegionPoints.cpp │ │ │ └── sphereRegionPoints.hpp │ └── sampleDictionary │ │ └── postprocessDataDict ├── Property │ ├── CMakeLists.txt │ ├── property.cpp │ └── property.hpp ├── phasicFlow │ ├── CMakeLists.txt │ ├── Kokkos │ │ ├── KokkosTypes.hpp │ │ ├── KokkosUtilities.hpp │ │ ├── Range.hpp │ │ ├── ViewAlgorithms.hpp │ │ └── phasicFlowKokkos.hpp │ ├── MPIParallelization │ │ ├── MPI │ │ │ ├── gatherMaster.hpp │ │ │ ├── mpiCommunication.hpp │ │ │ ├── mpiTypes.hpp │ │ │ ├── procCommunication.cpp │ │ │ ├── procCommunication.hpp │ │ │ ├── procVector.hpp │ │ │ ├── scatteredMasterDistribute.cpp │ │ │ ├── scatteredMasterDistribute.hpp │ │ │ ├── scatteredMasterDistributeChar.cpp │ │ │ └── scatteredMasterDistributeChar.hpp │ │ ├── dataIOMPI │ │ │ ├── dataIOMPI.cpp │ │ │ ├── dataIOMPI.hpp │ │ │ └── dataIOMPIs.cpp │ │ ├── domain │ │ │ ├── MPISimulationDomain.cpp │ │ │ ├── MPISimulationDomain.hpp │ │ │ └── partitioning │ │ │ │ ├── partitioning.cpp │ │ │ │ ├── partitioning.hpp │ │ │ │ ├── rcb1DPartitioning.cpp │ │ │ │ └── rcb1DPartitioning.hpp │ │ ├── pointField │ │ │ ├── processorBoundaryField.cpp │ │ │ ├── processorBoundaryField.hpp │ │ │ └── processorBoundaryFields.cpp │ │ └── pointStructure │ │ │ └── boundaries │ │ │ ├── boundaryProcessor.cpp │ │ │ ├── boundaryProcessor.hpp │ │ │ ├── boundaryProcessorKernels.hpp │ │ │ ├── dataReciever.hpp │ │ │ └── dataSender.hpp │ ├── Timer │ │ ├── Timer.cpp │ │ ├── Timer.hpp │ │ ├── Timers.cpp │ │ └── Timers.hpp │ ├── algorithms │ │ ├── algorithmFunctions.hpp │ │ ├── cudaAlgorithms.hpp │ │ ├── kokkosAlgorithms.hpp │ │ └── stdAlgorithms.hpp │ ├── commandLine │ │ ├── CLI │ │ │ ├── App.hpp │ │ │ ├── CLI.hpp │ │ │ ├── Config.hpp │ │ │ ├── ConfigFwd.hpp │ │ │ ├── Error.hpp │ │ │ ├── Formatter.hpp │ │ │ ├── FormatterFwd.hpp │ │ │ ├── LICENSE │ │ │ ├── Macros.hpp │ │ │ ├── Option.hpp │ │ │ ├── Split.hpp │ │ │ ├── StringTools.hpp │ │ │ ├── TypeTools.hpp │ │ │ ├── Validators.hpp │ │ │ ├── Version.hpp │ │ │ └── cliTimer.hpp │ │ ├── commandLine.cpp │ │ └── commandLine.hpp │ ├── containers │ │ ├── Field │ │ │ ├── Field.cpp │ │ │ ├── Field.hpp │ │ │ ├── Fields.cpp │ │ │ └── Fields.hpp │ │ ├── List │ │ │ ├── List │ │ │ │ ├── List.hpp │ │ │ │ └── ListI.hpp │ │ │ ├── ListPtr │ │ │ │ ├── ListPtr.hpp │ │ │ │ └── ListPtrI.hpp │ │ │ ├── Lists.hpp │ │ │ └── anyList │ │ │ │ ├── anyList.cpp │ │ │ │ └── anyList.hpp │ │ ├── Map │ │ │ ├── Map │ │ │ │ ├── Map.hpp │ │ │ │ └── MapI.hpp │ │ │ ├── MapPtr │ │ │ │ ├── MapPtr.hpp │ │ │ │ └── MapPtrI.hpp │ │ │ ├── Maps.hpp │ │ │ └── hashMap │ │ │ │ ├── hashMap.hpp │ │ │ │ └── hashMapI.hpp │ │ ├── Set │ │ │ └── Set.hpp │ │ ├── Vector │ │ │ ├── Vector.cpp │ │ │ ├── Vector.hpp │ │ │ ├── VectorAlgorithm.hpp │ │ │ ├── VectorFwd.hpp │ │ │ ├── VectorI.hpp │ │ │ ├── VectorMath.hpp │ │ │ ├── Vectors.cpp │ │ │ ├── Vectors.hpp │ │ │ └── stdVectorHelper.hpp │ │ ├── VectorHD │ │ │ ├── VectorSingle.cpp │ │ │ ├── VectorSingle.hpp │ │ │ ├── VectorSingleAlgorithms.hpp │ │ │ ├── VectorSingles.cpp │ │ │ ├── VectorSingles.hpp │ │ │ ├── wordVectorHost.cpp │ │ │ └── wordVectorHost.hpp │ │ ├── bitsetHD │ │ │ ├── bitsetHD.hpp │ │ │ └── bitsetHDs.cpp │ │ ├── indexContainer │ │ │ ├── indexContainer.cpp │ │ │ └── indexContainer.hpp │ │ ├── pointField │ │ │ ├── boundaryField │ │ │ │ ├── boundaryField │ │ │ │ │ ├── boundaryField.cpp │ │ │ │ │ └── boundaryField.hpp │ │ │ │ ├── boundaryFieldList.hpp │ │ │ │ ├── createBoundaryFields.hpp │ │ │ │ ├── exitBoundaryField │ │ │ │ │ ├── exitBoundaryField.cpp │ │ │ │ │ └── exitBoundaryField.hpp │ │ │ │ ├── generalBoundary │ │ │ │ │ ├── generalBoundary.cpp │ │ │ │ │ └── generalBoundary.hpp │ │ │ │ ├── periodicBoundaryField │ │ │ │ │ ├── periodicBoundaryField.cpp │ │ │ │ │ └── periodicBoundaryField.hpp │ │ │ │ └── reflectiveBoundaryField │ │ │ │ │ ├── reflectiveBoundaryField.cpp │ │ │ │ │ └── reflectiveBoundaryField.hpp │ │ │ ├── internalField │ │ │ │ ├── internalField.cpp │ │ │ │ ├── internalField.hpp │ │ │ │ └── internalFieldAlgorithms.hpp │ │ │ └── pointField │ │ │ │ ├── pointField copy.hpp │ │ │ │ ├── pointField.cpp │ │ │ │ ├── pointField.hpp │ │ │ │ ├── pointFieldAlgorithms.hpp │ │ │ │ ├── pointField_old.hpp │ │ │ │ ├── pointFields.cpp │ │ │ │ └── pointFields.hpp │ │ ├── span │ │ │ └── span.hpp │ │ ├── symArrayHD │ │ │ ├── symArrayHD.hpp │ │ │ ├── symArrays.cpp │ │ │ └── symArrays.hpp │ │ └── triSurfaceField │ │ │ ├── triSurfaceField.cpp │ │ │ ├── triSurfaceField.hpp │ │ │ ├── triSurfaceFields.cpp │ │ │ └── triSurfaceFields.hpp │ ├── demComponent │ │ ├── demComponent.cpp │ │ └── demComponent.hpp │ ├── dictionary │ │ ├── dictionary.cpp │ │ ├── dictionary.hpp │ │ ├── dictionaryList.hpp │ │ ├── entry │ │ │ ├── dataEntry.cpp │ │ │ ├── dataEntry.hpp │ │ │ ├── iEntry.cpp │ │ │ └── iEntry.hpp │ │ ├── fileDictionary.cpp │ │ ├── fileDictionary.hpp │ │ └── twoPartEntry │ │ │ ├── twoPartEntry.cpp │ │ │ └── twoPartEntry.hpp │ ├── eventManagement │ │ ├── eventManagement.hpp │ │ ├── message.hpp │ │ ├── observer.cpp │ │ ├── observer.hpp │ │ ├── subscriber.cpp │ │ └── subscriber.hpp │ ├── fileSystem │ │ ├── fileSystem.cpp │ │ └── fileSystem.hpp │ ├── globals │ │ ├── boundaryConfigs.hpp │ │ ├── error.cpp │ │ ├── error.hpp │ │ ├── globalSettings.cpp │ │ ├── globalSettings.hpp │ │ ├── pFlowMacros.hpp │ │ └── vocabs.hpp │ ├── processors │ │ ├── MPITimer.cpp │ │ ├── MPITimer.hpp │ │ ├── localProcessors.cpp │ │ ├── localProcessors.hpp │ │ ├── pFlowProcessors.cpp │ │ ├── pFlowProcessors.hpp │ │ ├── processors.cpp │ │ └── processors.hpp │ ├── random │ │ ├── randomInt32 │ │ │ └── uniformRandomUint32.hpp │ │ └── randomReal │ │ │ ├── RandomReal.cpp │ │ │ ├── RandomReal.hpp │ │ │ ├── randomReal.cpp │ │ │ ├── randomReal.hpp │ │ │ ├── randomReals.cpp │ │ │ ├── randomReals.hpp │ │ │ └── uniformRandomReal.hpp │ ├── ranges │ │ ├── combinedRange.hpp │ │ ├── intervalRange.hpp │ │ ├── ranges.hpp │ │ └── stridedRange.hpp │ ├── repository │ │ ├── IOobject │ │ │ ├── IOPattern.cpp │ │ │ ├── IOPattern.hpp │ │ │ ├── IOfileHeader.cpp │ │ │ ├── IOfileHeader.hpp │ │ │ ├── IOobject.cpp │ │ │ ├── IOobject.hpp │ │ │ ├── IOobjectTemplates.cpp │ │ │ ├── objectFile.cpp │ │ │ └── objectFile.hpp │ │ ├── Time │ │ │ ├── Time.cpp │ │ │ ├── Time.hpp │ │ │ ├── baseTimeControl.cpp │ │ │ ├── baseTimeControl.hpp │ │ │ ├── timeControl.cpp │ │ │ ├── timeControl.hpp │ │ │ └── timeInfo.hpp │ │ ├── repository │ │ │ ├── repository.cpp │ │ │ ├── repository.hpp │ │ │ └── repositoryTemplates.cpp │ │ └── systemControl │ │ │ ├── auxFunctions │ │ │ ├── auxFunctions.cpp │ │ │ └── auxFunctions.hpp │ │ │ ├── dynamicLinkLibs.cpp │ │ │ ├── dynamicLinkLibs.hpp │ │ │ ├── sampleDictionary │ │ │ └── settingsDict │ │ │ ├── systemControl.cpp │ │ │ ├── systemControl.hpp │ │ │ ├── timeFolder.cpp │ │ │ └── timeFolder.hpp │ ├── setFieldList │ │ ├── setFieldEntry.cpp │ │ ├── setFieldEntry.hpp │ │ ├── setFieldEntryTemplates.cpp │ │ ├── setFieldList.cpp │ │ └── setFieldList.hpp │ ├── smartPointers │ │ └── uniquePtr.hpp │ ├── streams │ │ ├── Fstream │ │ │ ├── fileStream.cpp │ │ │ ├── fileStream.hpp │ │ │ ├── iFstream.cpp │ │ │ ├── iFstream.hpp │ │ │ ├── oFstream.cpp │ │ │ └── oFstream.hpp │ │ ├── Stream │ │ │ ├── Istream.cpp │ │ │ ├── Istream.hpp │ │ │ ├── Ostream.cpp │ │ │ └── Ostream.hpp │ │ ├── TStream │ │ │ ├── helperTstream.hpp │ │ │ ├── iTstream.cpp │ │ │ ├── iTstream.hpp │ │ │ ├── oTstream.cpp │ │ │ └── oTstream.hpp │ │ ├── dataIO │ │ │ ├── createDataIO-old.hpp │ │ │ ├── dataIO.cpp │ │ │ ├── dataIO.hpp │ │ │ ├── dataIORegular.hpp │ │ │ └── dataIORegulars.cpp │ │ ├── iStream │ │ │ ├── IOstream.cpp │ │ │ ├── IOstream.hpp │ │ │ ├── iIstream.cpp │ │ │ ├── iIstream.hpp │ │ │ ├── iIstreamI.hpp │ │ │ ├── iOstream.cpp │ │ │ └── iOstream.hpp │ │ ├── masterOstream │ │ │ ├── masterOstream.cpp │ │ │ └── masterOstream.hpp │ │ ├── processorOstream │ │ │ ├── processorOstream.cpp │ │ │ └── processorOstream.hpp │ │ ├── streams.cpp │ │ ├── streams.hpp │ │ └── token │ │ │ ├── token.cpp │ │ │ ├── token.hpp │ │ │ ├── tokenI.hpp │ │ │ ├── tokenIO.cpp │ │ │ └── tokenList.hpp │ ├── structuredData │ │ ├── boundaries │ │ │ ├── boundariesMask.hpp │ │ │ ├── boundaryBase │ │ │ │ ├── boundaryBase.cpp │ │ │ │ ├── boundaryBase.hpp │ │ │ │ ├── boundaryBaseKernels.cpp │ │ │ │ ├── boundaryBaseKernels.hpp │ │ │ │ └── scatteredFieldAccess.hpp │ │ │ ├── boundaryExit │ │ │ │ ├── boundaryExit.cpp │ │ │ │ └── boundaryExit.hpp │ │ │ ├── boundaryList.cpp │ │ │ ├── boundaryList.hpp │ │ │ ├── boundaryListPtr.hpp │ │ │ ├── boundaryNone │ │ │ │ ├── boundaryNone.cpp │ │ │ │ └── boundaryNone.hpp │ │ │ ├── boundaryPeriodic │ │ │ │ ├── boundaryPeriodic.cpp │ │ │ │ └── boundaryPeriodic.hpp │ │ │ └── boundaryReflective │ │ │ │ ├── boundaryReflective.cpp │ │ │ │ └── boundaryReflective.hpp │ │ ├── box │ │ │ ├── box.cpp │ │ │ └── box.hpp │ │ ├── cells │ │ │ ├── cells.cpp │ │ │ └── cells.hpp │ │ ├── cylinder │ │ │ ├── cylinder.cpp │ │ │ └── cylinder.hpp │ │ ├── domain │ │ │ ├── domain.cpp │ │ │ ├── domain.hpp │ │ │ ├── regularSimulationDomain.cpp │ │ │ ├── regularSimulationDomain.hpp │ │ │ ├── sampleDictionary │ │ │ │ └── domainDict │ │ │ ├── simulationDomain.cpp │ │ │ ├── simulationDomain.hpp │ │ │ └── subDomain.hpp │ │ ├── iBox │ │ │ ├── iBox.cpp │ │ │ ├── iBox.hpp │ │ │ └── iBoxs.cpp │ │ ├── infinitePlane │ │ │ ├── infinitePlane.cpp │ │ │ └── infinitePlane.hpp │ │ ├── line │ │ │ ├── line.cpp │ │ │ └── line.hpp │ │ ├── peakableRegion │ │ │ ├── PeakableRegion │ │ │ │ ├── PeakableRegion.cpp │ │ │ │ ├── PeakableRegion.hpp │ │ │ │ └── PeakableRegions.cpp │ │ │ ├── geometricRegion │ │ │ │ ├── geometricRegion.cpp │ │ │ │ ├── geometricRegion.hpp │ │ │ │ ├── geometricRegions.cpp │ │ │ │ └── geometricRegions.hpp │ │ │ ├── old │ │ │ │ ├── boxRegion │ │ │ │ │ ├── boxRegion.cpp │ │ │ │ │ └── boxRegion.hpp │ │ │ │ ├── cylinderRegion │ │ │ │ │ ├── cylinderRegion.cpp │ │ │ │ │ └── cylinderRegion.hpp │ │ │ │ └── sphereRegion │ │ │ │ │ ├── sphereRegion.cpp │ │ │ │ │ └── sphereRegion.hpp │ │ │ └── peakableRegion │ │ │ │ ├── peakableRegion.cpp │ │ │ │ └── peakableRegion.hpp │ │ ├── plane │ │ │ ├── plane.cpp │ │ │ └── plane.hpp │ │ ├── pointStructure │ │ │ ├── internalPoints │ │ │ │ ├── internalPoints.cpp │ │ │ │ ├── internalPoints.hpp │ │ │ │ ├── internalPointsKernels.cpp │ │ │ │ ├── internalPointsKernels.hpp │ │ │ │ ├── pointFlag.hpp │ │ │ │ └── pointFlagKernels.hpp │ │ │ ├── pointStructure │ │ │ │ ├── pStcutold.txt │ │ │ │ ├── pointSorting │ │ │ │ │ ├── mortonIndexing.cpp │ │ │ │ │ ├── mortonIndexing.hpp │ │ │ │ │ ├── pointSorting.cpp │ │ │ │ │ └── pointSorting.hpp │ │ │ │ ├── pointStructure.cpp │ │ │ │ ├── pointStructure.hpp │ │ │ │ └── pointStructureKernels.hpp │ │ │ └── selectors │ │ │ │ ├── pStructSelector │ │ │ │ ├── fieldSelector.hpp │ │ │ │ ├── pStructSelector.cpp │ │ │ │ └── pStructSelector.hpp │ │ │ │ ├── selectBox │ │ │ │ ├── selectBox.cpp │ │ │ │ └── selectBox.hpp │ │ │ │ ├── selectorGeometric │ │ │ │ ├── selectorGeometric.cpp │ │ │ │ ├── selectorGeometric.hpp │ │ │ │ └── selectorGeometrics.cpp │ │ │ │ ├── selectorRandomPoints │ │ │ │ ├── selectorRandomPoints.cpp │ │ │ │ └── selectorRandomPoints.hpp │ │ │ │ └── selectorStridedRange │ │ │ │ ├── selectorStridedRange.cpp │ │ │ │ └── selectorStridedRange.hpp │ │ ├── sphere │ │ │ ├── sphere.cpp │ │ │ └── sphere.hpp │ │ └── zAxis │ │ │ ├── array2D.hpp │ │ │ ├── zAxis.cpp │ │ │ └── zAxis.hpp │ ├── triSurface │ │ ├── multiTriSurface.cpp │ │ ├── multiTriSurface.hpp │ │ ├── subSurface.cpp │ │ ├── subSurface.hpp │ │ ├── triSurface.cpp │ │ ├── triSurface.hpp │ │ ├── triSurfaceKernels.hpp │ │ └── triangleFunctions.hpp │ ├── typeSelection │ │ ├── typeInfo.hpp │ │ └── virtualConstructor.hpp │ └── types │ │ ├── basicTypes │ │ ├── Logical.cpp │ │ ├── Logical.hpp │ │ ├── bTypes.hpp │ │ ├── bTypesFunctions.cpp │ │ ├── bTypesFunctions.hpp │ │ ├── builtinTypes.hpp │ │ ├── math.hpp │ │ └── numericConstants.hpp │ │ ├── quadruple │ │ ├── quadruple.hpp │ │ ├── quadrupleFwd.hpp │ │ ├── quadrupleI.hpp │ │ └── quadrupleMath.hpp │ │ ├── triple │ │ ├── triple.hpp │ │ ├── tripleFwd.hpp │ │ ├── tripleI.hpp │ │ └── tripleMath.hpp │ │ ├── types.cpp │ │ └── types.hpp └── setHelpers │ ├── finalize.hpp │ ├── initialize.hpp │ ├── initialize_Control.hpp │ ├── setPointStructure.hpp │ ├── setProperty.hpp │ └── setSurfaceGeometry.hpp ├── thirdParty ├── README.md └── Zoltan │ ├── CMakeLists.txt │ ├── COPYRIGHT_AND_LICENSE │ ├── Disclaimer │ ├── Known_Problems │ ├── Makefile.am │ ├── Makefile.export.zoltan.in │ ├── Makefile.in │ ├── README │ ├── README.developer │ ├── README.md │ ├── ReleaseNotes.txt │ ├── SampleCmakeScripts │ ├── linux_zoltan_gid_64_only │ ├── linux_zoltan_only │ ├── linux_zoltan_only_purify │ ├── linux_zoltan_only_serial │ └── mac_osX_zoltan_only │ ├── SampleConfigurationScripts │ ├── linux_trilinos_runtests │ ├── linux_with_purify_zoltan_only │ ├── linux_zoltan_dist │ ├── linux_zoltan_only │ ├── mac_osX_no_fortran │ ├── mac_osX_zoltan_dist │ └── mac_osX_zoltan_only │ ├── VERSION │ ├── bootstrap-local │ ├── buildlib │ ├── cmake │ ├── Dependencies.cmake │ └── Zoltan_config.h.in │ ├── config │ ├── ax_f90_module_case.m4 │ ├── ax_f90_module_flag.m4 │ ├── compile │ ├── config.guess │ ├── config.sub │ ├── depcomp │ ├── generate-makeoptions.pl │ ├── install-sh │ ├── missing │ ├── replace-install-prefix.pl │ ├── string-replace.pl │ ├── strip_dup_incl_paths.pl │ ├── strip_dup_libs.pl │ ├── tac_arg_check_mpi.m4 │ ├── tac_arg_config_mpi.m4 │ ├── tac_arg_enable_export-makefiles.m4 │ ├── tac_arg_enable_feature.m4 │ ├── tac_arg_enable_feature_sub.m4 │ ├── tac_arg_enable_feature_sub_check.m4 │ ├── tac_arg_enable_option.m4 │ ├── tac_arg_with_3pl_sub.m4 │ ├── tac_arg_with_ar.m4 │ ├── tac_arg_with_flags.m4 │ ├── tac_arg_with_incdirs.m4 │ ├── tac_arg_with_libdirs.m4 │ ├── tac_arg_with_libs.m4 │ ├── tac_arg_with_package.m4 │ ├── tac_arg_with_perl.m4 │ ├── token-replace.pl │ ├── wk_fc_get_vendor.m4 │ ├── zac_arg_config_mpi.m4 │ └── zac_arg_with_id.m4 │ ├── configure │ ├── configure.ac │ ├── doc │ ├── NEA_docs │ │ ├── developer_html │ │ │ └── dev_hybrid.html │ │ └── writeup │ │ │ ├── 128_breakdown_percent.pdf │ │ │ ├── 128_cutl.pdf │ │ │ ├── 128_time.pdf │ │ │ ├── 2_breakdown_percent.pdf │ │ │ ├── 2_cutl.pdf │ │ │ ├── 2_time.pdf │ │ │ ├── hybrid_current.aux │ │ │ ├── hybrid_current.log │ │ │ ├── hybrid_current.pdf │ │ │ ├── hybrid_current.tex │ │ │ └── odin-data.ods │ ├── Tutorial │ │ ├── zoltan_tutorial_document.pdf │ │ └── zoltan_tutorial_presentation.pdf │ └── Zoltan_pdf │ │ └── ug.pdf │ ├── docs │ ├── Zoltan.html │ ├── Zoltan_FAQ.html │ ├── Zoltan_bugreport.html │ ├── Zoltan_cite.html │ ├── Zoltan_construction.html │ ├── Zoltan_download.html │ ├── Zoltan_phil.html │ ├── Zoltan_pubs.html │ ├── dev_html │ │ ├── brack3d.png │ │ ├── dev.html │ │ ├── devOLD.html │ │ ├── dev_add.html │ │ ├── dev_add_interface.html │ │ ├── dev_add_lb.html │ │ ├── dev_add_memory.html │ │ ├── dev_add_params.html │ │ ├── dev_add_remap.html │ │ ├── dev_add_struct.html │ │ ├── dev_cpp.html │ │ ├── dev_degenerate.html │ │ ├── dev_dist.html │ │ ├── dev_dist_compile.html │ │ ├── dev_dist_cvs.html │ │ ├── dev_dist_dir.html │ │ ├── dev_driver.html │ │ ├── dev_fortran.html │ │ ├── dev_hier.html │ │ ├── dev_hsfc.html │ │ ├── dev_intro.html │ │ ├── dev_intro_coding.html │ │ ├── dev_intro_philosophy.html │ │ ├── dev_intro_sqe.html │ │ ├── dev_lb.html │ │ ├── dev_lb_interface.html │ │ ├── dev_lb_structs.html │ │ ├── dev_lb_types.html │ │ ├── dev_mig.html │ │ ├── dev_parmetis.html │ │ ├── dev_phg.html │ │ ├── dev_rcb.html │ │ ├── dev_refs.html │ │ ├── dev_reftree.html │ │ ├── dev_rib.html │ │ ├── dev_services.html │ │ ├── dev_services_debug.html │ │ ├── dev_services_hash.html │ │ ├── dev_services_objlist.html │ │ ├── dev_services_parallel.html │ │ ├── dev_services_params.html │ │ ├── dev_services_time.html │ │ ├── dev_services_zoltantimer.html │ │ ├── dev_test_script.html │ │ ├── dev_view.html │ │ ├── figures │ │ │ └── arrow.gif │ │ ├── film2d.png │ │ ├── hammondMesh.png │ │ ├── hammondPoints.png │ │ └── zdrive.inp │ ├── index.html │ ├── tu_html │ │ ├── Makefile │ │ ├── README │ │ ├── api.tex │ │ ├── contents.tex │ │ ├── examples.tex │ │ ├── introduction.tex │ │ ├── methods.tex │ │ └── tutorial.html │ └── ug_html │ │ ├── Structural_MATVEC_Avg_Time.jpg │ │ ├── figures │ │ ├── HGFigure.gif │ │ ├── Z.gif │ │ ├── arrow.gif │ │ ├── hierexample.fig │ │ └── hierexample.gif │ │ ├── ug.html │ │ ├── ug_alg.html │ │ ├── ug_alg_block.html │ │ ├── ug_alg_cyclic.html │ │ ├── ug_alg_geom.html │ │ ├── ug_alg_graph.html │ │ ├── ug_alg_hier.html │ │ ├── ug_alg_hsfc.html │ │ ├── ug_alg_hypergraph.html │ │ ├── ug_alg_jostle.html │ │ ├── ug_alg_oct.html │ │ ├── ug_alg_parkway.html │ │ ├── ug_alg_parmetis.html │ │ ├── ug_alg_patoh.html │ │ ├── ug_alg_phg.html │ │ ├── ug_alg_ptscotch.html │ │ ├── ug_alg_random.html │ │ ├── ug_alg_rcb.html │ │ ├── ug_alg_reftree.html │ │ ├── ug_alg_rib.html │ │ ├── ug_alg_simple.html │ │ ├── ug_backward.html │ │ ├── ug_color.html │ │ ├── ug_color_parallel.html │ │ ├── ug_cpp.html │ │ ├── ug_examples.html │ │ ├── ug_examples_init.html │ │ ├── ug_examples_lb.html │ │ ├── ug_examples_mig.html │ │ ├── ug_examples_query.html │ │ ├── ug_fortran.html │ │ ├── ug_graph_build.html │ │ ├── ug_graph_vs_hg.html │ │ ├── ug_index.html │ │ ├── ug_interface.html │ │ ├── ug_interface_augment.html │ │ ├── ug_interface_color.html │ │ ├── ug_interface_init.html │ │ ├── ug_interface_lb.html │ │ ├── ug_interface_mig.html │ │ ├── ug_interface_order.html │ │ ├── ug_intro.html │ │ ├── ug_order.html │ │ ├── ug_order_local_hsfc.html │ │ ├── ug_order_parmetis.html │ │ ├── ug_order_ptscotch.html │ │ ├── ug_param.html │ │ ├── ug_query.html │ │ ├── ug_query_lb.html │ │ ├── ug_query_mig.html │ │ ├── ug_refs.html │ │ ├── ug_release.html │ │ ├── ug_usage.html │ │ ├── ug_util.html │ │ ├── ug_util_comm.html │ │ ├── ug_util_dd.html │ │ └── ug_util_mem.html │ ├── example │ ├── C │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── classicMakefile │ │ ├── coloring │ │ │ ├── README │ │ │ ├── makefile.old │ │ │ ├── zcol.c │ │ │ └── zcoldriver.c │ │ ├── graph.txt │ │ ├── hypergraph.txt │ │ ├── mesh.txt │ │ ├── migrateGRAPH.c │ │ ├── objects.txt │ │ ├── problemGRAPH.c │ │ ├── simpleBLOCK.c │ │ ├── simpleGRAPH.c │ │ ├── simpleHIER.c │ │ ├── simplePHG.c │ │ └── simpleRCB.c │ ├── CMakeLists.txt │ ├── CPP │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── classicMakefile │ │ ├── exampleBLOCK.cpp │ │ └── objects.txt │ ├── Fortran │ │ ├── CMakeLists.txt │ │ ├── classicMakefile │ │ ├── mesh.txt │ │ ├── mpi_h.f │ │ ├── simpleRCB.f90 │ │ └── zoltanRCBmod.f90 │ ├── Makefile.am │ ├── Makefile.in │ └── README │ ├── siMPI │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── VERSION │ ├── cvsco │ ├── pyMPI │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ └── siMPI │ │ │ ├── CMakeLists.txt │ │ │ ├── MPIO_Test.c │ │ │ ├── MPIO_Wait.c │ │ │ ├── MPI_Abort.1.c │ │ │ ├── MPI_Address.c │ │ │ ├── MPI_Allgather.c │ │ │ ├── MPI_Allgatherv.c │ │ │ ├── MPI_Allreduce.c │ │ │ ├── MPI_Alltoall.c │ │ │ ├── MPI_Alltoallv.c │ │ │ ├── MPI_Attr_delete.c │ │ │ ├── MPI_Attr_get.c │ │ │ ├── MPI_Attr_put.c │ │ │ ├── MPI_Barrier.c │ │ │ ├── MPI_Bcast.1.c │ │ │ ├── MPI_Bsend.c │ │ │ ├── MPI_Bsend_init.c │ │ │ ├── MPI_Buffer_attach.c │ │ │ ├── MPI_Buffer_detach.c │ │ │ ├── MPI_Cancel.c │ │ │ ├── MPI_Cart_coords.c │ │ │ ├── MPI_Cart_create.c │ │ │ ├── MPI_Cart_get.c │ │ │ ├── MPI_Cart_map.c │ │ │ ├── MPI_Cart_rank.c │ │ │ ├── MPI_Cart_shift.c │ │ │ ├── MPI_Cart_sub.c │ │ │ ├── MPI_Cartdim_get.c │ │ │ ├── MPI_Comm_compare.c │ │ │ ├── MPI_Comm_create.c │ │ │ ├── MPI_Comm_dup.c │ │ │ ├── MPI_Comm_free.c │ │ │ ├── MPI_Comm_get_name.c │ │ │ ├── MPI_Comm_group.c │ │ │ ├── MPI_Comm_rank.c │ │ │ ├── MPI_Comm_remote_group.c │ │ │ ├── MPI_Comm_remote_size.c │ │ │ ├── MPI_Comm_set_name.c │ │ │ ├── MPI_Comm_size.c │ │ │ ├── MPI_Comm_split.c │ │ │ ├── MPI_Comm_test_inter.c │ │ │ ├── MPI_Dims_create.c │ │ │ ├── MPI_ERRORS_ARE_FATAL.c │ │ │ ├── MPI_ERRORS_RETURN.c │ │ │ ├── MPI_Errhandler_create.c │ │ │ ├── MPI_Errhandler_free.c │ │ │ ├── MPI_Errhandler_get.c │ │ │ ├── MPI_Errhandler_set.c │ │ │ ├── MPI_Error_class.c │ │ │ ├── MPI_Error_string.c │ │ │ ├── MPI_File_c2f.c │ │ │ ├── MPI_File_close.c │ │ │ ├── MPI_File_delete.c │ │ │ ├── MPI_File_f2c.c │ │ │ ├── MPI_File_get_amode.c │ │ │ ├── MPI_File_get_atomicity.c │ │ │ ├── MPI_File_get_byte_offset.c │ │ │ ├── MPI_File_get_errhandler.c │ │ │ ├── MPI_File_get_group.c │ │ │ ├── MPI_File_get_info.c │ │ │ ├── MPI_File_get_position.c │ │ │ ├── MPI_File_get_position_shared.c │ │ │ ├── MPI_File_get_size.c │ │ │ ├── MPI_File_get_type_extent.c │ │ │ ├── MPI_File_get_view.c │ │ │ ├── MPI_File_iread.c │ │ │ ├── MPI_File_iread_at.c │ │ │ ├── MPI_File_iread_shared.c │ │ │ ├── MPI_File_iwrite.c │ │ │ ├── MPI_File_iwrite_at.c │ │ │ ├── MPI_File_iwrite_shared.c │ │ │ ├── MPI_File_open.c │ │ │ ├── MPI_File_preallocate.c │ │ │ ├── MPI_File_read.c │ │ │ ├── MPI_File_read_all.c │ │ │ ├── MPI_File_read_all_begin.c │ │ │ ├── MPI_File_read_all_end.c │ │ │ ├── MPI_File_read_at.c │ │ │ ├── MPI_File_read_at_all.c │ │ │ ├── MPI_File_read_at_all_begin.c │ │ │ ├── MPI_File_read_at_all_end.c │ │ │ ├── MPI_File_read_ordered.c │ │ │ ├── MPI_File_read_ordered_begin.c │ │ │ ├── MPI_File_read_ordered_end.c │ │ │ ├── MPI_File_read_shared.c │ │ │ ├── MPI_File_seek.c │ │ │ ├── MPI_File_seek_shared.c │ │ │ ├── MPI_File_set_atomicity.c │ │ │ ├── MPI_File_set_errhandler.c │ │ │ ├── MPI_File_set_info.c │ │ │ ├── MPI_File_set_size.c │ │ │ ├── MPI_File_set_view.c │ │ │ ├── MPI_File_sync.c │ │ │ ├── MPI_File_write.c │ │ │ ├── MPI_File_write_all.c │ │ │ ├── MPI_File_write_all_begin.c │ │ │ ├── MPI_File_write_all_end.c │ │ │ ├── MPI_File_write_at.c │ │ │ ├── MPI_File_write_at_all.c │ │ │ ├── MPI_File_write_at_all_begin.c │ │ │ ├── MPI_File_write_at_all_end.c │ │ │ ├── MPI_File_write_ordered.c │ │ │ ├── MPI_File_write_ordered_begin.c │ │ │ ├── MPI_File_write_ordered_end.c │ │ │ ├── MPI_File_write_shared.c │ │ │ ├── MPI_Finalize.c │ │ │ ├── MPI_Finalized.c │ │ │ ├── MPI_Gather.c │ │ │ ├── MPI_Gatherv.c │ │ │ ├── MPI_Get_count.c │ │ │ ├── MPI_Get_elements.c │ │ │ ├── MPI_Get_processor_name.c │ │ │ ├── MPI_Get_version.c │ │ │ ├── MPI_Graph_create.c │ │ │ ├── MPI_Graph_get.c │ │ │ ├── MPI_Graph_map.c │ │ │ ├── MPI_Graph_neighbors.c │ │ │ ├── MPI_Graph_neighbors_count.c │ │ │ ├── MPI_Graphdims_get.c │ │ │ ├── MPI_Group_compare.c │ │ │ ├── MPI_Group_difference.c │ │ │ ├── MPI_Group_excl.c │ │ │ ├── MPI_Group_free.c │ │ │ ├── MPI_Group_incl.c │ │ │ ├── MPI_Group_intersection.c │ │ │ ├── MPI_Group_range_excl.c │ │ │ ├── MPI_Group_range_incl.c │ │ │ ├── MPI_Group_rank.c │ │ │ ├── MPI_Group_size.c │ │ │ ├── MPI_Group_translate_ranks.c │ │ │ ├── MPI_Group_union.c │ │ │ ├── MPI_Ibsend.c │ │ │ ├── MPI_Info_c2f.c │ │ │ ├── MPI_Info_create.c │ │ │ ├── MPI_Info_delete.c │ │ │ ├── MPI_Info_dup.c │ │ │ ├── MPI_Info_f2c.c │ │ │ ├── MPI_Info_free.c │ │ │ ├── MPI_Info_get.c │ │ │ ├── MPI_Info_get_nkeys.c │ │ │ ├── MPI_Info_get_nthkey.c │ │ │ ├── MPI_Info_get_valuelen.c │ │ │ ├── MPI_Info_set.c │ │ │ ├── MPI_Init.c │ │ │ ├── MPI_Init_thread.c │ │ │ ├── MPI_Initialized.c │ │ │ ├── MPI_Int2handle.c │ │ │ ├── MPI_Intercomm_create.c │ │ │ ├── MPI_Intercomm_merge.c │ │ │ ├── MPI_Iprobe.c │ │ │ ├── MPI_Irecv.c │ │ │ ├── MPI_Irsend.c │ │ │ ├── MPI_Isend.c │ │ │ ├── MPI_Issend.c │ │ │ ├── MPI_Keyval_create.c │ │ │ ├── MPI_Keyval_free.c │ │ │ ├── MPI_Op_create.c │ │ │ ├── MPI_Op_free.c │ │ │ ├── MPI_Pack.c │ │ │ ├── MPI_Pack_size.c │ │ │ ├── MPI_Pcontrol.c │ │ │ ├── MPI_Probe.c │ │ │ ├── MPI_Recv.c │ │ │ ├── MPI_Recv_init.c │ │ │ ├── MPI_Reduce.c │ │ │ ├── MPI_Reduce_scatter.c │ │ │ ├── MPI_Request_c2f.c │ │ │ ├── MPI_Request_free.c │ │ │ ├── MPI_Rsend.c │ │ │ ├── MPI_Rsend_init.c │ │ │ ├── MPI_Scan.c │ │ │ ├── MPI_Scatter.c │ │ │ ├── MPI_Scatterv.c │ │ │ ├── MPI_Send.c │ │ │ ├── MPI_Send_init.c │ │ │ ├── MPI_Sendrecv.c │ │ │ ├── MPI_Sendrecv_replace.c │ │ │ ├── MPI_Ssend.c │ │ │ ├── MPI_Ssend_init.c │ │ │ ├── MPI_Start.c │ │ │ ├── MPI_Startall.c │ │ │ ├── MPI_Status_c2f.c │ │ │ ├── MPI_Status_set_cancelled.c │ │ │ ├── MPI_Status_set_elements.c │ │ │ ├── MPI_Test.c │ │ │ ├── MPI_Test_cancelled.c │ │ │ ├── MPI_Testall.c │ │ │ ├── MPI_Testany.c │ │ │ ├── MPI_Testsome.c │ │ │ ├── MPI_Topo_test.c │ │ │ ├── MPI_Type_commit.c │ │ │ ├── MPI_Type_contiguous.c │ │ │ ├── MPI_Type_create_darray.c │ │ │ ├── MPI_Type_create_indexed_block.c │ │ │ ├── MPI_Type_create_subarray.c │ │ │ ├── MPI_Type_extent.c │ │ │ ├── MPI_Type_free.c │ │ │ ├── MPI_Type_get_contents.c │ │ │ ├── MPI_Type_get_envelope.c │ │ │ ├── MPI_Type_hindexed.c │ │ │ ├── MPI_Type_hvector.c │ │ │ ├── MPI_Type_indexed.c │ │ │ ├── MPI_Type_lb.c │ │ │ ├── MPI_Type_size.c │ │ │ ├── MPI_Type_struct.c │ │ │ ├── MPI_Type_ub.c │ │ │ ├── MPI_Type_vector.c │ │ │ ├── MPI_Unpack.c │ │ │ ├── MPI_Wait.c │ │ │ ├── MPI_Waitall.c │ │ │ ├── MPI_Waitany.c │ │ │ ├── MPI_Waitsome.c │ │ │ ├── MPI_Wtick.c │ │ │ ├── MPI_Wtime.c │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── Makefile.zoltan │ │ │ ├── Makefile_sub │ │ │ ├── PMPIO_Test.c │ │ │ ├── PMPIO_Wait.c │ │ │ ├── PMPI_Abort.c │ │ │ ├── PMPI_Address.c │ │ │ ├── PMPI_Allgather.c │ │ │ ├── PMPI_Allgatherv.c │ │ │ ├── PMPI_Allreduce.c │ │ │ ├── PMPI_Alltoall.c │ │ │ ├── PMPI_Alltoallv.c │ │ │ ├── PMPI_Attr_delete.c │ │ │ ├── PMPI_Attr_get.c │ │ │ ├── PMPI_Attr_put.c │ │ │ ├── PMPI_Barrier.c │ │ │ ├── PMPI_Bcast.c │ │ │ ├── PMPI_Bsend.c │ │ │ ├── PMPI_Bsend_init.c │ │ │ ├── PMPI_Buffer_attach.c │ │ │ ├── PMPI_Buffer_detach.c │ │ │ ├── PMPI_Cancel.c │ │ │ ├── PMPI_Cart_coords.c │ │ │ ├── PMPI_Cart_create.c │ │ │ ├── PMPI_Cart_get.c │ │ │ ├── PMPI_Cart_map.c │ │ │ ├── PMPI_Cart_rank.c │ │ │ ├── PMPI_Cart_shift.c │ │ │ ├── PMPI_Cart_sub.c │ │ │ ├── PMPI_Cartdim_get.c │ │ │ ├── PMPI_Comm_compare.c │ │ │ ├── PMPI_Comm_create.c │ │ │ ├── PMPI_Comm_dup.c │ │ │ ├── PMPI_Comm_free.c │ │ │ ├── PMPI_Comm_get_name.c │ │ │ ├── PMPI_Comm_group.c │ │ │ ├── PMPI_Comm_rank.c │ │ │ ├── PMPI_Comm_remote_group.c │ │ │ ├── PMPI_Comm_remote_size.c │ │ │ ├── PMPI_Comm_set_name.c │ │ │ ├── PMPI_Comm_size.c │ │ │ ├── PMPI_Comm_split.c │ │ │ ├── PMPI_Comm_test_inter.c │ │ │ ├── PMPI_Dims_create.c │ │ │ ├── PMPI_Errhandler_create.c │ │ │ ├── PMPI_Errhandler_free.c │ │ │ ├── PMPI_Errhandler_get.c │ │ │ ├── PMPI_Errhandler_set.c │ │ │ ├── PMPI_Error_class.c │ │ │ ├── PMPI_Error_string.c │ │ │ ├── PMPI_File_c2f.c │ │ │ ├── PMPI_File_close.c │ │ │ ├── PMPI_File_delete.c │ │ │ ├── PMPI_File_f2c.c │ │ │ ├── PMPI_File_get_amode.c │ │ │ ├── PMPI_File_get_atomicity.c │ │ │ ├── PMPI_File_get_byte_offset.c │ │ │ ├── PMPI_File_get_errhandler.c │ │ │ ├── PMPI_File_get_group.c │ │ │ ├── PMPI_File_get_info.c │ │ │ ├── PMPI_File_get_position.c │ │ │ ├── PMPI_File_get_position_shared.c │ │ │ ├── PMPI_File_get_size.c │ │ │ ├── PMPI_File_get_type_extent.c │ │ │ ├── PMPI_File_get_view.c │ │ │ ├── PMPI_File_iread.c │ │ │ ├── PMPI_File_iread_at.c │ │ │ ├── PMPI_File_iread_shared.c │ │ │ ├── PMPI_File_iwrite.c │ │ │ ├── PMPI_File_iwrite_at.c │ │ │ ├── PMPI_File_iwrite_shared.c │ │ │ ├── PMPI_File_open.c │ │ │ ├── PMPI_File_preallocate.c │ │ │ ├── PMPI_File_read.c │ │ │ ├── PMPI_File_read_all.c │ │ │ ├── PMPI_File_read_all_begin.c │ │ │ ├── PMPI_File_read_all_end.c │ │ │ ├── PMPI_File_read_at.c │ │ │ ├── PMPI_File_read_at_all.c │ │ │ ├── PMPI_File_read_at_all_begin.c │ │ │ ├── PMPI_File_read_at_all_end.c │ │ │ ├── PMPI_File_read_ordered.c │ │ │ ├── PMPI_File_read_ordered_begin.c │ │ │ ├── PMPI_File_read_ordered_end.c │ │ │ ├── PMPI_File_read_shared.c │ │ │ ├── PMPI_File_seek.c │ │ │ ├── PMPI_File_seek_shared.c │ │ │ ├── PMPI_File_set_atomicity.c │ │ │ ├── PMPI_File_set_errhandler.c │ │ │ ├── PMPI_File_set_info.c │ │ │ ├── PMPI_File_set_size.c │ │ │ ├── PMPI_File_set_view.c │ │ │ ├── PMPI_File_sync.c │ │ │ ├── PMPI_File_write.c │ │ │ ├── PMPI_File_write_all.c │ │ │ ├── PMPI_File_write_all_begin.c │ │ │ ├── PMPI_File_write_all_end.c │ │ │ ├── PMPI_File_write_at.c │ │ │ ├── PMPI_File_write_at_all.c │ │ │ ├── PMPI_File_write_at_all_begin.c │ │ │ ├── PMPI_File_write_at_all_end.c │ │ │ ├── PMPI_File_write_ordered.c │ │ │ ├── PMPI_File_write_ordered_begin.c │ │ │ ├── PMPI_File_write_ordered_end.c │ │ │ ├── PMPI_File_write_shared.c │ │ │ ├── PMPI_Finalize.c │ │ │ ├── PMPI_Finalized.c │ │ │ ├── PMPI_Gather.c │ │ │ ├── PMPI_Gatherv.c │ │ │ ├── PMPI_Get_count.c │ │ │ ├── PMPI_Get_elements.c │ │ │ ├── PMPI_Get_processor_name.c │ │ │ ├── PMPI_Get_version.c │ │ │ ├── PMPI_Graph_create.c │ │ │ ├── PMPI_Graph_get.c │ │ │ ├── PMPI_Graph_map.c │ │ │ ├── PMPI_Graph_neighbors.c │ │ │ ├── PMPI_Graph_neighbors_count.c │ │ │ ├── PMPI_Graphdims_get.c │ │ │ ├── PMPI_Group_compare.c │ │ │ ├── PMPI_Group_difference.c │ │ │ ├── PMPI_Group_excl.c │ │ │ ├── PMPI_Group_free.c │ │ │ ├── PMPI_Group_incl.c │ │ │ ├── PMPI_Group_intersection.c │ │ │ ├── PMPI_Group_range_excl.c │ │ │ ├── PMPI_Group_range_incl.c │ │ │ ├── PMPI_Group_rank.c │ │ │ ├── PMPI_Group_size.c │ │ │ ├── PMPI_Group_translate_ranks.c │ │ │ ├── PMPI_Group_union.c │ │ │ ├── PMPI_Ibsend.c │ │ │ ├── PMPI_Info_c2f.c │ │ │ ├── PMPI_Info_create.c │ │ │ ├── PMPI_Info_delete.c │ │ │ ├── PMPI_Info_dup.c │ │ │ ├── PMPI_Info_f2c.c │ │ │ ├── PMPI_Info_free.c │ │ │ ├── PMPI_Info_get.c │ │ │ ├── PMPI_Info_get_nkeys.c │ │ │ ├── PMPI_Info_get_nthkey.c │ │ │ ├── PMPI_Info_get_valuelen.c │ │ │ ├── PMPI_Info_set.c │ │ │ ├── PMPI_Init.c │ │ │ ├── PMPI_Init_thread.c │ │ │ ├── PMPI_Initialized.c │ │ │ ├── PMPI_Int2handle.c │ │ │ ├── PMPI_Intercomm_create.c │ │ │ ├── PMPI_Intercomm_merge.c │ │ │ ├── PMPI_Iprobe.c │ │ │ ├── PMPI_Irecv.c │ │ │ ├── PMPI_Irsend.c │ │ │ ├── PMPI_Isend.c │ │ │ ├── PMPI_Issend.c │ │ │ ├── PMPI_Keyval_create.c │ │ │ ├── PMPI_Keyval_free.c │ │ │ ├── PMPI_Msend.c │ │ │ ├── PMPI_Op_create.c │ │ │ ├── PMPI_Op_free.c │ │ │ ├── PMPI_Pack.c │ │ │ ├── PMPI_Pack_size.c │ │ │ ├── PMPI_Pcontrol.c │ │ │ ├── PMPI_Probe.c │ │ │ ├── PMPI_Recv.c │ │ │ ├── PMPI_Recv_init.c │ │ │ ├── PMPI_Reduce.c │ │ │ ├── PMPI_Reduce_scatter.c │ │ │ ├── PMPI_Request_c2f.c │ │ │ ├── PMPI_Request_free.c │ │ │ ├── PMPI_Rsend.c │ │ │ ├── PMPI_Rsend_init.c │ │ │ ├── PMPI_Scan.c │ │ │ ├── PMPI_Scatter.c │ │ │ ├── PMPI_Scatterv.c │ │ │ ├── PMPI_Send.c │ │ │ ├── PMPI_Send_init.c │ │ │ ├── PMPI_Sendrecv.c │ │ │ ├── PMPI_Sendrecv_replace.c │ │ │ ├── PMPI_Ssend.c │ │ │ ├── PMPI_Ssend_init.c │ │ │ ├── PMPI_Start.c │ │ │ ├── PMPI_Startall.c │ │ │ ├── PMPI_Status_c2f.c │ │ │ ├── PMPI_Status_set_cancelled.c │ │ │ ├── PMPI_Status_set_elements.c │ │ │ ├── PMPI_Test.c │ │ │ ├── PMPI_Test_cancelled.c │ │ │ ├── PMPI_Testall.c │ │ │ ├── PMPI_Testany.c │ │ │ ├── PMPI_Testsome.c │ │ │ ├── PMPI_Topo_test.c │ │ │ ├── PMPI_Type_commit.c │ │ │ ├── PMPI_Type_contiguous.c │ │ │ ├── PMPI_Type_create_darray.c │ │ │ ├── PMPI_Type_create_indexed_block.c │ │ │ ├── PMPI_Type_create_subarray.c │ │ │ ├── PMPI_Type_extent.c │ │ │ ├── PMPI_Type_free.c │ │ │ ├── PMPI_Type_get_contents.c │ │ │ ├── PMPI_Type_get_envelope.c │ │ │ ├── PMPI_Type_hindexed.c │ │ │ ├── PMPI_Type_hvector.c │ │ │ ├── PMPI_Type_indexed.c │ │ │ ├── PMPI_Type_lb.c │ │ │ ├── PMPI_Type_size.c │ │ │ ├── PMPI_Type_struct.c │ │ │ ├── PMPI_Type_ub.c │ │ │ ├── PMPI_Type_vector.c │ │ │ ├── PMPI_Unpack.c │ │ │ ├── PMPI_Wait.c │ │ │ ├── PMPI_Waitall.c │ │ │ ├── PMPI_Waitany.c │ │ │ ├── PMPI_Waitsome.c │ │ │ ├── PMPI_Wtick.c │ │ │ ├── PMPI_Wtime.c │ │ │ ├── README │ │ │ ├── _MPI_ABORT.c │ │ │ ├── _MPI_BCAST.c │ │ │ ├── _MPI_CHECK_STATUS.c │ │ │ ├── _MPI_COMM_UTIL.c │ │ │ ├── _MPI_COPY_UTIL.c │ │ │ ├── _MPI_ERR_ROUTINE.c │ │ │ ├── _MPI_OP_UTIL.c │ │ │ ├── _MPI_REQ_UTIL.c │ │ │ ├── _MPI_SENDREC_UTIL.c │ │ │ ├── _MPI_TYPE_UTIL.c │ │ │ ├── _MPI_UTILITY.c │ │ │ ├── _MPI_UTILITY.h │ │ │ ├── _MPI_variables.c │ │ │ ├── boot │ │ │ ├── configuration_info.in │ │ │ ├── configure.ac │ │ │ ├── diffs │ │ │ ├── errors │ │ │ ├── fortran_grinder.c │ │ │ ├── fortran_parameterize.c │ │ │ ├── kdd_mpi_config.h │ │ │ ├── mpi.h │ │ │ ├── mpi_abort.c │ │ │ ├── mpi_config.h │ │ │ ├── mpi_config.h.in │ │ │ ├── mpi_implementation.h │ │ │ ├── mpi_path.h.in │ │ │ ├── mpi_profile.h │ │ │ ├── mpi_prototypes.h │ │ │ ├── mpicc.c │ │ │ ├── mpif77.c │ │ │ ├── mpirun.c │ │ │ ├── regressiontest │ │ │ ├── smoketest.c │ │ │ ├── tests │ │ │ ├── aaa.c │ │ │ ├── monteCarloPi.c │ │ │ ├── ohioTest.c │ │ │ ├── simplePi.c │ │ │ ├── testFinalized0.c │ │ │ ├── testFinalized1.c │ │ │ ├── testFinalized2.c │ │ │ ├── testInitFinalize0.c │ │ │ ├── testInitFinalize1.c │ │ │ ├── testInitFinalize2.c │ │ │ ├── testInitFinalize3.c │ │ │ ├── testInitialized0.c │ │ │ ├── testInitialized1.c │ │ │ ├── testIsend0.c │ │ │ ├── testIsend1.c │ │ │ ├── testIsend2.c │ │ │ ├── testIsend3.c │ │ │ ├── testIsend4.c │ │ │ ├── testIsend5.c │ │ │ ├── testIsend6.c │ │ │ ├── testIsend7.c │ │ │ ├── testRankSize0.c │ │ │ ├── testRankSize1.c │ │ │ ├── testRankSize2.c │ │ │ ├── testRankSize3.c │ │ │ ├── testRankSize4.c │ │ │ ├── testRankSize5.c │ │ │ ├── testRankSize6.c │ │ │ ├── testRankSize7.c │ │ │ ├── testReduce0.c │ │ │ ├── testReduce1.c │ │ │ ├── testReduce2.c │ │ │ ├── testReduce3.c │ │ │ ├── testReduce4.c │ │ │ ├── testSendRecv0.c │ │ │ ├── testSendRecv1.c │ │ │ ├── testSendRecv10.c │ │ │ ├── testSendRecv11.c │ │ │ ├── testSendRecv12.c │ │ │ ├── testSendRecv2.c │ │ │ ├── testSendRecv3.c │ │ │ ├── testSendRecv4.c │ │ │ ├── testSendRecv5.c │ │ │ ├── testSendRecv6.c │ │ │ ├── testSendRecv7.c │ │ │ ├── testSendRecv8.c │ │ │ ├── testSendRecv9.c │ │ │ ├── testSendrecv0.1.c │ │ │ ├── testSendrecv1.1.c │ │ │ ├── testSendrecv2.1.c │ │ │ ├── testTypeContig0.c │ │ │ ├── testWait0.c │ │ │ └── trapezoidal.c │ │ │ └── zz_edit_cvs_version_info │ └── siMPI_README.txt │ ├── siMPI_README.txt │ ├── src │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── Makefile.in │ ├── Utilities │ │ ├── Communication │ │ │ ├── README │ │ │ ├── comm.h │ │ │ ├── comm_create.c │ │ │ ├── comm_destroy.c │ │ │ ├── comm_do.c │ │ │ ├── comm_do_reverse.c │ │ │ ├── comm_exchange_sizes.c │ │ │ ├── comm_info.c │ │ │ ├── comm_invert_map.c │ │ │ ├── comm_invert_plan.c │ │ │ ├── comm_resize.c │ │ │ └── comm_sort_ints.c │ │ ├── DDirectory │ │ │ ├── DD_Create.c │ │ │ ├── DD_Destroy.c │ │ │ ├── DD_Find.c │ │ │ ├── DD_Hash2.c │ │ │ ├── DD_Memory.c │ │ │ ├── DD_Memory.h │ │ │ ├── DD_Print.c │ │ │ ├── DD_Remove.c │ │ │ ├── DD_Set_Hash_Fn.c │ │ │ ├── DD_Set_Neighbor_Hash_Fn1.c │ │ │ ├── DD_Set_Neighbor_Hash_Fn2.c │ │ │ ├── DD_Set_Neighbor_Hash_Fn3.c │ │ │ ├── DD_Stats.c │ │ │ ├── DD_Update.c │ │ │ ├── README │ │ │ └── zoltan_dd_const.h │ │ ├── Memory │ │ │ ├── README │ │ │ └── mem.c │ │ ├── README │ │ ├── Timer │ │ │ ├── README │ │ │ ├── timer.c │ │ │ ├── timer.h │ │ │ └── zoltan_timer.c │ │ └── shared │ │ │ ├── zoltan_align.c │ │ │ ├── zoltan_id.c │ │ │ ├── zoltan_id.h │ │ │ └── zoltan_util.h │ ├── all │ │ ├── README │ │ ├── all_allo.c │ │ └── all_allo_const.h │ ├── ch │ │ ├── README │ │ ├── ch_dist_graph.c │ │ ├── ch_init_dist.c │ │ ├── ch_init_dist_const.h │ │ ├── ch_input_assign.c │ │ ├── ch_input_const.h │ │ ├── ch_input_geom.c │ │ ├── ch_input_graph.c │ │ └── ch_input_read.c │ ├── coloring │ │ ├── bucket.c │ │ ├── bucket.h │ │ ├── color_test.c │ │ ├── coloring.c │ │ ├── coloring.h │ │ ├── coloring_const.h │ │ ├── g2l_hash.c │ │ └── g2l_hash.h │ ├── driver │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── dr_chaco_io.c │ │ ├── dr_chaco_io.c.shockstem │ │ ├── dr_compress.c │ │ ├── dr_compress_const.h │ │ ├── dr_const.h │ │ ├── dr_dd.c │ │ ├── dr_dd.h │ │ ├── dr_ddCPP.cpp │ │ ├── dr_elem.c │ │ ├── dr_elem_const.h │ │ ├── dr_elem_util.c │ │ ├── dr_elem_util_const.h │ │ ├── dr_err.c │ │ ├── dr_err_const.h │ │ ├── dr_eval.c │ │ ├── dr_eval_const.h │ │ ├── dr_exoII_io.c │ │ ├── dr_exoII_ioCPP.cpp │ │ ├── dr_externs.h │ │ ├── dr_gnuplot.c │ │ ├── dr_hg_io.c │ │ ├── dr_hg_readfile.c │ │ ├── dr_hg_readfile.h │ │ ├── dr_input.c │ │ ├── dr_input.c.shockstem │ │ ├── dr_input_const.h │ │ ├── dr_input_const.h.shockstem │ │ ├── dr_loadbal.c │ │ ├── dr_loadbalCPP.cpp │ │ ├── dr_loadbal_const.h │ │ ├── dr_main.c │ │ ├── dr_main.c.shockstem │ │ ├── dr_mainCPP.cpp │ │ ├── dr_maps.c │ │ ├── dr_mapsCPP.cpp │ │ ├── dr_maps_const.h │ │ ├── dr_migrate.c │ │ ├── dr_migrate.c.shockstem │ │ ├── dr_migrateCPP.cpp │ │ ├── dr_mm_readfile.c │ │ ├── dr_mmio.c │ │ ├── dr_mmio.h │ │ ├── dr_output.c │ │ ├── dr_output_const.h │ │ ├── dr_par_util.c │ │ ├── dr_par_util_const.h │ │ ├── dr_param_file.c │ │ ├── dr_param_file.h │ │ ├── dr_param_fileCPP.cpp │ │ ├── dr_param_fileCPP.h │ │ ├── dr_random_io.c │ │ ├── dr_setfixed.c │ │ ├── dr_util.c │ │ ├── dr_util_const.h │ │ └── order_test.c │ ├── fdriver │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README.mpich │ │ ├── farg_nagf95.f │ │ ├── farg_typical.f │ │ ├── fdr_chaco_io.f90 │ │ ├── fdr_const.f90 │ │ ├── fdr_input.f90 │ │ ├── fdr_loadbal.f90 │ │ ├── fdr_main.f90 │ │ ├── fdr_migrate.f90 │ │ ├── fdr_mm_io.f90 │ │ ├── fdr_param_file.f90 │ │ ├── fdr_sort.f90 │ │ ├── makefile │ │ ├── mmio.f │ │ ├── mpi_h.f │ │ └── zoltan_user_data.f90.old │ ├── fort │ │ ├── README │ │ ├── cwrap.c │ │ ├── cwrap_fmangle.h │ │ ├── fwrap.f90 │ │ ├── makefile │ │ ├── set_borderobjlist.fn │ │ ├── set_borderobjlist.if │ │ ├── set_childlist.fn │ │ ├── set_childlist.if │ │ ├── set_childweight.fn │ │ ├── set_childweight.if │ │ ├── set_coarseobjlist.fn │ │ ├── set_coarseobjlist.if │ │ ├── set_edgelist.fn │ │ ├── set_edgelist.if │ │ ├── set_edgelistmulti.fn │ │ ├── set_edgelistmulti.if │ │ ├── set_firstborderobj.fn │ │ ├── set_firstborderobj.if │ │ ├── set_firstcoarseobj.fn │ │ ├── set_firstcoarseobj.if │ │ ├── set_firstobj.fn │ │ ├── set_firstobj.if │ │ ├── set_fixedobjlist.fn │ │ ├── set_fixedobjlist.if │ │ ├── set_geom.fn │ │ ├── set_geom.if │ │ ├── set_geommulti.fn │ │ ├── set_geommulti.if │ │ ├── set_hgcs.fn │ │ ├── set_hgcs.if │ │ ├── set_hgedgeweights.fn │ │ ├── set_hgedgeweights.if │ │ ├── set_hgsizecs.fn │ │ ├── set_hgsizecs.if │ │ ├── set_hgsizeedgeweights.fn │ │ ├── set_hgsizeedgeweights.if │ │ ├── set_hiermethod.fn │ │ ├── set_hiermethod.if │ │ ├── set_hiernumlevels.fn │ │ ├── set_hiernumlevels.if │ │ ├── set_hierpartition.fn │ │ ├── set_hierpartition.if │ │ ├── set_midmigrate.fn │ │ ├── set_midmigrate.if │ │ ├── set_midmigratepp.fn │ │ ├── set_midmigratepp.if │ │ ├── set_nextborderobj.fn │ │ ├── set_nextborderobj.if │ │ ├── set_nextcoarseobj.fn │ │ ├── set_nextcoarseobj.if │ │ ├── set_nextobj.fn │ │ ├── set_nextobj.if │ │ ├── set_numborderobj.fn │ │ ├── set_numborderobj.if │ │ ├── set_numchild.fn │ │ ├── set_numchild.if │ │ ├── set_numcoarseobj.fn │ │ ├── set_numcoarseobj.if │ │ ├── set_numedges.fn │ │ ├── set_numedges.if │ │ ├── set_numedgesmulti.fn │ │ ├── set_numedgesmulti.if │ │ ├── set_numfixedobj.fn │ │ ├── set_numfixedobj.if │ │ ├── set_numgeom.fn │ │ ├── set_numgeom.if │ │ ├── set_numobj.fn │ │ ├── set_numobj.if │ │ ├── set_objlist.fn │ │ ├── set_objlist.if │ │ ├── set_objsize.fn │ │ ├── set_objsize.if │ │ ├── set_objsizemulti.fn │ │ ├── set_objsizemulti.if │ │ ├── set_packobj.fn │ │ ├── set_packobj.if │ │ ├── set_packobjmulti.fn │ │ ├── set_packobjmulti.if │ │ ├── set_partition.fn │ │ ├── set_partition.if │ │ ├── set_partitionmulti.fn │ │ ├── set_partitionmulti.if │ │ ├── set_postmigrate.fn │ │ ├── set_postmigrate.if │ │ ├── set_postmigratepp.fn │ │ ├── set_postmigratepp.if │ │ ├── set_premigrate.fn │ │ ├── set_premigrate.if │ │ ├── set_premigratepp.fn │ │ ├── set_premigratepp.if │ │ ├── set_unpackobj.fn │ │ ├── set_unpackobj.if │ │ ├── set_unpackobjmulti.fn │ │ ├── set_unpackobjmulti.if │ │ ├── zoltan_user_data.f90 │ │ └── ztypes.f90 │ ├── graph │ │ ├── graph.c │ │ ├── graph.h │ │ ├── graph_const.h │ │ └── graph_params.h │ ├── ha │ │ ├── README │ │ ├── divide_machine.c │ │ ├── get_processor_name.c │ │ ├── ha_const.h │ │ ├── ha_ovis.c │ │ └── ha_ovis.h │ ├── hier │ │ ├── README │ │ ├── hier.c │ │ ├── hier.h │ │ └── hier_free_struct.c │ ├── hsfc │ │ ├── hsfc.c │ │ ├── hsfc.h │ │ ├── hsfc_box_assign.c │ │ ├── hsfc_const.h │ │ ├── hsfc_hilbert.c │ │ ├── hsfc_hilbert_const.h │ │ ├── hsfc_params.h │ │ └── hsfc_point_assign.c │ ├── lb │ │ ├── README │ │ ├── lb_balance.c │ │ ├── lb_box_assign.c │ │ ├── lb_const.h │ │ ├── lb_copy.c │ │ ├── lb_eval.c │ │ ├── lb_free.c │ │ ├── lb_init.c │ │ ├── lb_init_const.h │ │ ├── lb_invert.c │ │ ├── lb_migrate.c │ │ ├── lb_part2proc.c │ │ ├── lb_point_assign.c │ │ ├── lb_remap.c │ │ ├── lb_set_fn.c │ │ ├── lb_set_method.c │ │ ├── lb_set_part_sizes.c │ │ └── low_mem_lb_migrate.c │ ├── matlab │ │ ├── README │ │ ├── mmread.m │ │ ├── mmwrite.m │ │ ├── plotcolors.m │ │ ├── zdrive.matlab │ │ ├── zoltPartSpy.m │ │ └── zoltan.m │ ├── matrix │ │ ├── matrix_build.c │ │ ├── matrix_distribute.c │ │ ├── matrix_operations.c │ │ ├── matrix_sym.c │ │ ├── matrix_utils.c │ │ └── zoltan_matrix.h │ ├── order │ │ ├── README │ │ ├── hsfcOrder.c │ │ ├── hsfcOrder.h │ │ ├── hund.c │ │ ├── order.c │ │ ├── order_const.h │ │ ├── order_params.h │ │ ├── order_struct.c │ │ ├── order_tools.c │ │ └── perm.c │ ├── par │ │ ├── README │ │ ├── par_average.c │ │ ├── par_average_const.h │ │ ├── par_bisect.c │ │ ├── par_bisect_const.h │ │ ├── par_const.h │ │ ├── par_median.c │ │ ├── par_median_const.h │ │ ├── par_median_randomized.c │ │ ├── par_stats.c │ │ ├── par_sync.c │ │ ├── par_tflops_special.c │ │ └── par_tflops_special_const.h │ ├── params │ │ ├── README │ │ ├── assign_param_vals.c │ │ ├── bind_param.c │ │ ├── check_param.c │ │ ├── free_params.c │ │ ├── key_params.c │ │ ├── key_params.h │ │ ├── params_const.h │ │ ├── print_params.c │ │ └── set_param.c │ ├── phg │ │ ├── README │ │ ├── phg.c │ │ ├── phg.h │ │ ├── phg_Vcycle.c │ │ ├── phg_build.c │ │ ├── phg_build.c.improved_calculate_cuts │ │ ├── phg_build_calls.c │ │ ├── phg_coarse.c │ │ ├── phg_comm.c │ │ ├── phg_comm.h │ │ ├── phg_const.h │ │ ├── phg_distrib.c │ │ ├── phg_distrib.h │ │ ├── phg_gather.c │ │ ├── phg_hypergraph.c │ │ ├── phg_hypergraph.h │ │ ├── phg_lookup.c │ │ ├── phg_lookup.h │ │ ├── phg_match.c │ │ ├── phg_order.c │ │ ├── phg_params.h │ │ ├── phg_parkway.c │ │ ├── phg_partition_tree.c │ │ ├── phg_patoh.c │ │ ├── phg_plot.c │ │ ├── phg_rdivide.c │ │ ├── phg_refinement.c │ │ ├── phg_scale.c │ │ ├── phg_serialpartition.c │ │ ├── phg_tree.c │ │ ├── phg_tree.h │ │ ├── phg_two_ways.c │ │ ├── phg_util.c │ │ ├── phg_util.h │ │ ├── phg_verbose.c │ │ └── phg_verbose.h │ ├── rcb │ │ ├── README │ │ ├── box_assign.c │ │ ├── create_proc_list.c │ │ ├── create_proc_list_const.h │ │ ├── inertial.h │ │ ├── inertial1d.c │ │ ├── inertial2d.c │ │ ├── inertial3d.c │ │ ├── point_assign.c │ │ ├── rcb.c │ │ ├── rcb.h │ │ ├── rcb_box.c │ │ ├── rcb_const.h │ │ ├── rcb_params.h │ │ ├── rcb_partition_tree.c │ │ ├── rcb_util.c │ │ ├── rib.c │ │ ├── rib.h │ │ ├── rib_const.h │ │ ├── rib_params.h │ │ ├── rib_util.c │ │ ├── shared.c │ │ └── shared.h │ ├── reftree │ │ ├── README │ │ ├── reftree.h │ │ ├── reftree_build.c │ │ ├── reftree_coarse_path.c │ │ ├── reftree_const.h │ │ ├── reftree_hash.c │ │ └── reftree_part.c │ ├── simple │ │ ├── README │ │ ├── block.c │ │ ├── cyclic.c │ │ ├── random.c │ │ └── simple_const.h │ ├── timer │ │ ├── README │ │ ├── timer_const.h │ │ └── timer_params.c │ ├── tpls │ │ ├── README │ │ ├── build_graph.c │ │ ├── graph_util.h │ │ ├── parmetis_interface.c │ │ ├── parmetis_interface.h │ │ ├── parmetis_interface_params.h │ │ ├── postprocessing.c │ │ ├── preprocessing.c │ │ ├── scatter_graph.c │ │ ├── scotch_interface.c │ │ ├── scotch_interface.h │ │ ├── scotch_interface_params.h │ │ ├── third_library.c │ │ ├── third_library.h │ │ ├── third_library_const.h │ │ ├── third_library_params.h │ │ ├── third_library_tools.h │ │ └── verify_graph.c │ └── zz │ │ ├── README │ │ ├── murmur3.c │ │ ├── zz_back_trace.c │ │ ├── zz_const.h │ │ ├── zz_coord.c │ │ ├── zz_gen_files.c │ │ ├── zz_hash.c │ │ ├── zz_hash.h │ │ ├── zz_heap.c │ │ ├── zz_heap.h │ │ ├── zz_id_const.h │ │ ├── zz_init.c │ │ ├── zz_map.c │ │ ├── zz_obj_list.c │ │ ├── zz_rand.c │ │ ├── zz_rand.h │ │ ├── zz_set_fn.c │ │ ├── zz_sort.c │ │ ├── zz_sort.h │ │ ├── zz_struct.c │ │ ├── zz_util.c │ │ └── zz_util_const.h │ └── test │ ├── CMakeLists.txt │ ├── README │ ├── ch_simple │ ├── CMakeLists.txt │ ├── README │ ├── answers │ │ ├── simple.adaptive-partless-v3.4.0 │ │ ├── simple.adaptive-partless-v3.4.1 │ │ ├── simple.adaptive-partless-v3.4.2 │ │ ├── simple.adaptive-partless-v3.4.3 │ │ ├── simple.adaptive-partlocal1-v3.4.0 │ │ ├── simple.adaptive-partlocal1-v3.4.1 │ │ ├── simple.adaptive-partlocal1-v3.4.2 │ │ ├── simple.adaptive-partlocal1-v3.4.3 │ │ ├── simple.adaptive-partlocal2-v3.4.0 │ │ ├── simple.adaptive-partlocal2-v3.4.1 │ │ ├── simple.adaptive-partlocal2-v3.4.2 │ │ ├── simple.adaptive-partlocal2-v3.4.3 │ │ ├── simple.adaptive-partlocal3-v3.4.0 │ │ ├── simple.adaptive-partlocal3-v3.4.1 │ │ ├── simple.adaptive-partlocal3-v3.4.2 │ │ ├── simple.adaptive-partlocal3-v3.4.3 │ │ ├── simple.adaptive-partlocal4-v3.4.0 │ │ ├── simple.adaptive-partlocal4-v3.4.1 │ │ ├── simple.adaptive-partlocal4-v3.4.2 │ │ ├── simple.adaptive-partlocal4-v3.4.3 │ │ ├── simple.adaptive-partlocal5-v3.4.0 │ │ ├── simple.adaptive-partlocal5-v3.4.1 │ │ ├── simple.adaptive-partlocal5-v3.4.2 │ │ ├── simple.adaptive-partlocal5-v3.4.3 │ │ ├── simple.adaptive-partmore-v3.4.0 │ │ ├── simple.adaptive-partmore-v3.4.1 │ │ ├── simple.adaptive-partmore-v3.4.2 │ │ ├── simple.adaptive-partmore-v3.4.3 │ │ ├── simple.adaptive-v3.1.0 │ │ ├── simple.adaptive-v3.4.0 │ │ ├── simple.adaptive-v3.4.1 │ │ ├── simple.adaptive-v3.4.2 │ │ ├── simple.adaptive-v3.4.3 │ │ ├── simple.block-oneproc.4.0 │ │ ├── simple.block-oneproc.4.1 │ │ ├── simple.block-oneproc.4.2 │ │ ├── simple.block-oneproc.4.3 │ │ ├── simple.block-partless.4.0 │ │ ├── simple.block-partless.4.1 │ │ ├── simple.block-partless.4.2 │ │ ├── simple.block-partless.4.3 │ │ ├── simple.block-partmore.4.0 │ │ ├── simple.block-partmore.4.1 │ │ ├── simple.block-partmore.4.2 │ │ ├── simple.block-partmore.4.3 │ │ ├── simple.block.4.0 │ │ ├── simple.block.4.1 │ │ ├── simple.block.4.2 │ │ ├── simple.block.4.3 │ │ ├── simple.color-after-phg.1.0 │ │ ├── simple.color-after-phg.4.0 │ │ ├── simple.color-after-phg.4.1 │ │ ├── simple.color-after-phg.4.2 │ │ ├── simple.color-after-phg.4.3 │ │ ├── simple.color-d2-oneproc.1.0 │ │ ├── simple.color-d2-oneproc.4.0 │ │ ├── simple.color-d2-oneproc.4.1 │ │ ├── simple.color-d2-oneproc.4.2 │ │ ├── simple.color-d2-oneproc.4.3 │ │ ├── simple.color-dist2.1.0 │ │ ├── simple.color-dist2.4.0 │ │ ├── simple.color-dist2.4.1 │ │ ├── simple.color-dist2.4.2 │ │ ├── simple.color-dist2.4.3 │ │ ├── simple.color-orderB.1.0 │ │ ├── simple.color-orderB.4.0 │ │ ├── simple.color-orderB.4.1 │ │ ├── simple.color-orderB.4.2 │ │ ├── simple.color-orderB.4.3 │ │ ├── simple.color-orderU.1.0 │ │ ├── simple.color-orderU.4.0 │ │ ├── simple.color-orderU.4.1 │ │ ├── simple.color-orderU.4.2 │ │ ├── simple.color-orderU.4.3 │ │ ├── simple.color-partialdist2.4.0 │ │ ├── simple.color-partialdist2.4.1 │ │ ├── simple.color-partialdist2.4.2 │ │ ├── simple.color-partialdist2.4.3 │ │ ├── simple.color.1.0 │ │ ├── simple.color.4.0 │ │ ├── simple.color.4.1 │ │ ├── simple.color.4.2 │ │ ├── simple.color.4.3 │ │ ├── simple.cyclic-oneproc.4.0 │ │ ├── simple.cyclic-oneproc.4.1 │ │ ├── simple.cyclic-oneproc.4.2 │ │ ├── simple.cyclic-oneproc.4.3 │ │ ├── simple.cyclic.4.0 │ │ ├── simple.cyclic.4.1 │ │ ├── simple.cyclic.4.2 │ │ ├── simple.cyclic.4.3 │ │ ├── simple.diffusion.4.0 │ │ ├── simple.diffusion.4.1 │ │ ├── simple.diffusion.4.2 │ │ ├── simple.diffusion.4.3 │ │ ├── simple.graph-metis.1.0 │ │ ├── simple.graph-parmetis-partition.4.0 │ │ ├── simple.graph-parmetis-partition.4.1 │ │ ├── simple.graph-parmetis-partition.4.2 │ │ ├── simple.graph-parmetis-partition.4.3 │ │ ├── simple.graph-parmetis-refine.4.0 │ │ ├── simple.graph-parmetis-refine.4.1 │ │ ├── simple.graph-parmetis-refine.4.2 │ │ ├── simple.graph-parmetis-refine.4.3 │ │ ├── simple.graph-parmetis-repartition.4.0 │ │ ├── simple.graph-parmetis-repartition.4.1 │ │ ├── simple.graph-parmetis-repartition.4.2 │ │ ├── simple.graph-parmetis-repartition.4.3 │ │ ├── simple.graph-parmetis.4.0 │ │ ├── simple.graph-parmetis.4.1 │ │ ├── simple.graph-parmetis.4.2 │ │ ├── simple.graph-parmetis.4.3 │ │ ├── simple.graph-partition.4.0 │ │ ├── simple.graph-partition.4.1 │ │ ├── simple.graph-partition.4.2 │ │ ├── simple.graph-partition.4.3 │ │ ├── simple.graph-ptscotch.1.0 │ │ ├── simple.graph-ptscotch.4.0 │ │ ├── simple.graph-ptscotch.4.1 │ │ ├── simple.graph-ptscotch.4.2 │ │ ├── simple.graph-ptscotch.4.3 │ │ ├── simple.graph-refine.4.0 │ │ ├── simple.graph-refine.4.1 │ │ ├── simple.graph-refine.4.2 │ │ ├── simple.graph-refine.4.3 │ │ ├── simple.graph-repartition.4.0 │ │ ├── simple.graph-repartition.4.1 │ │ ├── simple.graph-repartition.4.2 │ │ ├── simple.graph-repartition.4.3 │ │ ├── simple.hier-parmetis2-hsfc.4.0 │ │ ├── simple.hier-parmetis2-hsfc.4.1 │ │ ├── simple.hier-parmetis2-hsfc.4.2 │ │ ├── simple.hier-parmetis2-hsfc.4.3 │ │ ├── simple.hier-parmetis2-rcb.4.0 │ │ ├── simple.hier-parmetis2-rcb.4.1 │ │ ├── simple.hier-parmetis2-rcb.4.2 │ │ ├── simple.hier-parmetis2-rcb.4.3 │ │ ├── simple.hier-rcb2-parmetis.4.0 │ │ ├── simple.hier-rcb2-parmetis.4.1 │ │ ├── simple.hier-rcb2-parmetis.4.2 │ │ ├── simple.hier-rcb2-parmetis.4.3 │ │ ├── simple.hsfc-oneproc.1.0 │ │ ├── simple.hsfc-oneproc.4.0 │ │ ├── simple.hsfc-oneproc.4.1 │ │ ├── simple.hsfc-oneproc.4.2 │ │ ├── simple.hsfc-oneproc.4.3 │ │ ├── simple.hsfc-partless.1.0 │ │ ├── simple.hsfc-partless.4.0 │ │ ├── simple.hsfc-partless.4.1 │ │ ├── simple.hsfc-partless.4.2 │ │ ├── simple.hsfc-partless.4.3 │ │ ├── simple.hsfc-partless.drops.1.0 │ │ ├── simple.hsfc-partless.drops.4.0 │ │ ├── simple.hsfc-partless.drops.4.1 │ │ ├── simple.hsfc-partless.drops.4.2 │ │ ├── simple.hsfc-partless.drops.4.3 │ │ ├── simple.hsfc-partlocal1.4.0 │ │ ├── simple.hsfc-partlocal1.4.1 │ │ ├── simple.hsfc-partlocal1.4.2 │ │ ├── simple.hsfc-partlocal1.4.3 │ │ ├── simple.hsfc-partlocal1.drops.4.0 │ │ ├── simple.hsfc-partlocal1.drops.4.1 │ │ ├── simple.hsfc-partlocal1.drops.4.2 │ │ ├── simple.hsfc-partlocal1.drops.4.3 │ │ ├── simple.hsfc-partlocal2.4.0 │ │ ├── simple.hsfc-partlocal2.4.1 │ │ ├── simple.hsfc-partlocal2.4.2 │ │ ├── simple.hsfc-partlocal2.4.3 │ │ ├── simple.hsfc-partlocal2.drops.4.0 │ │ ├── simple.hsfc-partlocal2.drops.4.1 │ │ ├── simple.hsfc-partlocal2.drops.4.2 │ │ ├── simple.hsfc-partlocal2.drops.4.3 │ │ ├── simple.hsfc-partlocal3.4.0 │ │ ├── simple.hsfc-partlocal3.4.1 │ │ ├── simple.hsfc-partlocal3.4.2 │ │ ├── simple.hsfc-partlocal3.4.3 │ │ ├── simple.hsfc-partlocal3.drops.4.0 │ │ ├── simple.hsfc-partlocal3.drops.4.1 │ │ ├── simple.hsfc-partlocal3.drops.4.2 │ │ ├── simple.hsfc-partlocal3.drops.4.3 │ │ ├── simple.hsfc-partlocal4.4.0 │ │ ├── simple.hsfc-partlocal4.4.1 │ │ ├── simple.hsfc-partlocal4.4.2 │ │ ├── simple.hsfc-partlocal4.4.3 │ │ ├── simple.hsfc-partlocal4.drops.4.0 │ │ ├── simple.hsfc-partlocal4.drops.4.1 │ │ ├── simple.hsfc-partlocal4.drops.4.2 │ │ ├── simple.hsfc-partlocal4.drops.4.3 │ │ ├── simple.hsfc-partmore.1.0 │ │ ├── simple.hsfc-partmore.4.0 │ │ ├── simple.hsfc-partmore.4.1 │ │ ├── simple.hsfc-partmore.4.2 │ │ ├── simple.hsfc-partmore.4.3 │ │ ├── simple.hsfc-partmore.drops.1.0 │ │ ├── simple.hsfc-partmore.drops.4.0 │ │ ├── simple.hsfc-partmore.drops.4.1 │ │ ├── simple.hsfc-partmore.drops.4.2 │ │ ├── simple.hsfc-partmore.drops.4.3 │ │ ├── simple.hsfc.1.0 │ │ ├── simple.hsfc.4.0 │ │ ├── simple.hsfc.4.1 │ │ ├── simple.hsfc.4.2 │ │ ├── simple.hsfc.4.3 │ │ ├── simple.hsfc.drops.1.0 │ │ ├── simple.hsfc.drops.4.0 │ │ ├── simple.hsfc.drops.4.1 │ │ ├── simple.hsfc.drops.4.2 │ │ ├── simple.hsfc.drops.4.3 │ │ ├── simple.order-metis-v3.1.0 │ │ ├── simple.order-parmetis-v3.1.0 │ │ ├── simple.order-parmetis-v3.4.0 │ │ ├── simple.order-parmetis-v3.4.1 │ │ ├── simple.order-parmetis-v3.4.2 │ │ ├── simple.order-parmetis-v3.4.3 │ │ ├── simple.order-ptscotch.1.0 │ │ ├── simple.order-ptscotch.4.0 │ │ ├── simple.order-ptscotch.4.1 │ │ ├── simple.order-ptscotch.4.2 │ │ ├── simple.order-ptscotch.4.3 │ │ ├── simple.order-scotch.1.0 │ │ ├── simple.partgeom-v3.1.0 │ │ ├── simple.partgeom-v3.4.0 │ │ ├── simple.partgeom-v3.4.1 │ │ ├── simple.partgeom-v3.4.2 │ │ ├── simple.partgeom-v3.4.3 │ │ ├── simple.partgeomkway-v3.1.0 │ │ ├── simple.partgeomkway-v3.4.0 │ │ ├── simple.partgeomkway-v3.4.1 │ │ ├── simple.partgeomkway-v3.4.2 │ │ ├── simple.partgeomkway-v3.4.3 │ │ ├── simple.partkway-cyclic-v3.1.0 │ │ ├── simple.partkway-cyclic-v3.4.0 │ │ ├── simple.partkway-cyclic-v3.4.1 │ │ ├── simple.partkway-cyclic-v3.4.2 │ │ ├── simple.partkway-cyclic-v3.4.3 │ │ ├── simple.partkway-cyclic.4.0 │ │ ├── simple.partkway-cyclic.4.1 │ │ ├── simple.partkway-cyclic.4.2 │ │ ├── simple.partkway-cyclic.4.3 │ │ ├── simple.partkway-oneproc-v3.1.0 │ │ ├── simple.partkway-oneproc-v3.4.0 │ │ ├── simple.partkway-oneproc-v3.4.1 │ │ ├── simple.partkway-oneproc-v3.4.2 │ │ ├── simple.partkway-oneproc-v3.4.3 │ │ ├── simple.partkway-order-metis-v3.1.0 │ │ ├── simple.partkway-partless-v3.1.0 │ │ ├── simple.partkway-partless-v3.4.0 │ │ ├── simple.partkway-partless-v3.4.1 │ │ ├── simple.partkway-partless-v3.4.2 │ │ ├── simple.partkway-partless-v3.4.3 │ │ ├── simple.partkway-partlocal1-v3.4.0 │ │ ├── simple.partkway-partlocal1-v3.4.1 │ │ ├── simple.partkway-partlocal1-v3.4.2 │ │ ├── simple.partkway-partlocal1-v3.4.3 │ │ ├── simple.partkway-partlocal2-v3.4.0 │ │ ├── simple.partkway-partlocal2-v3.4.1 │ │ ├── simple.partkway-partlocal2-v3.4.2 │ │ ├── simple.partkway-partlocal2-v3.4.3 │ │ ├── simple.partkway-partlocal3-v3.4.0 │ │ ├── simple.partkway-partlocal3-v3.4.1 │ │ ├── simple.partkway-partlocal3-v3.4.2 │ │ ├── simple.partkway-partlocal3-v3.4.3 │ │ ├── simple.partkway-partlocal4-v3.4.0 │ │ ├── simple.partkway-partlocal4-v3.4.1 │ │ ├── simple.partkway-partlocal4-v3.4.2 │ │ ├── simple.partkway-partlocal4-v3.4.3 │ │ ├── simple.partkway-partmore-v3.1.0 │ │ ├── simple.partkway-partmore-v3.4.0 │ │ ├── simple.partkway-partmore-v3.4.1 │ │ ├── simple.partkway-partmore-v3.4.2 │ │ ├── simple.partkway-partmore-v3.4.3 │ │ ├── simple.partkway-v3.1.0 │ │ ├── simple.partkway-v3.4.0 │ │ ├── simple.partkway-v3.4.1 │ │ ├── simple.partkway-v3.4.2 │ │ ├── simple.partkway-v3.4.3 │ │ ├── simple.partkway-v3.addobjwgt.4.0 │ │ ├── simple.partkway-v3.addobjwgt.4.1 │ │ ├── simple.partkway-v3.addobjwgt.4.2 │ │ ├── simple.partkway-v3.addobjwgt.4.3 │ │ ├── simple.partkway.4.0 │ │ ├── simple.partkway.4.1 │ │ ├── simple.partkway.4.2 │ │ ├── simple.partkway.4.3 │ │ ├── simple.phg.4.0 │ │ ├── simple.phg.4.1 │ │ ├── simple.phg.4.2 │ │ ├── simple.phg.4.3 │ │ ├── simple.phg.addobjwgt.4.0 │ │ ├── simple.phg.addobjwgt.4.1 │ │ ├── simple.phg.addobjwgt.4.2 │ │ ├── simple.phg.addobjwgt.4.3 │ │ ├── simple.random-oneproc.4.0 │ │ ├── simple.random-oneproc.4.1 │ │ ├── simple.random-oneproc.4.2 │ │ ├── simple.random-oneproc.4.3 │ │ ├── simple.random-partless.4.0 │ │ ├── simple.random-partless.4.1 │ │ ├── simple.random-partless.4.2 │ │ ├── simple.random-partless.4.3 │ │ ├── simple.random-partmore.4.0 │ │ ├── simple.random-partmore.4.1 │ │ ├── simple.random-partmore.4.2 │ │ ├── simple.random-partmore.4.3 │ │ ├── simple.random.4.0 │ │ ├── simple.random.4.1 │ │ ├── simple.random.4.2 │ │ ├── simple.random.4.3 │ │ ├── simple.rcb-avg-ts.1.0 │ │ ├── simple.rcb-avg-ts.4.0 │ │ ├── simple.rcb-avg-ts.4.1 │ │ ├── simple.rcb-avg-ts.4.2 │ │ ├── simple.rcb-avg-ts.4.3 │ │ ├── simple.rcb-avg-ts.drops.1.0 │ │ ├── simple.rcb-avg-ts.drops.4.0 │ │ ├── simple.rcb-avg-ts.drops.4.1 │ │ ├── simple.rcb-avg-ts.drops.4.2 │ │ ├── simple.rcb-avg-ts.drops.4.3 │ │ ├── simple.rcb-avg.1.0 │ │ ├── simple.rcb-avg.4.0 │ │ ├── simple.rcb-avg.4.1 │ │ ├── simple.rcb-avg.4.2 │ │ ├── simple.rcb-avg.4.3 │ │ ├── simple.rcb-avg.drops.1.0 │ │ ├── simple.rcb-avg.drops.4.0 │ │ ├── simple.rcb-avg.drops.4.1 │ │ ├── simple.rcb-avg.drops.4.2 │ │ ├── simple.rcb-avg.drops.4.3 │ │ ├── simple.rcb-oneproc.1.0 │ │ ├── simple.rcb-oneproc.4.0 │ │ ├── simple.rcb-oneproc.4.1 │ │ ├── simple.rcb-oneproc.4.2 │ │ ├── simple.rcb-oneproc.4.3 │ │ ├── simple.rcb-partless-ts.1.0 │ │ ├── simple.rcb-partless-ts.4.0 │ │ ├── simple.rcb-partless-ts.4.1 │ │ ├── simple.rcb-partless-ts.4.2 │ │ ├── simple.rcb-partless-ts.4.3 │ │ ├── simple.rcb-partless-ts.drops.1.0 │ │ ├── simple.rcb-partless-ts.drops.4.0 │ │ ├── simple.rcb-partless-ts.drops.4.1 │ │ ├── simple.rcb-partless-ts.drops.4.2 │ │ ├── simple.rcb-partless-ts.drops.4.3 │ │ ├── simple.rcb-partless.1.0 │ │ ├── simple.rcb-partless.4.0 │ │ ├── simple.rcb-partless.4.1 │ │ ├── simple.rcb-partless.4.2 │ │ ├── simple.rcb-partless.4.3 │ │ ├── simple.rcb-partless.drops.1.0 │ │ ├── simple.rcb-partless.drops.4.0 │ │ ├── simple.rcb-partless.drops.4.1 │ │ ├── simple.rcb-partless.drops.4.2 │ │ ├── simple.rcb-partless.drops.4.3 │ │ ├── simple.rcb-partlocal1-ts.4.0 │ │ ├── simple.rcb-partlocal1-ts.4.1 │ │ ├── simple.rcb-partlocal1-ts.4.2 │ │ ├── simple.rcb-partlocal1-ts.4.3 │ │ ├── simple.rcb-partlocal1-ts.drops.4.0 │ │ ├── simple.rcb-partlocal1-ts.drops.4.1 │ │ ├── simple.rcb-partlocal1-ts.drops.4.2 │ │ ├── simple.rcb-partlocal1-ts.drops.4.3 │ │ ├── simple.rcb-partlocal1.4.0 │ │ ├── simple.rcb-partlocal1.4.1 │ │ ├── simple.rcb-partlocal1.4.2 │ │ ├── simple.rcb-partlocal1.4.3 │ │ ├── simple.rcb-partlocal1.drops.4.0 │ │ ├── simple.rcb-partlocal1.drops.4.1 │ │ ├── simple.rcb-partlocal1.drops.4.2 │ │ ├── simple.rcb-partlocal1.drops.4.3 │ │ ├── simple.rcb-partlocal2-ts.4.0 │ │ ├── simple.rcb-partlocal2-ts.4.1 │ │ ├── simple.rcb-partlocal2-ts.4.2 │ │ ├── simple.rcb-partlocal2-ts.4.3 │ │ ├── simple.rcb-partlocal2-ts.drops.4.0 │ │ ├── simple.rcb-partlocal2-ts.drops.4.1 │ │ ├── simple.rcb-partlocal2-ts.drops.4.2 │ │ ├── simple.rcb-partlocal2-ts.drops.4.3 │ │ ├── simple.rcb-partlocal2.4.0 │ │ ├── simple.rcb-partlocal2.4.1 │ │ ├── simple.rcb-partlocal2.4.2 │ │ ├── simple.rcb-partlocal2.4.3 │ │ ├── simple.rcb-partlocal2.drops.4.0 │ │ ├── simple.rcb-partlocal2.drops.4.1 │ │ ├── simple.rcb-partlocal2.drops.4.2 │ │ ├── simple.rcb-partlocal2.drops.4.3 │ │ ├── simple.rcb-partlocal3-ts.4.0 │ │ ├── simple.rcb-partlocal3-ts.4.1 │ │ ├── simple.rcb-partlocal3-ts.4.2 │ │ ├── simple.rcb-partlocal3-ts.4.3 │ │ ├── simple.rcb-partlocal3-ts.drops.4.0 │ │ ├── simple.rcb-partlocal3-ts.drops.4.1 │ │ ├── simple.rcb-partlocal3-ts.drops.4.2 │ │ ├── simple.rcb-partlocal3-ts.drops.4.3 │ │ ├── simple.rcb-partlocal3.4.0 │ │ ├── simple.rcb-partlocal3.4.1 │ │ ├── simple.rcb-partlocal3.4.2 │ │ ├── simple.rcb-partlocal3.4.3 │ │ ├── simple.rcb-partlocal3.drops.4.0 │ │ ├── simple.rcb-partlocal3.drops.4.1 │ │ ├── simple.rcb-partlocal3.drops.4.2 │ │ ├── simple.rcb-partlocal3.drops.4.3 │ │ ├── simple.rcb-partlocal4-ts.4.0 │ │ ├── simple.rcb-partlocal4-ts.4.1 │ │ ├── simple.rcb-partlocal4-ts.4.2 │ │ ├── simple.rcb-partlocal4-ts.4.3 │ │ ├── simple.rcb-partlocal4-ts.drops.4.0 │ │ ├── simple.rcb-partlocal4-ts.drops.4.1 │ │ ├── simple.rcb-partlocal4-ts.drops.4.2 │ │ ├── simple.rcb-partlocal4-ts.drops.4.3 │ │ ├── simple.rcb-partlocal4.4.0 │ │ ├── simple.rcb-partlocal4.4.1 │ │ ├── simple.rcb-partlocal4.4.2 │ │ ├── simple.rcb-partlocal4.4.3 │ │ ├── simple.rcb-partlocal4.drops.4.0 │ │ ├── simple.rcb-partlocal4.drops.4.1 │ │ ├── simple.rcb-partlocal4.drops.4.2 │ │ ├── simple.rcb-partlocal4.drops.4.3 │ │ ├── simple.rcb-partmore-ts.1.0 │ │ ├── simple.rcb-partmore-ts.4.0 │ │ ├── simple.rcb-partmore-ts.4.1 │ │ ├── simple.rcb-partmore-ts.4.2 │ │ ├── simple.rcb-partmore-ts.4.3 │ │ ├── simple.rcb-partmore-ts.drops.1.0 │ │ ├── simple.rcb-partmore-ts.drops.4.0 │ │ ├── simple.rcb-partmore-ts.drops.4.1 │ │ ├── simple.rcb-partmore-ts.drops.4.2 │ │ ├── simple.rcb-partmore-ts.drops.4.3 │ │ ├── simple.rcb-partmore.1.0 │ │ ├── simple.rcb-partmore.4.0 │ │ ├── simple.rcb-partmore.4.1 │ │ ├── simple.rcb-partmore.4.2 │ │ ├── simple.rcb-partmore.4.3 │ │ ├── simple.rcb-partmore.drops.1.0 │ │ ├── simple.rcb-partmore.drops.4.0 │ │ ├── simple.rcb-partmore.drops.4.1 │ │ ├── simple.rcb-partmore.drops.4.2 │ │ ├── simple.rcb-partmore.drops.4.3 │ │ ├── simple.rcb-ts.1.0 │ │ ├── simple.rcb-ts.4.0 │ │ ├── simple.rcb-ts.4.1 │ │ ├── simple.rcb-ts.4.2 │ │ ├── simple.rcb-ts.4.3 │ │ ├── simple.rcb-ts.drops.1.0 │ │ ├── simple.rcb-ts.drops.4.0 │ │ ├── simple.rcb-ts.drops.4.1 │ │ ├── simple.rcb-ts.drops.4.2 │ │ ├── simple.rcb-ts.drops.4.3 │ │ ├── simple.rcb.1.0 │ │ ├── simple.rcb.4.0 │ │ ├── simple.rcb.4.1 │ │ ├── simple.rcb.4.2 │ │ ├── simple.rcb.4.3 │ │ ├── simple.rcb.drops.1.0 │ │ ├── simple.rcb.drops.4.0 │ │ ├── simple.rcb.drops.4.1 │ │ ├── simple.rcb.drops.4.2 │ │ ├── simple.rcb.drops.4.3 │ │ ├── simple.rib-avg-ts.1.0 │ │ ├── simple.rib-avg-ts.4.0 │ │ ├── simple.rib-avg-ts.4.1 │ │ ├── simple.rib-avg-ts.4.2 │ │ ├── simple.rib-avg-ts.4.3 │ │ ├── simple.rib-avg-ts.drops.1.0 │ │ ├── simple.rib-avg-ts.drops.4.0 │ │ ├── simple.rib-avg-ts.drops.4.1 │ │ ├── simple.rib-avg-ts.drops.4.2 │ │ ├── simple.rib-avg-ts.drops.4.3 │ │ ├── simple.rib-avg.1.0 │ │ ├── simple.rib-avg.4.0 │ │ ├── simple.rib-avg.4.1 │ │ ├── simple.rib-avg.4.2 │ │ ├── simple.rib-avg.4.3 │ │ ├── simple.rib-avg.drops.1.0 │ │ ├── simple.rib-avg.drops.4.0 │ │ ├── simple.rib-avg.drops.4.1 │ │ ├── simple.rib-avg.drops.4.2 │ │ ├── simple.rib-avg.drops.4.3 │ │ ├── simple.rib-oneproc.1.0 │ │ ├── simple.rib-oneproc.4.0 │ │ ├── simple.rib-oneproc.4.1 │ │ ├── simple.rib-oneproc.4.2 │ │ ├── simple.rib-oneproc.4.3 │ │ ├── simple.rib-partless-ts.1.0 │ │ ├── simple.rib-partless-ts.4.0 │ │ ├── simple.rib-partless-ts.4.1 │ │ ├── simple.rib-partless-ts.4.2 │ │ ├── simple.rib-partless-ts.4.3 │ │ ├── simple.rib-partless-ts.drops.1.0 │ │ ├── simple.rib-partless-ts.drops.4.0 │ │ ├── simple.rib-partless-ts.drops.4.1 │ │ ├── simple.rib-partless-ts.drops.4.2 │ │ ├── simple.rib-partless-ts.drops.4.3 │ │ ├── simple.rib-partless.1.0 │ │ ├── simple.rib-partless.4.0 │ │ ├── simple.rib-partless.4.1 │ │ ├── simple.rib-partless.4.2 │ │ ├── simple.rib-partless.4.3 │ │ ├── simple.rib-partless.drops.1.0 │ │ ├── simple.rib-partless.drops.4.0 │ │ ├── simple.rib-partless.drops.4.1 │ │ ├── simple.rib-partless.drops.4.2 │ │ ├── simple.rib-partless.drops.4.3 │ │ ├── simple.rib-partlocal1-ts.4.0 │ │ ├── simple.rib-partlocal1-ts.4.1 │ │ ├── simple.rib-partlocal1-ts.4.2 │ │ ├── simple.rib-partlocal1-ts.4.3 │ │ ├── simple.rib-partlocal1-ts.drops.4.0 │ │ ├── simple.rib-partlocal1-ts.drops.4.1 │ │ ├── simple.rib-partlocal1-ts.drops.4.2 │ │ ├── simple.rib-partlocal1-ts.drops.4.3 │ │ ├── simple.rib-partlocal1.4.0 │ │ ├── simple.rib-partlocal1.4.1 │ │ ├── simple.rib-partlocal1.4.2 │ │ ├── simple.rib-partlocal1.4.3 │ │ ├── simple.rib-partlocal1.drops.4.0 │ │ ├── simple.rib-partlocal1.drops.4.1 │ │ ├── simple.rib-partlocal1.drops.4.2 │ │ ├── simple.rib-partlocal1.drops.4.3 │ │ ├── simple.rib-partlocal2-ts.4.0 │ │ ├── simple.rib-partlocal2-ts.4.1 │ │ ├── simple.rib-partlocal2-ts.4.2 │ │ ├── simple.rib-partlocal2-ts.4.3 │ │ ├── simple.rib-partlocal2-ts.drops.4.0 │ │ ├── simple.rib-partlocal2-ts.drops.4.1 │ │ ├── simple.rib-partlocal2-ts.drops.4.2 │ │ ├── simple.rib-partlocal2-ts.drops.4.3 │ │ ├── simple.rib-partlocal2.4.0 │ │ ├── simple.rib-partlocal2.4.1 │ │ ├── simple.rib-partlocal2.4.2 │ │ ├── simple.rib-partlocal2.4.3 │ │ ├── simple.rib-partlocal2.drops.4.0 │ │ ├── simple.rib-partlocal2.drops.4.1 │ │ ├── simple.rib-partlocal2.drops.4.2 │ │ ├── simple.rib-partlocal2.drops.4.3 │ │ ├── simple.rib-partlocal3-ts.4.0 │ │ ├── simple.rib-partlocal3-ts.4.1 │ │ ├── simple.rib-partlocal3-ts.4.2 │ │ ├── simple.rib-partlocal3-ts.4.3 │ │ ├── simple.rib-partlocal3-ts.drops.4.0 │ │ ├── simple.rib-partlocal3-ts.drops.4.1 │ │ ├── simple.rib-partlocal3-ts.drops.4.2 │ │ ├── simple.rib-partlocal3-ts.drops.4.3 │ │ ├── simple.rib-partlocal3.4.0 │ │ ├── simple.rib-partlocal3.4.1 │ │ ├── simple.rib-partlocal3.4.2 │ │ ├── simple.rib-partlocal3.4.3 │ │ ├── simple.rib-partlocal3.drops.4.0 │ │ ├── simple.rib-partlocal3.drops.4.1 │ │ ├── simple.rib-partlocal3.drops.4.2 │ │ ├── simple.rib-partlocal3.drops.4.3 │ │ ├── simple.rib-partlocal4-ts.4.0 │ │ ├── simple.rib-partlocal4-ts.4.1 │ │ ├── simple.rib-partlocal4-ts.4.2 │ │ ├── simple.rib-partlocal4-ts.4.3 │ │ ├── simple.rib-partlocal4-ts.drops.4.0 │ │ ├── simple.rib-partlocal4-ts.drops.4.1 │ │ ├── simple.rib-partlocal4-ts.drops.4.2 │ │ ├── simple.rib-partlocal4-ts.drops.4.3 │ │ ├── simple.rib-partlocal4.4.0 │ │ ├── simple.rib-partlocal4.4.1 │ │ ├── simple.rib-partlocal4.4.2 │ │ ├── simple.rib-partlocal4.4.3 │ │ ├── simple.rib-partlocal4.drops.4.0 │ │ ├── simple.rib-partlocal4.drops.4.1 │ │ ├── simple.rib-partlocal4.drops.4.2 │ │ ├── simple.rib-partlocal4.drops.4.3 │ │ ├── simple.rib-partmore-ts.1.0 │ │ ├── simple.rib-partmore-ts.4.0 │ │ ├── simple.rib-partmore-ts.4.1 │ │ ├── simple.rib-partmore-ts.4.2 │ │ ├── simple.rib-partmore-ts.4.3 │ │ ├── simple.rib-partmore-ts.drops.1.0 │ │ ├── simple.rib-partmore-ts.drops.4.0 │ │ ├── simple.rib-partmore-ts.drops.4.1 │ │ ├── simple.rib-partmore-ts.drops.4.2 │ │ ├── simple.rib-partmore-ts.drops.4.3 │ │ ├── simple.rib-partmore.1.0 │ │ ├── simple.rib-partmore.4.0 │ │ ├── simple.rib-partmore.4.1 │ │ ├── simple.rib-partmore.4.2 │ │ ├── simple.rib-partmore.4.3 │ │ ├── simple.rib-partmore.drops.1.0 │ │ ├── simple.rib-partmore.drops.4.0 │ │ ├── simple.rib-partmore.drops.4.1 │ │ ├── simple.rib-partmore.drops.4.2 │ │ ├── simple.rib-partmore.drops.4.3 │ │ ├── simple.rib-ts.1.0 │ │ ├── simple.rib-ts.4.0 │ │ ├── simple.rib-ts.4.1 │ │ ├── simple.rib-ts.4.2 │ │ ├── simple.rib-ts.4.3 │ │ ├── simple.rib-ts.drops.1.0 │ │ ├── simple.rib-ts.drops.4.0 │ │ ├── simple.rib-ts.drops.4.1 │ │ ├── simple.rib-ts.drops.4.2 │ │ ├── simple.rib-ts.drops.4.3 │ │ ├── simple.rib.1.0 │ │ ├── simple.rib.4.0 │ │ ├── simple.rib.4.1 │ │ ├── simple.rib.4.2 │ │ ├── simple.rib.4.3 │ │ ├── simple.rib.drops.1.0 │ │ ├── simple.rib.drops.4.0 │ │ ├── simple.rib.drops.4.1 │ │ ├── simple.rib.drops.4.2 │ │ └── simple.rib.drops.4.3 │ ├── answers64bitids │ │ ├── simple.adaptive-partless-v3.4.0 │ │ ├── simple.adaptive-partless-v3.4.1 │ │ ├── simple.adaptive-partless-v3.4.2 │ │ ├── simple.adaptive-partless-v3.4.3 │ │ ├── simple.adaptive-partless-v3.4.outerr │ │ ├── simple.adaptive-partlocal1-v3.4.0 │ │ ├── simple.adaptive-partlocal1-v3.4.1 │ │ ├── simple.adaptive-partlocal1-v3.4.2 │ │ ├── simple.adaptive-partlocal1-v3.4.3 │ │ ├── simple.adaptive-partlocal1-v3.4.outerr │ │ ├── simple.adaptive-partlocal2-v3.4.0 │ │ ├── simple.adaptive-partlocal2-v3.4.1 │ │ ├── simple.adaptive-partlocal2-v3.4.2 │ │ ├── simple.adaptive-partlocal2-v3.4.3 │ │ ├── simple.adaptive-partlocal2-v3.4.outerr │ │ ├── simple.adaptive-partlocal4-v3.4.0 │ │ ├── simple.adaptive-partlocal4-v3.4.1 │ │ ├── simple.adaptive-partlocal4-v3.4.2 │ │ ├── simple.adaptive-partlocal4-v3.4.3 │ │ ├── simple.adaptive-partlocal4-v3.4.outerr │ │ ├── simple.adaptive-partlocal5-v3.4.0 │ │ ├── simple.adaptive-partlocal5-v3.4.1 │ │ ├── simple.adaptive-partlocal5-v3.4.2 │ │ ├── simple.adaptive-partlocal5-v3.4.3 │ │ ├── simple.adaptive-partlocal5-v3.4.outerr │ │ ├── simple.adaptive-partmore-v3.4.0 │ │ ├── simple.adaptive-partmore-v3.4.1 │ │ ├── simple.adaptive-partmore-v3.4.2 │ │ ├── simple.adaptive-partmore-v3.4.3 │ │ ├── simple.adaptive-partmore-v3.4.outerr │ │ ├── simple.adaptive-v3.4.0 │ │ ├── simple.adaptive-v3.4.1 │ │ ├── simple.adaptive-v3.4.2 │ │ ├── simple.adaptive-v3.4.3 │ │ ├── simple.adaptive-v3.4.outerr │ │ ├── simple.block-oneproc.4.0 │ │ ├── simple.block-oneproc.4.1 │ │ ├── simple.block-oneproc.4.2 │ │ ├── simple.block-oneproc.4.3 │ │ ├── simple.block-oneproc.4.outerr │ │ ├── simple.block-partless.4.0 │ │ ├── simple.block-partless.4.1 │ │ ├── simple.block-partless.4.2 │ │ ├── simple.block-partless.4.3 │ │ ├── simple.block-partless.4.outerr │ │ ├── simple.block-partmore.4.0 │ │ ├── simple.block-partmore.4.1 │ │ ├── simple.block-partmore.4.2 │ │ ├── simple.block-partmore.4.3 │ │ ├── simple.block-partmore.4.outerr │ │ ├── simple.block.4.0 │ │ ├── simple.block.4.1 │ │ ├── simple.block.4.2 │ │ ├── simple.block.4.3 │ │ ├── simple.block.4.outerr │ │ ├── simple.color-after-phg.4.0 │ │ ├── simple.color-after-phg.4.1 │ │ ├── simple.color-after-phg.4.2 │ │ ├── simple.color-after-phg.4.3 │ │ ├── simple.color-after-phg.4.outerr │ │ ├── simple.color-d2-oneproc.4.0 │ │ ├── simple.color-d2-oneproc.4.1 │ │ ├── simple.color-d2-oneproc.4.2 │ │ ├── simple.color-d2-oneproc.4.3 │ │ ├── simple.color-d2-oneproc.4.outerr │ │ ├── simple.color-dist2.4.0 │ │ ├── simple.color-dist2.4.1 │ │ ├── simple.color-dist2.4.2 │ │ ├── simple.color-dist2.4.3 │ │ ├── simple.color-dist2.4.outerr │ │ ├── simple.color-orderB.4.0 │ │ ├── simple.color-orderB.4.1 │ │ ├── simple.color-orderB.4.2 │ │ ├── simple.color-orderB.4.3 │ │ ├── simple.color-orderB.4.outerr │ │ ├── simple.color-orderU.4.0 │ │ ├── simple.color-orderU.4.1 │ │ ├── simple.color-orderU.4.2 │ │ ├── simple.color-orderU.4.3 │ │ ├── simple.color-orderU.4.outerr │ │ ├── simple.color-partialdist2.4.0 │ │ ├── simple.color-partialdist2.4.1 │ │ ├── simple.color-partialdist2.4.2 │ │ ├── simple.color-partialdist2.4.3 │ │ ├── simple.color-partialdist2.4.outerr │ │ ├── simple.color.4.0 │ │ ├── simple.color.4.1 │ │ ├── simple.color.4.2 │ │ ├── simple.color.4.3 │ │ ├── simple.color.4.outerr │ │ ├── simple.cyclic-oneproc.4.0 │ │ ├── simple.cyclic-oneproc.4.1 │ │ ├── simple.cyclic-oneproc.4.2 │ │ ├── simple.cyclic-oneproc.4.3 │ │ ├── simple.cyclic-oneproc.4.outerr │ │ ├── simple.cyclic.4.0 │ │ ├── simple.cyclic.4.1 │ │ ├── simple.cyclic.4.2 │ │ ├── simple.cyclic.4.3 │ │ ├── simple.cyclic.4.outerr │ │ ├── simple.graph-parmetis-partition.4.0 │ │ ├── simple.graph-parmetis-partition.4.1 │ │ ├── simple.graph-parmetis-partition.4.2 │ │ ├── simple.graph-parmetis-partition.4.3 │ │ ├── simple.graph-parmetis-partition.4.outerr │ │ ├── simple.graph-parmetis-refine.4.0 │ │ ├── simple.graph-parmetis-refine.4.1 │ │ ├── simple.graph-parmetis-refine.4.2 │ │ ├── simple.graph-parmetis-refine.4.3 │ │ ├── simple.graph-parmetis-refine.4.outerr │ │ ├── simple.graph-parmetis-repartition.4.0 │ │ ├── simple.graph-parmetis-repartition.4.1 │ │ ├── simple.graph-parmetis-repartition.4.2 │ │ ├── simple.graph-parmetis-repartition.4.3 │ │ ├── simple.graph-parmetis-repartition.4.outerr │ │ ├── simple.graph-parmetis.4.0 │ │ ├── simple.graph-parmetis.4.1 │ │ ├── simple.graph-parmetis.4.2 │ │ ├── simple.graph-parmetis.4.3 │ │ ├── simple.graph-parmetis.4.outerr │ │ ├── simple.graph-partition.4.0 │ │ ├── simple.graph-partition.4.1 │ │ ├── simple.graph-partition.4.2 │ │ ├── simple.graph-partition.4.3 │ │ ├── simple.graph-partition.4.outerr │ │ ├── simple.graph-ptscotch.4.0 │ │ ├── simple.graph-ptscotch.4.1 │ │ ├── simple.graph-ptscotch.4.2 │ │ ├── simple.graph-ptscotch.4.3 │ │ ├── simple.graph-ptscotch.4.outerr │ │ ├── simple.graph-repartition.4.0 │ │ ├── simple.graph-repartition.4.1 │ │ ├── simple.graph-repartition.4.2 │ │ ├── simple.graph-repartition.4.3 │ │ ├── simple.graph-repartition.4.outerr │ │ ├── simple.hier-parmetis2-hsfc.4.0 │ │ ├── simple.hier-parmetis2-hsfc.4.1 │ │ ├── simple.hier-parmetis2-hsfc.4.2 │ │ ├── simple.hier-parmetis2-hsfc.4.3 │ │ ├── simple.hier-parmetis2-hsfc.4.outerr │ │ ├── simple.hier-parmetis2-rcb.4.0 │ │ ├── simple.hier-parmetis2-rcb.4.1 │ │ ├── simple.hier-parmetis2-rcb.4.2 │ │ ├── simple.hier-parmetis2-rcb.4.3 │ │ ├── simple.hier-parmetis2-rcb.4.outerr │ │ ├── simple.hier-rcb2-parmetis.4.0 │ │ ├── simple.hier-rcb2-parmetis.4.1 │ │ ├── simple.hier-rcb2-parmetis.4.2 │ │ ├── simple.hier-rcb2-parmetis.4.3 │ │ ├── simple.hier-rcb2-parmetis.4.outerr │ │ ├── simple.hsfc-oneproc.4.0 │ │ ├── simple.hsfc-oneproc.4.1 │ │ ├── simple.hsfc-oneproc.4.2 │ │ ├── simple.hsfc-oneproc.4.3 │ │ ├── simple.hsfc-oneproc.4.outerr │ │ ├── simple.hsfc-partless.4.0 │ │ ├── simple.hsfc-partless.4.1 │ │ ├── simple.hsfc-partless.4.2 │ │ ├── simple.hsfc-partless.4.3 │ │ ├── simple.hsfc-partless.4.outerr │ │ ├── simple.hsfc-partless.drops.4.0 │ │ ├── simple.hsfc-partless.drops.4.1 │ │ ├── simple.hsfc-partless.drops.4.2 │ │ ├── simple.hsfc-partless.drops.4.3 │ │ ├── simple.hsfc-partlocal1.4.0 │ │ ├── simple.hsfc-partlocal1.4.1 │ │ ├── simple.hsfc-partlocal1.4.2 │ │ ├── simple.hsfc-partlocal1.4.3 │ │ ├── simple.hsfc-partlocal1.4.outerr │ │ ├── simple.hsfc-partlocal1.drops.4.0 │ │ ├── simple.hsfc-partlocal1.drops.4.1 │ │ ├── simple.hsfc-partlocal1.drops.4.2 │ │ ├── simple.hsfc-partlocal1.drops.4.3 │ │ ├── simple.hsfc-partlocal2.4.0 │ │ ├── simple.hsfc-partlocal2.4.1 │ │ ├── simple.hsfc-partlocal2.4.2 │ │ ├── simple.hsfc-partlocal2.4.3 │ │ ├── simple.hsfc-partlocal2.4.outerr │ │ ├── simple.hsfc-partlocal2.drops.4.0 │ │ ├── simple.hsfc-partlocal2.drops.4.1 │ │ ├── simple.hsfc-partlocal2.drops.4.2 │ │ ├── simple.hsfc-partlocal2.drops.4.3 │ │ ├── simple.hsfc-partlocal3.4.0 │ │ ├── simple.hsfc-partlocal3.4.1 │ │ ├── simple.hsfc-partlocal3.4.2 │ │ ├── simple.hsfc-partlocal3.4.3 │ │ ├── simple.hsfc-partlocal3.4.outerr │ │ ├── simple.hsfc-partlocal3.drops.4.0 │ │ ├── simple.hsfc-partlocal3.drops.4.1 │ │ ├── simple.hsfc-partlocal3.drops.4.2 │ │ ├── simple.hsfc-partlocal3.drops.4.3 │ │ ├── simple.hsfc-partlocal4.4.0 │ │ ├── simple.hsfc-partlocal4.4.1 │ │ ├── simple.hsfc-partlocal4.4.2 │ │ ├── simple.hsfc-partlocal4.4.3 │ │ ├── simple.hsfc-partlocal4.4.outerr │ │ ├── simple.hsfc-partlocal4.drops.4.0 │ │ ├── simple.hsfc-partlocal4.drops.4.1 │ │ ├── simple.hsfc-partlocal4.drops.4.2 │ │ ├── simple.hsfc-partlocal4.drops.4.3 │ │ ├── simple.hsfc-partmore.4.0 │ │ ├── simple.hsfc-partmore.4.1 │ │ ├── simple.hsfc-partmore.4.2 │ │ ├── simple.hsfc-partmore.4.3 │ │ ├── simple.hsfc-partmore.4.outerr │ │ ├── simple.hsfc-partmore.drops.4.0 │ │ ├── simple.hsfc-partmore.drops.4.1 │ │ ├── simple.hsfc-partmore.drops.4.2 │ │ ├── simple.hsfc-partmore.drops.4.3 │ │ ├── simple.hsfc.4.0 │ │ ├── simple.hsfc.4.1 │ │ ├── simple.hsfc.4.2 │ │ ├── simple.hsfc.4.3 │ │ ├── simple.hsfc.4.outerr │ │ ├── simple.hsfc.drops.4.0 │ │ ├── simple.hsfc.drops.4.1 │ │ ├── simple.hsfc.drops.4.2 │ │ ├── simple.hsfc.drops.4.3 │ │ ├── simple.order-metis-v3.1.0 │ │ ├── simple.order-metis-v3.1.outerr │ │ ├── simple.order-parmetis-v3.4.0 │ │ ├── simple.order-parmetis-v3.4.1 │ │ ├── simple.order-parmetis-v3.4.2 │ │ ├── simple.order-parmetis-v3.4.3 │ │ ├── simple.order-parmetis-v3.4.outerr │ │ ├── simple.order-ptscotch.4.0 │ │ ├── simple.order-ptscotch.4.1 │ │ ├── simple.order-ptscotch.4.2 │ │ ├── simple.order-ptscotch.4.3 │ │ ├── simple.order-ptscotch.4.outerr │ │ ├── simple.order-scotch.1.0 │ │ ├── simple.order-scotch.1.outerr │ │ ├── simple.partgeom-v3.4.0 │ │ ├── simple.partgeom-v3.4.1 │ │ ├── simple.partgeom-v3.4.2 │ │ ├── simple.partgeom-v3.4.3 │ │ ├── simple.partgeom-v3.4.outerr │ │ ├── simple.partgeomkway-v3.4.0 │ │ ├── simple.partgeomkway-v3.4.1 │ │ ├── simple.partgeomkway-v3.4.2 │ │ ├── simple.partgeomkway-v3.4.3 │ │ ├── simple.partgeomkway-v3.4.outerr │ │ ├── simple.partkway-cyclic-v3.4.0 │ │ ├── simple.partkway-cyclic-v3.4.1 │ │ ├── simple.partkway-cyclic-v3.4.2 │ │ ├── simple.partkway-cyclic-v3.4.3 │ │ ├── simple.partkway-cyclic-v3.4.outerr │ │ ├── simple.partkway-oneproc-v3.4.0 │ │ ├── simple.partkway-oneproc-v3.4.1 │ │ ├── simple.partkway-oneproc-v3.4.2 │ │ ├── simple.partkway-oneproc-v3.4.3 │ │ ├── simple.partkway-oneproc-v3.4.outerr │ │ ├── simple.partkway-order-metis-v3.1.0 │ │ ├── simple.partkway-order-metis-v3.1.outerr │ │ ├── simple.partkway-partless-v3.4.0 │ │ ├── simple.partkway-partless-v3.4.1 │ │ ├── simple.partkway-partless-v3.4.2 │ │ ├── simple.partkway-partless-v3.4.3 │ │ ├── simple.partkway-partless-v3.4.outerr │ │ ├── simple.partkway-partlocal1-v3.4.0 │ │ ├── simple.partkway-partlocal1-v3.4.1 │ │ ├── simple.partkway-partlocal1-v3.4.2 │ │ ├── simple.partkway-partlocal1-v3.4.3 │ │ ├── simple.partkway-partlocal1-v3.4.outerr │ │ ├── simple.partkway-partlocal2-v3.4.0 │ │ ├── simple.partkway-partlocal2-v3.4.1 │ │ ├── simple.partkway-partlocal2-v3.4.2 │ │ ├── simple.partkway-partlocal2-v3.4.3 │ │ ├── simple.partkway-partlocal2-v3.4.outerr │ │ ├── simple.partkway-partlocal4-v3.4.0 │ │ ├── simple.partkway-partlocal4-v3.4.1 │ │ ├── simple.partkway-partlocal4-v3.4.2 │ │ ├── simple.partkway-partlocal4-v3.4.3 │ │ ├── simple.partkway-partlocal4-v3.4.outerr │ │ ├── simple.partkway-partmore-v3.4.0 │ │ ├── simple.partkway-partmore-v3.4.1 │ │ ├── simple.partkway-partmore-v3.4.2 │ │ ├── simple.partkway-partmore-v3.4.3 │ │ ├── simple.partkway-partmore-v3.4.outerr │ │ ├── simple.partkway-v3.4.0 │ │ ├── simple.partkway-v3.4.1 │ │ ├── simple.partkway-v3.4.2 │ │ ├── simple.partkway-v3.4.3 │ │ ├── simple.partkway-v3.4.outerr │ │ ├── simple.partkway-v3.addobjwgt.4.0 │ │ ├── simple.partkway-v3.addobjwgt.4.1 │ │ ├── simple.partkway-v3.addobjwgt.4.2 │ │ ├── simple.partkway-v3.addobjwgt.4.3 │ │ ├── simple.partkway-v3.addobjwgt.4.outerr │ │ ├── simple.phg.4.0 │ │ ├── simple.phg.4.1 │ │ ├── simple.phg.4.2 │ │ ├── simple.phg.4.3 │ │ ├── simple.phg.4.outerr │ │ ├── simple.phg.addobjwgt.4.0 │ │ ├── simple.phg.addobjwgt.4.1 │ │ ├── simple.phg.addobjwgt.4.2 │ │ ├── simple.phg.addobjwgt.4.3 │ │ ├── simple.phg.addobjwgt.4.outerr │ │ ├── simple.random-oneproc.4.0 │ │ ├── simple.random-oneproc.4.1 │ │ ├── simple.random-oneproc.4.2 │ │ ├── simple.random-oneproc.4.3 │ │ ├── simple.random-oneproc.4.outerr │ │ ├── simple.random-partless.4.0 │ │ ├── simple.random-partless.4.1 │ │ ├── simple.random-partless.4.2 │ │ ├── simple.random-partless.4.3 │ │ ├── simple.random-partless.4.outerr │ │ ├── simple.random-partmore.4.0 │ │ ├── simple.random-partmore.4.1 │ │ ├── simple.random-partmore.4.2 │ │ ├── simple.random-partmore.4.3 │ │ ├── simple.random-partmore.4.outerr │ │ ├── simple.random.4.0 │ │ ├── simple.random.4.1 │ │ ├── simple.random.4.2 │ │ ├── simple.random.4.3 │ │ ├── simple.random.4.outerr │ │ ├── simple.rcb-avg-ts.4.0 │ │ ├── simple.rcb-avg-ts.4.1 │ │ ├── simple.rcb-avg-ts.4.2 │ │ ├── simple.rcb-avg-ts.4.3 │ │ ├── simple.rcb-avg-ts.4.outerr │ │ ├── simple.rcb-avg-ts.drops.4.0 │ │ ├── simple.rcb-avg-ts.drops.4.1 │ │ ├── simple.rcb-avg-ts.drops.4.2 │ │ ├── simple.rcb-avg-ts.drops.4.3 │ │ ├── simple.rcb-avg.4.0 │ │ ├── simple.rcb-avg.4.1 │ │ ├── simple.rcb-avg.4.2 │ │ ├── simple.rcb-avg.4.3 │ │ ├── simple.rcb-avg.4.outerr │ │ ├── simple.rcb-avg.drops.4.0 │ │ ├── simple.rcb-avg.drops.4.1 │ │ ├── simple.rcb-avg.drops.4.2 │ │ ├── simple.rcb-avg.drops.4.3 │ │ ├── simple.rcb-oneproc.4.0 │ │ ├── simple.rcb-oneproc.4.1 │ │ ├── simple.rcb-oneproc.4.2 │ │ ├── simple.rcb-oneproc.4.3 │ │ ├── simple.rcb-oneproc.4.outerr │ │ ├── simple.rcb-partless-ts.4.0 │ │ ├── simple.rcb-partless-ts.4.1 │ │ ├── simple.rcb-partless-ts.4.2 │ │ ├── simple.rcb-partless-ts.4.3 │ │ ├── simple.rcb-partless-ts.4.outerr │ │ ├── simple.rcb-partless-ts.drops.4.0 │ │ ├── simple.rcb-partless-ts.drops.4.1 │ │ ├── simple.rcb-partless-ts.drops.4.2 │ │ ├── simple.rcb-partless-ts.drops.4.3 │ │ ├── simple.rcb-partless.4.0 │ │ ├── simple.rcb-partless.4.1 │ │ ├── simple.rcb-partless.4.2 │ │ ├── simple.rcb-partless.4.3 │ │ ├── simple.rcb-partless.4.outerr │ │ ├── simple.rcb-partless.drops.4.0 │ │ ├── simple.rcb-partless.drops.4.1 │ │ ├── simple.rcb-partless.drops.4.2 │ │ ├── simple.rcb-partless.drops.4.3 │ │ ├── simple.rcb-partlocal1-ts.4.0 │ │ ├── simple.rcb-partlocal1-ts.4.1 │ │ ├── simple.rcb-partlocal1-ts.4.2 │ │ ├── simple.rcb-partlocal1-ts.4.3 │ │ ├── simple.rcb-partlocal1-ts.4.outerr │ │ ├── simple.rcb-partlocal1-ts.drops.4.0 │ │ ├── simple.rcb-partlocal1-ts.drops.4.1 │ │ ├── simple.rcb-partlocal1-ts.drops.4.2 │ │ ├── simple.rcb-partlocal1-ts.drops.4.3 │ │ ├── simple.rcb-partlocal1.4.0 │ │ ├── simple.rcb-partlocal1.4.1 │ │ ├── simple.rcb-partlocal1.4.2 │ │ ├── simple.rcb-partlocal1.4.3 │ │ ├── simple.rcb-partlocal1.4.outerr │ │ ├── simple.rcb-partlocal1.drops.4.0 │ │ ├── simple.rcb-partlocal1.drops.4.1 │ │ ├── simple.rcb-partlocal1.drops.4.2 │ │ ├── simple.rcb-partlocal1.drops.4.3 │ │ ├── simple.rcb-partlocal2-ts.4.0 │ │ ├── simple.rcb-partlocal2-ts.4.1 │ │ ├── simple.rcb-partlocal2-ts.4.2 │ │ ├── simple.rcb-partlocal2-ts.4.3 │ │ ├── simple.rcb-partlocal2-ts.4.outerr │ │ ├── simple.rcb-partlocal2-ts.drops.4.0 │ │ ├── simple.rcb-partlocal2-ts.drops.4.1 │ │ ├── simple.rcb-partlocal2-ts.drops.4.2 │ │ ├── simple.rcb-partlocal2-ts.drops.4.3 │ │ ├── simple.rcb-partlocal2.4.0 │ │ ├── simple.rcb-partlocal2.4.1 │ │ ├── simple.rcb-partlocal2.4.2 │ │ ├── simple.rcb-partlocal2.4.3 │ │ ├── simple.rcb-partlocal2.4.outerr │ │ ├── simple.rcb-partlocal2.drops.4.0 │ │ ├── simple.rcb-partlocal2.drops.4.1 │ │ ├── simple.rcb-partlocal2.drops.4.2 │ │ ├── simple.rcb-partlocal2.drops.4.3 │ │ ├── simple.rcb-partlocal3-ts.4.0 │ │ ├── simple.rcb-partlocal3-ts.4.1 │ │ ├── simple.rcb-partlocal3-ts.4.2 │ │ ├── simple.rcb-partlocal3-ts.4.3 │ │ ├── simple.rcb-partlocal3-ts.4.outerr │ │ ├── simple.rcb-partlocal3-ts.drops.4.0 │ │ ├── simple.rcb-partlocal3-ts.drops.4.1 │ │ ├── simple.rcb-partlocal3-ts.drops.4.2 │ │ ├── simple.rcb-partlocal3-ts.drops.4.3 │ │ ├── simple.rcb-partlocal3.4.0 │ │ ├── simple.rcb-partlocal3.4.1 │ │ ├── simple.rcb-partlocal3.4.2 │ │ ├── simple.rcb-partlocal3.4.3 │ │ ├── simple.rcb-partlocal3.4.outerr │ │ ├── simple.rcb-partlocal3.drops.4.0 │ │ ├── simple.rcb-partlocal3.drops.4.1 │ │ ├── simple.rcb-partlocal3.drops.4.2 │ │ ├── simple.rcb-partlocal3.drops.4.3 │ │ ├── simple.rcb-partlocal4-ts.4.0 │ │ ├── simple.rcb-partlocal4-ts.4.1 │ │ ├── simple.rcb-partlocal4-ts.4.2 │ │ ├── simple.rcb-partlocal4-ts.4.3 │ │ ├── simple.rcb-partlocal4-ts.4.outerr │ │ ├── simple.rcb-partlocal4-ts.drops.4.0 │ │ ├── simple.rcb-partlocal4-ts.drops.4.1 │ │ ├── simple.rcb-partlocal4-ts.drops.4.2 │ │ ├── simple.rcb-partlocal4-ts.drops.4.3 │ │ ├── simple.rcb-partlocal4.4.0 │ │ ├── simple.rcb-partlocal4.4.1 │ │ ├── simple.rcb-partlocal4.4.2 │ │ ├── simple.rcb-partlocal4.4.3 │ │ ├── simple.rcb-partlocal4.4.outerr │ │ ├── simple.rcb-partlocal4.drops.4.0 │ │ ├── simple.rcb-partlocal4.drops.4.1 │ │ ├── simple.rcb-partlocal4.drops.4.2 │ │ ├── simple.rcb-partlocal4.drops.4.3 │ │ ├── simple.rcb-partmore-ts.4.0 │ │ ├── simple.rcb-partmore-ts.4.1 │ │ ├── simple.rcb-partmore-ts.4.2 │ │ ├── simple.rcb-partmore-ts.4.3 │ │ ├── simple.rcb-partmore-ts.4.outerr │ │ ├── simple.rcb-partmore-ts.drops.4.0 │ │ ├── simple.rcb-partmore-ts.drops.4.1 │ │ ├── simple.rcb-partmore-ts.drops.4.2 │ │ ├── simple.rcb-partmore-ts.drops.4.3 │ │ ├── simple.rcb-partmore.4.0 │ │ ├── simple.rcb-partmore.4.1 │ │ ├── simple.rcb-partmore.4.2 │ │ ├── simple.rcb-partmore.4.3 │ │ ├── simple.rcb-partmore.4.outerr │ │ ├── simple.rcb-partmore.drops.4.0 │ │ ├── simple.rcb-partmore.drops.4.1 │ │ ├── simple.rcb-partmore.drops.4.2 │ │ ├── simple.rcb-partmore.drops.4.3 │ │ ├── simple.rcb-ts.4.0 │ │ ├── simple.rcb-ts.4.1 │ │ ├── simple.rcb-ts.4.2 │ │ ├── simple.rcb-ts.4.3 │ │ ├── simple.rcb-ts.4.outerr │ │ ├── simple.rcb-ts.drops.4.0 │ │ ├── simple.rcb-ts.drops.4.1 │ │ ├── simple.rcb-ts.drops.4.2 │ │ ├── simple.rcb-ts.drops.4.3 │ │ ├── simple.rcb.4.0 │ │ ├── simple.rcb.4.1 │ │ ├── simple.rcb.4.2 │ │ ├── simple.rcb.4.3 │ │ ├── simple.rcb.4.outerr │ │ ├── simple.rcb.drops.4.0 │ │ ├── simple.rcb.drops.4.1 │ │ ├── simple.rcb.drops.4.2 │ │ ├── simple.rcb.drops.4.3 │ │ ├── simple.rib-avg-ts.4.0 │ │ ├── simple.rib-avg-ts.4.1 │ │ ├── simple.rib-avg-ts.4.2 │ │ ├── simple.rib-avg-ts.4.3 │ │ ├── simple.rib-avg-ts.4.outerr │ │ ├── simple.rib-avg-ts.drops.4.0 │ │ ├── simple.rib-avg-ts.drops.4.1 │ │ ├── simple.rib-avg-ts.drops.4.2 │ │ ├── simple.rib-avg-ts.drops.4.3 │ │ ├── simple.rib-avg.4.0 │ │ ├── simple.rib-avg.4.1 │ │ ├── simple.rib-avg.4.2 │ │ ├── simple.rib-avg.4.3 │ │ ├── simple.rib-avg.4.outerr │ │ ├── simple.rib-avg.drops.4.0 │ │ ├── simple.rib-avg.drops.4.1 │ │ ├── simple.rib-avg.drops.4.2 │ │ ├── simple.rib-avg.drops.4.3 │ │ ├── simple.rib-oneproc.4.0 │ │ ├── simple.rib-oneproc.4.1 │ │ ├── simple.rib-oneproc.4.2 │ │ ├── simple.rib-oneproc.4.3 │ │ ├── simple.rib-oneproc.4.outerr │ │ ├── simple.rib-partless-ts.4.0 │ │ ├── simple.rib-partless-ts.4.1 │ │ ├── simple.rib-partless-ts.4.2 │ │ ├── simple.rib-partless-ts.4.3 │ │ ├── simple.rib-partless-ts.4.outerr │ │ ├── simple.rib-partless-ts.drops.4.0 │ │ ├── simple.rib-partless-ts.drops.4.1 │ │ ├── simple.rib-partless-ts.drops.4.2 │ │ ├── simple.rib-partless-ts.drops.4.3 │ │ ├── simple.rib-partless.4.0 │ │ ├── simple.rib-partless.4.1 │ │ ├── simple.rib-partless.4.2 │ │ ├── simple.rib-partless.4.3 │ │ ├── simple.rib-partless.4.outerr │ │ ├── simple.rib-partless.drops.4.0 │ │ ├── simple.rib-partless.drops.4.1 │ │ ├── simple.rib-partless.drops.4.2 │ │ ├── simple.rib-partless.drops.4.3 │ │ ├── simple.rib-partlocal1-ts.4.0 │ │ ├── simple.rib-partlocal1-ts.4.1 │ │ ├── simple.rib-partlocal1-ts.4.2 │ │ ├── simple.rib-partlocal1-ts.4.3 │ │ ├── simple.rib-partlocal1-ts.4.outerr │ │ ├── simple.rib-partlocal1-ts.drops.4.0 │ │ ├── simple.rib-partlocal1-ts.drops.4.1 │ │ ├── simple.rib-partlocal1-ts.drops.4.2 │ │ ├── simple.rib-partlocal1-ts.drops.4.3 │ │ ├── simple.rib-partlocal1.4.0 │ │ ├── simple.rib-partlocal1.4.1 │ │ ├── simple.rib-partlocal1.4.2 │ │ ├── simple.rib-partlocal1.4.3 │ │ ├── simple.rib-partlocal1.4.outerr │ │ ├── simple.rib-partlocal1.drops.4.0 │ │ ├── simple.rib-partlocal1.drops.4.1 │ │ ├── simple.rib-partlocal1.drops.4.2 │ │ ├── simple.rib-partlocal1.drops.4.3 │ │ ├── simple.rib-partlocal2-ts.4.0 │ │ ├── simple.rib-partlocal2-ts.4.1 │ │ ├── simple.rib-partlocal2-ts.4.2 │ │ ├── simple.rib-partlocal2-ts.4.3 │ │ ├── simple.rib-partlocal2-ts.4.outerr │ │ ├── simple.rib-partlocal2-ts.drops.4.0 │ │ ├── simple.rib-partlocal2-ts.drops.4.1 │ │ ├── simple.rib-partlocal2-ts.drops.4.2 │ │ ├── simple.rib-partlocal2-ts.drops.4.3 │ │ ├── simple.rib-partlocal2.4.0 │ │ ├── simple.rib-partlocal2.4.1 │ │ ├── simple.rib-partlocal2.4.2 │ │ ├── simple.rib-partlocal2.4.3 │ │ ├── simple.rib-partlocal2.4.outerr │ │ ├── simple.rib-partlocal2.drops.4.0 │ │ ├── simple.rib-partlocal2.drops.4.1 │ │ ├── simple.rib-partlocal2.drops.4.2 │ │ ├── simple.rib-partlocal2.drops.4.3 │ │ ├── simple.rib-partlocal3-ts.4.0 │ │ ├── simple.rib-partlocal3-ts.4.1 │ │ ├── simple.rib-partlocal3-ts.4.2 │ │ ├── simple.rib-partlocal3-ts.4.3 │ │ ├── simple.rib-partlocal3-ts.4.outerr │ │ ├── simple.rib-partlocal3-ts.drops.4.0 │ │ ├── simple.rib-partlocal3-ts.drops.4.1 │ │ ├── simple.rib-partlocal3-ts.drops.4.2 │ │ ├── simple.rib-partlocal3-ts.drops.4.3 │ │ ├── simple.rib-partlocal3.4.0 │ │ ├── simple.rib-partlocal3.4.1 │ │ ├── simple.rib-partlocal3.4.2 │ │ ├── simple.rib-partlocal3.4.3 │ │ ├── simple.rib-partlocal3.4.outerr │ │ ├── simple.rib-partlocal3.drops.4.0 │ │ ├── simple.rib-partlocal3.drops.4.1 │ │ ├── simple.rib-partlocal3.drops.4.2 │ │ ├── simple.rib-partlocal3.drops.4.3 │ │ ├── simple.rib-partlocal4-ts.4.0 │ │ ├── simple.rib-partlocal4-ts.4.1 │ │ ├── simple.rib-partlocal4-ts.4.2 │ │ ├── simple.rib-partlocal4-ts.4.3 │ │ ├── simple.rib-partlocal4-ts.4.outerr │ │ ├── simple.rib-partlocal4-ts.drops.4.0 │ │ ├── simple.rib-partlocal4-ts.drops.4.1 │ │ ├── simple.rib-partlocal4-ts.drops.4.2 │ │ ├── simple.rib-partlocal4-ts.drops.4.3 │ │ ├── simple.rib-partlocal4.4.0 │ │ ├── simple.rib-partlocal4.4.1 │ │ ├── simple.rib-partlocal4.4.2 │ │ ├── simple.rib-partlocal4.4.3 │ │ ├── simple.rib-partlocal4.4.outerr │ │ ├── simple.rib-partlocal4.drops.4.0 │ │ ├── simple.rib-partlocal4.drops.4.1 │ │ ├── simple.rib-partlocal4.drops.4.2 │ │ ├── simple.rib-partlocal4.drops.4.3 │ │ ├── simple.rib-partmore-ts.4.0 │ │ ├── simple.rib-partmore-ts.4.1 │ │ ├── simple.rib-partmore-ts.4.2 │ │ ├── simple.rib-partmore-ts.4.3 │ │ ├── simple.rib-partmore-ts.4.outerr │ │ ├── simple.rib-partmore-ts.drops.4.0 │ │ ├── simple.rib-partmore-ts.drops.4.1 │ │ ├── simple.rib-partmore-ts.drops.4.2 │ │ ├── simple.rib-partmore-ts.drops.4.3 │ │ ├── simple.rib-partmore.4.0 │ │ ├── simple.rib-partmore.4.1 │ │ ├── simple.rib-partmore.4.2 │ │ ├── simple.rib-partmore.4.3 │ │ ├── simple.rib-partmore.4.outerr │ │ ├── simple.rib-partmore.drops.4.0 │ │ ├── simple.rib-partmore.drops.4.1 │ │ ├── simple.rib-partmore.drops.4.2 │ │ ├── simple.rib-partmore.drops.4.3 │ │ ├── simple.rib-ts.4.0 │ │ ├── simple.rib-ts.4.1 │ │ ├── simple.rib-ts.4.2 │ │ ├── simple.rib-ts.4.3 │ │ ├── simple.rib-ts.4.outerr │ │ ├── simple.rib-ts.drops.4.0 │ │ ├── simple.rib-ts.drops.4.1 │ │ ├── simple.rib-ts.drops.4.2 │ │ ├── simple.rib-ts.drops.4.3 │ │ ├── simple.rib.4.0 │ │ ├── simple.rib.4.1 │ │ ├── simple.rib.4.2 │ │ ├── simple.rib.4.3 │ │ ├── simple.rib.4.outerr │ │ ├── simple.rib.drops.4.0 │ │ ├── simple.rib.drops.4.1 │ │ ├── simple.rib.drops.4.2 │ │ └── simple.rib.drops.4.3 │ ├── hier-parmetis2-hsfc.inp │ ├── hier-parmetis2-rcb.inp │ ├── hier-rcb2-parmetis.inp │ ├── simple.coords │ ├── simple.graph │ ├── simple.mtx │ ├── simple.u │ ├── zdrive.inp.adaptive-partless-v3 │ ├── zdrive.inp.adaptive-partlocal1-v3 │ ├── zdrive.inp.adaptive-partlocal2-v3 │ ├── zdrive.inp.adaptive-partlocal4-v3 │ ├── zdrive.inp.adaptive-partlocal5-v3 │ ├── zdrive.inp.adaptive-partmore-v3 │ ├── zdrive.inp.adaptive-v3 │ ├── zdrive.inp.block │ ├── zdrive.inp.block-oneproc │ ├── zdrive.inp.block-partless │ ├── zdrive.inp.block-partmore │ ├── zdrive.inp.color │ ├── zdrive.inp.color-after-phg │ ├── zdrive.inp.color-d2-oneproc │ ├── zdrive.inp.color-dist2 │ ├── zdrive.inp.color-orderB │ ├── zdrive.inp.color-orderU │ ├── zdrive.inp.color-partialdist2 │ ├── zdrive.inp.cyclic │ ├── zdrive.inp.cyclic-oneproc │ ├── zdrive.inp.graph-metis │ ├── zdrive.inp.graph-parmetis │ ├── zdrive.inp.graph-parmetis-partition │ ├── zdrive.inp.graph-parmetis-refine │ ├── zdrive.inp.graph-parmetis-repartition │ ├── zdrive.inp.graph-partition │ ├── zdrive.inp.graph-ptscotch │ ├── zdrive.inp.graph-refine │ ├── zdrive.inp.graph-repartition │ ├── zdrive.inp.hier-parmetis2-hsfc │ ├── zdrive.inp.hier-parmetis2-rcb │ ├── zdrive.inp.hier-rcb2-parmetis │ ├── zdrive.inp.hsfc │ ├── zdrive.inp.hsfc-oneproc │ ├── zdrive.inp.hsfc-partless │ ├── zdrive.inp.hsfc-partlocal1 │ ├── zdrive.inp.hsfc-partlocal2 │ ├── zdrive.inp.hsfc-partlocal3 │ ├── zdrive.inp.hsfc-partlocal4 │ ├── zdrive.inp.hsfc-partmore │ ├── zdrive.inp.order-metis-v3 │ ├── zdrive.inp.order-parmetis-v3 │ ├── zdrive.inp.order-ptscotch │ ├── zdrive.inp.order-scotch │ ├── zdrive.inp.partgeom-v3 │ ├── zdrive.inp.partgeomkway-v3 │ ├── zdrive.inp.partkway-cyclic-v3 │ ├── zdrive.inp.partkway-oneproc-v3 │ ├── zdrive.inp.partkway-order-metis-v3 │ ├── zdrive.inp.partkway-partless-v3 │ ├── zdrive.inp.partkway-partlocal1-v3 │ ├── zdrive.inp.partkway-partlocal2-v3 │ ├── zdrive.inp.partkway-partlocal4-v3 │ ├── zdrive.inp.partkway-partmore-v3 │ ├── zdrive.inp.partkway-v3 │ ├── zdrive.inp.partkway-v3.addobjwgt │ ├── zdrive.inp.phg │ ├── zdrive.inp.phg.addobjwgt │ ├── zdrive.inp.random │ ├── zdrive.inp.random-oneproc │ ├── zdrive.inp.random-partless │ ├── zdrive.inp.random-partmore │ ├── zdrive.inp.rcb │ ├── zdrive.inp.rcb-avg │ ├── zdrive.inp.rcb-avg-ts │ ├── zdrive.inp.rcb-oneproc │ ├── zdrive.inp.rcb-partless │ ├── zdrive.inp.rcb-partless-ts │ ├── zdrive.inp.rcb-partlocal1 │ ├── zdrive.inp.rcb-partlocal1-ts │ ├── zdrive.inp.rcb-partlocal2 │ ├── zdrive.inp.rcb-partlocal2-ts │ ├── zdrive.inp.rcb-partlocal3 │ ├── zdrive.inp.rcb-partlocal3-ts │ ├── zdrive.inp.rcb-partlocal4 │ ├── zdrive.inp.rcb-partlocal4-ts │ ├── zdrive.inp.rcb-partmore │ ├── zdrive.inp.rcb-partmore-ts │ ├── zdrive.inp.rcb-ts │ ├── zdrive.inp.rib │ ├── zdrive.inp.rib-avg │ ├── zdrive.inp.rib-avg-ts │ ├── zdrive.inp.rib-oneproc │ ├── zdrive.inp.rib-partless │ ├── zdrive.inp.rib-partless-ts │ ├── zdrive.inp.rib-partlocal1 │ ├── zdrive.inp.rib-partlocal1-ts │ ├── zdrive.inp.rib-partlocal2 │ ├── zdrive.inp.rib-partlocal2-ts │ ├── zdrive.inp.rib-partlocal3 │ ├── zdrive.inp.rib-partlocal3-ts │ ├── zdrive.inp.rib-partlocal4 │ ├── zdrive.inp.rib-partlocal4-ts │ ├── zdrive.inp.rib-partmore │ ├── zdrive.inp.rib-partmore-ts │ ├── zdrive.inp.rib-ts │ └── zdrive_hold_tests │ │ ├── zdrive.inp.adaptive-partlocal3-v3.hold │ │ ├── zdrive.inp.color-commA │ │ ├── zdrive.inp.diffusion │ │ ├── zdrive.inp.partkway │ │ ├── zdrive.inp.partkway-cyclic │ │ ├── zdrive.inp.partkway-partlocal3-v3.hold │ │ ├── zdrive.inp.phg-agglomerative-matching │ │ ├── zdrive.inp.phg-graph │ │ ├── zdrive.inp.phg-refine-auto │ │ ├── zdrive.inp.phg-refine-greedy │ │ ├── zdrive.inp.phg-refine-linear │ │ └── zdrive.inp.phg-refine-random │ ├── ch_simple3d │ ├── CMakeLists.txt │ ├── simple3d.coords │ ├── simple3d.graph │ └── simple3d.mtx │ ├── hg_simple │ ├── CMakeLists.txt │ ├── answers │ │ ├── simple.phg.4.0 │ │ ├── simple.phg.4.1 │ │ ├── simple.phg.4.2 │ │ ├── simple.phg.4.3 │ │ ├── simple.phg.addobjwgt.4.0 │ │ ├── simple.phg.addobjwgt.4.1 │ │ ├── simple.phg.addobjwgt.4.2 │ │ ├── simple.phg.addobjwgt.4.3 │ │ ├── simple.phg.bal_tol_adjustment1.0.4.0 │ │ ├── simple.phg.bal_tol_adjustment1.0.4.1 │ │ ├── simple.phg.bal_tol_adjustment1.0.4.2 │ │ ├── simple.phg.bal_tol_adjustment1.0.4.3 │ │ ├── simple.phg.check_hypergraph1.4.0 │ │ ├── simple.phg.check_hypergraph1.4.1 │ │ ├── simple.phg.check_hypergraph1.4.2 │ │ ├── simple.phg.check_hypergraph1.4.3 │ │ ├── simple.phg.coarsening_limit200.4.0 │ │ ├── simple.phg.coarsening_limit200.4.1 │ │ ├── simple.phg.coarsening_limit200.4.2 │ │ ├── simple.phg.coarsening_limit200.4.3 │ │ ├── simple.phg.coarsening_method_aipm.4.0 │ │ ├── simple.phg.coarsening_method_aipm.4.1 │ │ ├── simple.phg.coarsening_method_aipm.4.2 │ │ ├── simple.phg.coarsening_method_aipm.4.3 │ │ ├── simple.phg.coarsening_method_cipm.4.0 │ │ ├── simple.phg.coarsening_method_cipm.4.1 │ │ ├── simple.phg.coarsening_method_cipm.4.2 │ │ ├── simple.phg.coarsening_method_cipm.4.3 │ │ ├── simple.phg.coarsening_method_lipm.4.0 │ │ ├── simple.phg.coarsening_method_lipm.4.1 │ │ ├── simple.phg.coarsening_method_lipm.4.2 │ │ ├── simple.phg.coarsening_method_lipm.4.3 │ │ ├── simple.phg.coarsening_method_none.4.0 │ │ ├── simple.phg.coarsening_method_none.4.1 │ │ ├── simple.phg.coarsening_method_none.4.2 │ │ ├── simple.phg.coarsening_method_none.4.3 │ │ ├── simple.phg.coarsepartition_method_greedy.4.0 │ │ ├── simple.phg.coarsepartition_method_greedy.4.1 │ │ ├── simple.phg.coarsepartition_method_greedy.4.2 │ │ ├── simple.phg.coarsepartition_method_greedy.4.3 │ │ ├── simple.phg.coarsepartition_method_linear.4.0 │ │ ├── simple.phg.coarsepartition_method_linear.4.1 │ │ ├── simple.phg.coarsepartition_method_linear.4.2 │ │ ├── simple.phg.coarsepartition_method_linear.4.3 │ │ ├── simple.phg.coarsepartition_method_none.4.0 │ │ ├── simple.phg.coarsepartition_method_none.4.1 │ │ ├── simple.phg.coarsepartition_method_none.4.2 │ │ ├── simple.phg.coarsepartition_method_none.4.3 │ │ ├── simple.phg.coarsepartition_method_random.4.0 │ │ ├── simple.phg.coarsepartition_method_random.4.1 │ │ ├── simple.phg.coarsepartition_method_random.4.2 │ │ ├── simple.phg.coarsepartition_method_random.4.3 │ │ ├── simple.phg.cut_objective_hyperedges.4.0 │ │ ├── simple.phg.cut_objective_hyperedges.4.1 │ │ ├── simple.phg.cut_objective_hyperedges.4.2 │ │ ├── simple.phg.cut_objective_hyperedges.4.3 │ │ ├── simple.phg.debug_level.4.0 │ │ ├── simple.phg.debug_level.4.1 │ │ ├── simple.phg.debug_level.4.2 │ │ ├── simple.phg.debug_level.4.3 │ │ ├── simple.phg.edge_scaling1.4.0 │ │ ├── simple.phg.edge_scaling1.4.1 │ │ ├── simple.phg.edge_scaling1.4.2 │ │ ├── simple.phg.edge_scaling1.4.3 │ │ ├── simple.phg.edge_scaling2.4.0 │ │ ├── simple.phg.edge_scaling2.4.1 │ │ ├── simple.phg.edge_scaling2.4.2 │ │ ├── simple.phg.edge_scaling2.4.3 │ │ ├── simple.phg.edge_size_threshold1.0.4.0 │ │ ├── simple.phg.edge_size_threshold1.0.4.1 │ │ ├── simple.phg.edge_size_threshold1.0.4.2 │ │ ├── simple.phg.edge_size_threshold1.0.4.3 │ │ ├── simple.phg.fast_coarsening_method.4.0 │ │ ├── simple.phg.fast_coarsening_method.4.1 │ │ ├── simple.phg.fast_coarsening_method.4.2 │ │ ├── simple.phg.fast_coarsening_method.4.3 │ │ ├── simple.phg.final_output2.4.0 │ │ ├── simple.phg.final_output2.4.1 │ │ ├── simple.phg.final_output2.4.2 │ │ ├── simple.phg.final_output2.4.3 │ │ ├── simple.phg.fixed01.4.0 │ │ ├── simple.phg.fixed01.4.1 │ │ ├── simple.phg.fixed01.4.2 │ │ ├── simple.phg.fixed01.4.3 │ │ ├── simple.phg.fixed02.4.0 │ │ ├── simple.phg.fixed02.4.1 │ │ ├── simple.phg.fixed02.4.2 │ │ ├── simple.phg.fixed02.4.3 │ │ ├── simple.phg.fixed03.4.0 │ │ ├── simple.phg.fixed03.4.1 │ │ ├── simple.phg.fixed03.4.2 │ │ ├── simple.phg.fixed03.4.3 │ │ ├── simple.phg.fixed04.4.0 │ │ ├── simple.phg.fixed04.4.1 │ │ ├── simple.phg.fixed04.4.2 │ │ ├── simple.phg.fixed04.4.3 │ │ ├── simple.phg.fixed05.4.0 │ │ ├── simple.phg.fixed05.4.1 │ │ ├── simple.phg.fixed05.4.2 │ │ ├── simple.phg.fixed05.4.3 │ │ ├── simple.phg.fixed06.4.0 │ │ ├── simple.phg.fixed06.4.1 │ │ ├── simple.phg.fixed06.4.2 │ │ ├── simple.phg.fixed06.4.3 │ │ ├── simple.phg.fixed07.4.0 │ │ ├── simple.phg.fixed07.4.1 │ │ ├── simple.phg.fixed07.4.2 │ │ ├── simple.phg.fixed07.4.3 │ │ ├── simple.phg.fixed08.4.0 │ │ ├── simple.phg.fixed08.4.1 │ │ ├── simple.phg.fixed08.4.2 │ │ ├── simple.phg.fixed08.4.3 │ │ ├── simple.phg.fixed09.4.0 │ │ ├── simple.phg.fixed09.4.1 │ │ ├── simple.phg.fixed09.4.2 │ │ ├── simple.phg.fixed09.4.3 │ │ ├── simple.phg.fixed10.4.0 │ │ ├── simple.phg.fixed10.4.1 │ │ ├── simple.phg.fixed10.4.2 │ │ ├── simple.phg.fixed10.4.3 │ │ ├── simple.phg.graph.4.0 │ │ ├── simple.phg.graph.4.1 │ │ ├── simple.phg.graph.4.2 │ │ ├── simple.phg.graph.4.3 │ │ ├── simple.phg.imbalance_tol1.02.4.0 │ │ ├── simple.phg.imbalance_tol1.02.4.1 │ │ ├── simple.phg.imbalance_tol1.02.4.2 │ │ ├── simple.phg.imbalance_tol1.02.4.3 │ │ ├── simple.phg.initial_distribution.cols.4.0 │ │ ├── simple.phg.initial_distribution.cols.4.1 │ │ ├── simple.phg.initial_distribution.cols.4.2 │ │ ├── simple.phg.initial_distribution.cols.4.3 │ │ ├── simple.phg.initial_distribution.cyclic.4.0 │ │ ├── simple.phg.initial_distribution.cyclic.4.1 │ │ ├── simple.phg.initial_distribution.cyclic.4.2 │ │ ├── simple.phg.initial_distribution.cyclic.4.3 │ │ ├── simple.phg.initial_distribution.file.4.0 │ │ ├── simple.phg.initial_distribution.file.4.1 │ │ ├── simple.phg.initial_distribution.file.4.2 │ │ ├── simple.phg.initial_distribution.file.4.3 │ │ ├── simple.phg.initial_distribution.rows.4.0 │ │ ├── simple.phg.initial_distribution.rows.4.1 │ │ ├── simple.phg.initial_distribution.rows.4.2 │ │ ├── simple.phg.initial_distribution.rows.4.3 │ │ ├── simple.phg.ipm.fixed01.4.0 │ │ ├── simple.phg.ipm.fixed01.4.1 │ │ ├── simple.phg.ipm.fixed01.4.2 │ │ ├── simple.phg.ipm.fixed01.4.3 │ │ ├── simple.phg.ipm.fixed02.4.0 │ │ ├── simple.phg.ipm.fixed02.4.1 │ │ ├── simple.phg.ipm.fixed02.4.2 │ │ ├── simple.phg.ipm.fixed02.4.3 │ │ ├── simple.phg.ipm.fixed03.4.0 │ │ ├── simple.phg.ipm.fixed03.4.1 │ │ ├── simple.phg.ipm.fixed03.4.2 │ │ ├── simple.phg.ipm.fixed03.4.3 │ │ ├── simple.phg.ipm.fixed05.4.0 │ │ ├── simple.phg.ipm.fixed05.4.1 │ │ ├── simple.phg.ipm.fixed05.4.2 │ │ ├── simple.phg.ipm.fixed05.4.3 │ │ ├── simple.phg.ipm.fixed07.4.0 │ │ ├── simple.phg.ipm.fixed07.4.1 │ │ ├── simple.phg.ipm.fixed07.4.2 │ │ ├── simple.phg.ipm.fixed07.4.3 │ │ ├── simple.phg.ipm.fixed09.4.0 │ │ ├── simple.phg.ipm.fixed09.4.1 │ │ ├── simple.phg.ipm.fixed09.4.2 │ │ ├── simple.phg.ipm.fixed09.4.3 │ │ ├── simple.phg.ipm.nproc_edge1.4.0 │ │ ├── simple.phg.ipm.nproc_edge1.4.1 │ │ ├── simple.phg.ipm.nproc_edge1.4.2 │ │ ├── simple.phg.ipm.nproc_edge1.4.3 │ │ ├── simple.phg.ipm.nproc_vertex1.4.0 │ │ ├── simple.phg.ipm.nproc_vertex1.4.1 │ │ ├── simple.phg.ipm.nproc_vertex1.4.2 │ │ ├── simple.phg.ipm.nproc_vertex1.4.3 │ │ ├── simple.phg.ipm.refine.4.0 │ │ ├── simple.phg.ipm.refine.4.1 │ │ ├── simple.phg.ipm.refine.4.2 │ │ ├── simple.phg.ipm.refine.4.3 │ │ ├── simple.phg.k13.4.0 │ │ ├── simple.phg.k13.4.1 │ │ ├── simple.phg.k13.4.2 │ │ ├── simple.phg.k13.4.3 │ │ ├── simple.phg.k2.4.0 │ │ ├── simple.phg.k2.4.1 │ │ ├── simple.phg.k2.4.2 │ │ ├── simple.phg.k2.4.3 │ │ ├── simple.phg.k63.4.0 │ │ ├── simple.phg.k63.4.1 │ │ ├── simple.phg.k63.4.2 │ │ ├── simple.phg.k63.4.3 │ │ ├── simple.phg.k64.4.0 │ │ ├── simple.phg.k64.4.1 │ │ ├── simple.phg.k64.4.2 │ │ ├── simple.phg.k64.4.3 │ │ ├── simple.phg.nproc_edge1.4.0 │ │ ├── simple.phg.nproc_edge1.4.1 │ │ ├── simple.phg.nproc_edge1.4.2 │ │ ├── simple.phg.nproc_edge1.4.3 │ │ ├── simple.phg.nproc_edge2.4.0 │ │ ├── simple.phg.nproc_edge2.4.1 │ │ ├── simple.phg.nproc_edge2.4.2 │ │ ├── simple.phg.nproc_edge2.4.3 │ │ ├── simple.phg.nproc_vertex1.4.0 │ │ ├── simple.phg.nproc_vertex1.4.1 │ │ ├── simple.phg.nproc_vertex1.4.2 │ │ ├── simple.phg.nproc_vertex1.4.3 │ │ ├── simple.phg.nproc_vertex2.4.0 │ │ ├── simple.phg.nproc_vertex2.4.1 │ │ ├── simple.phg.nproc_vertex2.4.2 │ │ ├── simple.phg.nproc_vertex2.4.3 │ │ ├── simple.phg.oneproc.4.0 │ │ ├── simple.phg.oneproc.4.1 │ │ ├── simple.phg.oneproc.4.2 │ │ ├── simple.phg.oneproc.4.3 │ │ ├── simple.phg.output_level0.4.0 │ │ ├── simple.phg.output_level0.4.1 │ │ ├── simple.phg.output_level0.4.2 │ │ ├── simple.phg.output_level0.4.3 │ │ ├── simple.phg.output_level4.4.0 │ │ ├── simple.phg.output_level4.4.1 │ │ ├── simple.phg.output_level4.4.2 │ │ ├── simple.phg.output_level4.4.3 │ │ ├── simple.phg.partlocal1.4.0 │ │ ├── simple.phg.partlocal1.4.1 │ │ ├── simple.phg.partlocal1.4.2 │ │ ├── simple.phg.partlocal1.4.3 │ │ ├── simple.phg.partlocal2.4.0 │ │ ├── simple.phg.partlocal2.4.1 │ │ ├── simple.phg.partlocal2.4.2 │ │ ├── simple.phg.partlocal2.4.3 │ │ ├── simple.phg.partlocal3.4.0 │ │ ├── simple.phg.partlocal3.4.1 │ │ ├── simple.phg.partlocal3.4.2 │ │ ├── simple.phg.partlocal3.4.3 │ │ ├── simple.phg.partlocal4.4.0 │ │ ├── simple.phg.partlocal4.4.1 │ │ ├── simple.phg.partlocal4.4.2 │ │ ├── simple.phg.partlocal4.4.3 │ │ ├── simple.phg.random.4.0 │ │ ├── simple.phg.random.4.1 │ │ ├── simple.phg.random.4.2 │ │ ├── simple.phg.random.4.3 │ │ ├── simple.phg.randomize_input.4.0 │ │ ├── simple.phg.randomize_input.4.1 │ │ ├── simple.phg.randomize_input.4.2 │ │ ├── simple.phg.randomize_input.4.3 │ │ ├── simple.phg.refine.4.0 │ │ ├── simple.phg.refine.4.1 │ │ ├── simple.phg.refine.4.2 │ │ ├── simple.phg.refine.4.3 │ │ ├── simple.phg.refinement_loop_limit20.4.0 │ │ ├── simple.phg.refinement_loop_limit20.4.1 │ │ ├── simple.phg.refinement_loop_limit20.4.2 │ │ ├── simple.phg.refinement_loop_limit20.4.3 │ │ ├── simple.phg.refinement_max_neg_move50.4.0 │ │ ├── simple.phg.refinement_max_neg_move50.4.1 │ │ ├── simple.phg.refinement_max_neg_move50.4.2 │ │ ├── simple.phg.refinement_max_neg_move50.4.3 │ │ ├── simple.phg.refinement_method_none.4.0 │ │ ├── simple.phg.refinement_method_none.4.1 │ │ ├── simple.phg.refinement_method_none.4.2 │ │ ├── simple.phg.refinement_method_none.4.3 │ │ ├── simple.phg.refinement_quality3.4.0 │ │ ├── simple.phg.refinement_quality3.4.1 │ │ ├── simple.phg.refinement_quality3.4.2 │ │ ├── simple.phg.refinement_quality3.4.3 │ │ ├── simple.phg.remap0.4.0 │ │ ├── simple.phg.remap0.4.1 │ │ ├── simple.phg.remap0.4.2 │ │ ├── simple.phg.remap0.4.3 │ │ ├── simple.phg.repartition.4.0 │ │ ├── simple.phg.repartition.4.1 │ │ ├── simple.phg.repartition.4.2 │ │ ├── simple.phg.repartition.4.3 │ │ ├── simple.phg.repartition.repart_multiplier80.4.0 │ │ ├── simple.phg.repartition.repart_multiplier80.4.1 │ │ ├── simple.phg.repartition.repart_multiplier80.4.2 │ │ ├── simple.phg.repartition.repart_multiplier80.4.3 │ │ ├── simple.phg.repartition.repart_multiplier800.4.0 │ │ ├── simple.phg.repartition.repart_multiplier800.4.1 │ │ ├── simple.phg.repartition.repart_multiplier800.4.2 │ │ ├── simple.phg.repartition.repart_multiplier800.4.3 │ │ ├── simple.phg.repartition.repart_multiplier8000.4.0 │ │ ├── simple.phg.repartition.repart_multiplier8000.4.1 │ │ ├── simple.phg.repartition.repart_multiplier8000.4.2 │ │ ├── simple.phg.repartition.repart_multiplier8000.4.3 │ │ ├── simple.phg.seed.4.0 │ │ ├── simple.phg.seed.4.1 │ │ ├── simple.phg.seed.4.2 │ │ ├── simple.phg.seed.4.3 │ │ ├── simple.phg.use_timers1.4.0 │ │ ├── simple.phg.use_timers1.4.1 │ │ ├── simple.phg.use_timers1.4.2 │ │ ├── simple.phg.use_timers1.4.3 │ │ ├── simple.phg.use_timers2.4.0 │ │ ├── simple.phg.use_timers2.4.1 │ │ ├── simple.phg.use_timers2.4.2 │ │ ├── simple.phg.use_timers2.4.3 │ │ ├── simple.phg.vertex_scaling1.4.0 │ │ ├── simple.phg.vertex_scaling1.4.1 │ │ ├── simple.phg.vertex_scaling1.4.2 │ │ ├── simple.phg.vertex_scaling1.4.3 │ │ ├── simple.phg.vertex_scaling2.4.0 │ │ ├── simple.phg.vertex_scaling2.4.1 │ │ ├── simple.phg.vertex_scaling2.4.2 │ │ ├── simple.phg.vertex_scaling2.4.3 │ │ ├── simple.phg.vertex_scaling3.4.0 │ │ ├── simple.phg.vertex_scaling3.4.1 │ │ ├── simple.phg.vertex_scaling3.4.2 │ │ ├── simple.phg.vertex_scaling3.4.3 │ │ ├── simple.phg.vertex_scaling4.4.0 │ │ ├── simple.phg.vertex_scaling4.4.1 │ │ ├── simple.phg.vertex_scaling4.4.2 │ │ ├── simple.phg.vertex_scaling4.4.3 │ │ ├── simple.phg.vertex_visit_order1.4.0 │ │ ├── simple.phg.vertex_visit_order1.4.1 │ │ ├── simple.phg.vertex_visit_order1.4.2 │ │ ├── simple.phg.vertex_visit_order1.4.3 │ │ ├── simple.phg.vertex_visit_order2.4.0 │ │ ├── simple.phg.vertex_visit_order2.4.1 │ │ ├── simple.phg.vertex_visit_order2.4.2 │ │ ├── simple.phg.vertex_visit_order2.4.3 │ │ ├── simple.phg.vertex_visit_order3.4.0 │ │ ├── simple.phg.vertex_visit_order3.4.1 │ │ ├── simple.phg.vertex_visit_order3.4.2 │ │ ├── simple.phg.vertex_visit_order3.4.3 │ │ ├── simple.phg.vertex_visit_order4.4.0 │ │ ├── simple.phg.vertex_visit_order4.4.1 │ │ ├── simple.phg.vertex_visit_order4.4.2 │ │ └── simple.phg.vertex_visit_order4.4.3 │ ├── answers64bitids │ │ ├── simple.phg.4.0 │ │ ├── simple.phg.4.1 │ │ ├── simple.phg.4.2 │ │ ├── simple.phg.4.3 │ │ ├── simple.phg.4.outerr │ │ ├── simple.phg.addobjwgt.4.0 │ │ ├── simple.phg.addobjwgt.4.1 │ │ ├── simple.phg.addobjwgt.4.2 │ │ ├── simple.phg.addobjwgt.4.3 │ │ ├── simple.phg.addobjwgt.4.outerr │ │ ├── simple.phg.bal_tol_adjustment1.0.4.0 │ │ ├── simple.phg.bal_tol_adjustment1.0.4.1 │ │ ├── simple.phg.bal_tol_adjustment1.0.4.2 │ │ ├── simple.phg.bal_tol_adjustment1.0.4.3 │ │ ├── simple.phg.bal_tol_adjustment1.0.4.outerr │ │ ├── simple.phg.check_hypergraph1.4.0 │ │ ├── simple.phg.check_hypergraph1.4.1 │ │ ├── simple.phg.check_hypergraph1.4.2 │ │ ├── simple.phg.check_hypergraph1.4.3 │ │ ├── simple.phg.check_hypergraph1.4.outerr │ │ ├── simple.phg.coarsening_limit200.4.0 │ │ ├── simple.phg.coarsening_limit200.4.1 │ │ ├── simple.phg.coarsening_limit200.4.2 │ │ ├── simple.phg.coarsening_limit200.4.3 │ │ ├── simple.phg.coarsening_limit200.4.outerr │ │ ├── simple.phg.coarsening_method_aipm.4.0 │ │ ├── simple.phg.coarsening_method_aipm.4.1 │ │ ├── simple.phg.coarsening_method_aipm.4.2 │ │ ├── simple.phg.coarsening_method_aipm.4.3 │ │ ├── simple.phg.coarsening_method_aipm.4.outerr │ │ ├── simple.phg.coarsening_method_cipm.4.0 │ │ ├── simple.phg.coarsening_method_cipm.4.1 │ │ ├── simple.phg.coarsening_method_cipm.4.2 │ │ ├── simple.phg.coarsening_method_cipm.4.3 │ │ ├── simple.phg.coarsening_method_cipm.4.outerr │ │ ├── simple.phg.coarsening_method_lipm.4.0 │ │ ├── simple.phg.coarsening_method_lipm.4.1 │ │ ├── simple.phg.coarsening_method_lipm.4.2 │ │ ├── simple.phg.coarsening_method_lipm.4.3 │ │ ├── simple.phg.coarsening_method_lipm.4.outerr │ │ ├── simple.phg.coarsening_method_none.4.0 │ │ ├── simple.phg.coarsening_method_none.4.1 │ │ ├── simple.phg.coarsening_method_none.4.2 │ │ ├── simple.phg.coarsening_method_none.4.3 │ │ ├── simple.phg.coarsening_method_none.4.outerr │ │ ├── simple.phg.coarsepartition_method_greedy.4.0 │ │ ├── simple.phg.coarsepartition_method_greedy.4.1 │ │ ├── simple.phg.coarsepartition_method_greedy.4.2 │ │ ├── simple.phg.coarsepartition_method_greedy.4.3 │ │ ├── simple.phg.coarsepartition_method_greedy.4.outerr │ │ ├── simple.phg.coarsepartition_method_linear.4.0 │ │ ├── simple.phg.coarsepartition_method_linear.4.1 │ │ ├── simple.phg.coarsepartition_method_linear.4.2 │ │ ├── simple.phg.coarsepartition_method_linear.4.3 │ │ ├── simple.phg.coarsepartition_method_linear.4.outerr │ │ ├── simple.phg.coarsepartition_method_none.4.0 │ │ ├── simple.phg.coarsepartition_method_none.4.1 │ │ ├── simple.phg.coarsepartition_method_none.4.2 │ │ ├── simple.phg.coarsepartition_method_none.4.3 │ │ ├── simple.phg.coarsepartition_method_none.4.outerr │ │ ├── simple.phg.coarsepartition_method_random.4.0 │ │ ├── simple.phg.coarsepartition_method_random.4.1 │ │ ├── simple.phg.coarsepartition_method_random.4.2 │ │ ├── simple.phg.coarsepartition_method_random.4.3 │ │ ├── simple.phg.coarsepartition_method_random.4.outerr │ │ ├── simple.phg.cut_objective_hyperedges.4.0 │ │ ├── simple.phg.cut_objective_hyperedges.4.1 │ │ ├── simple.phg.cut_objective_hyperedges.4.2 │ │ ├── simple.phg.cut_objective_hyperedges.4.3 │ │ ├── simple.phg.cut_objective_hyperedges.4.outerr │ │ ├── simple.phg.debug_level.4.0 │ │ ├── simple.phg.debug_level.4.1 │ │ ├── simple.phg.debug_level.4.2 │ │ ├── simple.phg.debug_level.4.3 │ │ ├── simple.phg.debug_level.4.outerr │ │ ├── simple.phg.edge_scaling1.4.0 │ │ ├── simple.phg.edge_scaling1.4.1 │ │ ├── simple.phg.edge_scaling1.4.2 │ │ ├── simple.phg.edge_scaling1.4.3 │ │ ├── simple.phg.edge_scaling1.4.outerr │ │ ├── simple.phg.edge_scaling2.4.0 │ │ ├── simple.phg.edge_scaling2.4.1 │ │ ├── simple.phg.edge_scaling2.4.2 │ │ ├── simple.phg.edge_scaling2.4.3 │ │ ├── simple.phg.edge_scaling2.4.outerr │ │ ├── simple.phg.edge_size_threshold1.0.4.0 │ │ ├── simple.phg.edge_size_threshold1.0.4.1 │ │ ├── simple.phg.edge_size_threshold1.0.4.2 │ │ ├── simple.phg.edge_size_threshold1.0.4.3 │ │ ├── simple.phg.edge_size_threshold1.0.4.outerr │ │ ├── simple.phg.fast_coarsening_method.4.0 │ │ ├── simple.phg.fast_coarsening_method.4.1 │ │ ├── simple.phg.fast_coarsening_method.4.2 │ │ ├── simple.phg.fast_coarsening_method.4.3 │ │ ├── simple.phg.fast_coarsening_method.4.outerr │ │ ├── simple.phg.final_output2.4.0 │ │ ├── simple.phg.final_output2.4.1 │ │ ├── simple.phg.final_output2.4.2 │ │ ├── simple.phg.final_output2.4.3 │ │ ├── simple.phg.final_output2.4.outerr │ │ ├── simple.phg.fixed01.4.0 │ │ ├── simple.phg.fixed01.4.1 │ │ ├── simple.phg.fixed01.4.2 │ │ ├── simple.phg.fixed01.4.3 │ │ ├── simple.phg.fixed01.4.outerr │ │ ├── simple.phg.fixed02.4.0 │ │ ├── simple.phg.fixed02.4.1 │ │ ├── simple.phg.fixed02.4.2 │ │ ├── simple.phg.fixed02.4.3 │ │ ├── simple.phg.fixed02.4.outerr │ │ ├── simple.phg.fixed03.4.0 │ │ ├── simple.phg.fixed03.4.1 │ │ ├── simple.phg.fixed03.4.2 │ │ ├── simple.phg.fixed03.4.3 │ │ ├── simple.phg.fixed03.4.outerr │ │ ├── simple.phg.fixed04.4.0 │ │ ├── simple.phg.fixed04.4.1 │ │ ├── simple.phg.fixed04.4.2 │ │ ├── simple.phg.fixed04.4.3 │ │ ├── simple.phg.fixed04.4.outerr │ │ ├── simple.phg.fixed05.4.0 │ │ ├── simple.phg.fixed05.4.1 │ │ ├── simple.phg.fixed05.4.2 │ │ ├── simple.phg.fixed05.4.3 │ │ ├── simple.phg.fixed05.4.outerr │ │ ├── simple.phg.fixed06.4.0 │ │ ├── simple.phg.fixed06.4.1 │ │ ├── simple.phg.fixed06.4.2 │ │ ├── simple.phg.fixed06.4.3 │ │ ├── simple.phg.fixed06.4.outerr │ │ ├── simple.phg.fixed07.4.0 │ │ ├── simple.phg.fixed07.4.1 │ │ ├── simple.phg.fixed07.4.2 │ │ ├── simple.phg.fixed07.4.3 │ │ ├── simple.phg.fixed07.4.outerr │ │ ├── simple.phg.fixed08.4.0 │ │ ├── simple.phg.fixed08.4.1 │ │ ├── simple.phg.fixed08.4.2 │ │ ├── simple.phg.fixed08.4.3 │ │ ├── simple.phg.fixed08.4.outerr │ │ ├── simple.phg.fixed09.4.0 │ │ ├── simple.phg.fixed09.4.1 │ │ ├── simple.phg.fixed09.4.2 │ │ ├── simple.phg.fixed09.4.3 │ │ ├── simple.phg.fixed09.4.outerr │ │ ├── simple.phg.fixed10.4.0 │ │ ├── simple.phg.fixed10.4.1 │ │ ├── simple.phg.fixed10.4.2 │ │ ├── simple.phg.fixed10.4.3 │ │ ├── simple.phg.fixed10.4.outerr │ │ ├── simple.phg.graph.4.0 │ │ ├── simple.phg.graph.4.1 │ │ ├── simple.phg.graph.4.2 │ │ ├── simple.phg.graph.4.3 │ │ ├── simple.phg.graph.4.outerr │ │ ├── simple.phg.imbalance_tol1.02.4.0 │ │ ├── simple.phg.imbalance_tol1.02.4.1 │ │ ├── simple.phg.imbalance_tol1.02.4.2 │ │ ├── simple.phg.imbalance_tol1.02.4.3 │ │ ├── simple.phg.imbalance_tol1.02.4.outerr │ │ ├── simple.phg.initial_distribution.cols.4.0 │ │ ├── simple.phg.initial_distribution.cols.4.1 │ │ ├── simple.phg.initial_distribution.cols.4.2 │ │ ├── simple.phg.initial_distribution.cols.4.3 │ │ ├── simple.phg.initial_distribution.cols.4.outerr │ │ ├── simple.phg.initial_distribution.cyclic.4.0 │ │ ├── simple.phg.initial_distribution.cyclic.4.1 │ │ ├── simple.phg.initial_distribution.cyclic.4.2 │ │ ├── simple.phg.initial_distribution.cyclic.4.3 │ │ ├── simple.phg.initial_distribution.cyclic.4.outerr │ │ ├── simple.phg.initial_distribution.file.4.0 │ │ ├── simple.phg.initial_distribution.file.4.1 │ │ ├── simple.phg.initial_distribution.file.4.2 │ │ ├── simple.phg.initial_distribution.file.4.3 │ │ ├── simple.phg.initial_distribution.file.4.outerr │ │ ├── simple.phg.initial_distribution.rows.4.0 │ │ ├── simple.phg.initial_distribution.rows.4.1 │ │ ├── simple.phg.initial_distribution.rows.4.2 │ │ ├── simple.phg.initial_distribution.rows.4.3 │ │ ├── simple.phg.initial_distribution.rows.4.outerr │ │ ├── simple.phg.ipm.fixed01.4.0 │ │ ├── simple.phg.ipm.fixed01.4.1 │ │ ├── simple.phg.ipm.fixed01.4.2 │ │ ├── simple.phg.ipm.fixed01.4.3 │ │ ├── simple.phg.ipm.fixed01.4.outerr │ │ ├── simple.phg.ipm.fixed02.4.0 │ │ ├── simple.phg.ipm.fixed02.4.1 │ │ ├── simple.phg.ipm.fixed02.4.2 │ │ ├── simple.phg.ipm.fixed02.4.3 │ │ ├── simple.phg.ipm.fixed02.4.outerr │ │ ├── simple.phg.ipm.fixed03.4.0 │ │ ├── simple.phg.ipm.fixed03.4.1 │ │ ├── simple.phg.ipm.fixed03.4.2 │ │ ├── simple.phg.ipm.fixed03.4.3 │ │ ├── simple.phg.ipm.fixed03.4.outerr │ │ ├── simple.phg.ipm.fixed05.4.0 │ │ ├── simple.phg.ipm.fixed05.4.1 │ │ ├── simple.phg.ipm.fixed05.4.2 │ │ ├── simple.phg.ipm.fixed05.4.3 │ │ ├── simple.phg.ipm.fixed05.4.outerr │ │ ├── simple.phg.ipm.fixed07.4.0 │ │ ├── simple.phg.ipm.fixed07.4.1 │ │ ├── simple.phg.ipm.fixed07.4.2 │ │ ├── simple.phg.ipm.fixed07.4.3 │ │ ├── simple.phg.ipm.fixed07.4.outerr │ │ ├── simple.phg.ipm.fixed09.4.0 │ │ ├── simple.phg.ipm.fixed09.4.1 │ │ ├── simple.phg.ipm.fixed09.4.2 │ │ ├── simple.phg.ipm.fixed09.4.3 │ │ ├── simple.phg.ipm.fixed09.4.outerr │ │ ├── simple.phg.ipm.nproc_edge1.4.0 │ │ ├── simple.phg.ipm.nproc_edge1.4.1 │ │ ├── simple.phg.ipm.nproc_edge1.4.2 │ │ ├── simple.phg.ipm.nproc_edge1.4.3 │ │ ├── simple.phg.ipm.nproc_edge1.4.outerr │ │ ├── simple.phg.ipm.nproc_vertex1.4.0 │ │ ├── simple.phg.ipm.nproc_vertex1.4.1 │ │ ├── simple.phg.ipm.nproc_vertex1.4.2 │ │ ├── simple.phg.ipm.nproc_vertex1.4.3 │ │ ├── simple.phg.ipm.nproc_vertex1.4.outerr │ │ ├── simple.phg.ipm.refine.4.0 │ │ ├── simple.phg.ipm.refine.4.1 │ │ ├── simple.phg.ipm.refine.4.2 │ │ ├── simple.phg.ipm.refine.4.3 │ │ ├── simple.phg.ipm.refine.4.outerr │ │ ├── simple.phg.k13.4.0 │ │ ├── simple.phg.k13.4.1 │ │ ├── simple.phg.k13.4.2 │ │ ├── simple.phg.k13.4.3 │ │ ├── simple.phg.k13.4.outerr │ │ ├── simple.phg.k2.4.0 │ │ ├── simple.phg.k2.4.1 │ │ ├── simple.phg.k2.4.2 │ │ ├── simple.phg.k2.4.3 │ │ ├── simple.phg.k2.4.outerr │ │ ├── simple.phg.k63.4.0 │ │ ├── simple.phg.k63.4.1 │ │ ├── simple.phg.k63.4.2 │ │ ├── simple.phg.k63.4.3 │ │ ├── simple.phg.k63.4.outerr │ │ ├── simple.phg.k64.4.0 │ │ ├── simple.phg.k64.4.1 │ │ ├── simple.phg.k64.4.2 │ │ ├── simple.phg.k64.4.3 │ │ ├── simple.phg.k64.4.outerr │ │ ├── simple.phg.nproc_edge1.4.0 │ │ ├── simple.phg.nproc_edge1.4.1 │ │ ├── simple.phg.nproc_edge1.4.2 │ │ ├── simple.phg.nproc_edge1.4.3 │ │ ├── simple.phg.nproc_edge1.4.outerr │ │ ├── simple.phg.nproc_edge2.4.0 │ │ ├── simple.phg.nproc_edge2.4.1 │ │ ├── simple.phg.nproc_edge2.4.2 │ │ ├── simple.phg.nproc_edge2.4.3 │ │ ├── simple.phg.nproc_edge2.4.outerr │ │ ├── simple.phg.nproc_vertex1.4.0 │ │ ├── simple.phg.nproc_vertex1.4.1 │ │ ├── simple.phg.nproc_vertex1.4.2 │ │ ├── simple.phg.nproc_vertex1.4.3 │ │ ├── simple.phg.nproc_vertex1.4.outerr │ │ ├── simple.phg.nproc_vertex2.4.0 │ │ ├── simple.phg.nproc_vertex2.4.1 │ │ ├── simple.phg.nproc_vertex2.4.2 │ │ ├── simple.phg.nproc_vertex2.4.3 │ │ ├── simple.phg.nproc_vertex2.4.outerr │ │ ├── simple.phg.oneproc.4.0 │ │ ├── simple.phg.oneproc.4.1 │ │ ├── simple.phg.oneproc.4.2 │ │ ├── simple.phg.oneproc.4.3 │ │ ├── simple.phg.oneproc.4.outerr │ │ ├── simple.phg.output_level0.4.0 │ │ ├── simple.phg.output_level0.4.1 │ │ ├── simple.phg.output_level0.4.2 │ │ ├── simple.phg.output_level0.4.3 │ │ ├── simple.phg.output_level0.4.outerr │ │ ├── simple.phg.output_level4.4.0 │ │ ├── simple.phg.output_level4.4.1 │ │ ├── simple.phg.output_level4.4.2 │ │ ├── simple.phg.output_level4.4.3 │ │ ├── simple.phg.output_level4.4.outerr │ │ ├── simple.phg.partlocal1.4.0 │ │ ├── simple.phg.partlocal1.4.1 │ │ ├── simple.phg.partlocal1.4.2 │ │ ├── simple.phg.partlocal1.4.3 │ │ ├── simple.phg.partlocal1.4.outerr │ │ ├── simple.phg.partlocal2.4.0 │ │ ├── simple.phg.partlocal2.4.1 │ │ ├── simple.phg.partlocal2.4.2 │ │ ├── simple.phg.partlocal2.4.3 │ │ ├── simple.phg.partlocal2.4.outerr │ │ ├── simple.phg.partlocal3.4.0 │ │ ├── simple.phg.partlocal3.4.1 │ │ ├── simple.phg.partlocal3.4.2 │ │ ├── simple.phg.partlocal3.4.3 │ │ ├── simple.phg.partlocal3.4.outerr │ │ ├── simple.phg.partlocal4.4.0 │ │ ├── simple.phg.partlocal4.4.1 │ │ ├── simple.phg.partlocal4.4.2 │ │ ├── simple.phg.partlocal4.4.3 │ │ ├── simple.phg.partlocal4.4.outerr │ │ ├── simple.phg.random.4.0 │ │ ├── simple.phg.random.4.1 │ │ ├── simple.phg.random.4.2 │ │ ├── simple.phg.random.4.3 │ │ ├── simple.phg.random.4.outerr │ │ ├── simple.phg.randomize_input.4.0 │ │ ├── simple.phg.randomize_input.4.1 │ │ ├── simple.phg.randomize_input.4.2 │ │ ├── simple.phg.randomize_input.4.3 │ │ ├── simple.phg.randomize_input.4.outerr │ │ ├── simple.phg.refine.4.0 │ │ ├── simple.phg.refine.4.1 │ │ ├── simple.phg.refine.4.2 │ │ ├── simple.phg.refine.4.3 │ │ ├── simple.phg.refine.4.outerr │ │ ├── simple.phg.refinement_loop_limit20.4.0 │ │ ├── simple.phg.refinement_loop_limit20.4.1 │ │ ├── simple.phg.refinement_loop_limit20.4.2 │ │ ├── simple.phg.refinement_loop_limit20.4.3 │ │ ├── simple.phg.refinement_loop_limit20.4.outerr │ │ ├── simple.phg.refinement_max_neg_move50.4.0 │ │ ├── simple.phg.refinement_max_neg_move50.4.1 │ │ ├── simple.phg.refinement_max_neg_move50.4.2 │ │ ├── simple.phg.refinement_max_neg_move50.4.3 │ │ ├── simple.phg.refinement_max_neg_move50.4.outerr │ │ ├── simple.phg.refinement_method_none.4.0 │ │ ├── simple.phg.refinement_method_none.4.1 │ │ ├── simple.phg.refinement_method_none.4.2 │ │ ├── simple.phg.refinement_method_none.4.3 │ │ ├── simple.phg.refinement_method_none.4.outerr │ │ ├── simple.phg.refinement_quality3.4.0 │ │ ├── simple.phg.refinement_quality3.4.1 │ │ ├── simple.phg.refinement_quality3.4.2 │ │ ├── simple.phg.refinement_quality3.4.3 │ │ ├── simple.phg.refinement_quality3.4.outerr │ │ ├── simple.phg.remap0.4.0 │ │ ├── simple.phg.remap0.4.1 │ │ ├── simple.phg.remap0.4.2 │ │ ├── simple.phg.remap0.4.3 │ │ ├── simple.phg.remap0.4.outerr │ │ ├── simple.phg.repartition.4.0 │ │ ├── simple.phg.repartition.4.1 │ │ ├── simple.phg.repartition.4.2 │ │ ├── simple.phg.repartition.4.3 │ │ ├── simple.phg.repartition.4.outerr │ │ ├── simple.phg.repartition.repart_multiplier80.4.0 │ │ ├── simple.phg.repartition.repart_multiplier80.4.1 │ │ ├── simple.phg.repartition.repart_multiplier80.4.2 │ │ ├── simple.phg.repartition.repart_multiplier80.4.3 │ │ ├── simple.phg.repartition.repart_multiplier80.4.outerr │ │ ├── simple.phg.repartition.repart_multiplier800.4.0 │ │ ├── simple.phg.repartition.repart_multiplier800.4.1 │ │ ├── simple.phg.repartition.repart_multiplier800.4.2 │ │ ├── simple.phg.repartition.repart_multiplier800.4.3 │ │ ├── simple.phg.repartition.repart_multiplier800.4.outerr │ │ ├── simple.phg.repartition.repart_multiplier8000.4.0 │ │ ├── simple.phg.repartition.repart_multiplier8000.4.1 │ │ ├── simple.phg.repartition.repart_multiplier8000.4.2 │ │ ├── simple.phg.repartition.repart_multiplier8000.4.3 │ │ ├── simple.phg.repartition.repart_multiplier8000.4.outerr │ │ ├── simple.phg.seed.4.0 │ │ ├── simple.phg.seed.4.1 │ │ ├── simple.phg.seed.4.2 │ │ ├── simple.phg.seed.4.3 │ │ ├── simple.phg.seed.4.outerr │ │ ├── simple.phg.use_timers1.4.0 │ │ ├── simple.phg.use_timers1.4.1 │ │ ├── simple.phg.use_timers1.4.2 │ │ ├── simple.phg.use_timers1.4.3 │ │ ├── simple.phg.use_timers1.4.outerr │ │ ├── simple.phg.use_timers2.4.0 │ │ ├── simple.phg.use_timers2.4.1 │ │ ├── simple.phg.use_timers2.4.2 │ │ ├── simple.phg.use_timers2.4.3 │ │ ├── simple.phg.use_timers2.4.outerr │ │ ├── simple.phg.vertex_scaling1.4.0 │ │ ├── simple.phg.vertex_scaling1.4.1 │ │ ├── simple.phg.vertex_scaling1.4.2 │ │ ├── simple.phg.vertex_scaling1.4.3 │ │ ├── simple.phg.vertex_scaling1.4.outerr │ │ ├── simple.phg.vertex_scaling2.4.0 │ │ ├── simple.phg.vertex_scaling2.4.1 │ │ ├── simple.phg.vertex_scaling2.4.2 │ │ ├── simple.phg.vertex_scaling2.4.3 │ │ ├── simple.phg.vertex_scaling2.4.outerr │ │ ├── simple.phg.vertex_scaling3.4.0 │ │ ├── simple.phg.vertex_scaling3.4.1 │ │ ├── simple.phg.vertex_scaling3.4.2 │ │ ├── simple.phg.vertex_scaling3.4.3 │ │ ├── simple.phg.vertex_scaling3.4.outerr │ │ ├── simple.phg.vertex_scaling4.4.0 │ │ ├── simple.phg.vertex_scaling4.4.1 │ │ ├── simple.phg.vertex_scaling4.4.2 │ │ ├── simple.phg.vertex_scaling4.4.3 │ │ ├── simple.phg.vertex_scaling4.4.outerr │ │ ├── simple.phg.vertex_visit_order1.4.0 │ │ ├── simple.phg.vertex_visit_order1.4.1 │ │ ├── simple.phg.vertex_visit_order1.4.2 │ │ ├── simple.phg.vertex_visit_order1.4.3 │ │ ├── simple.phg.vertex_visit_order1.4.outerr │ │ ├── simple.phg.vertex_visit_order2.4.0 │ │ ├── simple.phg.vertex_visit_order2.4.1 │ │ ├── simple.phg.vertex_visit_order2.4.2 │ │ ├── simple.phg.vertex_visit_order2.4.3 │ │ ├── simple.phg.vertex_visit_order2.4.outerr │ │ ├── simple.phg.vertex_visit_order3.4.0 │ │ ├── simple.phg.vertex_visit_order3.4.1 │ │ ├── simple.phg.vertex_visit_order3.4.2 │ │ ├── simple.phg.vertex_visit_order3.4.3 │ │ ├── simple.phg.vertex_visit_order3.4.outerr │ │ ├── simple.phg.vertex_visit_order4.4.0 │ │ ├── simple.phg.vertex_visit_order4.4.1 │ │ ├── simple.phg.vertex_visit_order4.4.2 │ │ ├── simple.phg.vertex_visit_order4.4.3 │ │ └── simple.phg.vertex_visit_order4.4.outerr │ ├── simple.mtx │ ├── simple.mtxp │ ├── zdrive.inp.phg │ ├── zdrive.inp.phg.addobjwgt │ ├── zdrive.inp.phg.bal_tol_adjustment1.0 │ ├── zdrive.inp.phg.check_hypergraph1 │ ├── zdrive.inp.phg.coarsening_limit200 │ ├── zdrive.inp.phg.coarsening_method_aipm │ ├── zdrive.inp.phg.coarsening_method_cipm │ ├── zdrive.inp.phg.coarsening_method_lipm │ ├── zdrive.inp.phg.coarsening_method_none │ ├── zdrive.inp.phg.coarsepartition_method_greedy │ ├── zdrive.inp.phg.coarsepartition_method_linear │ ├── zdrive.inp.phg.coarsepartition_method_none │ ├── zdrive.inp.phg.coarsepartition_method_random │ ├── zdrive.inp.phg.cut_objective_hyperedges │ ├── zdrive.inp.phg.debug_level │ ├── zdrive.inp.phg.edge_scaling1 │ ├── zdrive.inp.phg.edge_scaling2 │ ├── zdrive.inp.phg.edge_size_threshold1.0 │ ├── zdrive.inp.phg.fast_coarsening_method │ ├── zdrive.inp.phg.final_output2 │ ├── zdrive.inp.phg.fixed01 │ ├── zdrive.inp.phg.fixed02 │ ├── zdrive.inp.phg.fixed03 │ ├── zdrive.inp.phg.fixed04 │ ├── zdrive.inp.phg.fixed05 │ ├── zdrive.inp.phg.fixed06 │ ├── zdrive.inp.phg.fixed07 │ ├── zdrive.inp.phg.fixed08 │ ├── zdrive.inp.phg.fixed09 │ ├── zdrive.inp.phg.fixed10 │ ├── zdrive.inp.phg.graph │ ├── zdrive.inp.phg.imbalance_tol1.02 │ ├── zdrive.inp.phg.initial_distribution.cols │ ├── zdrive.inp.phg.initial_distribution.cyclic │ ├── zdrive.inp.phg.initial_distribution.file │ ├── zdrive.inp.phg.initial_distribution.rows │ ├── zdrive.inp.phg.ipm.fixed01 │ ├── zdrive.inp.phg.ipm.fixed02 │ ├── zdrive.inp.phg.ipm.fixed03 │ ├── zdrive.inp.phg.ipm.fixed05 │ ├── zdrive.inp.phg.ipm.fixed07 │ ├── zdrive.inp.phg.ipm.fixed09 │ ├── zdrive.inp.phg.ipm.nproc_edge1 │ ├── zdrive.inp.phg.ipm.nproc_vertex1 │ ├── zdrive.inp.phg.ipm.refine │ ├── zdrive.inp.phg.k13 │ ├── zdrive.inp.phg.k2 │ ├── zdrive.inp.phg.k63 │ ├── zdrive.inp.phg.k64 │ ├── zdrive.inp.phg.nproc_edge1 │ ├── zdrive.inp.phg.nproc_edge2 │ ├── zdrive.inp.phg.nproc_vertex1 │ ├── zdrive.inp.phg.nproc_vertex2 │ ├── zdrive.inp.phg.oneproc │ ├── zdrive.inp.phg.output_level0 │ ├── zdrive.inp.phg.output_level4 │ ├── zdrive.inp.phg.partlocal1 │ ├── zdrive.inp.phg.partlocal2 │ ├── zdrive.inp.phg.partlocal3 │ ├── zdrive.inp.phg.partlocal4 │ ├── zdrive.inp.phg.random │ ├── zdrive.inp.phg.randomize_input │ ├── zdrive.inp.phg.refine │ ├── zdrive.inp.phg.refinement_loop_limit20 │ ├── zdrive.inp.phg.refinement_max_neg_move50 │ ├── zdrive.inp.phg.refinement_method_none │ ├── zdrive.inp.phg.refinement_quality3 │ ├── zdrive.inp.phg.remap0 │ ├── zdrive.inp.phg.repartition │ ├── zdrive.inp.phg.repartition.repart_multiplier80 │ ├── zdrive.inp.phg.repartition.repart_multiplier800 │ ├── zdrive.inp.phg.repartition.repart_multiplier8000 │ ├── zdrive.inp.phg.seed │ ├── zdrive.inp.phg.use_timers1 │ ├── zdrive.inp.phg.use_timers2 │ ├── zdrive.inp.phg.vertex_scaling1 │ ├── zdrive.inp.phg.vertex_scaling2 │ ├── zdrive.inp.phg.vertex_scaling3 │ ├── zdrive.inp.phg.vertex_scaling4 │ ├── zdrive.inp.phg.vertex_visit_order1 │ ├── zdrive.inp.phg.vertex_visit_order2 │ ├── zdrive.inp.phg.vertex_visit_order3 │ └── zdrive.inp.phg.vertex_visit_order4 │ └── misc_tests │ ├── CMakeLists.txt │ └── test_get_callbacks.c ├── tutorials ├── README.md ├── grainGranFlow │ └── rotatingDrum │ │ ├── caseSetup │ │ ├── interaction │ │ ├── particleInsertion │ │ └── shapes │ │ ├── runThisCase │ │ └── settings │ │ ├── domainDict │ │ ├── geometryDict │ │ ├── particlesDict │ │ └── settingsDict ├── iterateGeometry │ └── inclinedScrewConveyor │ │ ├── caseSetup │ │ └── interaction │ │ ├── cleanThisCase │ │ ├── runThisCase │ │ ├── settings │ │ ├── geometryDict │ │ └── settingsDict │ │ └── stl │ │ ├── helix.stl │ │ ├── leg.stl │ │ ├── rod.stl │ │ ├── shell.stl │ │ └── uHolder.stl ├── postprocessPhasicFlow │ └── segregation │ │ ├── README.md │ │ ├── caseSetup │ │ ├── interaction │ │ └── shapes │ │ ├── cleanThisCase │ │ ├── runThisCase │ │ └── settings │ │ ├── domainDict │ │ ├── geometryDict │ │ ├── particlesDict │ │ ├── postprocessDataDict │ │ └── settingsDict └── sphereGranFlow │ ├── RotaryAirLockValve │ ├── ReadMe.md │ ├── caseSetup │ │ ├── interaction │ │ ├── particleInsertion │ │ └── shapes │ ├── cleanThisCase │ ├── runThisCase │ ├── settings │ │ ├── domainDict │ │ ├── geometryDict │ │ ├── particlesDict │ │ └── settingsDict │ └── stl │ │ ├── gear.stl │ │ └── surfaces.stl │ ├── RotatingDrumWithBaffles │ ├── ReadMe.md │ ├── caseSetup │ │ ├── interaction │ │ ├── particleInsertion │ │ └── shapes │ ├── cleanThisCase │ ├── runThisCase │ ├── settings │ │ ├── domainDict │ │ ├── geometryDict │ │ ├── particlesDict │ │ └── settingsDict │ └── stl │ │ ├── Body.stl │ │ ├── note │ │ └── shell.stl │ ├── V-blender │ ├── README.md │ ├── caseSetup │ │ ├── interaction │ │ ├── particleInsertion │ │ └── shapes │ ├── cleanThisCase │ ├── runThisCase │ ├── settings │ │ ├── domainDict │ │ ├── geometryDict │ │ ├── particlesDict │ │ └── settingsDict │ ├── stl │ │ ├── body.stl │ │ └── cone.stl │ └── v-blender.png │ ├── binarySystemOfParticles │ ├── README.md │ ├── caseSetup │ │ ├── interaction │ │ ├── particleInsertion │ │ └── shapes │ ├── cleanThisCase │ ├── runThisCase │ └── settings │ │ ├── domainDict │ │ ├── geometryDict │ │ ├── particlesDict │ │ └── settingsDict │ ├── conveyorBelt │ ├── caseSetup │ │ ├── interaction │ │ ├── particleInsertion │ │ └── shapes │ ├── cleanThisCase │ ├── runThisCase │ ├── settings │ │ ├── domainDict │ │ ├── geometryDict │ │ ├── particlesDict │ │ └── settingsDict │ └── stl │ │ ├── belt.stl │ │ └── box.stl │ ├── drum-PeriodicBoundary │ ├── README.md │ ├── caseSetup │ │ ├── interaction │ │ ├── particleInsertion │ │ └── shapes │ ├── cleanThisCase │ ├── drumPeriodic.jpeg │ ├── runThisCase │ └── settings │ │ ├── domainDict │ │ ├── geometryDict │ │ ├── particlesDict │ │ └── settingsDict │ ├── homogenizationSilo-PeriodicBoundary │ ├── README.md │ ├── caseSetup │ │ ├── interaction │ │ ├── particleInsertion │ │ └── shapes │ ├── cleanThisCase │ ├── homoSilo.jpeg │ ├── runThisCase │ └── settings │ │ ├── domainDict │ │ ├── geometryDict │ │ ├── particlesDict │ │ └── settingsDict │ ├── layeredSiloFilling │ ├── caseSetup │ │ ├── interaction │ │ ├── particleInsertion │ │ └── shapes │ ├── cleanThisCase │ ├── runThisCase │ └── settings │ │ ├── domainDict │ │ ├── geometryDict │ │ ├── particlesDict │ │ └── settingsDict │ ├── rotatingDrumMedium │ ├── README.md │ ├── caseSetup │ │ ├── interaction │ │ └── shapes │ ├── cleanThisCase │ ├── runThisCase │ └── settings │ │ ├── domainDict │ │ ├── geometryDict │ │ ├── particlesDict │ │ └── settingsDict │ ├── rotatingDrumSmall │ ├── README.md │ ├── caseSetup │ │ ├── interaction │ │ └── shapes │ ├── cleanThisCase │ ├── runThisCase │ └── settings │ │ ├── domainDict │ │ ├── geometryDict │ │ ├── particlesDict │ │ └── settingsDict │ ├── screwConveyor │ ├── README.md │ ├── caseSetup │ │ ├── interaction │ │ ├── particleInsertion │ │ └── shapes │ ├── cleanThisCase │ ├── runThisCase │ ├── screw.jpeg │ ├── settings │ │ ├── domainDict │ │ ├── geometryDict │ │ ├── particlesDict │ │ └── settingsDict │ └── stl │ │ ├── screw.stl │ │ ├── screwCourse.stl │ │ ├── shell.stl │ │ └── shellCourse.stl │ └── toteBlender │ ├── ReadMe.md │ ├── caseSetup │ ├── interaction │ └── shapes │ ├── cleanThisCase │ ├── runThisCase │ └── settings │ ├── domainDict │ ├── geometryDict │ ├── particlesDict │ └── settingsDict └── utilities ├── CMakeLists.txt ├── Utilities ├── CMakeLists.txt ├── geometryPhasicFlow │ ├── Wall │ │ ├── Wall.cpp │ │ └── Wall.hpp │ ├── cuboidWall │ │ ├── cuboidWall.cpp │ │ └── cuboidWall.hpp │ ├── cylinderWall │ │ ├── cylinderWall.cpp │ │ └── cylinderWall.hpp │ ├── planeWall │ │ ├── planeWall.cpp │ │ └── planeWall.hpp │ └── stlWall │ │ ├── stlFile.cpp │ │ ├── stlFile.hpp │ │ ├── stlWall.cpp │ │ └── stlWall.hpp ├── readControlDict.cpp ├── readControlDict.hpp ├── readFromTimeFolder.cpp ├── readFromTimeFolder.hpp ├── utilityFunctions.hpp └── vtkFile │ ├── vtkByteSwapper.hpp │ ├── vtkFile.cpp │ └── vtkFile.hpp ├── checkPhasicFlow ├── CMakeLists.txt └── checkPhasicFlow.cpp ├── geometryPhasicFlow ├── CMakeLists.txt ├── README.md └── geometryPhasicFlow.cpp ├── pFlowToVTK ├── CMakeLists.txt ├── README.md ├── fileSeries.cpp ├── fileSeries.hpp ├── pFlowToVTK.cpp ├── pointFieldToVTK.cpp ├── pointFieldToVTK.hpp ├── triSurfaceFieldToVTK.cpp └── triSurfaceFieldToVTK.hpp ├── particlesPhasicFlow ├── CMakeLists.txt ├── README.md ├── empty │ ├── empty.cpp │ └── empty.hpp ├── particlesPhasicFlow.cpp ├── positionFile │ ├── positionFile.cpp │ └── positionFile.hpp ├── positionOrdered │ ├── positionOrdered.cpp │ └── positionOrdered.hpp ├── positionParticles │ ├── positionParticles.cpp │ └── positionParticles.hpp ├── positionRandom │ ├── positionRandom.cpp │ └── positionRandom.hpp └── setFields.hpp └── postprocessPhasicFlow ├── CMakeLists.txt ├── postSimulationFieldsDataBase ├── postSimulationFieldsDataBase.cpp └── postSimulationFieldsDataBase.hpp ├── postprocessPhasicFlow.cpp └── readme.md /.github/scripts/sync-wiki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/.github/scripts/sync-wiki.py -------------------------------------------------------------------------------- /.github/workflows/static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/.github/workflows/static.yml -------------------------------------------------------------------------------- /.github/workflows/sync-wiki.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/.github/workflows/sync-wiki.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /DEMSystems/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/DEMSystems/CMakeLists.txt -------------------------------------------------------------------------------- /DEMSystems/DEMSystem/DEMSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/DEMSystems/DEMSystem/DEMSystem.cpp -------------------------------------------------------------------------------- /DEMSystems/DEMSystem/DEMSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/DEMSystems/DEMSystem/DEMSystem.hpp -------------------------------------------------------------------------------- /DEMSystems/domainDistribute/domainDistribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/DEMSystems/domainDistribute/domainDistribute.cpp -------------------------------------------------------------------------------- /DEMSystems/domainDistribute/domainDistribute.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/DEMSystems/domainDistribute/domainDistribute.hpp -------------------------------------------------------------------------------- /DEMSystems/grainDEMSystem/grainDEMSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/DEMSystems/grainDEMSystem/grainDEMSystem.cpp -------------------------------------------------------------------------------- /DEMSystems/grainDEMSystem/grainDEMSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/DEMSystems/grainDEMSystem/grainDEMSystem.hpp -------------------------------------------------------------------------------- /DEMSystems/sphereDEMSystem/sphereDEMSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/DEMSystems/sphereDEMSystem/sphereDEMSystem.cpp -------------------------------------------------------------------------------- /DEMSystems/sphereDEMSystem/sphereDEMSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/DEMSystems/sphereDEMSystem/sphereDEMSystem.hpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/helicalMixer/images/performance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/benchmarks/helicalMixer/images/performance.png -------------------------------------------------------------------------------- /benchmarks/helicalMixer/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/benchmarks/helicalMixer/readme.md -------------------------------------------------------------------------------- /benchmarks/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/benchmarks/readme.md -------------------------------------------------------------------------------- /benchmarks/rotatingDrum/images/performance1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/benchmarks/rotatingDrum/images/performance1.png -------------------------------------------------------------------------------- /benchmarks/rotatingDrum/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/benchmarks/rotatingDrum/readme.md -------------------------------------------------------------------------------- /cmake/autoComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/cmake/autoComplete -------------------------------------------------------------------------------- /cmake/bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/cmake/bashrc -------------------------------------------------------------------------------- /cmake/globals.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/cmake/globals.cmake -------------------------------------------------------------------------------- /cmake/makeExecutableGlobals.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/cmake/makeExecutableGlobals.cmake -------------------------------------------------------------------------------- /cmake/makeLibraryGlobals.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/cmake/makeLibraryGlobals.cmake -------------------------------------------------------------------------------- /cmake/preReq.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/cmake/preReq.cmake -------------------------------------------------------------------------------- /cmake/zoltanInstallCheck.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/cmake/zoltanInstallCheck.cmake -------------------------------------------------------------------------------- /doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/doc/Doxyfile -------------------------------------------------------------------------------- /doc/customdoxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/doc/customdoxygen.css -------------------------------------------------------------------------------- /doc/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/doc/footer.html -------------------------------------------------------------------------------- /doc/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/doc/header.html -------------------------------------------------------------------------------- /doc/mdDocs/codingStyle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/doc/mdDocs/codingStyle.md -------------------------------------------------------------------------------- /doc/mdDocs/howToBuild-V1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/doc/mdDocs/howToBuild-V1.0.md -------------------------------------------------------------------------------- /doc/mdDocs/howToUsePhasicFlow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/doc/mdDocs/howToUsePhasicFlow.md -------------------------------------------------------------------------------- /doc/mdDocs/mainpage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/doc/mdDocs/mainpage.md -------------------------------------------------------------------------------- /doc/mdDocs/markdownList.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/doc/mdDocs/markdownList.yml -------------------------------------------------------------------------------- /doc/mdDocs/phasicFlowFeatures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/doc/mdDocs/phasicFlowFeatures.md -------------------------------------------------------------------------------- /doc/phasicFlow_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/doc/phasicFlow_logo.png -------------------------------------------------------------------------------- /doc/phasicFlow_logo_github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/doc/phasicFlow_logo_github.png -------------------------------------------------------------------------------- /phasicFlowConfig.H.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/phasicFlowConfig.H.in -------------------------------------------------------------------------------- /resources/stls/helicalMixer/helix2.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/resources/stls/helicalMixer/helix2.stl -------------------------------------------------------------------------------- /resources/stls/helicalMixer/shell2.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/resources/stls/helicalMixer/shell2.stl -------------------------------------------------------------------------------- /solvers/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/solvers/CMakeLists.txt -------------------------------------------------------------------------------- /solvers/grainGranFlow/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/solvers/grainGranFlow/CMakeLists.txt -------------------------------------------------------------------------------- /solvers/grainGranFlow/createDEMComponents.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/solvers/grainGranFlow/createDEMComponents.hpp -------------------------------------------------------------------------------- /solvers/grainGranFlow/grainGranFlow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/solvers/grainGranFlow/grainGranFlow.cpp -------------------------------------------------------------------------------- /solvers/iterateGeometry/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/solvers/iterateGeometry/CMakeLists.txt -------------------------------------------------------------------------------- /solvers/iterateGeometry/iterateGeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/solvers/iterateGeometry/iterateGeometry.cpp -------------------------------------------------------------------------------- /solvers/iterateSphereParticles/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/solvers/iterateSphereParticles/CMakeLists.txt -------------------------------------------------------------------------------- /solvers/sphereGranFlow/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/solvers/sphereGranFlow/CMakeLists.txt -------------------------------------------------------------------------------- /solvers/sphereGranFlow/createDEMComponents.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/solvers/sphereGranFlow/createDEMComponents.hpp -------------------------------------------------------------------------------- /solvers/sphereGranFlow/sphereGranFlow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/solvers/sphereGranFlow/sphereGranFlow.cpp -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Geometry/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/Geometry/CMakeLists.txt -------------------------------------------------------------------------------- /src/Geometry/geometry/demGeometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/Geometry/geometry/demGeometry.hpp -------------------------------------------------------------------------------- /src/Geometry/geometry/geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/Geometry/geometry/geometry.cpp -------------------------------------------------------------------------------- /src/Geometry/geometry/geometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/Geometry/geometry/geometry.hpp -------------------------------------------------------------------------------- /src/Geometry/geometryMotion/geometryMotion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/Geometry/geometryMotion/geometryMotion.cpp -------------------------------------------------------------------------------- /src/Geometry/geometryMotion/geometryMotion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/Geometry/geometryMotion/geometryMotion.hpp -------------------------------------------------------------------------------- /src/Geometry/geometryMotion/geometryMotions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/Geometry/geometryMotion/geometryMotions.cpp -------------------------------------------------------------------------------- /src/Geometry/geometryMotion/geometryMotions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/Geometry/geometryMotion/geometryMotions.hpp -------------------------------------------------------------------------------- /src/Integration/AdamsBashforth2/AB2Kernels.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/Integration/AdamsBashforth2/AB2Kernels.hpp -------------------------------------------------------------------------------- /src/Integration/AdamsMoulton3/AdamsMoulton3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/Integration/AdamsMoulton3/AdamsMoulton3.cpp -------------------------------------------------------------------------------- /src/Integration/AdamsMoulton3/AdamsMoulton3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/Integration/AdamsMoulton3/AdamsMoulton3.hpp -------------------------------------------------------------------------------- /src/Integration/AdamsMoulton4/AdamsMoulton4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/Integration/AdamsMoulton4/AdamsMoulton4.cpp -------------------------------------------------------------------------------- /src/Integration/AdamsMoulton4/AdamsMoulton4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/Integration/AdamsMoulton4/AdamsMoulton4.hpp -------------------------------------------------------------------------------- /src/Integration/AdamsMoulton5/AdamsMoulton5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/Integration/AdamsMoulton5/AdamsMoulton5.cpp -------------------------------------------------------------------------------- /src/Integration/AdamsMoulton5/AdamsMoulton5.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/Integration/AdamsMoulton5/AdamsMoulton5.hpp -------------------------------------------------------------------------------- /src/Integration/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/Integration/CMakeLists.txt -------------------------------------------------------------------------------- /src/Integration/integration/integration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/Integration/integration/integration.cpp -------------------------------------------------------------------------------- /src/Integration/integration/integration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/Integration/integration/integration.hpp -------------------------------------------------------------------------------- /src/Interaction/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/Interaction/CMakeLists.txt -------------------------------------------------------------------------------- /src/Interaction/Models/contactForce/linearCF.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/Interaction/Models/contactForce/linearCF.hpp -------------------------------------------------------------------------------- /src/Interaction/Models/contactForceModels.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/Interaction/Models/contactForceModels.hpp -------------------------------------------------------------------------------- /src/Interaction/Models/rolling/grainRolling.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/Interaction/Models/rolling/grainRolling.hpp -------------------------------------------------------------------------------- /src/Interaction/Models/rolling/normalRolling.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/Interaction/Models/rolling/normalRolling.hpp -------------------------------------------------------------------------------- /src/Interaction/contactLists/sortedPairs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/Interaction/contactLists/sortedPairs.hpp -------------------------------------------------------------------------------- /src/Interaction/contactLists/unsortedPairs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/Interaction/contactLists/unsortedPairs.hpp -------------------------------------------------------------------------------- /src/Interaction/interaction/interaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/Interaction/interaction/interaction.cpp -------------------------------------------------------------------------------- /src/Interaction/interaction/interaction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/Interaction/interaction/interaction.hpp -------------------------------------------------------------------------------- /src/MotionModel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/MotionModel/CMakeLists.txt -------------------------------------------------------------------------------- /src/MotionModel/MotionModel/MotionModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/MotionModel/MotionModel/MotionModel.cpp -------------------------------------------------------------------------------- /src/MotionModel/MotionModel/MotionModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/MotionModel/MotionModel/MotionModel.hpp -------------------------------------------------------------------------------- /src/MotionModel/entities/vibrating/vibrating.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/MotionModel/entities/vibrating/vibrating.cpp -------------------------------------------------------------------------------- /src/MotionModel/entities/vibrating/vibrating.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/MotionModel/entities/vibrating/vibrating.hpp -------------------------------------------------------------------------------- /src/Particles/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/Particles/CMakeLists.txt -------------------------------------------------------------------------------- /src/Particles/Insertion/Insertion/Insertion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/Particles/Insertion/Insertion/Insertion.cpp -------------------------------------------------------------------------------- /src/Particles/Insertion/Insertion/Insertion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/Particles/Insertion/Insertion/Insertion.hpp -------------------------------------------------------------------------------- /src/Particles/Insertion/Insertion/Insertions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/Particles/Insertion/Insertion/Insertions.cpp -------------------------------------------------------------------------------- /src/Particles/Insertion/Insertion/Insertions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/Particles/Insertion/Insertion/Insertions.hpp -------------------------------------------------------------------------------- /src/Particles/Insertion/insertion/insertion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/Particles/Insertion/insertion/insertion.cpp -------------------------------------------------------------------------------- /src/Particles/Insertion/insertion/insertion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/Particles/Insertion/insertion/insertion.hpp -------------------------------------------------------------------------------- /src/Particles/globalDamping/globalDamping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/Particles/globalDamping/globalDamping.cpp -------------------------------------------------------------------------------- /src/Particles/globalDamping/globalDamping.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/Particles/globalDamping/globalDamping.hpp -------------------------------------------------------------------------------- /src/Particles/particles/particles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/Particles/particles/particles.cpp -------------------------------------------------------------------------------- /src/Particles/particles/particles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/Particles/particles/particles.hpp -------------------------------------------------------------------------------- /src/Particles/particles/shape/baseShapeNames.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/Particles/particles/shape/baseShapeNames.cpp -------------------------------------------------------------------------------- /src/Particles/particles/shape/baseShapeNames.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/Particles/particles/shape/baseShapeNames.hpp -------------------------------------------------------------------------------- /src/Particles/particles/shape/shape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/Particles/particles/shape/shape.cpp -------------------------------------------------------------------------------- /src/Particles/particles/shape/shape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/Particles/particles/shape/shape.hpp -------------------------------------------------------------------------------- /src/PostprocessData/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/PostprocessData/CMakeLists.txt -------------------------------------------------------------------------------- /src/PostprocessData/processMethod/arithmetic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/PostprocessData/processMethod/arithmetic.hpp -------------------------------------------------------------------------------- /src/PostprocessData/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/PostprocessData/readme.md -------------------------------------------------------------------------------- /src/Property/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/Property/CMakeLists.txt -------------------------------------------------------------------------------- /src/Property/property.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/Property/property.cpp -------------------------------------------------------------------------------- /src/Property/property.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/Property/property.hpp -------------------------------------------------------------------------------- /src/phasicFlow/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/CMakeLists.txt -------------------------------------------------------------------------------- /src/phasicFlow/Kokkos/KokkosTypes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/Kokkos/KokkosTypes.hpp -------------------------------------------------------------------------------- /src/phasicFlow/Kokkos/KokkosUtilities.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/Kokkos/KokkosUtilities.hpp -------------------------------------------------------------------------------- /src/phasicFlow/Kokkos/Range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/Kokkos/Range.hpp -------------------------------------------------------------------------------- /src/phasicFlow/Kokkos/ViewAlgorithms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/Kokkos/ViewAlgorithms.hpp -------------------------------------------------------------------------------- /src/phasicFlow/Kokkos/phasicFlowKokkos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/Kokkos/phasicFlowKokkos.hpp -------------------------------------------------------------------------------- /src/phasicFlow/Timer/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/Timer/Timer.cpp -------------------------------------------------------------------------------- /src/phasicFlow/Timer/Timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/Timer/Timer.hpp -------------------------------------------------------------------------------- /src/phasicFlow/Timer/Timers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/Timer/Timers.cpp -------------------------------------------------------------------------------- /src/phasicFlow/Timer/Timers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/Timer/Timers.hpp -------------------------------------------------------------------------------- /src/phasicFlow/algorithms/algorithmFunctions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/algorithms/algorithmFunctions.hpp -------------------------------------------------------------------------------- /src/phasicFlow/algorithms/cudaAlgorithms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/algorithms/cudaAlgorithms.hpp -------------------------------------------------------------------------------- /src/phasicFlow/algorithms/kokkosAlgorithms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/algorithms/kokkosAlgorithms.hpp -------------------------------------------------------------------------------- /src/phasicFlow/algorithms/stdAlgorithms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/algorithms/stdAlgorithms.hpp -------------------------------------------------------------------------------- /src/phasicFlow/commandLine/CLI/App.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/commandLine/CLI/App.hpp -------------------------------------------------------------------------------- /src/phasicFlow/commandLine/CLI/CLI.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/commandLine/CLI/CLI.hpp -------------------------------------------------------------------------------- /src/phasicFlow/commandLine/CLI/Config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/commandLine/CLI/Config.hpp -------------------------------------------------------------------------------- /src/phasicFlow/commandLine/CLI/ConfigFwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/commandLine/CLI/ConfigFwd.hpp -------------------------------------------------------------------------------- /src/phasicFlow/commandLine/CLI/Error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/commandLine/CLI/Error.hpp -------------------------------------------------------------------------------- /src/phasicFlow/commandLine/CLI/Formatter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/commandLine/CLI/Formatter.hpp -------------------------------------------------------------------------------- /src/phasicFlow/commandLine/CLI/FormatterFwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/commandLine/CLI/FormatterFwd.hpp -------------------------------------------------------------------------------- /src/phasicFlow/commandLine/CLI/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/commandLine/CLI/LICENSE -------------------------------------------------------------------------------- /src/phasicFlow/commandLine/CLI/Macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/commandLine/CLI/Macros.hpp -------------------------------------------------------------------------------- /src/phasicFlow/commandLine/CLI/Option.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/commandLine/CLI/Option.hpp -------------------------------------------------------------------------------- /src/phasicFlow/commandLine/CLI/Split.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/commandLine/CLI/Split.hpp -------------------------------------------------------------------------------- /src/phasicFlow/commandLine/CLI/StringTools.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/commandLine/CLI/StringTools.hpp -------------------------------------------------------------------------------- /src/phasicFlow/commandLine/CLI/TypeTools.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/commandLine/CLI/TypeTools.hpp -------------------------------------------------------------------------------- /src/phasicFlow/commandLine/CLI/Validators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/commandLine/CLI/Validators.hpp -------------------------------------------------------------------------------- /src/phasicFlow/commandLine/CLI/Version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/commandLine/CLI/Version.hpp -------------------------------------------------------------------------------- /src/phasicFlow/commandLine/CLI/cliTimer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/commandLine/CLI/cliTimer.hpp -------------------------------------------------------------------------------- /src/phasicFlow/commandLine/commandLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/commandLine/commandLine.cpp -------------------------------------------------------------------------------- /src/phasicFlow/commandLine/commandLine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/commandLine/commandLine.hpp -------------------------------------------------------------------------------- /src/phasicFlow/containers/Field/Field.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/containers/Field/Field.cpp -------------------------------------------------------------------------------- /src/phasicFlow/containers/Field/Field.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/containers/Field/Field.hpp -------------------------------------------------------------------------------- /src/phasicFlow/containers/Field/Fields.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/containers/Field/Fields.cpp -------------------------------------------------------------------------------- /src/phasicFlow/containers/Field/Fields.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/containers/Field/Fields.hpp -------------------------------------------------------------------------------- /src/phasicFlow/containers/List/List/List.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/containers/List/List/List.hpp -------------------------------------------------------------------------------- /src/phasicFlow/containers/List/List/ListI.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/containers/List/List/ListI.hpp -------------------------------------------------------------------------------- /src/phasicFlow/containers/List/Lists.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/containers/List/Lists.hpp -------------------------------------------------------------------------------- /src/phasicFlow/containers/Map/Map/Map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/containers/Map/Map/Map.hpp -------------------------------------------------------------------------------- /src/phasicFlow/containers/Map/Map/MapI.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/containers/Map/Map/MapI.hpp -------------------------------------------------------------------------------- /src/phasicFlow/containers/Map/MapPtr/MapPtr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/containers/Map/MapPtr/MapPtr.hpp -------------------------------------------------------------------------------- /src/phasicFlow/containers/Map/MapPtr/MapPtrI.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/containers/Map/MapPtr/MapPtrI.hpp -------------------------------------------------------------------------------- /src/phasicFlow/containers/Map/Maps.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/containers/Map/Maps.hpp -------------------------------------------------------------------------------- /src/phasicFlow/containers/Set/Set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/containers/Set/Set.hpp -------------------------------------------------------------------------------- /src/phasicFlow/containers/Vector/Vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/containers/Vector/Vector.cpp -------------------------------------------------------------------------------- /src/phasicFlow/containers/Vector/Vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/containers/Vector/Vector.hpp -------------------------------------------------------------------------------- /src/phasicFlow/containers/Vector/VectorFwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/containers/Vector/VectorFwd.hpp -------------------------------------------------------------------------------- /src/phasicFlow/containers/Vector/VectorI.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/containers/Vector/VectorI.hpp -------------------------------------------------------------------------------- /src/phasicFlow/containers/Vector/VectorMath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/containers/Vector/VectorMath.hpp -------------------------------------------------------------------------------- /src/phasicFlow/containers/Vector/Vectors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/containers/Vector/Vectors.cpp -------------------------------------------------------------------------------- /src/phasicFlow/containers/Vector/Vectors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/containers/Vector/Vectors.hpp -------------------------------------------------------------------------------- /src/phasicFlow/containers/bitsetHD/bitsetHD.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/containers/bitsetHD/bitsetHD.hpp -------------------------------------------------------------------------------- /src/phasicFlow/containers/bitsetHD/bitsetHDs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/containers/bitsetHD/bitsetHDs.cpp -------------------------------------------------------------------------------- /src/phasicFlow/containers/span/span.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/containers/span/span.hpp -------------------------------------------------------------------------------- /src/phasicFlow/demComponent/demComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/demComponent/demComponent.cpp -------------------------------------------------------------------------------- /src/phasicFlow/demComponent/demComponent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/demComponent/demComponent.hpp -------------------------------------------------------------------------------- /src/phasicFlow/dictionary/dictionary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/dictionary/dictionary.cpp -------------------------------------------------------------------------------- /src/phasicFlow/dictionary/dictionary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/dictionary/dictionary.hpp -------------------------------------------------------------------------------- /src/phasicFlow/dictionary/dictionaryList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/dictionary/dictionaryList.hpp -------------------------------------------------------------------------------- /src/phasicFlow/dictionary/entry/dataEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/dictionary/entry/dataEntry.cpp -------------------------------------------------------------------------------- /src/phasicFlow/dictionary/entry/dataEntry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/dictionary/entry/dataEntry.hpp -------------------------------------------------------------------------------- /src/phasicFlow/dictionary/entry/iEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/dictionary/entry/iEntry.cpp -------------------------------------------------------------------------------- /src/phasicFlow/dictionary/entry/iEntry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/dictionary/entry/iEntry.hpp -------------------------------------------------------------------------------- /src/phasicFlow/dictionary/fileDictionary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/dictionary/fileDictionary.cpp -------------------------------------------------------------------------------- /src/phasicFlow/dictionary/fileDictionary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/dictionary/fileDictionary.hpp -------------------------------------------------------------------------------- /src/phasicFlow/eventManagement/message.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/eventManagement/message.hpp -------------------------------------------------------------------------------- /src/phasicFlow/eventManagement/observer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/eventManagement/observer.cpp -------------------------------------------------------------------------------- /src/phasicFlow/eventManagement/observer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/eventManagement/observer.hpp -------------------------------------------------------------------------------- /src/phasicFlow/eventManagement/subscriber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/eventManagement/subscriber.cpp -------------------------------------------------------------------------------- /src/phasicFlow/eventManagement/subscriber.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/eventManagement/subscriber.hpp -------------------------------------------------------------------------------- /src/phasicFlow/fileSystem/fileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/fileSystem/fileSystem.cpp -------------------------------------------------------------------------------- /src/phasicFlow/fileSystem/fileSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/fileSystem/fileSystem.hpp -------------------------------------------------------------------------------- /src/phasicFlow/globals/boundaryConfigs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/globals/boundaryConfigs.hpp -------------------------------------------------------------------------------- /src/phasicFlow/globals/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/globals/error.cpp -------------------------------------------------------------------------------- /src/phasicFlow/globals/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/globals/error.hpp -------------------------------------------------------------------------------- /src/phasicFlow/globals/globalSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/globals/globalSettings.cpp -------------------------------------------------------------------------------- /src/phasicFlow/globals/globalSettings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/globals/globalSettings.hpp -------------------------------------------------------------------------------- /src/phasicFlow/globals/pFlowMacros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/globals/pFlowMacros.hpp -------------------------------------------------------------------------------- /src/phasicFlow/globals/vocabs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/globals/vocabs.hpp -------------------------------------------------------------------------------- /src/phasicFlow/processors/MPITimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/processors/MPITimer.cpp -------------------------------------------------------------------------------- /src/phasicFlow/processors/MPITimer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/processors/MPITimer.hpp -------------------------------------------------------------------------------- /src/phasicFlow/processors/localProcessors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/processors/localProcessors.cpp -------------------------------------------------------------------------------- /src/phasicFlow/processors/localProcessors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/processors/localProcessors.hpp -------------------------------------------------------------------------------- /src/phasicFlow/processors/pFlowProcessors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/processors/pFlowProcessors.cpp -------------------------------------------------------------------------------- /src/phasicFlow/processors/pFlowProcessors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/processors/pFlowProcessors.hpp -------------------------------------------------------------------------------- /src/phasicFlow/processors/processors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/processors/processors.cpp -------------------------------------------------------------------------------- /src/phasicFlow/processors/processors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/processors/processors.hpp -------------------------------------------------------------------------------- /src/phasicFlow/random/randomReal/RandomReal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/random/randomReal/RandomReal.cpp -------------------------------------------------------------------------------- /src/phasicFlow/random/randomReal/RandomReal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/random/randomReal/RandomReal.hpp -------------------------------------------------------------------------------- /src/phasicFlow/random/randomReal/randomReal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/random/randomReal/randomReal.cpp -------------------------------------------------------------------------------- /src/phasicFlow/random/randomReal/randomReal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/random/randomReal/randomReal.hpp -------------------------------------------------------------------------------- /src/phasicFlow/random/randomReal/randomReals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/random/randomReal/randomReals.cpp -------------------------------------------------------------------------------- /src/phasicFlow/random/randomReal/randomReals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/random/randomReal/randomReals.hpp -------------------------------------------------------------------------------- /src/phasicFlow/ranges/combinedRange.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/ranges/combinedRange.hpp -------------------------------------------------------------------------------- /src/phasicFlow/ranges/intervalRange.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/ranges/intervalRange.hpp -------------------------------------------------------------------------------- /src/phasicFlow/ranges/ranges.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/ranges/ranges.hpp -------------------------------------------------------------------------------- /src/phasicFlow/ranges/stridedRange.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/ranges/stridedRange.hpp -------------------------------------------------------------------------------- /src/phasicFlow/repository/IOobject/IOPattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/repository/IOobject/IOPattern.cpp -------------------------------------------------------------------------------- /src/phasicFlow/repository/IOobject/IOPattern.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/repository/IOobject/IOPattern.hpp -------------------------------------------------------------------------------- /src/phasicFlow/repository/IOobject/IOobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/repository/IOobject/IOobject.cpp -------------------------------------------------------------------------------- /src/phasicFlow/repository/IOobject/IOobject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/repository/IOobject/IOobject.hpp -------------------------------------------------------------------------------- /src/phasicFlow/repository/Time/Time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/repository/Time/Time.cpp -------------------------------------------------------------------------------- /src/phasicFlow/repository/Time/Time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/repository/Time/Time.hpp -------------------------------------------------------------------------------- /src/phasicFlow/repository/Time/timeControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/repository/Time/timeControl.cpp -------------------------------------------------------------------------------- /src/phasicFlow/repository/Time/timeControl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/repository/Time/timeControl.hpp -------------------------------------------------------------------------------- /src/phasicFlow/repository/Time/timeInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/repository/Time/timeInfo.hpp -------------------------------------------------------------------------------- /src/phasicFlow/setFieldList/setFieldEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/setFieldList/setFieldEntry.cpp -------------------------------------------------------------------------------- /src/phasicFlow/setFieldList/setFieldEntry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/setFieldList/setFieldEntry.hpp -------------------------------------------------------------------------------- /src/phasicFlow/setFieldList/setFieldList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/setFieldList/setFieldList.cpp -------------------------------------------------------------------------------- /src/phasicFlow/setFieldList/setFieldList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/setFieldList/setFieldList.hpp -------------------------------------------------------------------------------- /src/phasicFlow/smartPointers/uniquePtr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/smartPointers/uniquePtr.hpp -------------------------------------------------------------------------------- /src/phasicFlow/streams/Fstream/fileStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/streams/Fstream/fileStream.cpp -------------------------------------------------------------------------------- /src/phasicFlow/streams/Fstream/fileStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/streams/Fstream/fileStream.hpp -------------------------------------------------------------------------------- /src/phasicFlow/streams/Fstream/iFstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/streams/Fstream/iFstream.cpp -------------------------------------------------------------------------------- /src/phasicFlow/streams/Fstream/iFstream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/streams/Fstream/iFstream.hpp -------------------------------------------------------------------------------- /src/phasicFlow/streams/Fstream/oFstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/streams/Fstream/oFstream.cpp -------------------------------------------------------------------------------- /src/phasicFlow/streams/Fstream/oFstream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/streams/Fstream/oFstream.hpp -------------------------------------------------------------------------------- /src/phasicFlow/streams/Stream/Istream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/streams/Stream/Istream.cpp -------------------------------------------------------------------------------- /src/phasicFlow/streams/Stream/Istream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/streams/Stream/Istream.hpp -------------------------------------------------------------------------------- /src/phasicFlow/streams/Stream/Ostream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/streams/Stream/Ostream.cpp -------------------------------------------------------------------------------- /src/phasicFlow/streams/Stream/Ostream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/streams/Stream/Ostream.hpp -------------------------------------------------------------------------------- /src/phasicFlow/streams/TStream/helperTstream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/streams/TStream/helperTstream.hpp -------------------------------------------------------------------------------- /src/phasicFlow/streams/TStream/iTstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/streams/TStream/iTstream.cpp -------------------------------------------------------------------------------- /src/phasicFlow/streams/TStream/iTstream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/streams/TStream/iTstream.hpp -------------------------------------------------------------------------------- /src/phasicFlow/streams/TStream/oTstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/streams/TStream/oTstream.cpp -------------------------------------------------------------------------------- /src/phasicFlow/streams/TStream/oTstream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/streams/TStream/oTstream.hpp -------------------------------------------------------------------------------- /src/phasicFlow/streams/dataIO/dataIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/streams/dataIO/dataIO.cpp -------------------------------------------------------------------------------- /src/phasicFlow/streams/dataIO/dataIO.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/streams/dataIO/dataIO.hpp -------------------------------------------------------------------------------- /src/phasicFlow/streams/dataIO/dataIORegular.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/streams/dataIO/dataIORegular.hpp -------------------------------------------------------------------------------- /src/phasicFlow/streams/dataIO/dataIORegulars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/streams/dataIO/dataIORegulars.cpp -------------------------------------------------------------------------------- /src/phasicFlow/streams/iStream/IOstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/streams/iStream/IOstream.cpp -------------------------------------------------------------------------------- /src/phasicFlow/streams/iStream/IOstream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/streams/iStream/IOstream.hpp -------------------------------------------------------------------------------- /src/phasicFlow/streams/iStream/iIstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/streams/iStream/iIstream.cpp -------------------------------------------------------------------------------- /src/phasicFlow/streams/iStream/iIstream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/streams/iStream/iIstream.hpp -------------------------------------------------------------------------------- /src/phasicFlow/streams/iStream/iIstreamI.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/streams/iStream/iIstreamI.hpp -------------------------------------------------------------------------------- /src/phasicFlow/streams/iStream/iOstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/streams/iStream/iOstream.cpp -------------------------------------------------------------------------------- /src/phasicFlow/streams/iStream/iOstream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/streams/iStream/iOstream.hpp -------------------------------------------------------------------------------- /src/phasicFlow/streams/streams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/streams/streams.cpp -------------------------------------------------------------------------------- /src/phasicFlow/streams/streams.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/streams/streams.hpp -------------------------------------------------------------------------------- /src/phasicFlow/streams/token/token.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/streams/token/token.cpp -------------------------------------------------------------------------------- /src/phasicFlow/streams/token/token.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/streams/token/token.hpp -------------------------------------------------------------------------------- /src/phasicFlow/streams/token/tokenI.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/streams/token/tokenI.hpp -------------------------------------------------------------------------------- /src/phasicFlow/streams/token/tokenIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/streams/token/tokenIO.cpp -------------------------------------------------------------------------------- /src/phasicFlow/streams/token/tokenList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/streams/token/tokenList.hpp -------------------------------------------------------------------------------- /src/phasicFlow/structuredData/box/box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/structuredData/box/box.cpp -------------------------------------------------------------------------------- /src/phasicFlow/structuredData/box/box.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/structuredData/box/box.hpp -------------------------------------------------------------------------------- /src/phasicFlow/structuredData/cells/cells.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/structuredData/cells/cells.cpp -------------------------------------------------------------------------------- /src/phasicFlow/structuredData/cells/cells.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/structuredData/cells/cells.hpp -------------------------------------------------------------------------------- /src/phasicFlow/structuredData/domain/domain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/structuredData/domain/domain.cpp -------------------------------------------------------------------------------- /src/phasicFlow/structuredData/domain/domain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/structuredData/domain/domain.hpp -------------------------------------------------------------------------------- /src/phasicFlow/structuredData/iBox/iBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/structuredData/iBox/iBox.cpp -------------------------------------------------------------------------------- /src/phasicFlow/structuredData/iBox/iBox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/structuredData/iBox/iBox.hpp -------------------------------------------------------------------------------- /src/phasicFlow/structuredData/iBox/iBoxs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/structuredData/iBox/iBoxs.cpp -------------------------------------------------------------------------------- /src/phasicFlow/structuredData/line/line.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/structuredData/line/line.cpp -------------------------------------------------------------------------------- /src/phasicFlow/structuredData/line/line.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/structuredData/line/line.hpp -------------------------------------------------------------------------------- /src/phasicFlow/structuredData/plane/plane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/structuredData/plane/plane.cpp -------------------------------------------------------------------------------- /src/phasicFlow/structuredData/plane/plane.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/structuredData/plane/plane.hpp -------------------------------------------------------------------------------- /src/phasicFlow/structuredData/sphere/sphere.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/structuredData/sphere/sphere.cpp -------------------------------------------------------------------------------- /src/phasicFlow/structuredData/sphere/sphere.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/structuredData/sphere/sphere.hpp -------------------------------------------------------------------------------- /src/phasicFlow/structuredData/zAxis/array2D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/structuredData/zAxis/array2D.hpp -------------------------------------------------------------------------------- /src/phasicFlow/structuredData/zAxis/zAxis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/structuredData/zAxis/zAxis.cpp -------------------------------------------------------------------------------- /src/phasicFlow/structuredData/zAxis/zAxis.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/structuredData/zAxis/zAxis.hpp -------------------------------------------------------------------------------- /src/phasicFlow/triSurface/multiTriSurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/triSurface/multiTriSurface.cpp -------------------------------------------------------------------------------- /src/phasicFlow/triSurface/multiTriSurface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/triSurface/multiTriSurface.hpp -------------------------------------------------------------------------------- /src/phasicFlow/triSurface/subSurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/triSurface/subSurface.cpp -------------------------------------------------------------------------------- /src/phasicFlow/triSurface/subSurface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/triSurface/subSurface.hpp -------------------------------------------------------------------------------- /src/phasicFlow/triSurface/triSurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/triSurface/triSurface.cpp -------------------------------------------------------------------------------- /src/phasicFlow/triSurface/triSurface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/triSurface/triSurface.hpp -------------------------------------------------------------------------------- /src/phasicFlow/triSurface/triSurfaceKernels.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/triSurface/triSurfaceKernels.hpp -------------------------------------------------------------------------------- /src/phasicFlow/triSurface/triangleFunctions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/triSurface/triangleFunctions.hpp -------------------------------------------------------------------------------- /src/phasicFlow/typeSelection/typeInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/typeSelection/typeInfo.hpp -------------------------------------------------------------------------------- /src/phasicFlow/types/basicTypes/Logical.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/types/basicTypes/Logical.cpp -------------------------------------------------------------------------------- /src/phasicFlow/types/basicTypes/Logical.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/types/basicTypes/Logical.hpp -------------------------------------------------------------------------------- /src/phasicFlow/types/basicTypes/bTypes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/types/basicTypes/bTypes.hpp -------------------------------------------------------------------------------- /src/phasicFlow/types/basicTypes/builtinTypes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/types/basicTypes/builtinTypes.hpp -------------------------------------------------------------------------------- /src/phasicFlow/types/basicTypes/math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/types/basicTypes/math.hpp -------------------------------------------------------------------------------- /src/phasicFlow/types/quadruple/quadruple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/types/quadruple/quadruple.hpp -------------------------------------------------------------------------------- /src/phasicFlow/types/quadruple/quadrupleFwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/types/quadruple/quadrupleFwd.hpp -------------------------------------------------------------------------------- /src/phasicFlow/types/quadruple/quadrupleI.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/types/quadruple/quadrupleI.hpp -------------------------------------------------------------------------------- /src/phasicFlow/types/quadruple/quadrupleMath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/types/quadruple/quadrupleMath.hpp -------------------------------------------------------------------------------- /src/phasicFlow/types/triple/triple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/types/triple/triple.hpp -------------------------------------------------------------------------------- /src/phasicFlow/types/triple/tripleFwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/types/triple/tripleFwd.hpp -------------------------------------------------------------------------------- /src/phasicFlow/types/triple/tripleI.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/types/triple/tripleI.hpp -------------------------------------------------------------------------------- /src/phasicFlow/types/triple/tripleMath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/types/triple/tripleMath.hpp -------------------------------------------------------------------------------- /src/phasicFlow/types/types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/types/types.cpp -------------------------------------------------------------------------------- /src/phasicFlow/types/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/phasicFlow/types/types.hpp -------------------------------------------------------------------------------- /src/setHelpers/finalize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/setHelpers/finalize.hpp -------------------------------------------------------------------------------- /src/setHelpers/initialize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/setHelpers/initialize.hpp -------------------------------------------------------------------------------- /src/setHelpers/initialize_Control.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/setHelpers/initialize_Control.hpp -------------------------------------------------------------------------------- /src/setHelpers/setPointStructure.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/setHelpers/setPointStructure.hpp -------------------------------------------------------------------------------- /src/setHelpers/setProperty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/setHelpers/setProperty.hpp -------------------------------------------------------------------------------- /src/setHelpers/setSurfaceGeometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/src/setHelpers/setSurfaceGeometry.hpp -------------------------------------------------------------------------------- /thirdParty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/README.md -------------------------------------------------------------------------------- /thirdParty/Zoltan/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/CMakeLists.txt -------------------------------------------------------------------------------- /thirdParty/Zoltan/COPYRIGHT_AND_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/COPYRIGHT_AND_LICENSE -------------------------------------------------------------------------------- /thirdParty/Zoltan/Disclaimer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/Disclaimer -------------------------------------------------------------------------------- /thirdParty/Zoltan/Known_Problems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/Known_Problems -------------------------------------------------------------------------------- /thirdParty/Zoltan/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/Makefile.am -------------------------------------------------------------------------------- /thirdParty/Zoltan/Makefile.export.zoltan.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/Makefile.export.zoltan.in -------------------------------------------------------------------------------- /thirdParty/Zoltan/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/Makefile.in -------------------------------------------------------------------------------- /thirdParty/Zoltan/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/README -------------------------------------------------------------------------------- /thirdParty/Zoltan/README.developer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/README.developer -------------------------------------------------------------------------------- /thirdParty/Zoltan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/README.md -------------------------------------------------------------------------------- /thirdParty/Zoltan/ReleaseNotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/ReleaseNotes.txt -------------------------------------------------------------------------------- /thirdParty/Zoltan/VERSION: -------------------------------------------------------------------------------- 1 | To determine the exact version number, type 2 | grep ZOLTAN_VERSION_NUMBER src/include/zoltan.h 3 | -------------------------------------------------------------------------------- /thirdParty/Zoltan/bootstrap-local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/bootstrap-local -------------------------------------------------------------------------------- /thirdParty/Zoltan/buildlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/buildlib -------------------------------------------------------------------------------- /thirdParty/Zoltan/cmake/Dependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/cmake/Dependencies.cmake -------------------------------------------------------------------------------- /thirdParty/Zoltan/cmake/Zoltan_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/cmake/Zoltan_config.h.in -------------------------------------------------------------------------------- /thirdParty/Zoltan/config/ax_f90_module_case.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/config/ax_f90_module_case.m4 -------------------------------------------------------------------------------- /thirdParty/Zoltan/config/ax_f90_module_flag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/config/ax_f90_module_flag.m4 -------------------------------------------------------------------------------- /thirdParty/Zoltan/config/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/config/compile -------------------------------------------------------------------------------- /thirdParty/Zoltan/config/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/config/config.guess -------------------------------------------------------------------------------- /thirdParty/Zoltan/config/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/config/config.sub -------------------------------------------------------------------------------- /thirdParty/Zoltan/config/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/config/depcomp -------------------------------------------------------------------------------- /thirdParty/Zoltan/config/generate-makeoptions.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/config/generate-makeoptions.pl -------------------------------------------------------------------------------- /thirdParty/Zoltan/config/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/config/install-sh -------------------------------------------------------------------------------- /thirdParty/Zoltan/config/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/config/missing -------------------------------------------------------------------------------- /thirdParty/Zoltan/config/string-replace.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/config/string-replace.pl -------------------------------------------------------------------------------- /thirdParty/Zoltan/config/strip_dup_incl_paths.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/config/strip_dup_incl_paths.pl -------------------------------------------------------------------------------- /thirdParty/Zoltan/config/strip_dup_libs.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/config/strip_dup_libs.pl -------------------------------------------------------------------------------- /thirdParty/Zoltan/config/tac_arg_check_mpi.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/config/tac_arg_check_mpi.m4 -------------------------------------------------------------------------------- /thirdParty/Zoltan/config/tac_arg_config_mpi.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/config/tac_arg_config_mpi.m4 -------------------------------------------------------------------------------- /thirdParty/Zoltan/config/tac_arg_with_3pl_sub.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/config/tac_arg_with_3pl_sub.m4 -------------------------------------------------------------------------------- /thirdParty/Zoltan/config/tac_arg_with_ar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/config/tac_arg_with_ar.m4 -------------------------------------------------------------------------------- /thirdParty/Zoltan/config/tac_arg_with_flags.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/config/tac_arg_with_flags.m4 -------------------------------------------------------------------------------- /thirdParty/Zoltan/config/tac_arg_with_incdirs.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/config/tac_arg_with_incdirs.m4 -------------------------------------------------------------------------------- /thirdParty/Zoltan/config/tac_arg_with_libdirs.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/config/tac_arg_with_libdirs.m4 -------------------------------------------------------------------------------- /thirdParty/Zoltan/config/tac_arg_with_libs.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/config/tac_arg_with_libs.m4 -------------------------------------------------------------------------------- /thirdParty/Zoltan/config/tac_arg_with_package.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/config/tac_arg_with_package.m4 -------------------------------------------------------------------------------- /thirdParty/Zoltan/config/tac_arg_with_perl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/config/tac_arg_with_perl.m4 -------------------------------------------------------------------------------- /thirdParty/Zoltan/config/token-replace.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/config/token-replace.pl -------------------------------------------------------------------------------- /thirdParty/Zoltan/config/wk_fc_get_vendor.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/config/wk_fc_get_vendor.m4 -------------------------------------------------------------------------------- /thirdParty/Zoltan/config/zac_arg_config_mpi.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/config/zac_arg_config_mpi.m4 -------------------------------------------------------------------------------- /thirdParty/Zoltan/config/zac_arg_with_id.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/config/zac_arg_with_id.m4 -------------------------------------------------------------------------------- /thirdParty/Zoltan/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/configure -------------------------------------------------------------------------------- /thirdParty/Zoltan/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/configure.ac -------------------------------------------------------------------------------- /thirdParty/Zoltan/doc/Zoltan_pdf/ug.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/doc/Zoltan_pdf/ug.pdf -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/Zoltan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/Zoltan.html -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/Zoltan_FAQ.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/Zoltan_FAQ.html -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/Zoltan_bugreport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/Zoltan_bugreport.html -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/Zoltan_cite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/Zoltan_cite.html -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/Zoltan_construction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/Zoltan_construction.html -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/Zoltan_download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/Zoltan_download.html -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/Zoltan_phil.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/Zoltan_phil.html -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/Zoltan_pubs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/Zoltan_pubs.html -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/dev_html/brack3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/dev_html/brack3d.png -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/dev_html/dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/dev_html/dev.html -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/dev_html/devOLD.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/dev_html/devOLD.html -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/dev_html/dev_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/dev_html/dev_add.html -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/dev_html/dev_add_lb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/dev_html/dev_add_lb.html -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/dev_html/dev_cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/dev_html/dev_cpp.html -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/dev_html/dev_dist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/dev_html/dev_dist.html -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/dev_html/dev_driver.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/dev_html/dev_driver.html -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/dev_html/dev_fortran.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/dev_html/dev_fortran.html -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/dev_html/dev_hier.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/dev_html/dev_hier.html -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/dev_html/dev_hsfc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/dev_html/dev_hsfc.html -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/dev_html/dev_intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/dev_html/dev_intro.html -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/dev_html/dev_lb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/dev_html/dev_lb.html -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/dev_html/dev_mig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/dev_html/dev_mig.html -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/dev_html/dev_phg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/dev_html/dev_phg.html -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/dev_html/dev_rcb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/dev_html/dev_rcb.html -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/dev_html/dev_refs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/dev_html/dev_refs.html -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/dev_html/dev_reftree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/dev_html/dev_reftree.html -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/dev_html/dev_rib.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/dev_html/dev_rib.html -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/dev_html/dev_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/dev_html/dev_view.html -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/dev_html/film2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/dev_html/film2d.png -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/dev_html/hammondMesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/dev_html/hammondMesh.png -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/dev_html/zdrive.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/dev_html/zdrive.inp -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/index.html: -------------------------------------------------------------------------------- 1 | Zoltan.html -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/tu_html/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/tu_html/Makefile -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/tu_html/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/tu_html/README -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/tu_html/api.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/tu_html/api.tex -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/tu_html/contents.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/tu_html/contents.tex -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/tu_html/examples.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/tu_html/examples.tex -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/tu_html/introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/tu_html/introduction.tex -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/tu_html/methods.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/tu_html/methods.tex -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/tu_html/tutorial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/tu_html/tutorial.html -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/ug_html/figures/Z.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/ug_html/figures/Z.gif -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/ug_html/figures/arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/ug_html/figures/arrow.gif -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/ug_html/ug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/ug_html/ug.html -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/ug_html/ug_alg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/ug_html/ug_alg.html -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/ug_html/ug_alg_block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/ug_html/ug_alg_block.html -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/ug_html/ug_color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/ug_html/ug_color.html -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/ug_html/ug_cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/ug_html/ug_cpp.html -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/ug_html/ug_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/ug_html/ug_index.html -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/ug_html/ug_intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/ug_html/ug_intro.html -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/ug_html/ug_order.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/ug_html/ug_order.html -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/ug_html/ug_param.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/ug_html/ug_param.html -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/ug_html/ug_query.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/ug_html/ug_query.html -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/ug_html/ug_refs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/ug_html/ug_refs.html -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/ug_html/ug_usage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/ug_html/ug_usage.html -------------------------------------------------------------------------------- /thirdParty/Zoltan/docs/ug_html/ug_util.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/docs/ug_html/ug_util.html -------------------------------------------------------------------------------- /thirdParty/Zoltan/example/C/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/example/C/CMakeLists.txt -------------------------------------------------------------------------------- /thirdParty/Zoltan/example/C/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/example/C/Makefile.am -------------------------------------------------------------------------------- /thirdParty/Zoltan/example/C/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/example/C/Makefile.in -------------------------------------------------------------------------------- /thirdParty/Zoltan/example/C/classicMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/example/C/classicMakefile -------------------------------------------------------------------------------- /thirdParty/Zoltan/example/C/coloring/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/example/C/coloring/README -------------------------------------------------------------------------------- /thirdParty/Zoltan/example/C/coloring/zcol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/example/C/coloring/zcol.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/example/C/graph.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/example/C/graph.txt -------------------------------------------------------------------------------- /thirdParty/Zoltan/example/C/hypergraph.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/example/C/hypergraph.txt -------------------------------------------------------------------------------- /thirdParty/Zoltan/example/C/mesh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/example/C/mesh.txt -------------------------------------------------------------------------------- /thirdParty/Zoltan/example/C/migrateGRAPH.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/example/C/migrateGRAPH.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/example/C/objects.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/example/C/objects.txt -------------------------------------------------------------------------------- /thirdParty/Zoltan/example/C/problemGRAPH.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/example/C/problemGRAPH.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/example/C/simpleBLOCK.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/example/C/simpleBLOCK.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/example/C/simpleGRAPH.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/example/C/simpleGRAPH.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/example/C/simpleHIER.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/example/C/simpleHIER.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/example/C/simplePHG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/example/C/simplePHG.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/example/C/simpleRCB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/example/C/simpleRCB.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/example/CMakeLists.txt -------------------------------------------------------------------------------- /thirdParty/Zoltan/example/CPP/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/example/CPP/CMakeLists.txt -------------------------------------------------------------------------------- /thirdParty/Zoltan/example/CPP/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/example/CPP/Makefile.am -------------------------------------------------------------------------------- /thirdParty/Zoltan/example/CPP/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/example/CPP/Makefile.in -------------------------------------------------------------------------------- /thirdParty/Zoltan/example/CPP/classicMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/example/CPP/classicMakefile -------------------------------------------------------------------------------- /thirdParty/Zoltan/example/CPP/objects.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/example/CPP/objects.txt -------------------------------------------------------------------------------- /thirdParty/Zoltan/example/Fortran/mesh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/example/Fortran/mesh.txt -------------------------------------------------------------------------------- /thirdParty/Zoltan/example/Fortran/mpi_h.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/example/Fortran/mpi_h.f -------------------------------------------------------------------------------- /thirdParty/Zoltan/example/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/example/Makefile.am -------------------------------------------------------------------------------- /thirdParty/Zoltan/example/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/example/Makefile.in -------------------------------------------------------------------------------- /thirdParty/Zoltan/example/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/example/README -------------------------------------------------------------------------------- /thirdParty/Zoltan/siMPI/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | ADD_SUBDIRECTORY(pyMPI) 2 | -------------------------------------------------------------------------------- /thirdParty/Zoltan/siMPI/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/siMPI/Makefile.am -------------------------------------------------------------------------------- /thirdParty/Zoltan/siMPI/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/siMPI/Makefile.in -------------------------------------------------------------------------------- /thirdParty/Zoltan/siMPI/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/siMPI/README -------------------------------------------------------------------------------- /thirdParty/Zoltan/siMPI/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/siMPI/VERSION -------------------------------------------------------------------------------- /thirdParty/Zoltan/siMPI/cvsco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/siMPI/cvsco -------------------------------------------------------------------------------- /thirdParty/Zoltan/siMPI/pyMPI/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | ADD_SUBDIRECTORY(siMPI) 2 | -------------------------------------------------------------------------------- /thirdParty/Zoltan/siMPI/pyMPI/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/siMPI/pyMPI/Makefile.am -------------------------------------------------------------------------------- /thirdParty/Zoltan/siMPI/pyMPI/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/siMPI/pyMPI/Makefile.in -------------------------------------------------------------------------------- /thirdParty/Zoltan/siMPI/pyMPI/siMPI/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/siMPI/pyMPI/siMPI/README -------------------------------------------------------------------------------- /thirdParty/Zoltan/siMPI/pyMPI/siMPI/boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/siMPI/pyMPI/siMPI/boot -------------------------------------------------------------------------------- /thirdParty/Zoltan/siMPI/pyMPI/siMPI/diffs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/siMPI/pyMPI/siMPI/diffs -------------------------------------------------------------------------------- /thirdParty/Zoltan/siMPI/pyMPI/siMPI/errors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/siMPI/pyMPI/siMPI/errors -------------------------------------------------------------------------------- /thirdParty/Zoltan/siMPI/pyMPI/siMPI/mpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/siMPI/pyMPI/siMPI/mpi.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/siMPI/pyMPI/siMPI/mpicc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/siMPI/pyMPI/siMPI/mpicc.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/siMPI/pyMPI/siMPI/mpif77.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/siMPI/pyMPI/siMPI/mpif77.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/siMPI/pyMPI/siMPI/mpirun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/siMPI/pyMPI/siMPI/mpirun.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/siMPI/siMPI_README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/siMPI/siMPI_README.txt -------------------------------------------------------------------------------- /thirdParty/Zoltan/siMPI_README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/siMPI_README.txt -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/CMakeLists.txt -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/Makefile.am -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/Makefile.in -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/Utilities/Memory/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/Utilities/Memory/README -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/Utilities/Memory/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/Utilities/Memory/mem.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/Utilities/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/Utilities/README -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/Utilities/Timer/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/Utilities/Timer/README -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/Utilities/Timer/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/Utilities/Timer/timer.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/Utilities/Timer/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/Utilities/Timer/timer.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/all/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/all/README -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/all/all_allo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/all/all_allo.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/all/all_allo_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/all/all_allo_const.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/ch/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/ch/README -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/ch/ch_dist_graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/ch/ch_dist_graph.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/ch/ch_init_dist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/ch/ch_init_dist.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/ch/ch_init_dist_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/ch/ch_init_dist_const.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/ch/ch_input_assign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/ch/ch_input_assign.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/ch/ch_input_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/ch/ch_input_const.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/ch/ch_input_geom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/ch/ch_input_geom.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/ch/ch_input_graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/ch/ch_input_graph.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/ch/ch_input_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/ch/ch_input_read.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/coloring/bucket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/coloring/bucket.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/coloring/bucket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/coloring/bucket.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/coloring/color_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/coloring/color_test.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/coloring/coloring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/coloring/coloring.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/coloring/coloring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/coloring/coloring.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/coloring/g2l_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/coloring/g2l_hash.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/coloring/g2l_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/coloring/g2l_hash.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/driver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/driver/CMakeLists.txt -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/driver/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/driver/Makefile.am -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/driver/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/driver/Makefile.in -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/driver/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/driver/README -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/driver/dr_chaco_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/driver/dr_chaco_io.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/driver/dr_compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/driver/dr_compress.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/driver/dr_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/driver/dr_const.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/driver/dr_dd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/driver/dr_dd.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/driver/dr_dd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/driver/dr_dd.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/driver/dr_ddCPP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/driver/dr_ddCPP.cpp -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/driver/dr_elem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/driver/dr_elem.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/driver/dr_elem_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/driver/dr_elem_const.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/driver/dr_elem_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/driver/dr_elem_util.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/driver/dr_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/driver/dr_err.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/driver/dr_err_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/driver/dr_err_const.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/driver/dr_eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/driver/dr_eval.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/driver/dr_eval_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/driver/dr_eval_const.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/driver/dr_exoII_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/driver/dr_exoII_io.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/driver/dr_externs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/driver/dr_externs.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/driver/dr_gnuplot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/driver/dr_gnuplot.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/driver/dr_hg_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/driver/dr_hg_io.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/driver/dr_hg_readfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/driver/dr_hg_readfile.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/driver/dr_hg_readfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/driver/dr_hg_readfile.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/driver/dr_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/driver/dr_input.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/driver/dr_input_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/driver/dr_input_const.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/driver/dr_loadbal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/driver/dr_loadbal.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/driver/dr_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/driver/dr_main.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/driver/dr_mainCPP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/driver/dr_mainCPP.cpp -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/driver/dr_maps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/driver/dr_maps.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/driver/dr_mapsCPP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/driver/dr_mapsCPP.cpp -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/driver/dr_maps_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/driver/dr_maps_const.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/driver/dr_migrate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/driver/dr_migrate.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/driver/dr_mm_readfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/driver/dr_mm_readfile.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/driver/dr_mmio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/driver/dr_mmio.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/driver/dr_mmio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/driver/dr_mmio.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/driver/dr_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/driver/dr_output.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/driver/dr_par_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/driver/dr_par_util.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/driver/dr_param_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/driver/dr_param_file.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/driver/dr_param_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/driver/dr_param_file.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/driver/dr_random_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/driver/dr_random_io.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/driver/dr_setfixed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/driver/dr_setfixed.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/driver/dr_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/driver/dr_util.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/driver/dr_util_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/driver/dr_util_const.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/driver/order_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/driver/order_test.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fdriver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fdriver/CMakeLists.txt -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fdriver/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fdriver/Makefile.am -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fdriver/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fdriver/Makefile.in -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fdriver/README.mpich: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fdriver/README.mpich -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fdriver/farg_nagf95.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fdriver/farg_nagf95.f -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fdriver/farg_typical.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fdriver/farg_typical.f -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fdriver/fdr_const.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fdriver/fdr_const.f90 -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fdriver/fdr_input.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fdriver/fdr_input.f90 -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fdriver/fdr_loadbal.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fdriver/fdr_loadbal.f90 -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fdriver/fdr_main.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fdriver/fdr_main.f90 -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fdriver/fdr_migrate.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fdriver/fdr_migrate.f90 -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fdriver/fdr_mm_io.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fdriver/fdr_mm_io.f90 -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fdriver/fdr_sort.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fdriver/fdr_sort.f90 -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fdriver/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fdriver/makefile -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fdriver/mmio.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fdriver/mmio.f -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fdriver/mpi_h.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fdriver/mpi_h.f -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/README -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/cwrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/cwrap.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/cwrap_fmangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/cwrap_fmangle.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/fwrap.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/fwrap.f90 -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/makefile -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/set_childlist.fn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/set_childlist.fn -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/set_childlist.if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/set_childlist.if -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/set_childweight.fn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/set_childweight.fn -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/set_childweight.if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/set_childweight.if -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/set_edgelist.fn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/set_edgelist.fn -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/set_edgelist.if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/set_edgelist.if -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/set_firstobj.fn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/set_firstobj.fn -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/set_firstobj.if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/set_firstobj.if -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/set_geom.fn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/set_geom.fn -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/set_geom.if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/set_geom.if -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/set_geommulti.fn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/set_geommulti.fn -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/set_geommulti.if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/set_geommulti.if -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/set_hgcs.fn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/set_hgcs.fn -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/set_hgcs.if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/set_hgcs.if -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/set_hgsizecs.fn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/set_hgsizecs.fn -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/set_hgsizecs.if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/set_hgsizecs.if -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/set_hiermethod.fn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/set_hiermethod.fn -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/set_hiermethod.if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/set_hiermethod.if -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/set_midmigrate.fn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/set_midmigrate.fn -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/set_midmigrate.if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/set_midmigrate.if -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/set_nextobj.fn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/set_nextobj.fn -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/set_nextobj.if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/set_nextobj.if -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/set_numchild.fn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/set_numchild.fn -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/set_numchild.if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/set_numchild.if -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/set_numedges.fn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/set_numedges.fn -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/set_numedges.if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/set_numedges.if -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/set_numfixedobj.fn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/set_numfixedobj.fn -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/set_numfixedobj.if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/set_numfixedobj.if -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/set_numgeom.fn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/set_numgeom.fn -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/set_numgeom.if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/set_numgeom.if -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/set_numobj.fn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/set_numobj.fn -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/set_numobj.if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/set_numobj.if -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/set_objlist.fn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/set_objlist.fn -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/set_objlist.if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/set_objlist.if -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/set_objsize.fn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/set_objsize.fn -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/set_objsize.if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/set_objsize.if -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/set_packobj.fn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/set_packobj.fn -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/set_packobj.if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/set_packobj.if -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/set_partition.fn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/set_partition.fn -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/set_partition.if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/set_partition.if -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/set_postmigrate.fn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/set_postmigrate.fn -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/set_postmigrate.if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/set_postmigrate.if -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/set_premigrate.fn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/set_premigrate.fn -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/set_premigrate.if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/set_premigrate.if -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/set_unpackobj.fn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/set_unpackobj.fn -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/set_unpackobj.if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/set_unpackobj.if -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/fort/ztypes.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/fort/ztypes.f90 -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/graph/graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/graph/graph.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/graph/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/graph/graph.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/graph/graph_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/graph/graph_const.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/graph/graph_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/graph/graph_params.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/ha/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/ha/README -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/ha/divide_machine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/ha/divide_machine.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/ha/get_processor_name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/ha/get_processor_name.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/ha/ha_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/ha/ha_const.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/ha/ha_ovis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/ha/ha_ovis.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/ha/ha_ovis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/ha/ha_ovis.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/hier/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/hier/README -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/hier/hier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/hier/hier.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/hier/hier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/hier/hier.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/hier/hier_free_struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/hier/hier_free_struct.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/hsfc/hsfc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/hsfc/hsfc.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/hsfc/hsfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/hsfc/hsfc.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/hsfc/hsfc_box_assign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/hsfc/hsfc_box_assign.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/hsfc/hsfc_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/hsfc/hsfc_const.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/hsfc/hsfc_hilbert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/hsfc/hsfc_hilbert.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/hsfc/hsfc_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/hsfc/hsfc_params.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/lb/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/lb/README -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/lb/lb_balance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/lb/lb_balance.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/lb/lb_box_assign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/lb/lb_box_assign.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/lb/lb_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/lb/lb_const.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/lb/lb_copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/lb/lb_copy.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/lb/lb_eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/lb/lb_eval.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/lb/lb_free.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/lb/lb_free.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/lb/lb_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/lb/lb_init.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/lb/lb_init_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/lb/lb_init_const.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/lb/lb_invert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/lb/lb_invert.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/lb/lb_migrate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/lb/lb_migrate.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/lb/lb_part2proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/lb/lb_part2proc.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/lb/lb_point_assign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/lb/lb_point_assign.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/lb/lb_remap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/lb/lb_remap.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/lb/lb_set_fn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/lb/lb_set_fn.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/lb/lb_set_method.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/lb/lb_set_method.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/lb/lb_set_part_sizes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/lb/lb_set_part_sizes.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/lb/low_mem_lb_migrate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/lb/low_mem_lb_migrate.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/matlab/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/matlab/README -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/matlab/mmread.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/matlab/mmread.m -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/matlab/mmwrite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/matlab/mmwrite.m -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/matlab/plotcolors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/matlab/plotcolors.m -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/matlab/zdrive.matlab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/matlab/zdrive.matlab -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/matlab/zoltPartSpy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/matlab/zoltPartSpy.m -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/matlab/zoltan.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/matlab/zoltan.m -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/matrix/matrix_build.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/matrix/matrix_build.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/matrix/matrix_sym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/matrix/matrix_sym.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/matrix/matrix_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/matrix/matrix_utils.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/matrix/zoltan_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/matrix/zoltan_matrix.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/order/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/order/README -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/order/hsfcOrder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/order/hsfcOrder.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/order/hsfcOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/order/hsfcOrder.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/order/hund.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/order/hund.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/order/order.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/order/order.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/order/order_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/order/order_const.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/order/order_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/order/order_params.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/order/order_struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/order/order_struct.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/order/order_tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/order/order_tools.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/order/perm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/order/perm.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/par/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/par/README -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/par/par_average.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/par/par_average.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/par/par_average_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/par/par_average_const.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/par/par_bisect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/par/par_bisect.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/par/par_bisect_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/par/par_bisect_const.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/par/par_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/par/par_const.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/par/par_median.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/par/par_median.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/par/par_median_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/par/par_median_const.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/par/par_stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/par/par_stats.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/par/par_sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/par/par_sync.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/params/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/params/README -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/params/bind_param.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/params/bind_param.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/params/check_param.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/params/check_param.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/params/free_params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/params/free_params.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/params/key_params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/params/key_params.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/params/key_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/params/key_params.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/params/params_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/params/params_const.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/params/print_params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/params/print_params.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/params/set_param.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/params/set_param.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/phg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/phg/README -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/phg/phg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/phg/phg.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/phg/phg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/phg/phg.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/phg/phg_Vcycle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/phg/phg_Vcycle.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/phg/phg_build.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/phg/phg_build.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/phg/phg_build_calls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/phg/phg_build_calls.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/phg/phg_coarse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/phg/phg_coarse.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/phg/phg_comm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/phg/phg_comm.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/phg/phg_comm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/phg/phg_comm.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/phg/phg_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/phg/phg_const.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/phg/phg_distrib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/phg/phg_distrib.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/phg/phg_distrib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/phg/phg_distrib.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/phg/phg_gather.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/phg/phg_gather.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/phg/phg_hypergraph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/phg/phg_hypergraph.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/phg/phg_hypergraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/phg/phg_hypergraph.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/phg/phg_lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/phg/phg_lookup.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/phg/phg_lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/phg/phg_lookup.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/phg/phg_match.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/phg/phg_match.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/phg/phg_order.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/phg/phg_order.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/phg/phg_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/phg/phg_params.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/phg/phg_parkway.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/phg/phg_parkway.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/phg/phg_patoh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/phg/phg_patoh.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/phg/phg_plot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/phg/phg_plot.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/phg/phg_rdivide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/phg/phg_rdivide.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/phg/phg_refinement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/phg/phg_refinement.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/phg/phg_scale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/phg/phg_scale.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/phg/phg_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/phg/phg_tree.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/phg/phg_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/phg/phg_tree.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/phg/phg_two_ways.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/phg/phg_two_ways.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/phg/phg_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/phg/phg_util.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/phg/phg_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/phg/phg_util.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/phg/phg_verbose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/phg/phg_verbose.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/phg/phg_verbose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/phg/phg_verbose.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/rcb/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/rcb/README -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/rcb/box_assign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/rcb/box_assign.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/rcb/create_proc_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/rcb/create_proc_list.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/rcb/inertial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/rcb/inertial.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/rcb/inertial1d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/rcb/inertial1d.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/rcb/inertial2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/rcb/inertial2d.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/rcb/inertial3d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/rcb/inertial3d.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/rcb/point_assign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/rcb/point_assign.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/rcb/rcb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/rcb/rcb.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/rcb/rcb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/rcb/rcb.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/rcb/rcb_box.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/rcb/rcb_box.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/rcb/rcb_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/rcb/rcb_const.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/rcb/rcb_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/rcb/rcb_params.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/rcb/rcb_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/rcb/rcb_util.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/rcb/rib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/rcb/rib.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/rcb/rib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/rcb/rib.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/rcb/rib_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/rcb/rib_const.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/rcb/rib_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/rcb/rib_params.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/rcb/rib_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/rcb/rib_util.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/rcb/shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/rcb/shared.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/rcb/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/rcb/shared.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/reftree/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/reftree/README -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/reftree/reftree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/reftree/reftree.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/reftree/reftree_build.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/reftree/reftree_build.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/reftree/reftree_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/reftree/reftree_const.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/reftree/reftree_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/reftree/reftree_hash.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/reftree/reftree_part.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/reftree/reftree_part.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/simple/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/simple/README -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/simple/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/simple/block.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/simple/cyclic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/simple/cyclic.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/simple/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/simple/random.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/simple/simple_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/simple/simple_const.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/timer/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/timer/README -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/timer/timer_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/timer/timer_const.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/timer/timer_params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/timer/timer_params.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/tpls/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/tpls/README -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/tpls/build_graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/tpls/build_graph.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/tpls/graph_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/tpls/graph_util.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/tpls/postprocessing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/tpls/postprocessing.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/tpls/preprocessing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/tpls/preprocessing.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/tpls/scatter_graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/tpls/scatter_graph.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/tpls/scotch_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/tpls/scotch_interface.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/tpls/scotch_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/tpls/scotch_interface.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/tpls/third_library.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/tpls/third_library.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/tpls/third_library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/tpls/third_library.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/tpls/verify_graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/tpls/verify_graph.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/zz/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/zz/README -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/zz/murmur3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/zz/murmur3.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/zz/zz_back_trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/zz/zz_back_trace.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/zz/zz_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/zz/zz_const.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/zz/zz_coord.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/zz/zz_coord.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/zz/zz_gen_files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/zz/zz_gen_files.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/zz/zz_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/zz/zz_hash.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/zz/zz_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/zz/zz_hash.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/zz/zz_heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/zz/zz_heap.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/zz/zz_heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/zz/zz_heap.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/zz/zz_id_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/zz/zz_id_const.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/zz/zz_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/zz/zz_init.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/zz/zz_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/zz/zz_map.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/zz/zz_obj_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/zz/zz_obj_list.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/zz/zz_rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/zz/zz_rand.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/zz/zz_rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/zz/zz_rand.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/zz/zz_set_fn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/zz/zz_set_fn.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/zz/zz_sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/zz/zz_sort.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/zz/zz_sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/zz/zz_sort.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/zz/zz_struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/zz/zz_struct.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/zz/zz_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/zz/zz_util.c -------------------------------------------------------------------------------- /thirdParty/Zoltan/src/zz/zz_util_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/src/zz/zz_util_const.h -------------------------------------------------------------------------------- /thirdParty/Zoltan/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/test/CMakeLists.txt -------------------------------------------------------------------------------- /thirdParty/Zoltan/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/test/README -------------------------------------------------------------------------------- /thirdParty/Zoltan/test/ch_simple/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/test/ch_simple/README -------------------------------------------------------------------------------- /thirdParty/Zoltan/test/ch_simple/answers/simple.graph-metis.1.0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdParty/Zoltan/test/ch_simple/simple.graph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/test/ch_simple/simple.graph -------------------------------------------------------------------------------- /thirdParty/Zoltan/test/ch_simple/simple.mtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/test/ch_simple/simple.mtx -------------------------------------------------------------------------------- /thirdParty/Zoltan/test/ch_simple/simple.u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/test/ch_simple/simple.u -------------------------------------------------------------------------------- /thirdParty/Zoltan/test/hg_simple/simple.mtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/test/hg_simple/simple.mtx -------------------------------------------------------------------------------- /thirdParty/Zoltan/test/hg_simple/simple.mtxp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/thirdParty/Zoltan/test/hg_simple/simple.mtxp -------------------------------------------------------------------------------- /tutorials/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/tutorials/README.md -------------------------------------------------------------------------------- /tutorials/sphereGranFlow/RotatingDrumWithBaffles/stl/note: -------------------------------------------------------------------------------- 1 | /* The STL files should be Placed in this Folder *\ 2 | -------------------------------------------------------------------------------- /tutorials/sphereGranFlow/V-blender/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/tutorials/sphereGranFlow/V-blender/README.md -------------------------------------------------------------------------------- /utilities/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/utilities/CMakeLists.txt -------------------------------------------------------------------------------- /utilities/Utilities/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/utilities/Utilities/CMakeLists.txt -------------------------------------------------------------------------------- /utilities/Utilities/readControlDict.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/utilities/Utilities/readControlDict.cpp -------------------------------------------------------------------------------- /utilities/Utilities/readControlDict.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/utilities/Utilities/readControlDict.hpp -------------------------------------------------------------------------------- /utilities/Utilities/readFromTimeFolder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/utilities/Utilities/readFromTimeFolder.cpp -------------------------------------------------------------------------------- /utilities/Utilities/readFromTimeFolder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/utilities/Utilities/readFromTimeFolder.hpp -------------------------------------------------------------------------------- /utilities/Utilities/utilityFunctions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/utilities/Utilities/utilityFunctions.hpp -------------------------------------------------------------------------------- /utilities/Utilities/vtkFile/vtkFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/utilities/Utilities/vtkFile/vtkFile.cpp -------------------------------------------------------------------------------- /utilities/Utilities/vtkFile/vtkFile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/utilities/Utilities/vtkFile/vtkFile.hpp -------------------------------------------------------------------------------- /utilities/checkPhasicFlow/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/utilities/checkPhasicFlow/CMakeLists.txt -------------------------------------------------------------------------------- /utilities/checkPhasicFlow/checkPhasicFlow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/utilities/checkPhasicFlow/checkPhasicFlow.cpp -------------------------------------------------------------------------------- /utilities/geometryPhasicFlow/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/utilities/geometryPhasicFlow/CMakeLists.txt -------------------------------------------------------------------------------- /utilities/geometryPhasicFlow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/utilities/geometryPhasicFlow/README.md -------------------------------------------------------------------------------- /utilities/pFlowToVTK/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/utilities/pFlowToVTK/CMakeLists.txt -------------------------------------------------------------------------------- /utilities/pFlowToVTK/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/utilities/pFlowToVTK/README.md -------------------------------------------------------------------------------- /utilities/pFlowToVTK/fileSeries.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/utilities/pFlowToVTK/fileSeries.cpp -------------------------------------------------------------------------------- /utilities/pFlowToVTK/fileSeries.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/utilities/pFlowToVTK/fileSeries.hpp -------------------------------------------------------------------------------- /utilities/pFlowToVTK/pFlowToVTK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/utilities/pFlowToVTK/pFlowToVTK.cpp -------------------------------------------------------------------------------- /utilities/pFlowToVTK/pointFieldToVTK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/utilities/pFlowToVTK/pointFieldToVTK.cpp -------------------------------------------------------------------------------- /utilities/pFlowToVTK/pointFieldToVTK.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/utilities/pFlowToVTK/pointFieldToVTK.hpp -------------------------------------------------------------------------------- /utilities/pFlowToVTK/triSurfaceFieldToVTK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/utilities/pFlowToVTK/triSurfaceFieldToVTK.cpp -------------------------------------------------------------------------------- /utilities/pFlowToVTK/triSurfaceFieldToVTK.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/utilities/pFlowToVTK/triSurfaceFieldToVTK.hpp -------------------------------------------------------------------------------- /utilities/particlesPhasicFlow/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/utilities/particlesPhasicFlow/CMakeLists.txt -------------------------------------------------------------------------------- /utilities/particlesPhasicFlow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/utilities/particlesPhasicFlow/README.md -------------------------------------------------------------------------------- /utilities/particlesPhasicFlow/empty/empty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/utilities/particlesPhasicFlow/empty/empty.cpp -------------------------------------------------------------------------------- /utilities/particlesPhasicFlow/empty/empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/utilities/particlesPhasicFlow/empty/empty.hpp -------------------------------------------------------------------------------- /utilities/particlesPhasicFlow/setFields.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/utilities/particlesPhasicFlow/setFields.hpp -------------------------------------------------------------------------------- /utilities/postprocessPhasicFlow/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhasicFlow/phasicFlow/HEAD/utilities/postprocessPhasicFlow/readme.md --------------------------------------------------------------------------------