├── .github ├── pull_request_template.md └── workflows │ ├── cleanup-caches.yml │ ├── cmake.yml │ ├── comment_on_pr.yml │ ├── doxygen-gh-pages.yml │ ├── frontier │ ├── install.sh │ └── run.sh │ ├── globus-test.yml │ ├── perlmutter │ ├── install.sh │ └── run.sh │ ├── python-api-test.yml │ └── simmetrix_enabled_pr_comment_trigger_self_hosted.yml ├── .gitignore ├── .gitmodules ├── CITATION.cff ├── CMakeLists.txt ├── Doxyfile.in ├── Doxyfile_internal.in ├── LICENSE ├── README.md ├── SCOREC_config.h.in ├── STYLE.md ├── apf ├── CMakeLists.txt ├── apf.cc ├── apf.dox ├── apf.h ├── apf.tex ├── apf2mth.h ├── apfAdjReorder.cc ├── apfArray.h ├── apfArrayData.cc ├── apfArrayData.h ├── apfBoundaryToElementXi.cc ├── apfCGNS.cc ├── apfCavityOp.cc ├── apfCavityOp.h ├── apfConstruct.cc ├── apfConvert.cc ├── apfConvert.h ├── apfConvertTags.h ├── apfCoordData.cc ├── apfCoordData.h ├── apfDynamicArray.h ├── apfDynamicMatrix.cc ├── apfDynamicMatrix.h ├── apfDynamicVector.cc ├── apfDynamicVector.h ├── apfElement.cc ├── apfElement.h ├── apfElementOf.h ├── apfField.cc ├── apfField.h ├── apfFieldData.cc ├── apfFieldData.h ├── apfFieldOf.cc ├── apfFieldOf.h ├── apfFile.cc ├── apfFile.h ├── apfGeometry.cc ├── apfGeometry.h ├── apfGradientByVolume.cc ├── apfH1Shapes.cc ├── apfHierarchic.cc ├── apfIPShape.cc ├── apfIntegrate.cc ├── apfIntegrate.h ├── apfL2Shapes.cc ├── apfMIS.cc ├── apfMIS.h ├── apfMatrix.cc ├── apfMatrix.h ├── apfMatrixElement.cc ├── apfMatrixElement.h ├── apfMatrixField.cc ├── apfMatrixField.h ├── apfMesh.cc ├── apfMesh.h ├── apfMesh2.cc ├── apfMesh2.h ├── apfMigrate.cc ├── apfMixedNumbering.cc ├── apfMixedNumbering.h ├── apfMixedVectorElement.cc ├── apfMixedVectorElement.h ├── apfMixedVectorField.cc ├── apfMixedVectorField.h ├── apfNedelec.cc ├── apfNew.h ├── apfNumbering.cc ├── apfNumbering.h ├── apfNumberingClass.h ├── apfOpposites.cc ├── apfPackedField.cc ├── apfPackedField.h ├── apfPartition.cc ├── apfPartition.h ├── apfPolyBasis1D.cc ├── apfPolyBasis1D.h ├── apfScalarElement.cc ├── apfScalarElement.h ├── apfScalarField.cc ├── apfScalarField.h ├── apfShape.cc ├── apfShape.h ├── apfSimplexAngleCalcs.cc ├── apfTagData.cc ├── apfTagData.h ├── apfUserData.cc ├── apfUserData.h ├── apfVector.cc ├── apfVector.h ├── apfVectorElement.cc ├── apfVectorElement.h ├── apfVectorField.cc ├── apfVectorField.h ├── apfVerify.cc ├── apfVtk.cc ├── apfVtk.h ├── apfVtkPieceWiseFields.cc ├── attach.tex ├── cavity.tex ├── cmake │ ├── Dependencies.cmake │ └── cmake │ │ └── Dependencies.cmake ├── hierarchic.tex ├── pkg_tribits.cmake └── stitch.tex ├── apf_cap ├── CMakeLists.txt ├── apfCAP.cc ├── apfCAP.h ├── apfCAPsizing.cc ├── apf_capConfig.cmake.in ├── cmake │ └── Dependencies.cmake └── pkg_tribits.cmake ├── apf_sim ├── CMakeLists.txt ├── apfSIM.cc ├── apfSIM.h ├── apfSIMDataOf.h ├── apf_simConfig.cmake.in ├── apf_simConfig.h.in ├── cmake │ └── Dependencies.cmake ├── libapf_sim.pc.in ├── moduletemplate └── pkg_tribits.cmake ├── can ├── CMakeLists.txt ├── canArray.h └── canNewArray.h ├── cdash ├── CTestConfig.cmake ├── Project.xml ├── colorado.cmake ├── jenga-crontab.txt ├── nightly.cmake ├── nightly.sh └── upload_coverity.sh ├── cmake ├── Dependencies.cmake ├── FindC99.cmake ├── FindCGNS.cmake ├── FindMETIS.cmake ├── FindMPI4PY.cmake ├── FindNetCDF.cmake ├── FindParmetis.cmake ├── FindSimModSuite.cmake ├── FindZoltan.cmake ├── GetGitRevisionDescription.cmake ├── GetGitRevisionDescription.cmake.in ├── TPLs │ ├── FindTPLSimAcis.cmake │ ├── FindTPLSimField.cmake │ ├── FindTPLSimMesh.cmake │ ├── FindTPLSimModel.cmake │ └── FindTPLSimParasolid.cmake ├── bob.cmake └── xsdk.cmake ├── crv ├── CMakeLists.txt ├── crv.cc ├── crv.dox ├── crv.h ├── crvAdapt.cc ├── crvAdapt.h ├── crvBernstein.cc ├── crvBezier.cc ├── crvBezier.h ├── crvBezierPoints.cc ├── crvBezierShapes.cc ├── crvBezierShapes.h ├── crvBlended.cc ├── crvCurveMesh.cc ├── crvElevation.cc ├── crvG1Points.cc ├── crvMath.cc ├── crvMath.h ├── crvQuality.cc ├── crvQuality.h ├── crvReposition.cc ├── crvShape.cc ├── crvShape.h ├── crvShapeFixer.cc ├── crvShapeFixer.h ├── crvShapeHandler.cc ├── crvSnap.cc ├── crvSnap.h ├── crvSubdivision.cc ├── crvTables.cc ├── crvTables.h └── crvVtk.cc ├── design.tex ├── doc ├── CMakeLists.txt ├── mylibrary.cpp ├── mylibrary.h └── myprogram.cpp ├── dsp ├── CMakeLists.txt ├── dsp.cc ├── dsp.h ├── dspAdapters.cc ├── dspAdapters.h ├── dspGraphDistance.cc ├── dspGraphDistance.h ├── dspSmoothers.cc └── dspSmoothers.h ├── env-scorec.sh ├── example └── mpi-nompi │ ├── CMakeLists.txt │ ├── README.md │ ├── hello.cc │ └── test_coll.cc ├── example_config.sh ├── example_config_with_python_interface.sh ├── gmi ├── CMakeLists.txt ├── agm.c ├── agm.h ├── cmake │ └── Dependencies.cmake ├── gmi.c ├── gmi.h ├── gmi_analytic.c ├── gmi_analytic.h ├── gmi_base.c ├── gmi_base.h ├── gmi_file.c ├── gmi_lookup.c ├── gmi_lookup.h ├── gmi_mesh.c ├── gmi_mesh.h ├── gmi_null.c ├── gmi_null.h └── pkg_tribits.cmake ├── gmi_cap ├── CMakeLists.txt ├── cmake │ └── Dependencies.cmake ├── gmi_cap.cc ├── gmi_cap.h ├── gmi_capConfig.cmake.in └── pkg_tribits.cmake ├── gmi_sim ├── CMakeLists.txt ├── cmake │ └── Dependencies.cmake ├── gmi_sim.cc ├── gmi_sim.h ├── gmi_simConfig.cmake.in ├── gmi_sim_config.h.in ├── libgmi_sim.pc.in └── pkg_tribits.cmake ├── latex.sh ├── lion ├── CMakeLists.txt ├── cmake │ └── Dependencies.cmake ├── lionBase64.cc ├── lionBase64.h ├── lionCompress.h ├── lionNoZLib.cc ├── lionPrint.c ├── lionPrint.h ├── lionZLib.cc └── pkg_tribits.cmake ├── ma ├── CMakeLists.txt ├── LICENSE ├── adapt.tex ├── adapt2.tex ├── cmake │ └── Dependencies.cmake ├── layer.tex ├── layer_blend.png ├── layer_step.png ├── ma.cc ├── ma.h ├── maAdapt.cc ├── maAdapt.h ├── maAffine.h ├── maBalance.cc ├── maBalance.h ├── maCoarsen.cc ├── maCoarsen.h ├── maCollapse.cc ├── maCollapse.h ├── maCrawler.cc ├── maCrawler.h ├── maDBG.cc ├── maDBG.h ├── maDoubleSplitCollapse.cc ├── maDoubleSplitCollapse.h ├── maEdgeSwap.cc ├── maEdgeSwap.h ├── maExtrude.cc ├── maExtrude.h ├── maFaceSplit.cc ├── maFaceSplit.h ├── maFaceSplitCollapse.cc ├── maFaceSplitCollapse.h ├── maInput.cc ├── maInput.h ├── maLayer.cc ├── maLayer.h ├── maLayerCoarsen.cc ├── maLayerCollapse.cc ├── maLayerCollapse.h ├── maLayerRefine.cc ├── maLayerSnap.cc ├── maLayerTables.cc ├── maLayerTemplates.cc ├── maMap.cc ├── maMap.h ├── maMatch.cc ├── maMatch.h ├── maMatchedCollapse.cc ├── maMatchedCollapse.h ├── maMatchedSnapper.cc ├── maMatchedSnapper.h ├── maMesh.cc ├── maMesh.h ├── maOperator.cc ├── maOperator.h ├── maQuality.cc ├── maRefine.cc ├── maRefine.h ├── maRegionCollapse.cc ├── maRegionCollapse.h ├── maReposition.cc ├── maReposition.h ├── maShape.cc ├── maShape.h ├── maShapeHandler.cc ├── maShapeHandler.h ├── maShortEdgeRemover.cc ├── maShortEdgeRemover.h ├── maSingleSplitCollapse.cc ├── maSingleSplitCollapse.h ├── maSize.cc ├── maSize.h ├── maSnap.cc ├── maSnap.h ├── maSnapper.cc ├── maSnapper.h ├── maSolutionTransfer.cc ├── maSolutionTransfer.h ├── maSolutionTransferHelper.cc ├── maSolutionTransferHelper.h ├── maSplits.cc ├── maSplits.h ├── maStats.cc ├── maStats.h ├── maTables.cc ├── maTables.h ├── maTemplates.cc ├── maTemplates.h ├── maTetrahedronize.cc ├── maTetrahedronize.h ├── maVertRemover.cc ├── maVertRemover.h ├── new.tex ├── pkg_tribits.cmake ├── prismCodeMatch.cc ├── prism_uniform_refine.png ├── pyramidCodeMatch.cc ├── pyramid_codes.pdf ├── pyramid_templates.pdf ├── rotateOct.cc ├── sliverCodeMatch.cc ├── templates.pdf ├── tetCodeMatch.cc ├── tet_boundary_refine.tex ├── tet_uniform_refine.png └── thick_adapt.png ├── mds ├── CMakeLists.txt ├── apfBox.cc ├── apfBox.h ├── apfMDS.cc ├── apfMDS.h ├── apfPM.cc ├── apfPM.h ├── cmake │ ├── Dependencies.cmake │ └── cmake │ │ └── Dependencies.cmake ├── mds.bib ├── mds.c ├── mds.h ├── mds.mp ├── mds.tex ├── mdsANSYS.cc ├── mdsCGNS.cc ├── mdsGmsh.cc ├── mdsUgrid.cc ├── mds_apf.c ├── mds_apf.h ├── mds_config.h.in ├── mds_net.c ├── mds_net.h ├── mds_order.c ├── mds_smb.c ├── mds_tag.c ├── mds_tag.h ├── pkg_tribits.cmake ├── region_edges.jpg └── region_faces.jpg ├── metis ├── CMakeLists.txt ├── apfMETIS.cc ├── apfMETIS.h ├── apfMETISbalancer.cc ├── apfMETISbalancer.h ├── apfMETIScommon.cc ├── apfMETIScommon.h ├── apfMETISempty.cc ├── apfMETISsplitter.cc ├── apfMETISsplitter.h └── metis.dox ├── mpich3-gcc4.9.2-config.sh ├── mth ├── CMakeLists.txt ├── mth.dox ├── mth.h ├── mthAD.h ├── mthMatrix.h ├── mthQR.cc ├── mthQR.h ├── mthTensor.h ├── mthVector.h └── mth_def.h ├── omega_h ├── CMakeLists.txt ├── apfOmega_h.cc └── apfOmega_h.h ├── parma ├── CMakeLists.txt ├── cmake │ └── Dependencies.cmake ├── diffMC │ ├── .clang_complete │ ├── maximalIndependentSet │ │ ├── mersenne_twister.cc │ │ ├── mersenne_twister.h │ │ ├── mis.h │ │ ├── misLuby.cc │ │ ├── mis_version.h.in │ │ └── test │ │ │ ├── testMIS.cc │ │ │ └── testMis.supp │ ├── parma_associative.h │ ├── parma_balancer.cc │ ├── parma_balancer.h │ ├── parma_bdryVtx.cc │ ├── parma_bdryVtx.h │ ├── parma_centroidDiffuser.cc │ ├── parma_centroidSelector.cc │ ├── parma_centroids.cc │ ├── parma_centroids.h │ ├── parma_commons.cc │ ├── parma_commons.h │ ├── parma_components.cc │ ├── parma_components.h │ ├── parma_convert.h │ ├── parma_dcpart.cc │ ├── parma_dcpart.h │ ├── parma_dcpartFixer.cc │ ├── parma_dijkstra.cc │ ├── parma_dijkstra.h │ ├── parma_distQ.h │ ├── parma_edgeEqVtxSelector.cc │ ├── parma_elmBalancer.cc │ ├── parma_elmBdrySides.cc │ ├── parma_elmLtVtxEdgeBalancer.cc │ ├── parma_elmLtVtxEdgeSelector.cc │ ├── parma_elmLtVtxEdgeTargets.cc │ ├── parma_elmSelector.cc │ ├── parma_elmSideSides.cc │ ├── parma_entWeights.cc │ ├── parma_entWeights.h │ ├── parma_ghost.cc │ ├── parma_ghostElement.cc │ ├── parma_ghostMPAS.cc │ ├── parma_ghostMPASWeights.cc │ ├── parma_ghostOwner.cc │ ├── parma_ghostOwner.h │ ├── parma_ghostWeights.cc │ ├── parma_graphDist.cc │ ├── parma_graphDist.h │ ├── parma_ltSelector.cc │ ├── parma_meshaux.h │ ├── parma_monitor.cc │ ├── parma_monitor.h │ ├── parma_preserveTargets.cc │ ├── parma_selector.h │ ├── parma_shapeOptimizer.cc │ ├── parma_shapeSelector.cc │ ├── parma_shapeTargets.cc │ ├── parma_sides.cc │ ├── parma_sides.h │ ├── parma_step.cc │ ├── parma_step.h │ ├── parma_stop.cc │ ├── parma_stop.h │ ├── parma_targets.h │ ├── parma_vtxBalancer.cc │ ├── parma_vtxEdgeElmBalancer.cc │ ├── parma_vtxEdgeTargets.cc │ ├── parma_vtxElmBalancer.cc │ ├── parma_vtxPtnWriter.cc │ ├── parma_vtxSelector.cc │ ├── parma_vtxSelector.h │ ├── parma_vtxSides.cc │ ├── parma_weightSideTargets.cc │ ├── parma_weightTargets.cc │ ├── parma_weights.h │ ├── plotHist.sh │ ├── zeroOneKnapsack.c │ ├── zeroOneKnapsack.h │ └── zeroOneKnapsackTest.c ├── extractParmaResults.py ├── group │ └── parma_group.cc ├── parma.cc ├── parma.dox ├── parma.h ├── pkg_tribits.cmake └── rib │ ├── parma_mesh_rib.cc │ ├── parma_rib.cc │ └── parma_rib.h ├── pcu ├── CMakeLists.txt ├── PCU.cc ├── PCU.h ├── PCU_C.h ├── cmake │ └── Dependencies.cmake ├── noto │ ├── noto_malloc.c │ └── noto_malloc.h ├── pcu.dox ├── pcu_aa.c ├── pcu_aa.h ├── pcu_buffer.c ├── pcu_buffer.h ├── pcu_byteorder.h ├── pcu_c.cc ├── pcu_coll.c ├── pcu_coll.h ├── pcu_defines.h ├── pcu_io.c ├── pcu_io.h ├── pcu_mem.c ├── pcu_mem.h ├── pcu_mpi.c ├── pcu_mpi.h ├── pcu_msg.c ├── pcu_msg.h ├── pcu_order.c ├── pcu_order.h ├── pcu_pmpi.c ├── pcu_pmpi.h ├── pcu_pnompi.c ├── pcu_util.c ├── pcu_util.h ├── pkg_tribits.cmake └── reel │ ├── reel.c │ └── reel.h ├── phasta ├── CMakeLists.txt ├── adaptLvlSet_loop.cc ├── chef.cc ├── chef.h ├── chefStream.cc ├── condense.cc ├── cut_interface.cc ├── libph.pc.in ├── migrate_interface.cc ├── ph.cc ├── ph.h ├── phAdapt.cc ├── phAdapt.h ├── phAdjacent.cc ├── phAdjacent.h ├── phAttrib.cc ├── phAttrib.h ├── phAxisymmetry.cc ├── phAxisymmetry.h ├── phBC.cc ├── phBC.h ├── phBlock.cc ├── phBlock.h ├── phBubble.cc ├── phBubble.h ├── phConfig.cmake.in ├── phConstraint.cc ├── phCook.cc ├── phFilterMatching.cc ├── phFilterMatching.h ├── phGeomBC.cc ├── phGrowthCurves.cc ├── phGrowthCurves.h ├── phGrowthCurves_empty.cc ├── phIO.c ├── phIO.h ├── phInput.cc ├── phInput.h ├── phInterfaceCutter.cc ├── phInterfaceCutter.h ├── phLinks.cc ├── phLinks.h ├── phMeshQuality.cc ├── phModelGeometry.cc ├── phModelGeometry.h ├── phOutput.cc ├── phOutput.h ├── phPartition.cc ├── phPartition.h ├── phRestart.cc ├── phRestart.h ├── phRigidBody.cc ├── phSnap.cc ├── ph_convert.cc ├── phasta.dox ├── phastaChef.f ├── phastaChef.h ├── phiotimer.cc ├── phiotimer.f ├── phiotimer.h ├── phstream.cc ├── phstream.h ├── readUrPrep.cc ├── splitMeshOnGFace.h ├── splitMeshOnGFace_2arg.cpp ├── splitMeshOnGFace_4arg.cpp └── threshold.cc ├── pkg_tribits.cmake ├── proteusconfig.sh ├── proteushash.py ├── pumi ├── .gitignore ├── CMakeLists.txt ├── GenIterator.h ├── GenTag.cc ├── GenTag.h ├── cmake │ └── Dependencies.cmake ├── mPartEntityContainer.cc ├── mPartEntityContainer.h ├── pkg_tribits.cmake ├── pumi.h ├── pumiConfig.cmake.in ├── pumi_errorcode.h ├── pumi_field.cc ├── pumi_gentity.cc ├── pumi_geom.cc ├── pumi_ghost.cc ├── pumi_gtag.cc ├── pumi_iter.h ├── pumi_list.h ├── pumi_mentity.cc ├── pumi_mesh.cc ├── pumi_mtag.cc ├── pumi_numbering.cc ├── pumi_sys.cc └── pumi_version.h.in ├── python_wrappers ├── CMakeLists.txt ├── README.md ├── apf.i ├── input │ ├── cube.dmg │ ├── cube0.smb │ ├── sphere.smd │ ├── sphere.x_t │ └── sphere0.smb ├── sim_helper.cc ├── sim_helper.h ├── test_pyCore.py └── test_pyCore_with_simx.py ├── ree ├── CMakeLists.txt ├── cmake │ └── Dependencies.cmake ├── pkg_tribits.cmake ├── ree.h ├── reeCorrectedFlux.cc ├── reeEstimateError.cc ├── reeFluxCorrection.cc ├── reeResidualFunctionals.cc └── reeSizeField.cc ├── sam ├── CMakeLists.txt ├── sam.cc ├── sam.h ├── samElementCount.cc ├── samElementCount.h ├── samSz.cc └── samSz.h ├── scorec.dox ├── scorec.png ├── scorec_footer.html ├── smoke_test_meshes └── pipe │ ├── pipe.dmg │ ├── pipe.smd │ ├── pipe.sms │ └── pipe0.smb ├── spr ├── CMakeLists.txt ├── cmake │ └── Dependencies.cmake ├── pkg_tribits.cmake ├── spr.dox ├── spr.h ├── spr.tex ├── sprEstimateError.cc ├── sprEstimateTargetError.cc ├── sprGetGradIPField.cc └── sprRecoverField.cc ├── stk ├── CMakeLists.txt ├── apfAlbany.h ├── apfExodusOutput.cc ├── apfMeshSTK.cc ├── apfSTK.cc ├── apfSTK.h ├── apf_stkConfig.h.in ├── cmake │ └── Dependencies.cmake └── pkg_tribits.cmake ├── test ├── 1d.cc ├── CMakeLists.txt ├── H1Shapes.cc ├── L2Shapes.cc ├── align.cc ├── aniso_adapt.cc ├── aniso_adapt.h ├── aniso_adapt_cap.cc ├── aniso_adapt_sim.cc ├── aniso_ma_test.cc ├── ansys.cc ├── applyMatrixFunc.cc ├── assert_timing.cc ├── balance.cc ├── base64.cc ├── bezierElevation.cc ├── bezierMesh.cc ├── bezierMisc.cc ├── bezierRefine.cc ├── bezierShapeEval.cc ├── bezierSubdivision.cc ├── bezierValidity.cc ├── box.cc ├── cap2vtk.cc ├── capAdapt.cc ├── capCheckParam.cc ├── capGeomTest.cc ├── capLoadSome.cc ├── capNativeAdapt.cc ├── capProbe.cc ├── capVol.cc ├── capVolSizeFields.h ├── cap_closestPoint.cc ├── cap_inClosureOf.cc ├── cap_smooth.cc ├── cgns.cc ├── classifyThenAdapt.cc ├── cmake │ └── Dependencies.cmake ├── collapse.cc ├── construct.cc ├── constructThenGhost.cc ├── construct_bottom_up.cc ├── convert.cc ├── crack_test.cc ├── create_mis.cc ├── curve_to_bezier.cc ├── curvetest.cc ├── degenerateSurfs.cc ├── describe.cc ├── dg_ma_test.cc ├── eigen_test.cc ├── elmBalance.cc ├── embedded_edges.cc ├── extrude.cc ├── fieldReduce.cc ├── field_io.cc ├── fixDisconnected.cc ├── fixlayer.cc ├── fixshape.cc ├── fusion.cc ├── fusion2.cc ├── fusion3.cc ├── gap.cc ├── generate.cc ├── ghost.cc ├── ghostEdge.cc ├── ghostMPAS.cc ├── gmsh.cc ├── graphdist.cc ├── hierarchic.cc ├── highOrderSizeFields.cc ├── highOrderSolutionTransfer.cc ├── icesheet.cc ├── inClosureOf_test.cc ├── integrate.cc ├── intrude.cc ├── loadPart.cc ├── ma_insphere.cc ├── ma_test.cc ├── ma_test_analytic_model.cc ├── makeAllCavities.cc ├── matchedNodeElmReader.cc ├── mbalance.cc ├── mbalanceEmpty.cc ├── mdlConvert.cc ├── measureAnisoStats.cc ├── measureIsoStats.cc ├── mixedNumbering.cc ├── mkmodel.cc ├── mktopomodel.cc ├── modelInfo.cc ├── moving.cc ├── msplit.cc ├── nedelecShapes.cc ├── nektar_align.cc ├── neper.cc ├── newdim.cc ├── osh2smb.cc ├── outputcontrol.cc ├── ph_adapt.cc ├── poisson.cc ├── print_pumipic_partition.cc ├── ptnParma.cc ├── pumi.cc ├── pumiLoadMesh.cc ├── qr.cc ├── quality.cc ├── refine2x.cc ├── render.cc ├── renderClass.cc ├── render_ascii.cc ├── reorder.cc ├── repartition.cc ├── reposition.cc ├── residualErrorEstimation_test.cc ├── rm_extrusion.cc ├── runSimxAnisoAdapt.cc ├── scale.cc ├── serialize.cc ├── shapefun.cc ├── shapefun2.cc ├── simDiscrete.cc ├── simSpjToSmd.cc ├── simTranslate.cc ├── simZBalance.cc ├── sim_countBL.cc ├── sim_part.cc ├── smb2osh.cc ├── smokeTesting.cmake ├── snap.cc ├── split.cc ├── spr_test.cc ├── swapDoubles.cc ├── tensor.cc ├── test_AD.cc ├── test_integrator.cc ├── test_matrix_grad.cc ├── test_scaling.cc ├── test_verify.cc ├── testing.cmake ├── tetrahedronize.cc ├── torus_ma_test.cc ├── ugrid.cc ├── ugridptnstats.cc ├── uniform.cc ├── verify.cc ├── verify_2nd_order_shapes.cc ├── verify_convert.cc ├── visualizeAnisoSizes.cc ├── viz.cc ├── vtxBalance.cc ├── vtxEdgeElmBalance.cc ├── vtxElmBalance.cc ├── vtxElmMixedBalance.cc ├── writeIPFieldTest.cc ├── writePart.cc ├── writeVtxPtn.cc ├── xgc_split.cc ├── zbalance.cc └── zsplit.cc └── zoltan ├── CMakeLists.txt ├── apfInterElement.cc ├── apfZoltan.cc ├── apfZoltan.h ├── apfZoltanCallbacks.cc ├── apfZoltanCallbacks.h ├── apfZoltanEmpty.cc ├── apfZoltanMesh.cc ├── apfZoltanMesh.h ├── cmake └── Dependencies.cmake └── pkg_tribits.cmake /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/cleanup-caches.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/.github/workflows/cleanup-caches.yml -------------------------------------------------------------------------------- /.github/workflows/cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/.github/workflows/cmake.yml -------------------------------------------------------------------------------- /.github/workflows/comment_on_pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/.github/workflows/comment_on_pr.yml -------------------------------------------------------------------------------- /.github/workflows/doxygen-gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/.github/workflows/doxygen-gh-pages.yml -------------------------------------------------------------------------------- /.github/workflows/frontier/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/.github/workflows/frontier/install.sh -------------------------------------------------------------------------------- /.github/workflows/frontier/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/.github/workflows/frontier/run.sh -------------------------------------------------------------------------------- /.github/workflows/globus-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/.github/workflows/globus-test.yml -------------------------------------------------------------------------------- /.github/workflows/perlmutter/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/.github/workflows/perlmutter/install.sh -------------------------------------------------------------------------------- /.github/workflows/perlmutter/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/.github/workflows/perlmutter/run.sh -------------------------------------------------------------------------------- /.github/workflows/python-api-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/.github/workflows/python-api-test.yml -------------------------------------------------------------------------------- /.github/workflows/simmetrix_enabled_pr_comment_trigger_self_hosted.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/.github/workflows/simmetrix_enabled_pr_comment_trigger_self_hosted.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | settings.json -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/.gitmodules -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/Doxyfile.in -------------------------------------------------------------------------------- /Doxyfile_internal.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/Doxyfile_internal.in -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/README.md -------------------------------------------------------------------------------- /SCOREC_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/SCOREC_config.h.in -------------------------------------------------------------------------------- /STYLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/STYLE.md -------------------------------------------------------------------------------- /apf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/CMakeLists.txt -------------------------------------------------------------------------------- /apf/apf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apf.cc -------------------------------------------------------------------------------- /apf/apf.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apf.dox -------------------------------------------------------------------------------- /apf/apf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apf.h -------------------------------------------------------------------------------- /apf/apf.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apf.tex -------------------------------------------------------------------------------- /apf/apf2mth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apf2mth.h -------------------------------------------------------------------------------- /apf/apfAdjReorder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfAdjReorder.cc -------------------------------------------------------------------------------- /apf/apfArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfArray.h -------------------------------------------------------------------------------- /apf/apfArrayData.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfArrayData.cc -------------------------------------------------------------------------------- /apf/apfArrayData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfArrayData.h -------------------------------------------------------------------------------- /apf/apfBoundaryToElementXi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfBoundaryToElementXi.cc -------------------------------------------------------------------------------- /apf/apfCGNS.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfCGNS.cc -------------------------------------------------------------------------------- /apf/apfCavityOp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfCavityOp.cc -------------------------------------------------------------------------------- /apf/apfCavityOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfCavityOp.h -------------------------------------------------------------------------------- /apf/apfConstruct.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfConstruct.cc -------------------------------------------------------------------------------- /apf/apfConvert.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfConvert.cc -------------------------------------------------------------------------------- /apf/apfConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfConvert.h -------------------------------------------------------------------------------- /apf/apfConvertTags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfConvertTags.h -------------------------------------------------------------------------------- /apf/apfCoordData.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfCoordData.cc -------------------------------------------------------------------------------- /apf/apfCoordData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfCoordData.h -------------------------------------------------------------------------------- /apf/apfDynamicArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfDynamicArray.h -------------------------------------------------------------------------------- /apf/apfDynamicMatrix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfDynamicMatrix.cc -------------------------------------------------------------------------------- /apf/apfDynamicMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfDynamicMatrix.h -------------------------------------------------------------------------------- /apf/apfDynamicVector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfDynamicVector.cc -------------------------------------------------------------------------------- /apf/apfDynamicVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfDynamicVector.h -------------------------------------------------------------------------------- /apf/apfElement.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfElement.cc -------------------------------------------------------------------------------- /apf/apfElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfElement.h -------------------------------------------------------------------------------- /apf/apfElementOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfElementOf.h -------------------------------------------------------------------------------- /apf/apfField.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfField.cc -------------------------------------------------------------------------------- /apf/apfField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfField.h -------------------------------------------------------------------------------- /apf/apfFieldData.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfFieldData.cc -------------------------------------------------------------------------------- /apf/apfFieldData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfFieldData.h -------------------------------------------------------------------------------- /apf/apfFieldOf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfFieldOf.cc -------------------------------------------------------------------------------- /apf/apfFieldOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfFieldOf.h -------------------------------------------------------------------------------- /apf/apfFile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfFile.cc -------------------------------------------------------------------------------- /apf/apfFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfFile.h -------------------------------------------------------------------------------- /apf/apfGeometry.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfGeometry.cc -------------------------------------------------------------------------------- /apf/apfGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfGeometry.h -------------------------------------------------------------------------------- /apf/apfGradientByVolume.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfGradientByVolume.cc -------------------------------------------------------------------------------- /apf/apfH1Shapes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfH1Shapes.cc -------------------------------------------------------------------------------- /apf/apfHierarchic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfHierarchic.cc -------------------------------------------------------------------------------- /apf/apfIPShape.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfIPShape.cc -------------------------------------------------------------------------------- /apf/apfIntegrate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfIntegrate.cc -------------------------------------------------------------------------------- /apf/apfIntegrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfIntegrate.h -------------------------------------------------------------------------------- /apf/apfL2Shapes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfL2Shapes.cc -------------------------------------------------------------------------------- /apf/apfMIS.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfMIS.cc -------------------------------------------------------------------------------- /apf/apfMIS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfMIS.h -------------------------------------------------------------------------------- /apf/apfMatrix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfMatrix.cc -------------------------------------------------------------------------------- /apf/apfMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfMatrix.h -------------------------------------------------------------------------------- /apf/apfMatrixElement.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfMatrixElement.cc -------------------------------------------------------------------------------- /apf/apfMatrixElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfMatrixElement.h -------------------------------------------------------------------------------- /apf/apfMatrixField.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfMatrixField.cc -------------------------------------------------------------------------------- /apf/apfMatrixField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfMatrixField.h -------------------------------------------------------------------------------- /apf/apfMesh.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfMesh.cc -------------------------------------------------------------------------------- /apf/apfMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfMesh.h -------------------------------------------------------------------------------- /apf/apfMesh2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfMesh2.cc -------------------------------------------------------------------------------- /apf/apfMesh2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfMesh2.h -------------------------------------------------------------------------------- /apf/apfMigrate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfMigrate.cc -------------------------------------------------------------------------------- /apf/apfMixedNumbering.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfMixedNumbering.cc -------------------------------------------------------------------------------- /apf/apfMixedNumbering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfMixedNumbering.h -------------------------------------------------------------------------------- /apf/apfMixedVectorElement.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfMixedVectorElement.cc -------------------------------------------------------------------------------- /apf/apfMixedVectorElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfMixedVectorElement.h -------------------------------------------------------------------------------- /apf/apfMixedVectorField.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfMixedVectorField.cc -------------------------------------------------------------------------------- /apf/apfMixedVectorField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfMixedVectorField.h -------------------------------------------------------------------------------- /apf/apfNedelec.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfNedelec.cc -------------------------------------------------------------------------------- /apf/apfNew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfNew.h -------------------------------------------------------------------------------- /apf/apfNumbering.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfNumbering.cc -------------------------------------------------------------------------------- /apf/apfNumbering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfNumbering.h -------------------------------------------------------------------------------- /apf/apfNumberingClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfNumberingClass.h -------------------------------------------------------------------------------- /apf/apfOpposites.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfOpposites.cc -------------------------------------------------------------------------------- /apf/apfPackedField.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfPackedField.cc -------------------------------------------------------------------------------- /apf/apfPackedField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfPackedField.h -------------------------------------------------------------------------------- /apf/apfPartition.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfPartition.cc -------------------------------------------------------------------------------- /apf/apfPartition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfPartition.h -------------------------------------------------------------------------------- /apf/apfPolyBasis1D.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfPolyBasis1D.cc -------------------------------------------------------------------------------- /apf/apfPolyBasis1D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfPolyBasis1D.h -------------------------------------------------------------------------------- /apf/apfScalarElement.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfScalarElement.cc -------------------------------------------------------------------------------- /apf/apfScalarElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfScalarElement.h -------------------------------------------------------------------------------- /apf/apfScalarField.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfScalarField.cc -------------------------------------------------------------------------------- /apf/apfScalarField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfScalarField.h -------------------------------------------------------------------------------- /apf/apfShape.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfShape.cc -------------------------------------------------------------------------------- /apf/apfShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfShape.h -------------------------------------------------------------------------------- /apf/apfSimplexAngleCalcs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfSimplexAngleCalcs.cc -------------------------------------------------------------------------------- /apf/apfTagData.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfTagData.cc -------------------------------------------------------------------------------- /apf/apfTagData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfTagData.h -------------------------------------------------------------------------------- /apf/apfUserData.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfUserData.cc -------------------------------------------------------------------------------- /apf/apfUserData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfUserData.h -------------------------------------------------------------------------------- /apf/apfVector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfVector.cc -------------------------------------------------------------------------------- /apf/apfVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfVector.h -------------------------------------------------------------------------------- /apf/apfVectorElement.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfVectorElement.cc -------------------------------------------------------------------------------- /apf/apfVectorElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfVectorElement.h -------------------------------------------------------------------------------- /apf/apfVectorField.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfVectorField.cc -------------------------------------------------------------------------------- /apf/apfVectorField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfVectorField.h -------------------------------------------------------------------------------- /apf/apfVerify.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfVerify.cc -------------------------------------------------------------------------------- /apf/apfVtk.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfVtk.cc -------------------------------------------------------------------------------- /apf/apfVtk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfVtk.h -------------------------------------------------------------------------------- /apf/apfVtkPieceWiseFields.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/apfVtkPieceWiseFields.cc -------------------------------------------------------------------------------- /apf/attach.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/attach.tex -------------------------------------------------------------------------------- /apf/cavity.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/cavity.tex -------------------------------------------------------------------------------- /apf/cmake/Dependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/cmake/Dependencies.cmake -------------------------------------------------------------------------------- /apf/cmake/cmake/Dependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/cmake/cmake/Dependencies.cmake -------------------------------------------------------------------------------- /apf/hierarchic.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/hierarchic.tex -------------------------------------------------------------------------------- /apf/pkg_tribits.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/pkg_tribits.cmake -------------------------------------------------------------------------------- /apf/stitch.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf/stitch.tex -------------------------------------------------------------------------------- /apf_cap/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf_cap/CMakeLists.txt -------------------------------------------------------------------------------- /apf_cap/apfCAP.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf_cap/apfCAP.cc -------------------------------------------------------------------------------- /apf_cap/apfCAP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf_cap/apfCAP.h -------------------------------------------------------------------------------- /apf_cap/apfCAPsizing.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf_cap/apfCAPsizing.cc -------------------------------------------------------------------------------- /apf_cap/apf_capConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf_cap/apf_capConfig.cmake.in -------------------------------------------------------------------------------- /apf_cap/cmake/Dependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf_cap/cmake/Dependencies.cmake -------------------------------------------------------------------------------- /apf_cap/pkg_tribits.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf_cap/pkg_tribits.cmake -------------------------------------------------------------------------------- /apf_sim/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf_sim/CMakeLists.txt -------------------------------------------------------------------------------- /apf_sim/apfSIM.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf_sim/apfSIM.cc -------------------------------------------------------------------------------- /apf_sim/apfSIM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf_sim/apfSIM.h -------------------------------------------------------------------------------- /apf_sim/apfSIMDataOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf_sim/apfSIMDataOf.h -------------------------------------------------------------------------------- /apf_sim/apf_simConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf_sim/apf_simConfig.cmake.in -------------------------------------------------------------------------------- /apf_sim/apf_simConfig.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf_sim/apf_simConfig.h.in -------------------------------------------------------------------------------- /apf_sim/cmake/Dependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf_sim/cmake/Dependencies.cmake -------------------------------------------------------------------------------- /apf_sim/libapf_sim.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf_sim/libapf_sim.pc.in -------------------------------------------------------------------------------- /apf_sim/moduletemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf_sim/moduletemplate -------------------------------------------------------------------------------- /apf_sim/pkg_tribits.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/apf_sim/pkg_tribits.cmake -------------------------------------------------------------------------------- /can/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/can/CMakeLists.txt -------------------------------------------------------------------------------- /can/canArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/can/canArray.h -------------------------------------------------------------------------------- /can/canNewArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/can/canNewArray.h -------------------------------------------------------------------------------- /cdash/CTestConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/cdash/CTestConfig.cmake -------------------------------------------------------------------------------- /cdash/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/cdash/Project.xml -------------------------------------------------------------------------------- /cdash/colorado.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/cdash/colorado.cmake -------------------------------------------------------------------------------- /cdash/jenga-crontab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/cdash/jenga-crontab.txt -------------------------------------------------------------------------------- /cdash/nightly.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/cdash/nightly.cmake -------------------------------------------------------------------------------- /cdash/nightly.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/cdash/nightly.sh -------------------------------------------------------------------------------- /cdash/upload_coverity.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/cdash/upload_coverity.sh -------------------------------------------------------------------------------- /cmake/Dependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/cmake/Dependencies.cmake -------------------------------------------------------------------------------- /cmake/FindC99.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/cmake/FindC99.cmake -------------------------------------------------------------------------------- /cmake/FindCGNS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/cmake/FindCGNS.cmake -------------------------------------------------------------------------------- /cmake/FindMETIS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/cmake/FindMETIS.cmake -------------------------------------------------------------------------------- /cmake/FindMPI4PY.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/cmake/FindMPI4PY.cmake -------------------------------------------------------------------------------- /cmake/FindNetCDF.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/cmake/FindNetCDF.cmake -------------------------------------------------------------------------------- /cmake/FindParmetis.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/cmake/FindParmetis.cmake -------------------------------------------------------------------------------- /cmake/FindSimModSuite.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/cmake/FindSimModSuite.cmake -------------------------------------------------------------------------------- /cmake/FindZoltan.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/cmake/FindZoltan.cmake -------------------------------------------------------------------------------- /cmake/GetGitRevisionDescription.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/cmake/GetGitRevisionDescription.cmake -------------------------------------------------------------------------------- /cmake/GetGitRevisionDescription.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/cmake/GetGitRevisionDescription.cmake.in -------------------------------------------------------------------------------- /cmake/TPLs/FindTPLSimAcis.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/cmake/TPLs/FindTPLSimAcis.cmake -------------------------------------------------------------------------------- /cmake/TPLs/FindTPLSimField.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/cmake/TPLs/FindTPLSimField.cmake -------------------------------------------------------------------------------- /cmake/TPLs/FindTPLSimMesh.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/cmake/TPLs/FindTPLSimMesh.cmake -------------------------------------------------------------------------------- /cmake/TPLs/FindTPLSimModel.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/cmake/TPLs/FindTPLSimModel.cmake -------------------------------------------------------------------------------- /cmake/TPLs/FindTPLSimParasolid.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/cmake/TPLs/FindTPLSimParasolid.cmake -------------------------------------------------------------------------------- /cmake/bob.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/cmake/bob.cmake -------------------------------------------------------------------------------- /cmake/xsdk.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/cmake/xsdk.cmake -------------------------------------------------------------------------------- /crv/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/crv/CMakeLists.txt -------------------------------------------------------------------------------- /crv/crv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/crv/crv.cc -------------------------------------------------------------------------------- /crv/crv.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/crv/crv.dox -------------------------------------------------------------------------------- /crv/crv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/crv/crv.h -------------------------------------------------------------------------------- /crv/crvAdapt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/crv/crvAdapt.cc -------------------------------------------------------------------------------- /crv/crvAdapt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/crv/crvAdapt.h -------------------------------------------------------------------------------- /crv/crvBernstein.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/crv/crvBernstein.cc -------------------------------------------------------------------------------- /crv/crvBezier.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/crv/crvBezier.cc -------------------------------------------------------------------------------- /crv/crvBezier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/crv/crvBezier.h -------------------------------------------------------------------------------- /crv/crvBezierPoints.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/crv/crvBezierPoints.cc -------------------------------------------------------------------------------- /crv/crvBezierShapes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/crv/crvBezierShapes.cc -------------------------------------------------------------------------------- /crv/crvBezierShapes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/crv/crvBezierShapes.h -------------------------------------------------------------------------------- /crv/crvBlended.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/crv/crvBlended.cc -------------------------------------------------------------------------------- /crv/crvCurveMesh.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/crv/crvCurveMesh.cc -------------------------------------------------------------------------------- /crv/crvElevation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/crv/crvElevation.cc -------------------------------------------------------------------------------- /crv/crvG1Points.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/crv/crvG1Points.cc -------------------------------------------------------------------------------- /crv/crvMath.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/crv/crvMath.cc -------------------------------------------------------------------------------- /crv/crvMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/crv/crvMath.h -------------------------------------------------------------------------------- /crv/crvQuality.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/crv/crvQuality.cc -------------------------------------------------------------------------------- /crv/crvQuality.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/crv/crvQuality.h -------------------------------------------------------------------------------- /crv/crvReposition.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/crv/crvReposition.cc -------------------------------------------------------------------------------- /crv/crvShape.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/crv/crvShape.cc -------------------------------------------------------------------------------- /crv/crvShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/crv/crvShape.h -------------------------------------------------------------------------------- /crv/crvShapeFixer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/crv/crvShapeFixer.cc -------------------------------------------------------------------------------- /crv/crvShapeFixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/crv/crvShapeFixer.h -------------------------------------------------------------------------------- /crv/crvShapeHandler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/crv/crvShapeHandler.cc -------------------------------------------------------------------------------- /crv/crvSnap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/crv/crvSnap.cc -------------------------------------------------------------------------------- /crv/crvSnap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/crv/crvSnap.h -------------------------------------------------------------------------------- /crv/crvSubdivision.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/crv/crvSubdivision.cc -------------------------------------------------------------------------------- /crv/crvTables.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/crv/crvTables.cc -------------------------------------------------------------------------------- /crv/crvTables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/crv/crvTables.h -------------------------------------------------------------------------------- /crv/crvVtk.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/crv/crvVtk.cc -------------------------------------------------------------------------------- /design.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/design.tex -------------------------------------------------------------------------------- /doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/doc/CMakeLists.txt -------------------------------------------------------------------------------- /doc/mylibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/doc/mylibrary.cpp -------------------------------------------------------------------------------- /doc/mylibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/doc/mylibrary.h -------------------------------------------------------------------------------- /doc/myprogram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/doc/myprogram.cpp -------------------------------------------------------------------------------- /dsp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/dsp/CMakeLists.txt -------------------------------------------------------------------------------- /dsp/dsp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/dsp/dsp.cc -------------------------------------------------------------------------------- /dsp/dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/dsp/dsp.h -------------------------------------------------------------------------------- /dsp/dspAdapters.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/dsp/dspAdapters.cc -------------------------------------------------------------------------------- /dsp/dspAdapters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/dsp/dspAdapters.h -------------------------------------------------------------------------------- /dsp/dspGraphDistance.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/dsp/dspGraphDistance.cc -------------------------------------------------------------------------------- /dsp/dspGraphDistance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/dsp/dspGraphDistance.h -------------------------------------------------------------------------------- /dsp/dspSmoothers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/dsp/dspSmoothers.cc -------------------------------------------------------------------------------- /dsp/dspSmoothers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/dsp/dspSmoothers.h -------------------------------------------------------------------------------- /env-scorec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/env-scorec.sh -------------------------------------------------------------------------------- /example/mpi-nompi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/example/mpi-nompi/CMakeLists.txt -------------------------------------------------------------------------------- /example/mpi-nompi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/example/mpi-nompi/README.md -------------------------------------------------------------------------------- /example/mpi-nompi/hello.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/example/mpi-nompi/hello.cc -------------------------------------------------------------------------------- /example/mpi-nompi/test_coll.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/example/mpi-nompi/test_coll.cc -------------------------------------------------------------------------------- /example_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/example_config.sh -------------------------------------------------------------------------------- /example_config_with_python_interface.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/example_config_with_python_interface.sh -------------------------------------------------------------------------------- /gmi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/gmi/CMakeLists.txt -------------------------------------------------------------------------------- /gmi/agm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/gmi/agm.c -------------------------------------------------------------------------------- /gmi/agm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/gmi/agm.h -------------------------------------------------------------------------------- /gmi/cmake/Dependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/gmi/cmake/Dependencies.cmake -------------------------------------------------------------------------------- /gmi/gmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/gmi/gmi.c -------------------------------------------------------------------------------- /gmi/gmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/gmi/gmi.h -------------------------------------------------------------------------------- /gmi/gmi_analytic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/gmi/gmi_analytic.c -------------------------------------------------------------------------------- /gmi/gmi_analytic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/gmi/gmi_analytic.h -------------------------------------------------------------------------------- /gmi/gmi_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/gmi/gmi_base.c -------------------------------------------------------------------------------- /gmi/gmi_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/gmi/gmi_base.h -------------------------------------------------------------------------------- /gmi/gmi_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/gmi/gmi_file.c -------------------------------------------------------------------------------- /gmi/gmi_lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/gmi/gmi_lookup.c -------------------------------------------------------------------------------- /gmi/gmi_lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/gmi/gmi_lookup.h -------------------------------------------------------------------------------- /gmi/gmi_mesh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/gmi/gmi_mesh.c -------------------------------------------------------------------------------- /gmi/gmi_mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/gmi/gmi_mesh.h -------------------------------------------------------------------------------- /gmi/gmi_null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/gmi/gmi_null.c -------------------------------------------------------------------------------- /gmi/gmi_null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/gmi/gmi_null.h -------------------------------------------------------------------------------- /gmi/pkg_tribits.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/gmi/pkg_tribits.cmake -------------------------------------------------------------------------------- /gmi_cap/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/gmi_cap/CMakeLists.txt -------------------------------------------------------------------------------- /gmi_cap/cmake/Dependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/gmi_cap/cmake/Dependencies.cmake -------------------------------------------------------------------------------- /gmi_cap/gmi_cap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/gmi_cap/gmi_cap.cc -------------------------------------------------------------------------------- /gmi_cap/gmi_cap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/gmi_cap/gmi_cap.h -------------------------------------------------------------------------------- /gmi_cap/gmi_capConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/gmi_cap/gmi_capConfig.cmake.in -------------------------------------------------------------------------------- /gmi_cap/pkg_tribits.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/gmi_cap/pkg_tribits.cmake -------------------------------------------------------------------------------- /gmi_sim/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/gmi_sim/CMakeLists.txt -------------------------------------------------------------------------------- /gmi_sim/cmake/Dependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/gmi_sim/cmake/Dependencies.cmake -------------------------------------------------------------------------------- /gmi_sim/gmi_sim.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/gmi_sim/gmi_sim.cc -------------------------------------------------------------------------------- /gmi_sim/gmi_sim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/gmi_sim/gmi_sim.h -------------------------------------------------------------------------------- /gmi_sim/gmi_simConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/gmi_sim/gmi_simConfig.cmake.in -------------------------------------------------------------------------------- /gmi_sim/gmi_sim_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/gmi_sim/gmi_sim_config.h.in -------------------------------------------------------------------------------- /gmi_sim/libgmi_sim.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/gmi_sim/libgmi_sim.pc.in -------------------------------------------------------------------------------- /gmi_sim/pkg_tribits.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/gmi_sim/pkg_tribits.cmake -------------------------------------------------------------------------------- /latex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/latex.sh -------------------------------------------------------------------------------- /lion/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/lion/CMakeLists.txt -------------------------------------------------------------------------------- /lion/cmake/Dependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/lion/cmake/Dependencies.cmake -------------------------------------------------------------------------------- /lion/lionBase64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/lion/lionBase64.cc -------------------------------------------------------------------------------- /lion/lionBase64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/lion/lionBase64.h -------------------------------------------------------------------------------- /lion/lionCompress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/lion/lionCompress.h -------------------------------------------------------------------------------- /lion/lionNoZLib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/lion/lionNoZLib.cc -------------------------------------------------------------------------------- /lion/lionPrint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/lion/lionPrint.c -------------------------------------------------------------------------------- /lion/lionPrint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/lion/lionPrint.h -------------------------------------------------------------------------------- /lion/lionZLib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/lion/lionZLib.cc -------------------------------------------------------------------------------- /lion/pkg_tribits.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/lion/pkg_tribits.cmake -------------------------------------------------------------------------------- /ma/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/CMakeLists.txt -------------------------------------------------------------------------------- /ma/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/LICENSE -------------------------------------------------------------------------------- /ma/adapt.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/adapt.tex -------------------------------------------------------------------------------- /ma/adapt2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/adapt2.tex -------------------------------------------------------------------------------- /ma/cmake/Dependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/cmake/Dependencies.cmake -------------------------------------------------------------------------------- /ma/layer.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/layer.tex -------------------------------------------------------------------------------- /ma/layer_blend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/layer_blend.png -------------------------------------------------------------------------------- /ma/layer_step.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/layer_step.png -------------------------------------------------------------------------------- /ma/ma.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/ma.cc -------------------------------------------------------------------------------- /ma/ma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/ma.h -------------------------------------------------------------------------------- /ma/maAdapt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maAdapt.cc -------------------------------------------------------------------------------- /ma/maAdapt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maAdapt.h -------------------------------------------------------------------------------- /ma/maAffine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maAffine.h -------------------------------------------------------------------------------- /ma/maBalance.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maBalance.cc -------------------------------------------------------------------------------- /ma/maBalance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maBalance.h -------------------------------------------------------------------------------- /ma/maCoarsen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maCoarsen.cc -------------------------------------------------------------------------------- /ma/maCoarsen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maCoarsen.h -------------------------------------------------------------------------------- /ma/maCollapse.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maCollapse.cc -------------------------------------------------------------------------------- /ma/maCollapse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maCollapse.h -------------------------------------------------------------------------------- /ma/maCrawler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maCrawler.cc -------------------------------------------------------------------------------- /ma/maCrawler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maCrawler.h -------------------------------------------------------------------------------- /ma/maDBG.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maDBG.cc -------------------------------------------------------------------------------- /ma/maDBG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maDBG.h -------------------------------------------------------------------------------- /ma/maDoubleSplitCollapse.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maDoubleSplitCollapse.cc -------------------------------------------------------------------------------- /ma/maDoubleSplitCollapse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maDoubleSplitCollapse.h -------------------------------------------------------------------------------- /ma/maEdgeSwap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maEdgeSwap.cc -------------------------------------------------------------------------------- /ma/maEdgeSwap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maEdgeSwap.h -------------------------------------------------------------------------------- /ma/maExtrude.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maExtrude.cc -------------------------------------------------------------------------------- /ma/maExtrude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maExtrude.h -------------------------------------------------------------------------------- /ma/maFaceSplit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maFaceSplit.cc -------------------------------------------------------------------------------- /ma/maFaceSplit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maFaceSplit.h -------------------------------------------------------------------------------- /ma/maFaceSplitCollapse.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maFaceSplitCollapse.cc -------------------------------------------------------------------------------- /ma/maFaceSplitCollapse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maFaceSplitCollapse.h -------------------------------------------------------------------------------- /ma/maInput.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maInput.cc -------------------------------------------------------------------------------- /ma/maInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maInput.h -------------------------------------------------------------------------------- /ma/maLayer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maLayer.cc -------------------------------------------------------------------------------- /ma/maLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maLayer.h -------------------------------------------------------------------------------- /ma/maLayerCoarsen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maLayerCoarsen.cc -------------------------------------------------------------------------------- /ma/maLayerCollapse.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maLayerCollapse.cc -------------------------------------------------------------------------------- /ma/maLayerCollapse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maLayerCollapse.h -------------------------------------------------------------------------------- /ma/maLayerRefine.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maLayerRefine.cc -------------------------------------------------------------------------------- /ma/maLayerSnap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maLayerSnap.cc -------------------------------------------------------------------------------- /ma/maLayerTables.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maLayerTables.cc -------------------------------------------------------------------------------- /ma/maLayerTemplates.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maLayerTemplates.cc -------------------------------------------------------------------------------- /ma/maMap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maMap.cc -------------------------------------------------------------------------------- /ma/maMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maMap.h -------------------------------------------------------------------------------- /ma/maMatch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maMatch.cc -------------------------------------------------------------------------------- /ma/maMatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maMatch.h -------------------------------------------------------------------------------- /ma/maMatchedCollapse.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maMatchedCollapse.cc -------------------------------------------------------------------------------- /ma/maMatchedCollapse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maMatchedCollapse.h -------------------------------------------------------------------------------- /ma/maMatchedSnapper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maMatchedSnapper.cc -------------------------------------------------------------------------------- /ma/maMatchedSnapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maMatchedSnapper.h -------------------------------------------------------------------------------- /ma/maMesh.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maMesh.cc -------------------------------------------------------------------------------- /ma/maMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maMesh.h -------------------------------------------------------------------------------- /ma/maOperator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maOperator.cc -------------------------------------------------------------------------------- /ma/maOperator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maOperator.h -------------------------------------------------------------------------------- /ma/maQuality.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maQuality.cc -------------------------------------------------------------------------------- /ma/maRefine.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maRefine.cc -------------------------------------------------------------------------------- /ma/maRefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maRefine.h -------------------------------------------------------------------------------- /ma/maRegionCollapse.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maRegionCollapse.cc -------------------------------------------------------------------------------- /ma/maRegionCollapse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maRegionCollapse.h -------------------------------------------------------------------------------- /ma/maReposition.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maReposition.cc -------------------------------------------------------------------------------- /ma/maReposition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maReposition.h -------------------------------------------------------------------------------- /ma/maShape.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maShape.cc -------------------------------------------------------------------------------- /ma/maShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maShape.h -------------------------------------------------------------------------------- /ma/maShapeHandler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maShapeHandler.cc -------------------------------------------------------------------------------- /ma/maShapeHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maShapeHandler.h -------------------------------------------------------------------------------- /ma/maShortEdgeRemover.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maShortEdgeRemover.cc -------------------------------------------------------------------------------- /ma/maShortEdgeRemover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maShortEdgeRemover.h -------------------------------------------------------------------------------- /ma/maSingleSplitCollapse.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maSingleSplitCollapse.cc -------------------------------------------------------------------------------- /ma/maSingleSplitCollapse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maSingleSplitCollapse.h -------------------------------------------------------------------------------- /ma/maSize.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maSize.cc -------------------------------------------------------------------------------- /ma/maSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maSize.h -------------------------------------------------------------------------------- /ma/maSnap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maSnap.cc -------------------------------------------------------------------------------- /ma/maSnap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maSnap.h -------------------------------------------------------------------------------- /ma/maSnapper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maSnapper.cc -------------------------------------------------------------------------------- /ma/maSnapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maSnapper.h -------------------------------------------------------------------------------- /ma/maSolutionTransfer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maSolutionTransfer.cc -------------------------------------------------------------------------------- /ma/maSolutionTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maSolutionTransfer.h -------------------------------------------------------------------------------- /ma/maSolutionTransferHelper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maSolutionTransferHelper.cc -------------------------------------------------------------------------------- /ma/maSolutionTransferHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maSolutionTransferHelper.h -------------------------------------------------------------------------------- /ma/maSplits.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maSplits.cc -------------------------------------------------------------------------------- /ma/maSplits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maSplits.h -------------------------------------------------------------------------------- /ma/maStats.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maStats.cc -------------------------------------------------------------------------------- /ma/maStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maStats.h -------------------------------------------------------------------------------- /ma/maTables.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maTables.cc -------------------------------------------------------------------------------- /ma/maTables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maTables.h -------------------------------------------------------------------------------- /ma/maTemplates.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maTemplates.cc -------------------------------------------------------------------------------- /ma/maTemplates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maTemplates.h -------------------------------------------------------------------------------- /ma/maTetrahedronize.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maTetrahedronize.cc -------------------------------------------------------------------------------- /ma/maTetrahedronize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maTetrahedronize.h -------------------------------------------------------------------------------- /ma/maVertRemover.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maVertRemover.cc -------------------------------------------------------------------------------- /ma/maVertRemover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/maVertRemover.h -------------------------------------------------------------------------------- /ma/new.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/new.tex -------------------------------------------------------------------------------- /ma/pkg_tribits.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/pkg_tribits.cmake -------------------------------------------------------------------------------- /ma/prismCodeMatch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/prismCodeMatch.cc -------------------------------------------------------------------------------- /ma/prism_uniform_refine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/prism_uniform_refine.png -------------------------------------------------------------------------------- /ma/pyramidCodeMatch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/pyramidCodeMatch.cc -------------------------------------------------------------------------------- /ma/pyramid_codes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/pyramid_codes.pdf -------------------------------------------------------------------------------- /ma/pyramid_templates.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/pyramid_templates.pdf -------------------------------------------------------------------------------- /ma/rotateOct.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/rotateOct.cc -------------------------------------------------------------------------------- /ma/sliverCodeMatch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/sliverCodeMatch.cc -------------------------------------------------------------------------------- /ma/templates.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/templates.pdf -------------------------------------------------------------------------------- /ma/tetCodeMatch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/tetCodeMatch.cc -------------------------------------------------------------------------------- /ma/tet_boundary_refine.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/tet_boundary_refine.tex -------------------------------------------------------------------------------- /ma/tet_uniform_refine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/tet_uniform_refine.png -------------------------------------------------------------------------------- /ma/thick_adapt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ma/thick_adapt.png -------------------------------------------------------------------------------- /mds/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/mds/CMakeLists.txt -------------------------------------------------------------------------------- /mds/apfBox.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/mds/apfBox.cc -------------------------------------------------------------------------------- /mds/apfBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/mds/apfBox.h -------------------------------------------------------------------------------- /mds/apfMDS.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/mds/apfMDS.cc -------------------------------------------------------------------------------- /mds/apfMDS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/mds/apfMDS.h -------------------------------------------------------------------------------- /mds/apfPM.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/mds/apfPM.cc -------------------------------------------------------------------------------- /mds/apfPM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/mds/apfPM.h -------------------------------------------------------------------------------- /mds/cmake/Dependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/mds/cmake/Dependencies.cmake -------------------------------------------------------------------------------- /mds/cmake/cmake/Dependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/mds/cmake/cmake/Dependencies.cmake -------------------------------------------------------------------------------- /mds/mds.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/mds/mds.bib -------------------------------------------------------------------------------- /mds/mds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/mds/mds.c -------------------------------------------------------------------------------- /mds/mds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/mds/mds.h -------------------------------------------------------------------------------- /mds/mds.mp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/mds/mds.mp -------------------------------------------------------------------------------- /mds/mds.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/mds/mds.tex -------------------------------------------------------------------------------- /mds/mdsANSYS.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/mds/mdsANSYS.cc -------------------------------------------------------------------------------- /mds/mdsCGNS.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/mds/mdsCGNS.cc -------------------------------------------------------------------------------- /mds/mdsGmsh.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/mds/mdsGmsh.cc -------------------------------------------------------------------------------- /mds/mdsUgrid.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/mds/mdsUgrid.cc -------------------------------------------------------------------------------- /mds/mds_apf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/mds/mds_apf.c -------------------------------------------------------------------------------- /mds/mds_apf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/mds/mds_apf.h -------------------------------------------------------------------------------- /mds/mds_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/mds/mds_config.h.in -------------------------------------------------------------------------------- /mds/mds_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/mds/mds_net.c -------------------------------------------------------------------------------- /mds/mds_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/mds/mds_net.h -------------------------------------------------------------------------------- /mds/mds_order.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/mds/mds_order.c -------------------------------------------------------------------------------- /mds/mds_smb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/mds/mds_smb.c -------------------------------------------------------------------------------- /mds/mds_tag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/mds/mds_tag.c -------------------------------------------------------------------------------- /mds/mds_tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/mds/mds_tag.h -------------------------------------------------------------------------------- /mds/pkg_tribits.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/mds/pkg_tribits.cmake -------------------------------------------------------------------------------- /mds/region_edges.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/mds/region_edges.jpg -------------------------------------------------------------------------------- /mds/region_faces.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/mds/region_faces.jpg -------------------------------------------------------------------------------- /metis/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/metis/CMakeLists.txt -------------------------------------------------------------------------------- /metis/apfMETIS.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/metis/apfMETIS.cc -------------------------------------------------------------------------------- /metis/apfMETIS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/metis/apfMETIS.h -------------------------------------------------------------------------------- /metis/apfMETISbalancer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/metis/apfMETISbalancer.cc -------------------------------------------------------------------------------- /metis/apfMETISbalancer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/metis/apfMETISbalancer.h -------------------------------------------------------------------------------- /metis/apfMETIScommon.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/metis/apfMETIScommon.cc -------------------------------------------------------------------------------- /metis/apfMETIScommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/metis/apfMETIScommon.h -------------------------------------------------------------------------------- /metis/apfMETISempty.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/metis/apfMETISempty.cc -------------------------------------------------------------------------------- /metis/apfMETISsplitter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/metis/apfMETISsplitter.cc -------------------------------------------------------------------------------- /metis/apfMETISsplitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/metis/apfMETISsplitter.h -------------------------------------------------------------------------------- /metis/metis.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/metis/metis.dox -------------------------------------------------------------------------------- /mpich3-gcc4.9.2-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/mpich3-gcc4.9.2-config.sh -------------------------------------------------------------------------------- /mth/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/mth/CMakeLists.txt -------------------------------------------------------------------------------- /mth/mth.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/mth/mth.dox -------------------------------------------------------------------------------- /mth/mth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/mth/mth.h -------------------------------------------------------------------------------- /mth/mthAD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/mth/mthAD.h -------------------------------------------------------------------------------- /mth/mthMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/mth/mthMatrix.h -------------------------------------------------------------------------------- /mth/mthQR.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/mth/mthQR.cc -------------------------------------------------------------------------------- /mth/mthQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/mth/mthQR.h -------------------------------------------------------------------------------- /mth/mthTensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/mth/mthTensor.h -------------------------------------------------------------------------------- /mth/mthVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/mth/mthVector.h -------------------------------------------------------------------------------- /mth/mth_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/mth/mth_def.h -------------------------------------------------------------------------------- /omega_h/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/omega_h/CMakeLists.txt -------------------------------------------------------------------------------- /omega_h/apfOmega_h.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/omega_h/apfOmega_h.cc -------------------------------------------------------------------------------- /omega_h/apfOmega_h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/omega_h/apfOmega_h.h -------------------------------------------------------------------------------- /parma/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/CMakeLists.txt -------------------------------------------------------------------------------- /parma/cmake/Dependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/cmake/Dependencies.cmake -------------------------------------------------------------------------------- /parma/diffMC/.clang_complete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/.clang_complete -------------------------------------------------------------------------------- /parma/diffMC/maximalIndependentSet/mersenne_twister.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/maximalIndependentSet/mersenne_twister.cc -------------------------------------------------------------------------------- /parma/diffMC/maximalIndependentSet/mersenne_twister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/maximalIndependentSet/mersenne_twister.h -------------------------------------------------------------------------------- /parma/diffMC/maximalIndependentSet/mis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/maximalIndependentSet/mis.h -------------------------------------------------------------------------------- /parma/diffMC/maximalIndependentSet/misLuby.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/maximalIndependentSet/misLuby.cc -------------------------------------------------------------------------------- /parma/diffMC/maximalIndependentSet/mis_version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/maximalIndependentSet/mis_version.h.in -------------------------------------------------------------------------------- /parma/diffMC/maximalIndependentSet/test/testMIS.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/maximalIndependentSet/test/testMIS.cc -------------------------------------------------------------------------------- /parma/diffMC/maximalIndependentSet/test/testMis.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/maximalIndependentSet/test/testMis.supp -------------------------------------------------------------------------------- /parma/diffMC/parma_associative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_associative.h -------------------------------------------------------------------------------- /parma/diffMC/parma_balancer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_balancer.cc -------------------------------------------------------------------------------- /parma/diffMC/parma_balancer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_balancer.h -------------------------------------------------------------------------------- /parma/diffMC/parma_bdryVtx.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_bdryVtx.cc -------------------------------------------------------------------------------- /parma/diffMC/parma_bdryVtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_bdryVtx.h -------------------------------------------------------------------------------- /parma/diffMC/parma_centroidDiffuser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_centroidDiffuser.cc -------------------------------------------------------------------------------- /parma/diffMC/parma_centroidSelector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_centroidSelector.cc -------------------------------------------------------------------------------- /parma/diffMC/parma_centroids.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_centroids.cc -------------------------------------------------------------------------------- /parma/diffMC/parma_centroids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_centroids.h -------------------------------------------------------------------------------- /parma/diffMC/parma_commons.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_commons.cc -------------------------------------------------------------------------------- /parma/diffMC/parma_commons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_commons.h -------------------------------------------------------------------------------- /parma/diffMC/parma_components.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_components.cc -------------------------------------------------------------------------------- /parma/diffMC/parma_components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_components.h -------------------------------------------------------------------------------- /parma/diffMC/parma_convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_convert.h -------------------------------------------------------------------------------- /parma/diffMC/parma_dcpart.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_dcpart.cc -------------------------------------------------------------------------------- /parma/diffMC/parma_dcpart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_dcpart.h -------------------------------------------------------------------------------- /parma/diffMC/parma_dcpartFixer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_dcpartFixer.cc -------------------------------------------------------------------------------- /parma/diffMC/parma_dijkstra.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_dijkstra.cc -------------------------------------------------------------------------------- /parma/diffMC/parma_dijkstra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_dijkstra.h -------------------------------------------------------------------------------- /parma/diffMC/parma_distQ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_distQ.h -------------------------------------------------------------------------------- /parma/diffMC/parma_edgeEqVtxSelector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_edgeEqVtxSelector.cc -------------------------------------------------------------------------------- /parma/diffMC/parma_elmBalancer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_elmBalancer.cc -------------------------------------------------------------------------------- /parma/diffMC/parma_elmBdrySides.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_elmBdrySides.cc -------------------------------------------------------------------------------- /parma/diffMC/parma_elmLtVtxEdgeBalancer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_elmLtVtxEdgeBalancer.cc -------------------------------------------------------------------------------- /parma/diffMC/parma_elmLtVtxEdgeSelector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_elmLtVtxEdgeSelector.cc -------------------------------------------------------------------------------- /parma/diffMC/parma_elmLtVtxEdgeTargets.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_elmLtVtxEdgeTargets.cc -------------------------------------------------------------------------------- /parma/diffMC/parma_elmSelector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_elmSelector.cc -------------------------------------------------------------------------------- /parma/diffMC/parma_elmSideSides.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_elmSideSides.cc -------------------------------------------------------------------------------- /parma/diffMC/parma_entWeights.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_entWeights.cc -------------------------------------------------------------------------------- /parma/diffMC/parma_entWeights.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_entWeights.h -------------------------------------------------------------------------------- /parma/diffMC/parma_ghost.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_ghost.cc -------------------------------------------------------------------------------- /parma/diffMC/parma_ghostElement.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_ghostElement.cc -------------------------------------------------------------------------------- /parma/diffMC/parma_ghostMPAS.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_ghostMPAS.cc -------------------------------------------------------------------------------- /parma/diffMC/parma_ghostMPASWeights.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_ghostMPASWeights.cc -------------------------------------------------------------------------------- /parma/diffMC/parma_ghostOwner.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_ghostOwner.cc -------------------------------------------------------------------------------- /parma/diffMC/parma_ghostOwner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_ghostOwner.h -------------------------------------------------------------------------------- /parma/diffMC/parma_ghostWeights.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_ghostWeights.cc -------------------------------------------------------------------------------- /parma/diffMC/parma_graphDist.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_graphDist.cc -------------------------------------------------------------------------------- /parma/diffMC/parma_graphDist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_graphDist.h -------------------------------------------------------------------------------- /parma/diffMC/parma_ltSelector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_ltSelector.cc -------------------------------------------------------------------------------- /parma/diffMC/parma_meshaux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_meshaux.h -------------------------------------------------------------------------------- /parma/diffMC/parma_monitor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_monitor.cc -------------------------------------------------------------------------------- /parma/diffMC/parma_monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_monitor.h -------------------------------------------------------------------------------- /parma/diffMC/parma_preserveTargets.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_preserveTargets.cc -------------------------------------------------------------------------------- /parma/diffMC/parma_selector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_selector.h -------------------------------------------------------------------------------- /parma/diffMC/parma_shapeOptimizer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_shapeOptimizer.cc -------------------------------------------------------------------------------- /parma/diffMC/parma_shapeSelector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_shapeSelector.cc -------------------------------------------------------------------------------- /parma/diffMC/parma_shapeTargets.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_shapeTargets.cc -------------------------------------------------------------------------------- /parma/diffMC/parma_sides.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_sides.cc -------------------------------------------------------------------------------- /parma/diffMC/parma_sides.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_sides.h -------------------------------------------------------------------------------- /parma/diffMC/parma_step.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_step.cc -------------------------------------------------------------------------------- /parma/diffMC/parma_step.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_step.h -------------------------------------------------------------------------------- /parma/diffMC/parma_stop.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_stop.cc -------------------------------------------------------------------------------- /parma/diffMC/parma_stop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_stop.h -------------------------------------------------------------------------------- /parma/diffMC/parma_targets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_targets.h -------------------------------------------------------------------------------- /parma/diffMC/parma_vtxBalancer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_vtxBalancer.cc -------------------------------------------------------------------------------- /parma/diffMC/parma_vtxEdgeElmBalancer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_vtxEdgeElmBalancer.cc -------------------------------------------------------------------------------- /parma/diffMC/parma_vtxEdgeTargets.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_vtxEdgeTargets.cc -------------------------------------------------------------------------------- /parma/diffMC/parma_vtxElmBalancer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_vtxElmBalancer.cc -------------------------------------------------------------------------------- /parma/diffMC/parma_vtxPtnWriter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_vtxPtnWriter.cc -------------------------------------------------------------------------------- /parma/diffMC/parma_vtxSelector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_vtxSelector.cc -------------------------------------------------------------------------------- /parma/diffMC/parma_vtxSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_vtxSelector.h -------------------------------------------------------------------------------- /parma/diffMC/parma_vtxSides.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_vtxSides.cc -------------------------------------------------------------------------------- /parma/diffMC/parma_weightSideTargets.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_weightSideTargets.cc -------------------------------------------------------------------------------- /parma/diffMC/parma_weightTargets.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_weightTargets.cc -------------------------------------------------------------------------------- /parma/diffMC/parma_weights.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/parma_weights.h -------------------------------------------------------------------------------- /parma/diffMC/plotHist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/plotHist.sh -------------------------------------------------------------------------------- /parma/diffMC/zeroOneKnapsack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/zeroOneKnapsack.c -------------------------------------------------------------------------------- /parma/diffMC/zeroOneKnapsack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/zeroOneKnapsack.h -------------------------------------------------------------------------------- /parma/diffMC/zeroOneKnapsackTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/diffMC/zeroOneKnapsackTest.c -------------------------------------------------------------------------------- /parma/extractParmaResults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/extractParmaResults.py -------------------------------------------------------------------------------- /parma/group/parma_group.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/group/parma_group.cc -------------------------------------------------------------------------------- /parma/parma.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/parma.cc -------------------------------------------------------------------------------- /parma/parma.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/parma.dox -------------------------------------------------------------------------------- /parma/parma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/parma.h -------------------------------------------------------------------------------- /parma/pkg_tribits.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/pkg_tribits.cmake -------------------------------------------------------------------------------- /parma/rib/parma_mesh_rib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/rib/parma_mesh_rib.cc -------------------------------------------------------------------------------- /parma/rib/parma_rib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/rib/parma_rib.cc -------------------------------------------------------------------------------- /parma/rib/parma_rib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/parma/rib/parma_rib.h -------------------------------------------------------------------------------- /pcu/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pcu/CMakeLists.txt -------------------------------------------------------------------------------- /pcu/PCU.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pcu/PCU.cc -------------------------------------------------------------------------------- /pcu/PCU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pcu/PCU.h -------------------------------------------------------------------------------- /pcu/PCU_C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pcu/PCU_C.h -------------------------------------------------------------------------------- /pcu/cmake/Dependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pcu/cmake/Dependencies.cmake -------------------------------------------------------------------------------- /pcu/noto/noto_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pcu/noto/noto_malloc.c -------------------------------------------------------------------------------- /pcu/noto/noto_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pcu/noto/noto_malloc.h -------------------------------------------------------------------------------- /pcu/pcu.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pcu/pcu.dox -------------------------------------------------------------------------------- /pcu/pcu_aa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pcu/pcu_aa.c -------------------------------------------------------------------------------- /pcu/pcu_aa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pcu/pcu_aa.h -------------------------------------------------------------------------------- /pcu/pcu_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pcu/pcu_buffer.c -------------------------------------------------------------------------------- /pcu/pcu_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pcu/pcu_buffer.h -------------------------------------------------------------------------------- /pcu/pcu_byteorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pcu/pcu_byteorder.h -------------------------------------------------------------------------------- /pcu/pcu_c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pcu/pcu_c.cc -------------------------------------------------------------------------------- /pcu/pcu_coll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pcu/pcu_coll.c -------------------------------------------------------------------------------- /pcu/pcu_coll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pcu/pcu_coll.h -------------------------------------------------------------------------------- /pcu/pcu_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pcu/pcu_defines.h -------------------------------------------------------------------------------- /pcu/pcu_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pcu/pcu_io.c -------------------------------------------------------------------------------- /pcu/pcu_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pcu/pcu_io.h -------------------------------------------------------------------------------- /pcu/pcu_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pcu/pcu_mem.c -------------------------------------------------------------------------------- /pcu/pcu_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pcu/pcu_mem.h -------------------------------------------------------------------------------- /pcu/pcu_mpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pcu/pcu_mpi.c -------------------------------------------------------------------------------- /pcu/pcu_mpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pcu/pcu_mpi.h -------------------------------------------------------------------------------- /pcu/pcu_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pcu/pcu_msg.c -------------------------------------------------------------------------------- /pcu/pcu_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pcu/pcu_msg.h -------------------------------------------------------------------------------- /pcu/pcu_order.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pcu/pcu_order.c -------------------------------------------------------------------------------- /pcu/pcu_order.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pcu/pcu_order.h -------------------------------------------------------------------------------- /pcu/pcu_pmpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pcu/pcu_pmpi.c -------------------------------------------------------------------------------- /pcu/pcu_pmpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pcu/pcu_pmpi.h -------------------------------------------------------------------------------- /pcu/pcu_pnompi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pcu/pcu_pnompi.c -------------------------------------------------------------------------------- /pcu/pcu_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pcu/pcu_util.c -------------------------------------------------------------------------------- /pcu/pcu_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pcu/pcu_util.h -------------------------------------------------------------------------------- /pcu/pkg_tribits.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pcu/pkg_tribits.cmake -------------------------------------------------------------------------------- /pcu/reel/reel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pcu/reel/reel.c -------------------------------------------------------------------------------- /pcu/reel/reel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pcu/reel/reel.h -------------------------------------------------------------------------------- /phasta/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/CMakeLists.txt -------------------------------------------------------------------------------- /phasta/adaptLvlSet_loop.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/adaptLvlSet_loop.cc -------------------------------------------------------------------------------- /phasta/chef.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/chef.cc -------------------------------------------------------------------------------- /phasta/chef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/chef.h -------------------------------------------------------------------------------- /phasta/chefStream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/chefStream.cc -------------------------------------------------------------------------------- /phasta/condense.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/condense.cc -------------------------------------------------------------------------------- /phasta/cut_interface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/cut_interface.cc -------------------------------------------------------------------------------- /phasta/libph.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/libph.pc.in -------------------------------------------------------------------------------- /phasta/migrate_interface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/migrate_interface.cc -------------------------------------------------------------------------------- /phasta/ph.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/ph.cc -------------------------------------------------------------------------------- /phasta/ph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/ph.h -------------------------------------------------------------------------------- /phasta/phAdapt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/phAdapt.cc -------------------------------------------------------------------------------- /phasta/phAdapt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/phAdapt.h -------------------------------------------------------------------------------- /phasta/phAdjacent.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/phAdjacent.cc -------------------------------------------------------------------------------- /phasta/phAdjacent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/phAdjacent.h -------------------------------------------------------------------------------- /phasta/phAttrib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/phAttrib.cc -------------------------------------------------------------------------------- /phasta/phAttrib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/phAttrib.h -------------------------------------------------------------------------------- /phasta/phAxisymmetry.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/phAxisymmetry.cc -------------------------------------------------------------------------------- /phasta/phAxisymmetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/phAxisymmetry.h -------------------------------------------------------------------------------- /phasta/phBC.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/phBC.cc -------------------------------------------------------------------------------- /phasta/phBC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/phBC.h -------------------------------------------------------------------------------- /phasta/phBlock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/phBlock.cc -------------------------------------------------------------------------------- /phasta/phBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/phBlock.h -------------------------------------------------------------------------------- /phasta/phBubble.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/phBubble.cc -------------------------------------------------------------------------------- /phasta/phBubble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/phBubble.h -------------------------------------------------------------------------------- /phasta/phConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/phConfig.cmake.in -------------------------------------------------------------------------------- /phasta/phConstraint.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/phConstraint.cc -------------------------------------------------------------------------------- /phasta/phCook.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/phCook.cc -------------------------------------------------------------------------------- /phasta/phFilterMatching.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/phFilterMatching.cc -------------------------------------------------------------------------------- /phasta/phFilterMatching.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/phFilterMatching.h -------------------------------------------------------------------------------- /phasta/phGeomBC.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/phGeomBC.cc -------------------------------------------------------------------------------- /phasta/phGrowthCurves.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/phGrowthCurves.cc -------------------------------------------------------------------------------- /phasta/phGrowthCurves.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/phGrowthCurves.h -------------------------------------------------------------------------------- /phasta/phGrowthCurves_empty.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/phGrowthCurves_empty.cc -------------------------------------------------------------------------------- /phasta/phIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/phIO.c -------------------------------------------------------------------------------- /phasta/phIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/phIO.h -------------------------------------------------------------------------------- /phasta/phInput.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/phInput.cc -------------------------------------------------------------------------------- /phasta/phInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/phInput.h -------------------------------------------------------------------------------- /phasta/phInterfaceCutter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/phInterfaceCutter.cc -------------------------------------------------------------------------------- /phasta/phInterfaceCutter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/phInterfaceCutter.h -------------------------------------------------------------------------------- /phasta/phLinks.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/phLinks.cc -------------------------------------------------------------------------------- /phasta/phLinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/phLinks.h -------------------------------------------------------------------------------- /phasta/phMeshQuality.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/phMeshQuality.cc -------------------------------------------------------------------------------- /phasta/phModelGeometry.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/phModelGeometry.cc -------------------------------------------------------------------------------- /phasta/phModelGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/phModelGeometry.h -------------------------------------------------------------------------------- /phasta/phOutput.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/phOutput.cc -------------------------------------------------------------------------------- /phasta/phOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/phOutput.h -------------------------------------------------------------------------------- /phasta/phPartition.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/phPartition.cc -------------------------------------------------------------------------------- /phasta/phPartition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/phPartition.h -------------------------------------------------------------------------------- /phasta/phRestart.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/phRestart.cc -------------------------------------------------------------------------------- /phasta/phRestart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/phRestart.h -------------------------------------------------------------------------------- /phasta/phRigidBody.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/phRigidBody.cc -------------------------------------------------------------------------------- /phasta/phSnap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/phSnap.cc -------------------------------------------------------------------------------- /phasta/ph_convert.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/ph_convert.cc -------------------------------------------------------------------------------- /phasta/phasta.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/phasta.dox -------------------------------------------------------------------------------- /phasta/phastaChef.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/phastaChef.f -------------------------------------------------------------------------------- /phasta/phastaChef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/phastaChef.h -------------------------------------------------------------------------------- /phasta/phiotimer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/phiotimer.cc -------------------------------------------------------------------------------- /phasta/phiotimer.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/phiotimer.f -------------------------------------------------------------------------------- /phasta/phiotimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/phiotimer.h -------------------------------------------------------------------------------- /phasta/phstream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/phstream.cc -------------------------------------------------------------------------------- /phasta/phstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/phstream.h -------------------------------------------------------------------------------- /phasta/readUrPrep.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/readUrPrep.cc -------------------------------------------------------------------------------- /phasta/splitMeshOnGFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/splitMeshOnGFace.h -------------------------------------------------------------------------------- /phasta/splitMeshOnGFace_2arg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/splitMeshOnGFace_2arg.cpp -------------------------------------------------------------------------------- /phasta/splitMeshOnGFace_4arg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/splitMeshOnGFace_4arg.cpp -------------------------------------------------------------------------------- /phasta/threshold.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/phasta/threshold.cc -------------------------------------------------------------------------------- /pkg_tribits.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pkg_tribits.cmake -------------------------------------------------------------------------------- /proteusconfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/proteusconfig.sh -------------------------------------------------------------------------------- /proteushash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/proteushash.py -------------------------------------------------------------------------------- /pumi/.gitignore: -------------------------------------------------------------------------------- 1 | pumi_version.h 2 | -------------------------------------------------------------------------------- /pumi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pumi/CMakeLists.txt -------------------------------------------------------------------------------- /pumi/GenIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pumi/GenIterator.h -------------------------------------------------------------------------------- /pumi/GenTag.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pumi/GenTag.cc -------------------------------------------------------------------------------- /pumi/GenTag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pumi/GenTag.h -------------------------------------------------------------------------------- /pumi/cmake/Dependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pumi/cmake/Dependencies.cmake -------------------------------------------------------------------------------- /pumi/mPartEntityContainer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pumi/mPartEntityContainer.cc -------------------------------------------------------------------------------- /pumi/mPartEntityContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pumi/mPartEntityContainer.h -------------------------------------------------------------------------------- /pumi/pkg_tribits.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pumi/pkg_tribits.cmake -------------------------------------------------------------------------------- /pumi/pumi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pumi/pumi.h -------------------------------------------------------------------------------- /pumi/pumiConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pumi/pumiConfig.cmake.in -------------------------------------------------------------------------------- /pumi/pumi_errorcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pumi/pumi_errorcode.h -------------------------------------------------------------------------------- /pumi/pumi_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pumi/pumi_field.cc -------------------------------------------------------------------------------- /pumi/pumi_gentity.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pumi/pumi_gentity.cc -------------------------------------------------------------------------------- /pumi/pumi_geom.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pumi/pumi_geom.cc -------------------------------------------------------------------------------- /pumi/pumi_ghost.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pumi/pumi_ghost.cc -------------------------------------------------------------------------------- /pumi/pumi_gtag.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pumi/pumi_gtag.cc -------------------------------------------------------------------------------- /pumi/pumi_iter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pumi/pumi_iter.h -------------------------------------------------------------------------------- /pumi/pumi_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pumi/pumi_list.h -------------------------------------------------------------------------------- /pumi/pumi_mentity.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pumi/pumi_mentity.cc -------------------------------------------------------------------------------- /pumi/pumi_mesh.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pumi/pumi_mesh.cc -------------------------------------------------------------------------------- /pumi/pumi_mtag.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pumi/pumi_mtag.cc -------------------------------------------------------------------------------- /pumi/pumi_numbering.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pumi/pumi_numbering.cc -------------------------------------------------------------------------------- /pumi/pumi_sys.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pumi/pumi_sys.cc -------------------------------------------------------------------------------- /pumi/pumi_version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/pumi/pumi_version.h.in -------------------------------------------------------------------------------- /python_wrappers/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/python_wrappers/CMakeLists.txt -------------------------------------------------------------------------------- /python_wrappers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/python_wrappers/README.md -------------------------------------------------------------------------------- /python_wrappers/apf.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/python_wrappers/apf.i -------------------------------------------------------------------------------- /python_wrappers/input/cube.dmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/python_wrappers/input/cube.dmg -------------------------------------------------------------------------------- /python_wrappers/input/cube0.smb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/python_wrappers/input/cube0.smb -------------------------------------------------------------------------------- /python_wrappers/input/sphere.smd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/python_wrappers/input/sphere.smd -------------------------------------------------------------------------------- /python_wrappers/input/sphere.x_t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/python_wrappers/input/sphere.x_t -------------------------------------------------------------------------------- /python_wrappers/input/sphere0.smb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/python_wrappers/input/sphere0.smb -------------------------------------------------------------------------------- /python_wrappers/sim_helper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/python_wrappers/sim_helper.cc -------------------------------------------------------------------------------- /python_wrappers/sim_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/python_wrappers/sim_helper.h -------------------------------------------------------------------------------- /python_wrappers/test_pyCore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/python_wrappers/test_pyCore.py -------------------------------------------------------------------------------- /python_wrappers/test_pyCore_with_simx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/python_wrappers/test_pyCore_with_simx.py -------------------------------------------------------------------------------- /ree/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ree/CMakeLists.txt -------------------------------------------------------------------------------- /ree/cmake/Dependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ree/cmake/Dependencies.cmake -------------------------------------------------------------------------------- /ree/pkg_tribits.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ree/pkg_tribits.cmake -------------------------------------------------------------------------------- /ree/ree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ree/ree.h -------------------------------------------------------------------------------- /ree/reeCorrectedFlux.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ree/reeCorrectedFlux.cc -------------------------------------------------------------------------------- /ree/reeEstimateError.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ree/reeEstimateError.cc -------------------------------------------------------------------------------- /ree/reeFluxCorrection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ree/reeFluxCorrection.cc -------------------------------------------------------------------------------- /ree/reeResidualFunctionals.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ree/reeResidualFunctionals.cc -------------------------------------------------------------------------------- /ree/reeSizeField.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/ree/reeSizeField.cc -------------------------------------------------------------------------------- /sam/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/sam/CMakeLists.txt -------------------------------------------------------------------------------- /sam/sam.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/sam/sam.cc -------------------------------------------------------------------------------- /sam/sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/sam/sam.h -------------------------------------------------------------------------------- /sam/samElementCount.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/sam/samElementCount.cc -------------------------------------------------------------------------------- /sam/samElementCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/sam/samElementCount.h -------------------------------------------------------------------------------- /sam/samSz.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/sam/samSz.cc -------------------------------------------------------------------------------- /sam/samSz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/sam/samSz.h -------------------------------------------------------------------------------- /scorec.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/scorec.dox -------------------------------------------------------------------------------- /scorec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/scorec.png -------------------------------------------------------------------------------- /scorec_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/scorec_footer.html -------------------------------------------------------------------------------- /smoke_test_meshes/pipe/pipe.dmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/smoke_test_meshes/pipe/pipe.dmg -------------------------------------------------------------------------------- /smoke_test_meshes/pipe/pipe.smd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/smoke_test_meshes/pipe/pipe.smd -------------------------------------------------------------------------------- /smoke_test_meshes/pipe/pipe.sms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/smoke_test_meshes/pipe/pipe.sms -------------------------------------------------------------------------------- /smoke_test_meshes/pipe/pipe0.smb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/smoke_test_meshes/pipe/pipe0.smb -------------------------------------------------------------------------------- /spr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/spr/CMakeLists.txt -------------------------------------------------------------------------------- /spr/cmake/Dependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/spr/cmake/Dependencies.cmake -------------------------------------------------------------------------------- /spr/pkg_tribits.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/spr/pkg_tribits.cmake -------------------------------------------------------------------------------- /spr/spr.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/spr/spr.dox -------------------------------------------------------------------------------- /spr/spr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/spr/spr.h -------------------------------------------------------------------------------- /spr/spr.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/spr/spr.tex -------------------------------------------------------------------------------- /spr/sprEstimateError.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/spr/sprEstimateError.cc -------------------------------------------------------------------------------- /spr/sprEstimateTargetError.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/spr/sprEstimateTargetError.cc -------------------------------------------------------------------------------- /spr/sprGetGradIPField.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/spr/sprGetGradIPField.cc -------------------------------------------------------------------------------- /spr/sprRecoverField.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/spr/sprRecoverField.cc -------------------------------------------------------------------------------- /stk/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/stk/CMakeLists.txt -------------------------------------------------------------------------------- /stk/apfAlbany.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/stk/apfAlbany.h -------------------------------------------------------------------------------- /stk/apfExodusOutput.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/stk/apfExodusOutput.cc -------------------------------------------------------------------------------- /stk/apfMeshSTK.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/stk/apfMeshSTK.cc -------------------------------------------------------------------------------- /stk/apfSTK.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/stk/apfSTK.cc -------------------------------------------------------------------------------- /stk/apfSTK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/stk/apfSTK.h -------------------------------------------------------------------------------- /stk/apf_stkConfig.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/stk/apf_stkConfig.h.in -------------------------------------------------------------------------------- /stk/cmake/Dependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/stk/cmake/Dependencies.cmake -------------------------------------------------------------------------------- /stk/pkg_tribits.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/stk/pkg_tribits.cmake -------------------------------------------------------------------------------- /test/1d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/1d.cc -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/H1Shapes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/H1Shapes.cc -------------------------------------------------------------------------------- /test/L2Shapes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/L2Shapes.cc -------------------------------------------------------------------------------- /test/align.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/align.cc -------------------------------------------------------------------------------- /test/aniso_adapt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/aniso_adapt.cc -------------------------------------------------------------------------------- /test/aniso_adapt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/aniso_adapt.h -------------------------------------------------------------------------------- /test/aniso_adapt_cap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/aniso_adapt_cap.cc -------------------------------------------------------------------------------- /test/aniso_adapt_sim.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/aniso_adapt_sim.cc -------------------------------------------------------------------------------- /test/aniso_ma_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/aniso_ma_test.cc -------------------------------------------------------------------------------- /test/ansys.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/ansys.cc -------------------------------------------------------------------------------- /test/applyMatrixFunc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/applyMatrixFunc.cc -------------------------------------------------------------------------------- /test/assert_timing.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/assert_timing.cc -------------------------------------------------------------------------------- /test/balance.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/balance.cc -------------------------------------------------------------------------------- /test/base64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/base64.cc -------------------------------------------------------------------------------- /test/bezierElevation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/bezierElevation.cc -------------------------------------------------------------------------------- /test/bezierMesh.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/bezierMesh.cc -------------------------------------------------------------------------------- /test/bezierMisc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/bezierMisc.cc -------------------------------------------------------------------------------- /test/bezierRefine.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/bezierRefine.cc -------------------------------------------------------------------------------- /test/bezierShapeEval.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/bezierShapeEval.cc -------------------------------------------------------------------------------- /test/bezierSubdivision.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/bezierSubdivision.cc -------------------------------------------------------------------------------- /test/bezierValidity.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/bezierValidity.cc -------------------------------------------------------------------------------- /test/box.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/box.cc -------------------------------------------------------------------------------- /test/cap2vtk.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/cap2vtk.cc -------------------------------------------------------------------------------- /test/capAdapt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/capAdapt.cc -------------------------------------------------------------------------------- /test/capCheckParam.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/capCheckParam.cc -------------------------------------------------------------------------------- /test/capGeomTest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/capGeomTest.cc -------------------------------------------------------------------------------- /test/capLoadSome.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/capLoadSome.cc -------------------------------------------------------------------------------- /test/capNativeAdapt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/capNativeAdapt.cc -------------------------------------------------------------------------------- /test/capProbe.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/capProbe.cc -------------------------------------------------------------------------------- /test/capVol.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/capVol.cc -------------------------------------------------------------------------------- /test/capVolSizeFields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/capVolSizeFields.h -------------------------------------------------------------------------------- /test/cap_closestPoint.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/cap_closestPoint.cc -------------------------------------------------------------------------------- /test/cap_inClosureOf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/cap_inClosureOf.cc -------------------------------------------------------------------------------- /test/cap_smooth.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/cap_smooth.cc -------------------------------------------------------------------------------- /test/cgns.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/cgns.cc -------------------------------------------------------------------------------- /test/classifyThenAdapt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/classifyThenAdapt.cc -------------------------------------------------------------------------------- /test/cmake/Dependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/cmake/Dependencies.cmake -------------------------------------------------------------------------------- /test/collapse.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/collapse.cc -------------------------------------------------------------------------------- /test/construct.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/construct.cc -------------------------------------------------------------------------------- /test/constructThenGhost.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/constructThenGhost.cc -------------------------------------------------------------------------------- /test/construct_bottom_up.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/construct_bottom_up.cc -------------------------------------------------------------------------------- /test/convert.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/convert.cc -------------------------------------------------------------------------------- /test/crack_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/crack_test.cc -------------------------------------------------------------------------------- /test/create_mis.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/create_mis.cc -------------------------------------------------------------------------------- /test/curve_to_bezier.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/curve_to_bezier.cc -------------------------------------------------------------------------------- /test/curvetest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/curvetest.cc -------------------------------------------------------------------------------- /test/degenerateSurfs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/degenerateSurfs.cc -------------------------------------------------------------------------------- /test/describe.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/describe.cc -------------------------------------------------------------------------------- /test/dg_ma_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/dg_ma_test.cc -------------------------------------------------------------------------------- /test/eigen_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/eigen_test.cc -------------------------------------------------------------------------------- /test/elmBalance.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/elmBalance.cc -------------------------------------------------------------------------------- /test/embedded_edges.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/embedded_edges.cc -------------------------------------------------------------------------------- /test/extrude.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/extrude.cc -------------------------------------------------------------------------------- /test/fieldReduce.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/fieldReduce.cc -------------------------------------------------------------------------------- /test/field_io.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/field_io.cc -------------------------------------------------------------------------------- /test/fixDisconnected.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/fixDisconnected.cc -------------------------------------------------------------------------------- /test/fixlayer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/fixlayer.cc -------------------------------------------------------------------------------- /test/fixshape.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/fixshape.cc -------------------------------------------------------------------------------- /test/fusion.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/fusion.cc -------------------------------------------------------------------------------- /test/fusion2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/fusion2.cc -------------------------------------------------------------------------------- /test/fusion3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/fusion3.cc -------------------------------------------------------------------------------- /test/gap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/gap.cc -------------------------------------------------------------------------------- /test/generate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/generate.cc -------------------------------------------------------------------------------- /test/ghost.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/ghost.cc -------------------------------------------------------------------------------- /test/ghostEdge.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/ghostEdge.cc -------------------------------------------------------------------------------- /test/ghostMPAS.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/ghostMPAS.cc -------------------------------------------------------------------------------- /test/gmsh.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/gmsh.cc -------------------------------------------------------------------------------- /test/graphdist.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/graphdist.cc -------------------------------------------------------------------------------- /test/hierarchic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/hierarchic.cc -------------------------------------------------------------------------------- /test/highOrderSizeFields.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/highOrderSizeFields.cc -------------------------------------------------------------------------------- /test/highOrderSolutionTransfer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/highOrderSolutionTransfer.cc -------------------------------------------------------------------------------- /test/icesheet.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/icesheet.cc -------------------------------------------------------------------------------- /test/inClosureOf_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/inClosureOf_test.cc -------------------------------------------------------------------------------- /test/integrate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/integrate.cc -------------------------------------------------------------------------------- /test/intrude.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/intrude.cc -------------------------------------------------------------------------------- /test/loadPart.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/loadPart.cc -------------------------------------------------------------------------------- /test/ma_insphere.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/ma_insphere.cc -------------------------------------------------------------------------------- /test/ma_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/ma_test.cc -------------------------------------------------------------------------------- /test/ma_test_analytic_model.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/ma_test_analytic_model.cc -------------------------------------------------------------------------------- /test/makeAllCavities.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/makeAllCavities.cc -------------------------------------------------------------------------------- /test/matchedNodeElmReader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/matchedNodeElmReader.cc -------------------------------------------------------------------------------- /test/mbalance.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/mbalance.cc -------------------------------------------------------------------------------- /test/mbalanceEmpty.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/mbalanceEmpty.cc -------------------------------------------------------------------------------- /test/mdlConvert.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/mdlConvert.cc -------------------------------------------------------------------------------- /test/measureAnisoStats.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/measureAnisoStats.cc -------------------------------------------------------------------------------- /test/measureIsoStats.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/measureIsoStats.cc -------------------------------------------------------------------------------- /test/mixedNumbering.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/mixedNumbering.cc -------------------------------------------------------------------------------- /test/mkmodel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/mkmodel.cc -------------------------------------------------------------------------------- /test/mktopomodel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/mktopomodel.cc -------------------------------------------------------------------------------- /test/modelInfo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/modelInfo.cc -------------------------------------------------------------------------------- /test/moving.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/moving.cc -------------------------------------------------------------------------------- /test/msplit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/msplit.cc -------------------------------------------------------------------------------- /test/nedelecShapes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/nedelecShapes.cc -------------------------------------------------------------------------------- /test/nektar_align.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/nektar_align.cc -------------------------------------------------------------------------------- /test/neper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/neper.cc -------------------------------------------------------------------------------- /test/newdim.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/newdim.cc -------------------------------------------------------------------------------- /test/osh2smb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/osh2smb.cc -------------------------------------------------------------------------------- /test/outputcontrol.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/outputcontrol.cc -------------------------------------------------------------------------------- /test/ph_adapt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/ph_adapt.cc -------------------------------------------------------------------------------- /test/poisson.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/poisson.cc -------------------------------------------------------------------------------- /test/print_pumipic_partition.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/print_pumipic_partition.cc -------------------------------------------------------------------------------- /test/ptnParma.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/ptnParma.cc -------------------------------------------------------------------------------- /test/pumi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/pumi.cc -------------------------------------------------------------------------------- /test/pumiLoadMesh.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/pumiLoadMesh.cc -------------------------------------------------------------------------------- /test/qr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/qr.cc -------------------------------------------------------------------------------- /test/quality.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/quality.cc -------------------------------------------------------------------------------- /test/refine2x.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/refine2x.cc -------------------------------------------------------------------------------- /test/render.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/render.cc -------------------------------------------------------------------------------- /test/renderClass.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/renderClass.cc -------------------------------------------------------------------------------- /test/render_ascii.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/render_ascii.cc -------------------------------------------------------------------------------- /test/reorder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/reorder.cc -------------------------------------------------------------------------------- /test/repartition.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/repartition.cc -------------------------------------------------------------------------------- /test/reposition.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/reposition.cc -------------------------------------------------------------------------------- /test/residualErrorEstimation_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/residualErrorEstimation_test.cc -------------------------------------------------------------------------------- /test/rm_extrusion.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/rm_extrusion.cc -------------------------------------------------------------------------------- /test/runSimxAnisoAdapt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/runSimxAnisoAdapt.cc -------------------------------------------------------------------------------- /test/scale.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/scale.cc -------------------------------------------------------------------------------- /test/serialize.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/serialize.cc -------------------------------------------------------------------------------- /test/shapefun.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/shapefun.cc -------------------------------------------------------------------------------- /test/shapefun2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/shapefun2.cc -------------------------------------------------------------------------------- /test/simDiscrete.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/simDiscrete.cc -------------------------------------------------------------------------------- /test/simSpjToSmd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/simSpjToSmd.cc -------------------------------------------------------------------------------- /test/simTranslate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/simTranslate.cc -------------------------------------------------------------------------------- /test/simZBalance.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/simZBalance.cc -------------------------------------------------------------------------------- /test/sim_countBL.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/sim_countBL.cc -------------------------------------------------------------------------------- /test/sim_part.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/sim_part.cc -------------------------------------------------------------------------------- /test/smb2osh.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/smb2osh.cc -------------------------------------------------------------------------------- /test/smokeTesting.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/smokeTesting.cmake -------------------------------------------------------------------------------- /test/snap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/snap.cc -------------------------------------------------------------------------------- /test/split.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/split.cc -------------------------------------------------------------------------------- /test/spr_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/spr_test.cc -------------------------------------------------------------------------------- /test/swapDoubles.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/swapDoubles.cc -------------------------------------------------------------------------------- /test/tensor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/tensor.cc -------------------------------------------------------------------------------- /test/test_AD.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/test_AD.cc -------------------------------------------------------------------------------- /test/test_integrator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/test_integrator.cc -------------------------------------------------------------------------------- /test/test_matrix_grad.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/test_matrix_grad.cc -------------------------------------------------------------------------------- /test/test_scaling.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/test_scaling.cc -------------------------------------------------------------------------------- /test/test_verify.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/test_verify.cc -------------------------------------------------------------------------------- /test/testing.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/testing.cmake -------------------------------------------------------------------------------- /test/tetrahedronize.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/tetrahedronize.cc -------------------------------------------------------------------------------- /test/torus_ma_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/torus_ma_test.cc -------------------------------------------------------------------------------- /test/ugrid.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/ugrid.cc -------------------------------------------------------------------------------- /test/ugridptnstats.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/ugridptnstats.cc -------------------------------------------------------------------------------- /test/uniform.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/uniform.cc -------------------------------------------------------------------------------- /test/verify.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/verify.cc -------------------------------------------------------------------------------- /test/verify_2nd_order_shapes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/verify_2nd_order_shapes.cc -------------------------------------------------------------------------------- /test/verify_convert.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/verify_convert.cc -------------------------------------------------------------------------------- /test/visualizeAnisoSizes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/visualizeAnisoSizes.cc -------------------------------------------------------------------------------- /test/viz.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/viz.cc -------------------------------------------------------------------------------- /test/vtxBalance.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/vtxBalance.cc -------------------------------------------------------------------------------- /test/vtxEdgeElmBalance.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/vtxEdgeElmBalance.cc -------------------------------------------------------------------------------- /test/vtxElmBalance.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/vtxElmBalance.cc -------------------------------------------------------------------------------- /test/vtxElmMixedBalance.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/vtxElmMixedBalance.cc -------------------------------------------------------------------------------- /test/writeIPFieldTest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/writeIPFieldTest.cc -------------------------------------------------------------------------------- /test/writePart.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/writePart.cc -------------------------------------------------------------------------------- /test/writeVtxPtn.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/writeVtxPtn.cc -------------------------------------------------------------------------------- /test/xgc_split.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/xgc_split.cc -------------------------------------------------------------------------------- /test/zbalance.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/zbalance.cc -------------------------------------------------------------------------------- /test/zsplit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/test/zsplit.cc -------------------------------------------------------------------------------- /zoltan/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/zoltan/CMakeLists.txt -------------------------------------------------------------------------------- /zoltan/apfInterElement.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/zoltan/apfInterElement.cc -------------------------------------------------------------------------------- /zoltan/apfZoltan.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/zoltan/apfZoltan.cc -------------------------------------------------------------------------------- /zoltan/apfZoltan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/zoltan/apfZoltan.h -------------------------------------------------------------------------------- /zoltan/apfZoltanCallbacks.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/zoltan/apfZoltanCallbacks.cc -------------------------------------------------------------------------------- /zoltan/apfZoltanCallbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/zoltan/apfZoltanCallbacks.h -------------------------------------------------------------------------------- /zoltan/apfZoltanEmpty.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/zoltan/apfZoltanEmpty.cc -------------------------------------------------------------------------------- /zoltan/apfZoltanMesh.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/zoltan/apfZoltanMesh.cc -------------------------------------------------------------------------------- /zoltan/apfZoltanMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/zoltan/apfZoltanMesh.h -------------------------------------------------------------------------------- /zoltan/cmake/Dependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/zoltan/cmake/Dependencies.cmake -------------------------------------------------------------------------------- /zoltan/pkg_tribits.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCOREC/core/HEAD/zoltan/pkg_tribits.cmake --------------------------------------------------------------------------------