├── .github └── workflows │ └── exasim-ci.yml ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── backend ├── Common │ ├── common.h │ ├── cpuimpl.h │ ├── kokkosimpl.h │ └── pblas.h ├── Discretization │ ├── .DS_Store │ ├── KokkosDrivers.cpp │ ├── connectivity.cpp │ ├── discretization.cpp │ ├── discretization.h │ ├── geometry.cpp │ ├── getuhat.cpp │ ├── gpuDeviceInfo.cpp │ ├── ioutilities.cpp │ ├── ismeshcurved.cpp │ ├── massinv.cpp │ ├── matvec.cpp │ ├── qequation.cpp │ ├── qoicalculation.cpp │ ├── qresidual.cpp │ ├── readbinaryfiles.cpp │ ├── residual.cpp │ ├── setstructs.cpp │ ├── uequation.cpp │ ├── uresidual.cpp │ └── wequation.cpp ├── Doxyfile ├── Main │ └── main.cpp ├── Model │ ├── Code2Cpp.cpp │ ├── HdgEoS.cpp │ ├── HdgEoS1.cpp │ ├── HdgEoS2.cpp │ ├── HdgFbou.cpp │ ├── HdgFbou1.cpp │ ├── HdgFbou2.cpp │ ├── HdgFbouonly.cpp │ ├── HdgFbouonly1.cpp │ ├── HdgFbouonly2.cpp │ ├── HdgFint.cpp │ ├── HdgFint1.cpp │ ├── HdgFint2.cpp │ ├── HdgFintonly.cpp │ ├── HdgFintonly1.cpp │ ├── HdgFintonly2.cpp │ ├── HdgFlux.cpp │ ├── HdgFlux1.cpp │ ├── HdgFlux2.cpp │ ├── HdgQoIboundary.cpp │ ├── HdgQoIvolume.cpp │ ├── HdgSource.cpp │ ├── HdgSource1.cpp │ ├── HdgSource2.cpp │ ├── HdgSourcew.cpp │ ├── HdgSourcew1.cpp │ ├── HdgSourcew2.cpp │ ├── HdgSourcewonly.cpp │ ├── HdgSourcewonly1.cpp │ ├── HdgSourcewonly2.cpp │ ├── HdgTdfunc.cpp │ ├── HdgUbou.cpp │ ├── HdgVisScalars.cpp │ ├── HdgVisVectors.cpp │ ├── KokkosAvfield.cpp │ ├── KokkosAvfield1.cpp │ ├── KokkosAvfield2.cpp │ ├── KokkosDrivers.cpp │ ├── KokkosEoS.cpp │ ├── KokkosEoS1.cpp │ ├── KokkosEoS2.cpp │ ├── KokkosEoSdu.cpp │ ├── KokkosEoSdu1.cpp │ ├── KokkosEoSdu2.cpp │ ├── KokkosEoSdw.cpp │ ├── KokkosEoSdw1.cpp │ ├── KokkosEoSdw2.cpp │ ├── KokkosFbou.cpp │ ├── KokkosFbou1.cpp │ ├── KokkosFbou2.cpp │ ├── KokkosFhat.cpp │ ├── KokkosFhat1.cpp │ ├── KokkosFhat2.cpp │ ├── KokkosFint.cpp │ ├── KokkosFlux.cpp │ ├── KokkosFlux1.cpp │ ├── KokkosFlux2.cpp │ ├── KokkosInitodg.cpp │ ├── KokkosInitodg1.cpp │ ├── KokkosInitodg2.cpp │ ├── KokkosInitq.cpp │ ├── KokkosInitq1.cpp │ ├── KokkosInitq2.cpp │ ├── KokkosInitu.cpp │ ├── KokkosInitu1.cpp │ ├── KokkosInitu2.cpp │ ├── KokkosInitudg.cpp │ ├── KokkosInitudg1.cpp │ ├── KokkosInitudg2.cpp │ ├── KokkosInitwdg.cpp │ ├── KokkosInitwdg1.cpp │ ├── KokkosInitwdg2.cpp │ ├── KokkosMonitor.cpp │ ├── KokkosMonitor1.cpp │ ├── KokkosMonitor2.cpp │ ├── KokkosOutput.cpp │ ├── KokkosOutput1.cpp │ ├── KokkosOutput2.cpp │ ├── KokkosQoIboundary.cpp │ ├── KokkosQoIboundary1.cpp │ ├── KokkosQoIboundary2.cpp │ ├── KokkosQoIvolume.cpp │ ├── KokkosQoIvolume1.cpp │ ├── KokkosQoIvolume2.cpp │ ├── KokkosSource.cpp │ ├── KokkosSource1.cpp │ ├── KokkosSource2.cpp │ ├── KokkosSourcew.cpp │ ├── KokkosSourcew1.cpp │ ├── KokkosSourcew2.cpp │ ├── KokkosStab.cpp │ ├── KokkosStab1.cpp │ ├── KokkosStab2.cpp │ ├── KokkosTdfunc.cpp │ ├── KokkosTdfunc1.cpp │ ├── KokkosTdfunc2.cpp │ ├── KokkosUbou.cpp │ ├── KokkosUbou1.cpp │ ├── KokkosUbou2.cpp │ ├── KokkosUhat.cpp │ ├── KokkosUhat1.cpp │ ├── KokkosUhat2.cpp │ ├── KokkosVisScalars.cpp │ ├── KokkosVisScalars1.cpp │ ├── KokkosVisScalars2.cpp │ ├── KokkosVisTensors.cpp │ ├── KokkosVisTensors1.cpp │ ├── KokkosVisTensors2.cpp │ ├── KokkosVisVectors.cpp │ ├── KokkosVisVectors1.cpp │ ├── KokkosVisVectors2.cpp │ ├── ModelDrivers.cpp │ ├── SymEngineFunctionWrappers.hpp │ ├── SymbolicFunctions.cpp │ ├── SymbolicFunctions.hpp │ ├── SymbolicScalarsVectors.cpp │ ├── SymbolicScalarsVectors.hpp │ ├── cpuInitodg.cpp │ ├── cpuInitodg1.cpp │ ├── cpuInitodg2.cpp │ ├── cpuInitq.cpp │ ├── cpuInitq1.cpp │ ├── cpuInitq2.cpp │ ├── cpuInitu.cpp │ ├── cpuInitu1.cpp │ ├── cpuInitu2.cpp │ ├── cpuInitudg.cpp │ ├── cpuInitudg1.cpp │ ├── cpuInitudg2.cpp │ ├── cpuInitwdg.cpp │ ├── cpuInitwdg1.cpp │ ├── cpuInitwdg2.cpp │ ├── libpdemodel.cpp │ └── libpdemodel.hpp ├── Preconditioning │ ├── applymatrix.cpp │ ├── preconditioner.cpp │ ├── preconditioner.h │ └── setprecondstruct.cpp ├── Preprocessing │ ├── TextParser.hpp │ ├── connectivity.cpp │ ├── domaindecomposition.cpp │ ├── gaussnodes.bin │ ├── grid.bin │ ├── helpers.cpp │ ├── helpersexasim.cpp │ ├── makemaster.cpp │ ├── makemasterexasim.cpp │ ├── makemesh.cpp │ ├── makemeshexasim.cpp │ ├── masternodes.bin │ ├── parmetis.cpp │ ├── partition.bin │ ├── pdeapp.txt │ ├── pdemodel.txt │ ├── readmesh.cpp │ ├── readpdeapp.cpp │ ├── text2code.cpp │ ├── tinyexpr.cpp │ ├── tinyexpr.h │ ├── utils.cpp │ ├── writebinaryfiles.cpp │ └── writebinaryfilesexasim.cpp ├── README.md ├── Solution │ ├── avsolution.cpp │ ├── previoussolutions.cpp │ ├── solution.cpp │ ├── solution.h │ ├── timestepcoeff.cpp │ ├── updatesolution.cpp │ └── updatesource.cpp ├── Solver │ ├── .DS_Store │ ├── getpoly.cpp │ ├── gmres.cpp │ ├── ptcsolver.cpp │ ├── setsysstruct.cpp │ ├── solver.cpp │ └── solver.h └── Visualization │ └── visualization.cpp ├── doc ├── Exasim.pdf ├── ExasimOverview.rtf ├── exasimlogo.pdf ├── exasimlogo1.png ├── exasimlogo2.png ├── exasimlogo3.png ├── exasimlogomedium.png └── exasimlogosmall.png ├── examples ├── Advection │ ├── GaussianRotating │ │ ├── pdeapp.jl │ │ ├── pdeapp.m │ │ ├── pdeapp.py │ │ ├── pdemodel.jl │ │ ├── pdemodel.m │ │ └── pdemodel.py │ └── GaussianTransport │ │ ├── pdeapp.jl │ │ ├── pdeapp.m │ │ ├── pdeapp.py │ │ ├── pdemodel.jl │ │ ├── pdemodel.m │ │ └── pdemodel.py ├── Burgers │ └── Burgers2d │ │ ├── bg2d.png │ │ ├── bg2dp1n32.png │ │ ├── bg2dp3n32.png │ │ ├── pdeapp.jl │ │ ├── pdeapp.m │ │ ├── pdeapp.py │ │ ├── pdemodel.jl │ │ ├── pdemodel.m │ │ └── pdemodel.py ├── ConvectionDiffusion │ ├── 1D │ │ ├── pdeapp.jl │ │ ├── pdeapp.m │ │ ├── pdemodel.jl │ │ └── pdemodel.m │ ├── BoundaryLayer │ │ ├── pdeapp.jl │ │ ├── pdeapp.m │ │ ├── pdeapp.py │ │ ├── pdemodel.jl │ │ ├── pdemodel.m │ │ └── pdemodel.py │ └── system │ │ ├── pdeapp.m │ │ └── pdemodel.m ├── Euler │ ├── EulerVortex │ │ ├── pdeapp.jl │ │ ├── pdeapp.m │ │ ├── pdeapp.py │ │ ├── pdemodel.jl │ │ ├── pdemodel.m │ │ └── pdemodel.py │ ├── mach8cylinder │ │ ├── getavfield2d.m │ │ ├── getfluxav2d.m │ │ ├── getfluxav2d_inviscid.m │ │ ├── getfluxav2d_laplacian.m │ │ ├── mkmesh_circincirc_Ma17b.m │ │ ├── mkmesh_new.m │ │ ├── pdeapp.m │ │ ├── pdeapp_coarse.m │ │ ├── pdeapp_enzymeGPUexample.m │ │ ├── pdeapp_inviscid.m │ │ ├── pdeapp_jac.m │ │ ├── pdemodel.m │ │ ├── pdemodel_inviscid.m │ │ ├── plotsol.m │ │ └── sensorLaplacian.m │ ├── naca0012 │ │ ├── grid.bin │ │ ├── pdeapp.jl │ │ ├── pdeapp.m │ │ ├── pdeapp.py │ │ ├── pdemodel.jl │ │ ├── pdemodel.m │ │ └── pdemodel.py │ └── reacting_flow │ │ ├── hypersonicModelingKernels_HDG │ │ ├── kineticsMatlab │ │ │ ├── kinetics.m │ │ │ ├── logBackwardCoefficients.m │ │ │ ├── logForwardRateCoefficients.m │ │ │ ├── netProductionRates.m │ │ │ ├── netProductionRatesTotal.m │ │ │ ├── rateCoefficients.m │ │ │ └── thirdBodyFactor.m │ │ ├── thermodynamicsMatlab │ │ │ ├── G_n.m │ │ │ ├── X_i.m │ │ │ ├── Y_i.m │ │ │ ├── Y_to_X.m │ │ │ ├── conc_i.m │ │ │ ├── cpEval.m │ │ │ ├── cp_n.m │ │ │ ├── density.m │ │ │ ├── enthalpyEval.m │ │ │ ├── f_T.m │ │ │ ├── frozenSoundSpeed.m │ │ │ ├── getCpsMass.m │ │ │ ├── getCvsMass.m │ │ │ ├── getEnergiesMass.m │ │ │ ├── getEnthalpiesMass.m │ │ │ ├── gibbsEval.m │ │ │ ├── h_n.m │ │ │ ├── mixtureEnergyMass.m │ │ │ ├── mixtureFrozenCpMass.m │ │ │ ├── mixtureFrozenCpMole.m │ │ │ ├── mixtureFrozenCvMass.m │ │ │ ├── mixtureFrozenCvMole.m │ │ │ ├── mixtureFrozenGamma.m │ │ │ ├── mixtureHMass.m │ │ │ ├── mixtureHMole.m │ │ │ ├── mixtureMw.m │ │ │ ├── nasa9eval_G.m │ │ │ ├── nasa9eval_cp.m │ │ │ ├── nasa9eval_h.m │ │ │ ├── pressure.m │ │ │ ├── switch1.m │ │ │ ├── switch2.m │ │ │ ├── switch3.m │ │ │ ├── temperature.m │ │ │ └── thermodynamicsModels.m │ │ └── transportMatlab │ │ │ ├── averageDiffusionCoeffs.m │ │ │ ├── euckenPhi.m │ │ │ ├── evalCurveFit_blottner.m │ │ │ ├── evalCurveFit_guptaDij.m │ │ │ ├── evalCurveFit_guptaKappa.m │ │ │ ├── evalCurveFit_guptaMu.m │ │ │ ├── fDij.m │ │ │ ├── speciesViscosities.m │ │ │ ├── transport.m │ │ │ ├── viscosity.m │ │ │ └── wilkeMixture.m │ │ ├── pdeapp.m │ │ └── pdemodel.m ├── GSI │ ├── concentration1d │ │ ├── pdeapp.m │ │ └── pdemodel.m │ ├── concentration1d_Hf │ │ ├── hfoxidation1d.png │ │ ├── hfoxidation1d_fig2.png │ │ ├── oxidation1d.pdf │ │ ├── oxidation1d.png │ │ ├── oxidation1d_HfHfO2.png │ │ ├── pdeapp.m │ │ └── pdemodel.m │ ├── heat1d │ │ ├── pdeapp.m │ │ └── pdemodel.m │ ├── heatconcentration1d │ │ ├── pdeapp.m │ │ └── pdemodel.m │ └── heatconcentration1d_HfHfO2 │ │ ├── eapodTa.png │ │ ├── oxidation1d_HfHfO2.pdf │ │ ├── oxidation1d_HfHfO2.png │ │ ├── oxidation1d_HfHfO2_temp.png │ │ ├── oxidation1d_HfHfO2_temp_expdiff.png │ │ ├── oxidation1d_HfHfO2_volfrac.png │ │ ├── oxidation1d_HfHfO2_volfrac_expdiff.png │ │ ├── pdeapp.m │ │ └── pdemodel.m ├── HeatEquation │ ├── cooldown │ │ ├── pdeapp.jl │ │ ├── pdeapp.m │ │ ├── pdeapp.py │ │ ├── pdemodel.jl │ │ ├── pdemodel.m │ │ └── pdemodel.py │ └── warmup │ │ ├── pdeapp.jl │ │ ├── pdeapp.m │ │ ├── pdeapp.py │ │ ├── pdemodel.jl │ │ ├── pdemodel.m │ │ └── pdemodel.py ├── Ionosphere │ ├── ionTest │ │ ├── pdeapp.py │ │ └── pdemodel.py │ └── test3d │ │ ├── exarun.py │ │ └── pdemodel.py ├── LinearElasticity │ ├── beam2d │ │ ├── pdeapp.m │ │ └── pdemodel.m │ ├── beam3d │ │ ├── le3dp3n2044.png │ │ ├── pdeapp.m │ │ └── pdemodel.m │ └── cookmembrane │ │ ├── cookmembranegrid.m │ │ ├── pdeapp.m │ │ └── pdemodel.m ├── MHD │ └── MagneticVortex │ │ ├── pdeapp.jl │ │ ├── pdeapp.m │ │ ├── pdeapp.py │ │ ├── pdemodel.jl │ │ ├── pdemodel.m │ │ └── pdemodel.py ├── MongeAmpere │ ├── square │ │ ├── divergence.m │ │ ├── hmsmoothing.m │ │ ├── mkmesh_square.m │ │ ├── pdeapp.m │ │ ├── pdemodel_helmholtz.m │ │ ├── pdemodel_poisson.m │ │ ├── pdemodel_transport.m │ │ └── radaptivity.m │ └── square2d │ │ ├── averagevector.m │ │ ├── pdeapp.m │ │ ├── pdeapp_poisson.m │ │ ├── pdeapp_transport.m │ │ ├── pdemodel_poisson.m │ │ └── pdemodel_transport.m ├── NavierStokes │ ├── 2DCase0.5TI │ │ ├── mkmesh_flatcase2d.m │ │ ├── pdeapp2d.m │ │ └── pdemodel_ns2.m │ ├── TaylorGreenVortex │ │ ├── pdeapp.m │ │ └── pdemodel.m │ ├── flaredplate2d │ │ ├── discontinuitysensor.m │ │ ├── divergence.m │ │ ├── getavfield3d.m │ │ ├── mkmesh_flaredplate2d.m │ │ ├── pdeapp.m │ │ ├── pdeapp_hm.m │ │ ├── pdemodel_hm.m │ │ └── pdemodel_ns.m │ ├── flaredplatecut2d │ │ ├── divergence.m │ │ ├── mkmesh_flatcase2d.m │ │ ├── pdeapp.m │ │ ├── pdemodel.m │ │ └── radapt.m │ ├── flatplate2d │ │ ├── mkmesh_flatplate.m │ │ ├── pdeapp.m │ │ └── pdemodel.m │ ├── hypersoniccylinder_mach8 │ │ ├── divergence.m │ │ ├── fhat2.m │ │ ├── flux2.m │ │ ├── for_summit_team.md │ │ ├── getsurfacedata2_hdgcode.m │ │ ├── mkmesh_cyl.m │ │ ├── pdeapp.m │ │ ├── pdeapp_hm.m │ │ ├── pdeapp_ns.m │ │ ├── pdemodel_hm.m │ │ └── pdemodel_ns.m │ ├── naca2d │ │ ├── code2cpp │ │ ├── fbou.m │ │ ├── fhat.m │ │ ├── flux.m │ │ ├── flux2d.m │ │ ├── flux2d2.m │ │ ├── flux3d.m │ │ ├── fluxgen.m │ │ ├── freestream.m │ │ ├── freestreambc.m │ │ ├── gencodeAn.m │ │ ├── getan.m │ │ ├── getan2d.m │ │ ├── getan2d4.m │ │ ├── grid.bin │ │ ├── mkmesh_naca0012.m │ │ ├── mkmesh_trefftz.m │ │ ├── nacap3M0025.png │ │ ├── nacap3M0025Re100.png │ │ ├── nacap3M04.png │ │ ├── nacap3M04Re100.png │ │ ├── nle3dp3n1644.png │ │ ├── ns_naca.m │ │ ├── pdeapp.m │ │ ├── pdeapp.txt │ │ ├── pdemodel.m │ │ ├── pdemodel.txt │ │ ├── source.m │ │ ├── symAn.m │ │ ├── tmp.m │ │ ├── tmp2.m │ │ └── tmp3.m │ ├── naca2d_Re5k │ │ └── naca2d │ │ │ ├── fbou.m │ │ │ ├── fhat.m │ │ │ ├── flux.m │ │ │ ├── flux2d.m │ │ │ ├── flux2d2.m │ │ │ ├── flux3d.m │ │ │ ├── fluxgen.m │ │ │ ├── freestream.m │ │ │ ├── freestreambc.m │ │ │ ├── gencodeAn.m │ │ │ ├── getan.m │ │ │ ├── getan2d.m │ │ │ ├── getan2d4.m │ │ │ ├── mkmesh_naca0012.m │ │ │ ├── mkmesh_trefftz.m │ │ │ ├── ns_naca.m │ │ │ ├── pdeapp.m │ │ │ ├── pdeapp_p_cont_test.m │ │ │ ├── pdeapp_porder_func.m │ │ │ ├── pdemodel.m │ │ │ ├── source.m │ │ │ ├── steady_PTC.m │ │ │ ├── symAn.m │ │ │ ├── tmp.m │ │ │ ├── tmp2.m │ │ │ └── tmp3.m │ ├── naca2d_unsteady │ │ ├── grid.bin │ │ ├── mkmesh_naca0012.m │ │ ├── pdeapp.m │ │ ├── pdeapp.txt │ │ ├── pdemodel.m │ │ └── pdemodel.txt │ ├── nshtmach8 │ │ ├── heatflux.m │ │ ├── mkmesh_cylht.m │ │ ├── mkmesh_cylns.m │ │ ├── pdeapp.m │ │ ├── pdeapp1.m │ │ ├── pdeapp2.m │ │ ├── pdeapp_fullycoupled.m │ │ ├── pdeapp_ht.m │ │ ├── pdeapp_ns.m │ │ ├── pdemodel1.m │ │ ├── pdemodel2.m │ │ ├── pdemodel_ht.m │ │ ├── pdemodel_ns.m │ │ ├── solutiontransfer_ht2ns.m │ │ └── solutiontransfer_ns2ht.m │ ├── nshtorion │ │ ├── divergence.m │ │ ├── fbouhdgaxialns.m │ │ ├── fluxaxialns.m │ │ ├── getshockcurve.m │ │ ├── gradient_machnumber.m │ │ ├── grid.bin │ │ ├── heatflux.m │ │ ├── matchdgnodesonboundary.m │ │ ├── mkmesh_cylht.m │ │ ├── mkmesh_cylns.m │ │ ├── mkmesh_orion.m │ │ ├── nsinit.mat │ │ ├── orion.m │ │ ├── outerwall.m │ │ ├── pdeapp.m │ │ ├── pdeapp.txt │ │ ├── pdeapp_ht.m │ │ ├── pdeapp_ns.m │ │ ├── pdemodel.txt │ │ ├── pdemodel_axialht.m │ │ ├── pdemodel_axialns.m │ │ ├── shockcurve.mat │ │ ├── solutiontransfer_ht2ns.m │ │ ├── solutiontransfer_ns2ht.m │ │ ├── sourceaxialns.m │ │ ├── udg.bin │ │ ├── vdg.bin │ │ ├── xdg.bin │ │ └── xiny.m │ ├── nsmach8 │ │ ├── grid.bin │ │ ├── pdeapp.txt │ │ ├── pdemodel.txt │ │ ├── udg.bin │ │ ├── vdg.bin │ │ └── xdg.bin │ ├── stg_steadystate2d │ │ ├── mkmesh_flatcase2d.m │ │ ├── pdeapp.m │ │ └── pdemodel.m │ └── transient_flaredcut2d │ │ ├── divergence.m │ │ ├── freestreamturb.m │ │ ├── ignore.m │ │ ├── mkmesh_flatcase2d.m │ │ ├── pdeapp.m │ │ ├── pdeapp_extraction.m │ │ ├── pdemodel.m │ │ └── radapt.m ├── NonlinearElasticity │ ├── compressionblock │ │ ├── pdeapp.m │ │ └── pdemodel.m │ ├── cookmembrane │ │ ├── cookmembranegrid.m │ │ ├── pdeapp.m │ │ └── pdemodel.m │ ├── cubeblock │ │ ├── nle3dp3n1644.png │ │ ├── pdeapp.m │ │ └── pdemodel.m │ └── strechingblock │ │ ├── pdeapp.m │ │ └── pdemodel.m ├── Poisson │ ├── Axisymmetric │ │ ├── pdeapp.jl │ │ ├── pdeapp.m │ │ ├── pdeapp.py │ │ ├── pdemodel.jl │ │ ├── pdemodel.m │ │ └── pdemodel.py │ ├── Cone │ │ ├── coneincube.geo │ │ ├── coneincube.msh │ │ ├── grid.bin │ │ ├── partition.bin │ │ ├── pdeapp.jl │ │ ├── pdeapp.m │ │ ├── pdeapp.py │ │ ├── pdeapp.txt │ │ ├── pdemodel.jl │ │ ├── pdemodel.m │ │ ├── pdemodel.py │ │ └── pdemodel.txt │ ├── EquationOfStates │ │ ├── pdeapp.m │ │ ├── pdeapp0.m │ │ ├── pdemodel.m │ │ └── pdemodel0.m │ ├── Lshape │ │ ├── grid.bin │ │ ├── lshape.geo │ │ ├── lshape.msh │ │ ├── pdeapp.jl │ │ ├── pdeapp.m │ │ ├── pdeapp.py │ │ ├── pdeapp.txt │ │ ├── pdemodel.jl │ │ ├── pdemodel.m │ │ ├── pdemodel.py │ │ └── pdemodel.txt │ ├── Nonlinear │ │ ├── grid.bin │ │ ├── pdeapp.jl │ │ ├── pdeapp.m │ │ ├── pdeapp.py │ │ ├── pdeapp.txt │ │ ├── pdemodel.jl │ │ ├── pdemodel.m │ │ ├── pdemodel.py │ │ └── pdemodel.txt │ ├── Nonlinear2 │ │ ├── fbou.m │ │ ├── fhat.m │ │ ├── flux.m │ │ ├── pdeapp.m │ │ ├── pdemodel.m │ │ └── source.m │ ├── Orion │ │ ├── distribute_points_exponential.m │ │ ├── domain5.geo │ │ ├── domain5.msh │ │ ├── domain6.geo │ │ ├── domain6.msh │ │ ├── grid.bin │ │ ├── midcurve.mat │ │ ├── mkmesh_orion.m │ │ ├── mkmesh_orion3.m │ │ ├── mkmesh_orion5.m │ │ ├── mkmesh_orion6.m │ │ ├── mshOrion.m │ │ ├── orion.m │ │ ├── outerwall.m │ │ ├── pdeapp.txt │ │ ├── pdeapp_poiaxsym1.m │ │ ├── pdeapp_poiaxsym2.m │ │ ├── pdeapp_poiaxsym3.m │ │ ├── pdemodel.txt │ │ ├── pdemodel_poiaxsym1.m │ │ ├── pdemodel_poiaxsym2.m │ │ ├── shockcurve.mat │ │ ├── shockcurve7.mat │ │ └── xdg.bin │ ├── Periodic │ │ ├── grid.bin │ │ ├── pdeapp.jl │ │ ├── pdeapp.m │ │ ├── pdeapp.py │ │ ├── pdeapp.txt │ │ ├── pdemodel.jl │ │ ├── pdemodel.m │ │ ├── pdemodel.py │ │ └── pdemodel.txt │ ├── coupledproblem │ │ ├── pdeapp.m │ │ ├── pdeapp1.m │ │ ├── pdeapp2.m │ │ ├── pdemodel1.m │ │ └── pdemodel2.m │ ├── nonlinearheatflux │ │ ├── pdeapp.m │ │ ├── pdeapp0.m │ │ ├── pdemodel.m │ │ └── pdemodel0.m │ ├── poisson1d │ │ ├── grid.bin │ │ ├── pdeapp.m │ │ ├── pdeapp.txt │ │ ├── pdemodel.m │ │ └── pdemodel.txt │ ├── poisson2d │ │ ├── f2t.mat │ │ ├── fbou.m │ │ ├── fhat.m │ │ ├── flux.m │ │ ├── grid.bin │ │ ├── partition.bin │ │ ├── pdeapp.jl │ │ ├── pdeapp.m │ │ ├── pdeapp.py │ │ ├── pdeapp.txt │ │ ├── pdemodel.jl │ │ ├── pdemodel.m │ │ ├── pdemodel.py │ │ ├── pdemodel.txt │ │ ├── source.m │ │ ├── squaregrid.m │ │ └── xdg.bin │ ├── poisson3d │ │ ├── coneincube.msh │ │ ├── fbou.m │ │ ├── fhat.m │ │ ├── flux.m │ │ ├── grid.bin │ │ ├── pdeapp.jl │ │ ├── pdeapp.m │ │ ├── pdeapp.py │ │ ├── pdeapp.txt │ │ ├── pdemodel.jl │ │ ├── pdemodel.m │ │ ├── pdemodel.py │ │ ├── pdemodel.txt │ │ └── source.m │ └── poisson_streamer │ │ ├── mkmesh_streamer_gmsh.m │ │ ├── pdeapp.m │ │ ├── pdemodel.m │ │ └── streamer_16k_fixed.msh ├── RANS │ ├── flatplate │ │ ├── evfunc.m │ │ ├── mkmesh_flatplate.m │ │ ├── pdeapp.m │ │ ├── pdemodel.m │ │ ├── ransfpp3uvel.png │ │ ├── ransfpp3visc.png │ │ └── ransnacap3uvel.png │ └── naca0012 │ │ ├── mkmesh_naca0012.m │ │ ├── nacap3M04Re100.png │ │ ├── pdeapp.m │ │ ├── pdemodel.m │ │ ├── ransnacap3mach.png │ │ ├── ransnacap3uvel.png │ │ └── ransnacap3visc.png ├── ShallowWater │ ├── .DS_Store │ └── BickleyJet │ │ ├── .DS_Store │ │ ├── BickleyJet.pdf │ │ ├── pdeapp.jl │ │ ├── pdeapp.m │ │ ├── pdeapp.py │ │ ├── pdeapp2.jl │ │ ├── pdeapp2.m │ │ ├── pdeapp2.py │ │ ├── pdemodel.jl │ │ ├── pdemodel.m │ │ ├── pdemodel.py │ │ ├── pdemodel2.m │ │ ├── pdemodel3.m │ │ ├── pdemodel4.jl │ │ ├── pdemodel4.m │ │ └── pdemodel4.py ├── SpaceWeather │ ├── .DS_Store │ ├── Ring2D │ │ ├── EUVsource.m │ │ ├── EUVsourceSteady.m │ │ ├── euv.csv │ │ ├── initialCond.m │ │ ├── inputs │ │ │ ├── chemistry_earth.csv │ │ │ ├── chemistry_earth_richards.csv │ │ │ ├── euv.csv │ │ │ ├── inputCSV.mat │ │ │ ├── ion_neutral_collision_frequencies.csv │ │ │ ├── ions.csv │ │ │ ├── neutrals.csv │ │ │ └── orbits.csv │ │ ├── mkmesh_ring.m │ │ ├── mkmesh_ringLES.m │ │ ├── mkmesh_ring_scaleheight.m │ │ ├── pdeapp.m │ │ ├── pdemodel.m │ │ ├── pdeparams.m │ │ └── plotpde.m │ └── SW1D │ │ ├── .DS_Store │ │ ├── EUVsource1D.m │ │ ├── euv.csv │ │ ├── inputFiles.mat │ │ ├── inputs │ │ ├── chemistry_earth.csv │ │ ├── chemistry_earth_richards.csv │ │ ├── euv.csv │ │ ├── inputCSV.mat │ │ ├── ion_neutral_collision_frequencies.csv │ │ ├── ions.csv │ │ ├── neutrals.csv │ │ └── orbits.csv │ │ ├── mesh1D_adapted.m │ │ ├── pdeapp.m │ │ ├── pdemodel.m │ │ ├── pdeparams.m │ │ └── plotpde.m ├── Stokes │ ├── Kovasznay │ │ ├── pdeapp.m │ │ └── pdemodel.m │ └── square │ │ ├── averagevector.m │ │ ├── pdeapp.m │ │ └── pdemodel.m └── WaveEquation │ ├── Membrane │ ├── pdeapp.jl │ ├── pdeapp.m │ ├── pdeapp.py │ ├── pdemodel.jl │ ├── pdemodel.m │ └── pdemodel.py │ └── Scattering │ ├── grid.bin │ ├── pdeapp.jl │ ├── pdeapp.m │ ├── pdeapp.py │ ├── pdemodel.jl │ ├── pdemodel.m │ └── pdemodel.py ├── frontends ├── Julia │ ├── .DS_Store │ ├── Gencode │ │ ├── Gencode.jl │ │ ├── checkcompilers.jl │ │ ├── compilecode.jl │ │ ├── contains.jl │ │ ├── gencodeall.jl │ │ ├── gencodebou.jl │ │ ├── gencodeelem.jl │ │ ├── gencodeelem2.jl │ │ ├── gencodeelem3.jl │ │ ├── gencodeelem4.jl │ │ ├── gencodeelemface.jl │ │ ├── gencodeface.jl │ │ ├── gencodeface2.jl │ │ ├── gencodeface3.jl │ │ ├── genlib.jl │ │ ├── getccode.jl │ │ ├── getflux2d.jl │ │ ├── hdggencodebou.jl │ │ ├── hdggencodebou2.jl │ │ ├── hdggencodeelem.jl │ │ ├── hdggencodeelem2.jl │ │ ├── hdggencodeface.jl │ │ ├── hdggencodeface2.jl │ │ ├── hdgnocodeelem.jl │ │ ├── hdgnocodeelem2.jl │ │ ├── hdgnocodeface.jl │ │ ├── hdgnocodeface2.jl │ │ ├── nocodeelem.jl │ │ ├── nocodeelem2.jl │ │ ├── nocodeelem3.jl │ │ ├── nocodeelem4.jl │ │ ├── nocodeface.jl │ │ ├── nocodeface2.jl │ │ ├── runcode.jl │ │ ├── setcompilers.jl │ │ ├── string2cmd.jl │ │ ├── syminit.jl │ │ ├── sympyassign.jl │ │ ├── sympyassign2.jl │ │ └── varsassign.jl │ ├── Mesh │ │ ├── Mesh.jl │ │ ├── cubemesh.jl │ │ ├── gmshcall.jl │ │ ├── lshape.geo │ │ ├── lshape.msh │ │ ├── readmesh.jl │ │ ├── squaremesh.jl │ │ └── writemesh.jl │ ├── Postprocessing │ │ ├── Postprocessing.jl │ │ ├── createcgcells.jl │ │ ├── createcggrid.jl │ │ ├── exasim.jl │ │ ├── fetchresidual.jl │ │ ├── fetchsolution.jl │ │ ├── generatecode.jl │ │ ├── getcelltype.jl │ │ ├── getmeansolution.jl │ │ ├── getsolution.jl │ │ ├── getsolutions.jl │ │ ├── producecode.jl │ │ ├── pvdwrite.jl │ │ ├── read_rank.jl │ │ ├── readdoubles.jl │ │ ├── readheader10.jl │ │ ├── vis.jl │ │ └── vtuwrite.jl │ └── Preprocessing │ │ ├── Master.jl │ │ ├── Preprocessing.jl │ │ ├── Structs.jl │ │ ├── Types.jl │ │ ├── createdgnodes.jl │ │ ├── createhighordermesh.jl │ │ ├── createnodes.jl │ │ ├── elementpartition.jl │ │ ├── elementpartition2.jl │ │ ├── elementpartitionhdg.jl │ │ ├── faceconnectivity.jl │ │ ├── faceconnectivity2.jl │ │ ├── facenumbering.jl │ │ ├── facepartition.jl │ │ ├── facepartition2.jl │ │ ├── facepartitionhdg.jl │ │ ├── findexec.jl │ │ ├── gaussnodes.bin │ │ ├── gaussnodes.jl │ │ ├── gaussnodes.mat │ │ ├── getelemface.jl │ │ ├── initializeexasim.jl │ │ ├── initializemesh.jl │ │ ├── initializepde.jl │ │ ├── legendrepolynomial.jl │ │ ├── localbasis.jl │ │ ├── masternodes.bin │ │ ├── masternodes.jl │ │ ├── masternodes.mat │ │ ├── meshpartition.jl │ │ ├── meshpartition2.jl │ │ ├── meshpartitionhdg.jl │ │ ├── mkcgent2dgent.jl │ │ ├── mkdge2dgf.jl │ │ ├── mkelconcg.jl │ │ ├── mkelemblocks.jl │ │ ├── mkent2elem.jl │ │ ├── mkf2e.jl │ │ ├── mkf2t.jl │ │ ├── mkfaceblocks.jl │ │ ├── mkshape.jl │ │ ├── mkv2t.jl │ │ ├── neighboringelements.jl │ │ ├── node2elem.jl │ │ ├── partition.jl │ │ ├── permindex.jl │ │ ├── simplexmonomial.jl │ │ ├── sortcolumns.jl │ │ ├── sortrows.jl │ │ ├── tensorproduct.jl │ │ ├── uniquerows.jl │ │ ├── writeapp.jl │ │ ├── writemaster.jl │ │ ├── writemesh.jl │ │ ├── writesol.jl │ │ └── xiny.jl ├── Matlab │ ├── .DS_Store │ ├── Gencode │ │ ├── compilecode.m │ │ ├── gencode.m │ │ ├── gencodeall.m │ │ ├── gencodebou.m │ │ ├── gencodebou2.m │ │ ├── gencodeelem.m │ │ ├── gencodeelem2.m │ │ ├── gencodeelem3.m │ │ ├── gencodeelemface.m │ │ ├── gencodeface.m │ │ ├── gencodeface2.m │ │ ├── gencodeface3.m │ │ ├── getccode.m │ │ ├── getmeansolution.m │ │ ├── getsolution.m │ │ ├── hdggencode.m │ │ ├── hdggencodebou.m │ │ ├── hdggencodeelem.m │ │ ├── hdggencodeelem2.m │ │ ├── hdggencodeface.m │ │ ├── hdggencodeface2.m │ │ ├── hdgnocodeelem.m │ │ ├── hdgnocodeelem2.m │ │ ├── hdgnocodeface.m │ │ ├── hdgnocodeface2.m │ │ ├── kkgencode.m │ │ ├── kkgencodeall.m │ │ ├── kkgencodebou.m │ │ ├── kkgencodeelem.m │ │ ├── kkgencodeelem2.m │ │ ├── kkgencodeelem3.m │ │ ├── kkgencodeelem4.m │ │ ├── kkgencodeelemface.m │ │ ├── kkgencodeface.m │ │ ├── kkgencodeface2.m │ │ ├── kkgencodeface3.m │ │ ├── kknocodeelem.m │ │ ├── kknocodeelem2.m │ │ ├── kknocodeelem3.m │ │ ├── kknocodeelem4.m │ │ ├── kknocodeface.m │ │ ├── kknocodeface2.m │ │ ├── nocodeelem.m │ │ ├── nocodeelem2.m │ │ ├── nocodeelem3.m │ │ ├── nocodeface.m │ │ ├── nocodeface2.m │ │ ├── runcode.m │ │ ├── syminit.m │ │ ├── symsassign.m │ │ ├── symsassign2.m │ │ └── varsassign.m │ ├── HDG │ │ ├── applyblockjacobi.m │ │ ├── assembleRHS.m │ │ ├── assemblelRHS.m │ │ ├── assemblelinearsystem.m │ │ ├── block_ilu0.m │ │ ├── block_ilu0_solve.m │ │ ├── blockjacobi.m │ │ ├── cgpoisson.m │ │ ├── compareexasim.m │ │ ├── compareexasimmpi.m │ │ ├── crs2full.m │ │ ├── crs_assembly.m │ │ ├── crs_blockilu0.m │ │ ├── crs_blockilu0_solve.m │ │ ├── crs_faceordering.m │ │ ├── crs_fullassembly.m │ │ ├── crs_hdg.m │ │ ├── crs_indexingilu0.m │ │ ├── crs_parblockilu0.m │ │ ├── crs_parblockilu0_solve.m │ │ ├── crs_parblockilu0_solve2.m │ │ ├── elementaladditiveschwarz.m │ │ ├── faceextract.m │ │ ├── facegeom.m │ │ ├── faceinsert.m │ │ ├── facereordering.m │ │ ├── form_fullmatrix_on_path.m │ │ ├── hdgdirk.m │ │ ├── hdggmres.m │ │ ├── hdgmatvec.m │ │ ├── hdgmesh.m │ │ ├── hdgsolve.m │ │ ├── inituhat.m │ │ ├── mapContractK.m │ │ ├── matrix_assembly.m │ │ ├── matrix_compute.m │ │ ├── nodes2indices.m │ │ ├── pathapply.m │ │ ├── pathapply2.m │ │ ├── pathcompute.m │ │ ├── pathcompute2.m │ │ ├── pathextract.m │ │ ├── pathextract2.m │ │ ├── pathinsert.m │ │ ├── pathinsert2.m │ │ ├── pathlu.m │ │ ├── pathpartition.m │ │ ├── pathreordering.m │ │ ├── pathreordering2.m │ │ ├── pathsolve.m │ │ ├── pathsolve2.m │ │ ├── pathsystem.m │ │ ├── pathsystem2.m │ │ ├── qequationint.m │ │ ├── qequationschur.m │ │ ├── removenodes.m │ │ ├── sortrecurrence.m │ │ ├── test_block_ilu0.m │ │ ├── uequationelemint.m │ │ ├── uequationfaceint.m │ │ ├── uequationint.m │ │ ├── uequationschur.m │ │ ├── vector_apply.m │ │ ├── vector_compute.m │ │ └── volgeom.m │ ├── Mesh │ │ ├── cmesh │ │ │ ├── block.m │ │ │ ├── block2pt.m │ │ │ ├── block2tets.m │ │ │ ├── cart2dg.m │ │ │ ├── cart2mesh.m │ │ │ ├── cmeshTransition.m │ │ │ ├── cmeshmap.m │ │ │ ├── cmeshmap2.m │ │ │ ├── cmeshmap3.m │ │ │ ├── cmeshparam4.m │ │ │ ├── cmeshparam6.m │ │ │ ├── cmeshparamn.m │ │ │ ├── democmesh.m │ │ │ ├── demohmesh.m │ │ │ ├── hmeshmap.m │ │ │ ├── hmeshparam.m │ │ │ ├── ht13foil │ │ │ ├── mapp.m │ │ │ ├── mkmesh_naca0012.m │ │ │ ├── mkmesh_naca0012b.m │ │ │ ├── mkmesh_rea2822.m │ │ │ ├── mkmesh_sd7003.m │ │ │ ├── naca.m │ │ │ ├── read_foil.m │ │ │ ├── script.m │ │ │ ├── sd7003foil │ │ │ ├── simpplot.m │ │ │ └── sub2ind.m │ │ ├── connectmesh.m │ │ ├── cubemesh.m │ │ ├── extrudemesh.m │ │ ├── fixmesh.m │ │ ├── gmsh2pq.m │ │ ├── gmsh2pt.m │ │ ├── gmsh2ptnew.m │ │ ├── gmshcall.m │ │ ├── gmshmatlab.m │ │ ├── gmshwrapper.m │ │ ├── lesmesh │ │ │ ├── distribute.m │ │ │ ├── fixmesh2.m │ │ │ ├── hexgrid.m │ │ │ ├── lesmesh2d.m │ │ │ ├── lesmesh2d_rect.m │ │ │ ├── lesmesh2d_rect_reverse.m │ │ │ ├── lesmesh3d.m │ │ │ ├── lesmesh3d_box.m │ │ │ ├── lesmeshwithwake2d.m │ │ │ ├── map.m │ │ │ ├── map2bottomwake.m │ │ │ ├── map2foil.m │ │ │ ├── map2topwake.m │ │ │ ├── quadgrid.m │ │ │ ├── refineaty.m │ │ │ ├── refineaty3d.m │ │ │ ├── refineaty_reverse.m │ │ │ ├── scalingfun.m │ │ │ ├── templatey1.m │ │ │ ├── templatey2.m │ │ │ ├── templatey3.m │ │ │ ├── templatey31.m │ │ │ ├── templatey32.m │ │ │ ├── templatey4.m │ │ │ ├── templatey41.m │ │ │ ├── templatey42.m │ │ │ └── transitionlayer.m │ │ ├── linemesh.m │ │ ├── lshapemesh.m │ │ ├── meshplot3D.m │ │ ├── mkmesh │ │ │ ├── block_crs.m │ │ │ ├── boundarypoints.m │ │ │ ├── connectmesh.m │ │ │ ├── createdgnodes.m │ │ │ ├── dpoly.m │ │ │ ├── dsegment.cpp │ │ │ ├── dsegment.dll │ │ │ ├── dsegment.mexa64 │ │ │ ├── dsegment.mexglx │ │ │ ├── dsegment.mexmaci │ │ │ ├── dsegment.mexmaci64 │ │ │ ├── elcon2entcon.m │ │ │ ├── elconnectivities.m │ │ │ ├── extractmesh.m │ │ │ ├── faceordering.m │ │ │ ├── fixdgnodes.m │ │ │ ├── fixmesh.m │ │ │ ├── fixp.m │ │ │ ├── gmsh2pq.m │ │ │ ├── hdgelcon.m │ │ │ ├── hdgface.m │ │ │ ├── higherordermesh.m │ │ │ ├── makedgnodes.m │ │ │ ├── mergeelemementatnode.m │ │ │ ├── mesh2datafile.m │ │ │ ├── meshsize.m │ │ │ ├── mkTetFromHexPriPyr.m │ │ │ ├── mkcgmesh.m │ │ │ ├── mkdgnodes.m │ │ │ ├── mkf2e.m │ │ │ ├── mkf2f.m │ │ │ ├── mkmasternodes.m │ │ │ ├── mkmesh.m │ │ │ ├── mkmesh_parallel.m │ │ │ ├── mknodes.m │ │ │ ├── mkt2e.m │ │ │ ├── mkt2f.m │ │ │ ├── mkt2fc.cpp │ │ │ ├── mkt2fc.mexmaci64 │ │ │ ├── mkt2t.m │ │ │ ├── periodic.m │ │ │ ├── poly2gmsh.m │ │ │ ├── polymesh.m │ │ │ ├── removeelemement.m │ │ │ ├── removeelemementinpolygon.m │ │ │ ├── reorderface.m │ │ │ ├── setbndnbrs.m │ │ │ ├── simpvol.m │ │ │ ├── sortrowsme.m │ │ │ ├── t2fpartition.m │ │ │ ├── tetnodes.m │ │ │ ├── trinodes.m │ │ │ ├── uniref.m │ │ │ ├── uniref3d.m │ │ │ └── unirefquad.m │ │ ├── mkmesh_Lshape.m │ │ ├── mkmesh_bullet.m │ │ ├── mkmesh_bullet2.m │ │ ├── mkmesh_cartesian.m │ │ ├── mkmesh_circincirc.m │ │ ├── mkmesh_circle.m │ │ ├── mkmesh_circleinrect.m │ │ ├── mkmesh_circleinrect2.m │ │ ├── mkmesh_circleinrect3.m │ │ ├── mkmesh_circleinrect4.m │ │ ├── mkmesh_circleinsquare.m │ │ ├── mkmesh_cube.m │ │ ├── mkmesh_cylinder.m │ │ ├── mkmesh_cylindralshell.m │ │ ├── mkmesh_cylindralshell2.m │ │ ├── mkmesh_dm.m │ │ ├── mkmesh_ductcirc.m │ │ ├── mkmesh_ellipseinrect.m │ │ ├── mkmesh_freearc2daxis.m │ │ ├── mkmesh_freearc2daxis_aircraftskin.m │ │ ├── mkmesh_freeburningarc.m │ │ ├── mkmesh_gap.m │ │ ├── mkmesh_halfcirchole.m │ │ ├── mkmesh_halfcirchole2.m │ │ ├── mkmesh_halfcircle.m │ │ ├── mkmesh_halfcircleellipse.m │ │ ├── mkmesh_line.m │ │ ├── mkmesh_naca.m │ │ ├── mkmesh_naca0012.m │ │ ├── mkmesh_qcirchole.m │ │ ├── mkmesh_rect.m │ │ ├── mkmesh_rectblock.m │ │ ├── mkmesh_roof.m │ │ ├── mkmesh_sd7003.m │ │ ├── mkmesh_square.m │ │ ├── mkmesh_struct_NACA65_X10.m │ │ ├── mkmesh_trefftz.m │ │ ├── mkmesh_unstructuredsquare.m │ │ ├── poly2gmsh.m │ │ ├── radaptivity.m │ │ ├── readmesh.m │ │ ├── rectmesh.m │ │ ├── removeelemement.m │ │ ├── removeelemementinpolygon.m │ │ ├── simpplot.m │ │ ├── simpvol.m │ │ ├── sphereCube.m │ │ ├── squaremesh.m │ │ ├── surfmesh │ │ │ ├── find_perpendicular_point.m │ │ │ ├── forward_bilinear_mapping.m │ │ │ ├── inverse_bilinear_mapping.m │ │ │ ├── orion.m │ │ │ ├── orion2.m │ │ │ ├── orioncurves.mat │ │ │ ├── rightleft2d.m │ │ │ ├── shifted_curve_normal_direction.m │ │ │ ├── surfmesh2d.m │ │ │ ├── surfmesh2d_shockcurve.m │ │ │ └── xm.mat │ │ ├── uniref.m │ │ └── writemesh.m │ ├── Postprocessing │ │ ├── checkudg.m │ │ ├── checkuhat.m │ │ ├── createcgcells.m │ │ ├── createcggrid.m │ │ ├── exasim.m │ │ ├── extendmd.m │ │ ├── fetchresidual.m │ │ ├── fetchsolution.m │ │ ├── fetchuhat.m │ │ ├── generatecode.m │ │ ├── getcelltype.m │ │ ├── getmeansolution.m │ │ ├── getponboundary.m │ │ ├── getsolution.m │ │ ├── getsolutiononboundary.m │ │ ├── getsolutions.m │ │ ├── getuhonboundary.m │ │ ├── matchdgnodesonboundary.m │ │ ├── parselogfile.m │ │ ├── parselogfile0.m │ │ ├── parselogfile1.m │ │ ├── parselogfiles.m │ │ ├── print_results.m │ │ ├── producecode.m │ │ ├── putsolutiononboundary.m │ │ ├── pvdwrite.m │ │ ├── rankfile.m │ │ ├── read_rank.m │ │ ├── readsol.m │ │ ├── readsoldmd.m │ │ ├── readsolmpi.m │ │ ├── readxdg.m │ │ ├── readxdgmpi.m │ │ ├── reorder_files.m │ │ ├── vis.m │ │ ├── vtuwrite.m │ │ └── writeudg.m │ ├── Preprocessing │ │ ├── Master.m │ │ ├── checkcompilers.m │ │ ├── checkelementpartition.m │ │ ├── checkmasterbin.m │ │ ├── checkmeshbin.m │ │ ├── checkpdebin.m │ │ ├── checkpreprocessing.m │ │ ├── checksolbin.m │ │ ├── classifyfaces.m │ │ ├── convertHandlesToStrings.m │ │ ├── count_occurrences_sorted.m │ │ ├── createdgnodes.m │ │ ├── createhighordermesh.m │ │ ├── createnodes.m │ │ ├── elementpartition.m │ │ ├── elementpartition2.m │ │ ├── elementpartitionhdg.m │ │ ├── faceconnectivity.m │ │ ├── faceconnectivity2.m │ │ ├── facenumbering.m │ │ ├── faceordering.m │ │ ├── facepartition.m │ │ ├── facepartition2.m │ │ ├── facepartitionhdg.m │ │ ├── findexec.m │ │ ├── findneighborfaces.m │ │ ├── gaussnodes.bin │ │ ├── gaussnodes.m │ │ ├── gaussnodes.mat │ │ ├── genlib.m │ │ ├── getelemface.m │ │ ├── gridpartition2d.m │ │ ├── gridpartition3d.m │ │ ├── group_nodes_with_two_neighbors.m │ │ ├── initializeapp.m │ │ ├── initializeexasim.m │ │ ├── initializemesh.m │ │ ├── initializepde.m │ │ ├── interfacepartition.m │ │ ├── jacobi.m │ │ ├── koornwinder.m │ │ ├── legendrepolynomial.m │ │ ├── localbasis.m │ │ ├── lu_inplace.m │ │ ├── masternodes.bin │ │ ├── masternodes.m │ │ ├── masternodes.mat │ │ ├── meshpartition.m │ │ ├── meshpartition2.m │ │ ├── meshpartitionhdg.m │ │ ├── mkcgent2dgent.m │ │ ├── mkcgent2elem.m │ │ ├── mkdge2dgf.m │ │ ├── mke2e.m │ │ ├── mke2f.m │ │ ├── mkelconcg.m │ │ ├── mkelemblocks.m │ │ ├── mkent2elem.m │ │ ├── mkf.m │ │ ├── mkf2e.m │ │ ├── mkf2f.m │ │ ├── mkf2t.m │ │ ├── mkf2t2.m │ │ ├── mkfaceblocks.m │ │ ├── mkshape.m │ │ ├── mkv2t.m │ │ ├── node2elem.m │ │ ├── partition.m │ │ ├── permindex.m │ │ ├── plotpartition.m │ │ ├── preprocessing.m │ │ ├── readappbin.m │ │ ├── readbin.m │ │ ├── readmasterbin.m │ │ ├── readmeshbin.m │ │ ├── readmeshstruct.m │ │ ├── readsolbin.m │ │ ├── readsolstruct.m │ │ ├── saveStructToTextFile.m │ │ ├── setboundary.m │ │ ├── setboundaryperiodicfaces.m │ │ ├── setcompilers.m │ │ ├── setperiodic.m │ │ ├── tensorproduct.m │ │ ├── test.m │ │ ├── testpartitionhdg.m │ │ ├── writeapp.m │ │ ├── writebin.m │ │ ├── writeboundaryexpr.m │ │ ├── writedmd.m │ │ ├── writeinputfile.m │ │ ├── writemaster.m │ │ ├── writemesh.m │ │ ├── writesol.m │ │ └── xiny.m │ ├── STG │ │ ├── TemporalCorrelation.m │ │ ├── calculateEk.m │ │ ├── calculatek.m │ │ ├── fluctvel.m │ │ ├── freestreamturb.m │ │ ├── homogeneousturbulence.m │ │ ├── homogenousisotropicconvectivefluctuations.m │ │ ├── homogenousisotropicfluctuations.m │ │ ├── interpolate.m │ │ ├── randomgen.m │ │ ├── stg.cu │ │ ├── stgcomp.m │ │ ├── stghomogeneousturbulence.m │ │ ├── stginit.m │ │ ├── vonkarmanspectrum.m │ │ ├── wavenumberdistr.m │ │ └── wavenumbers.m │ ├── Utilities │ │ ├── MarchingCubes.m │ │ ├── NewtonExasim.m │ │ ├── assembleRhsExasim.m │ │ ├── averagevector.m │ │ ├── blockjacobiExasim.m │ │ ├── boundaryplot.m │ │ ├── calerror.m │ │ ├── chemreactingeval.m │ │ ├── cleanpdeapp.m │ │ ├── comparebinfiles.m │ │ ├── computeElemMeasure.m │ │ ├── coolwarm.m │ │ ├── dante.m │ │ ├── dg2cg.m │ │ ├── dg2cg2.m │ │ ├── dgprojection.m │ │ ├── eulereval.m │ │ ├── eulereval3d.m │ │ ├── evalfield.m │ │ ├── faceplot.m │ │ ├── fieldatdgnodes.m │ │ ├── fieldatx.m │ │ ├── findex.m │ │ ├── findinvalidxi.m │ │ ├── findxi.m │ │ ├── fixdgmesh.m │ │ ├── getViscosity.m │ │ ├── getsolonsurface.m │ │ ├── getsurfacedata2.m │ │ ├── getuhat.m │ │ ├── gradient_machnumber.m │ │ ├── gradu.m │ │ ├── graduface.m │ │ ├── inferno.m │ │ ├── initu.m │ │ ├── interpsol.m │ │ ├── inverselog.m │ │ ├── isosurfaceplot.m │ │ ├── l2eprojection.m │ │ ├── limiting.m │ │ ├── lmax.m │ │ ├── lmin.m │ │ ├── locatexinmesh.m │ │ ├── logdec.m │ │ ├── loginc.m │ │ ├── mArrow3.m │ │ ├── magma.m │ │ ├── marchingtet.m │ │ ├── massinv.m │ │ ├── matlabcodegen.m │ │ ├── matvecExasim.m │ │ ├── meshdist.m │ │ ├── meshdist2.m │ │ ├── meshdist3.m │ │ ├── meshplot.m │ │ ├── mkmovie.m │ │ ├── mkpng.m │ │ ├── newtonx.m │ │ ├── plasma.m │ │ ├── plotface.m │ │ ├── points.m │ │ ├── ptplot.m │ │ ├── qEquationExasim.m │ │ ├── qcriterion.m │ │ ├── redblue.m │ │ ├── scaplot.m │ │ ├── scaplot3.m │ │ ├── scaplot3d.m │ │ ├── screen2png.m │ │ ├── secplot.m │ │ ├── sliceplot.m │ │ ├── solfaceplot.m │ │ ├── ssplot.m │ │ ├── subgridplot.m │ │ ├── surfaceplot.m │ │ ├── tensorproductquadrature.m │ │ ├── uEquationElemExasim.m │ │ ├── uEquationFaceExasim.m │ │ ├── uEquationSchurExasim.m │ │ ├── uEquationSchurExasim2.m │ │ ├── uhplot.m │ │ ├── viridis.m │ │ └── volgeom.m │ └── master │ │ ├── autogencpp_gaussquad_simplices.m │ │ ├── errormsg.cpp │ │ ├── gaussLobattoQuad.cpp │ │ ├── gaussQuad.cpp │ │ ├── gaussQuadTet.cpp │ │ ├── gaussQuadTri.cpp │ │ ├── gaussquad.m │ │ ├── gaussquad1d.m │ │ ├── gaussquad2d.m │ │ ├── gaussquad3d.m │ │ ├── jacobi.m │ │ ├── koornwinder.cpp │ │ ├── koornwinder.m │ │ ├── make_master │ │ ├── make_master.a │ │ ├── make_master.cpp │ │ ├── make_master.o │ │ ├── masterelement.m │ │ ├── masternodes.cpp │ │ ├── mastersubgrid.m │ │ ├── mkmaster.cpp │ │ ├── mkmaster.h │ │ ├── mkmaster.m │ │ ├── mkmastergriddual.m │ │ ├── mkmasternodes.m │ │ ├── mkmastersubgrid.m │ │ ├── mkshape.cpp │ │ ├── mkshape.m │ │ ├── prismshape.m │ │ ├── quadrature.cpp │ │ ├── tensorproduct.cpp │ │ ├── tensorproduct.m │ │ ├── testmaster │ │ ├── testmaster.cpp │ │ ├── testmaster2 │ │ ├── testpython.mat │ │ ├── typedefint.h │ │ ├── validate │ │ ├── validate_mkmaster │ │ ├── validate_mkmaster.cpp │ │ ├── validate_mkmaster.m │ │ └── wrapper.h └── Python │ ├── .DS_Store │ ├── Gencode │ ├── Gencode.py │ ├── checkcompilers.py │ ├── cmakecompile.py │ ├── compilecode.py │ ├── compilepdemodel.py │ ├── gencodeall.py │ ├── gencodebou.py │ ├── gencodedef.py │ ├── gencodeelem.py │ ├── gencodeelem2.py │ ├── gencodeelem3.py │ ├── gencodeelem4.py │ ├── gencodeelemface.py │ ├── gencodeface.py │ ├── gencodeface2.py │ ├── gencodeface3.py │ ├── genlib.py │ ├── getccode.py │ ├── getflux2d.py │ ├── hdggencodebou.py │ ├── hdggencodebou2.py │ ├── hdggencodeelem.py │ ├── hdggencodeelem2.py │ ├── hdggencodeface.py │ ├── hdggencodeface2.py │ ├── hdgnocodeelem.py │ ├── hdgnocodeelem2.py │ ├── hdgnocodeface.py │ ├── hdgnocodeface2.py │ ├── nocodeelem.py │ ├── nocodeelem2.py │ ├── nocodeelem3.py │ ├── nocodeelem4.py │ ├── nocodeface.py │ ├── nocodeface2.py │ ├── runcode.py │ ├── setcompilers.py │ ├── syminit.py │ ├── sympyassign.py │ ├── sympyassign2.py │ └── varsassign.py │ ├── Mesh │ ├── Mesh.py │ ├── cubemesh.py │ ├── cubesphere.py │ ├── gmshcall.py │ ├── linemesh.py │ ├── lshape.geo │ ├── lshape.msh │ ├── readmesh.py │ ├── squaremesh.py │ └── writemesh.py │ ├── Postprocessing │ ├── Postprocessing.py │ ├── createcgcells.py │ ├── createcggrid.py │ ├── exasim.py │ ├── fetchresidual.py │ ├── fetchsolution.py │ ├── generatecode.py │ ├── getcelltype.py │ ├── getmeansolution.py │ ├── getsolution.py │ ├── getsolutions.py │ ├── producecode.py │ ├── pvdwrite.py │ ├── read_rank.py │ ├── readsol.py │ ├── readsoldmd.py │ ├── readsolmpi.py │ ├── readxdgmpi.py │ ├── vis.py │ └── vtuwrite.py │ └── Preprocessing │ ├── .DS_Store │ ├── Preprocessing.py │ ├── ainb.py │ ├── checkapp.py │ ├── checkmesh.py │ ├── createdgnodes.py │ ├── createhighordermesh.py │ ├── createnodes.py │ ├── elementpartition.py │ ├── elementpartition2.py │ ├── elementpartitionhdg.py │ ├── faceconnectivity.py │ ├── faceconnectivity2.py │ ├── facenumbering.py │ ├── facepartition.py │ ├── facepartition2.py │ ├── facepartitionhdg.py │ ├── findexec.py │ ├── gaussnodes.bin │ ├── gaussnodes.py │ ├── getelemface.py │ ├── initializeapp.py │ ├── initializeexasim.py │ ├── initializemesh.py │ ├── initializepde.py │ ├── koornwinder.py │ ├── koornwinder1d.py │ ├── koornwinder2d.py │ ├── koornwinder3d.py │ ├── localbasis.py │ ├── masternodes.bin │ ├── masternodes.py │ ├── meshpartition.py │ ├── meshpartition2.py │ ├── meshpartitionhdg.py │ ├── mkcgent2dgent.py │ ├── mkdge2dgf.py │ ├── mkelconcg.py │ ├── mkelemblocks.py │ ├── mkent2elem.py │ ├── mkf2e.py │ ├── mkf2t.py │ ├── mkfaceblocks.py │ ├── mkmaster.py │ ├── mkshape.py │ ├── mkv2t.py │ ├── neighboringelements.py │ ├── node2elem.py │ ├── partition.py │ ├── permindex.py │ ├── readapp.py │ ├── readbin.py │ ├── readmeshstruct.py │ ├── sortrows.py │ ├── tensorproduct.py │ ├── test.py │ ├── testing.py │ ├── writeapp.py │ ├── writebin.py │ ├── writemaster.py │ ├── writesol.py │ └── xiny.py ├── install ├── CMakeLists.txt ├── Makefile ├── Makefile.builds ├── cmakecompile.jl ├── cmakecompile.m ├── compilepdemodel.m ├── findinstallexec.jl ├── findinstallexec.m ├── findinstallexec.py ├── hpc.txt ├── install.jl ├── install.m ├── install.py ├── installkokkos.txt ├── setpath.jl ├── setpath.m └── setpath.py ├── kokkos ├── CHANGELOG.md ├── CITATION.cff ├── CMakeLists.txt ├── CONTRIBUTING.md ├── Copyright.txt ├── LICENSE ├── Makefile.builds ├── Makefile.kokkos ├── Makefile.targets ├── README.md ├── SECURITY.md ├── Spack.md ├── algorithms │ ├── CMakeLists.txt │ ├── perf_test │ │ ├── CMakeLists.txt │ │ └── test_inclusive_scan.cpp │ ├── src │ │ ├── CMakeLists.txt │ │ ├── KokkosAlgorithms_dummy.cpp │ │ ├── Kokkos_NestedSort.hpp │ │ ├── Kokkos_Random.cppm │ │ ├── Kokkos_Random.hpp │ │ ├── Kokkos_Sort.cppm │ │ ├── Kokkos_Sort.hpp │ │ ├── Kokkos_StdAlgorithms.cppm │ │ ├── Kokkos_StdAlgorithms.hpp │ │ ├── sorting │ │ │ ├── Kokkos_BinOpsPublicAPI.hpp │ │ │ ├── Kokkos_BinSortPublicAPI.hpp │ │ │ ├── Kokkos_NestedSortPublicAPI.hpp │ │ │ ├── Kokkos_SortByKeyPublicAPI.hpp │ │ │ ├── Kokkos_SortPublicAPI.hpp │ │ │ └── impl │ │ │ │ ├── Kokkos_CopyOpsForBinSortImpl.hpp │ │ │ │ ├── Kokkos_NestedSortImpl.hpp │ │ │ │ ├── Kokkos_SortByKeyImpl.hpp │ │ │ │ └── Kokkos_SortImpl.hpp │ │ └── std_algorithms │ │ │ ├── Kokkos_AdjacentDifference.hpp │ │ │ ├── Kokkos_AdjacentFind.hpp │ │ │ ├── Kokkos_AllOf.hpp │ │ │ ├── Kokkos_AnyOf.hpp │ │ │ ├── Kokkos_BeginEnd.hpp │ │ │ ├── Kokkos_Copy.hpp │ │ │ ├── Kokkos_CopyBackward.hpp │ │ │ ├── Kokkos_CopyIf.hpp │ │ │ ├── Kokkos_CopyN.hpp │ │ │ ├── Kokkos_Count.hpp │ │ │ ├── Kokkos_CountIf.hpp │ │ │ ├── Kokkos_Distance.hpp │ │ │ ├── Kokkos_Equal.hpp │ │ │ ├── Kokkos_ExclusiveScan.hpp │ │ │ ├── Kokkos_Fill.hpp │ │ │ ├── Kokkos_FillN.hpp │ │ │ ├── Kokkos_Find.hpp │ │ │ ├── Kokkos_FindEnd.hpp │ │ │ ├── Kokkos_FindFirstOf.hpp │ │ │ ├── Kokkos_FindIf.hpp │ │ │ ├── Kokkos_FindIfNot.hpp │ │ │ ├── Kokkos_ForEach.hpp │ │ │ ├── Kokkos_ForEachN.hpp │ │ │ ├── Kokkos_Generate.hpp │ │ │ ├── Kokkos_GenerateN.hpp │ │ │ ├── Kokkos_InclusiveScan.hpp │ │ │ ├── Kokkos_IsPartitioned.hpp │ │ │ ├── Kokkos_IsSorted.hpp │ │ │ ├── Kokkos_IsSortedUntil.hpp │ │ │ ├── Kokkos_IterSwap.hpp │ │ │ ├── Kokkos_LexicographicalCompare.hpp │ │ │ ├── Kokkos_MaxElement.hpp │ │ │ ├── Kokkos_MinElement.hpp │ │ │ ├── Kokkos_MinMaxElement.hpp │ │ │ ├── Kokkos_Mismatch.hpp │ │ │ ├── Kokkos_Move.hpp │ │ │ ├── Kokkos_MoveBackward.hpp │ │ │ ├── Kokkos_NoneOf.hpp │ │ │ ├── Kokkos_PartitionCopy.hpp │ │ │ ├── Kokkos_PartitionPoint.hpp │ │ │ ├── Kokkos_Reduce.hpp │ │ │ ├── Kokkos_Remove.hpp │ │ │ ├── Kokkos_RemoveCopy.hpp │ │ │ ├── Kokkos_RemoveCopyIf.hpp │ │ │ ├── Kokkos_RemoveIf.hpp │ │ │ ├── Kokkos_Replace.hpp │ │ │ ├── Kokkos_ReplaceCopy.hpp │ │ │ ├── Kokkos_ReplaceCopyIf.hpp │ │ │ ├── Kokkos_ReplaceIf.hpp │ │ │ ├── Kokkos_Reverse.hpp │ │ │ ├── Kokkos_ReverseCopy.hpp │ │ │ ├── Kokkos_Rotate.hpp │ │ │ ├── Kokkos_RotateCopy.hpp │ │ │ ├── Kokkos_Search.hpp │ │ │ ├── Kokkos_SearchN.hpp │ │ │ ├── Kokkos_ShiftLeft.hpp │ │ │ ├── Kokkos_ShiftRight.hpp │ │ │ ├── Kokkos_SwapRanges.hpp │ │ │ ├── Kokkos_Transform.hpp │ │ │ ├── Kokkos_TransformExclusiveScan.hpp │ │ │ ├── Kokkos_TransformInclusiveScan.hpp │ │ │ ├── Kokkos_TransformReduce.hpp │ │ │ ├── Kokkos_Unique.hpp │ │ │ ├── Kokkos_UniqueCopy.hpp │ │ │ └── impl │ │ │ ├── Kokkos_AdjacentDifference.hpp │ │ │ ├── Kokkos_AdjacentFind.hpp │ │ │ ├── Kokkos_AllOfAnyOfNoneOf.hpp │ │ │ ├── Kokkos_Constraints.hpp │ │ │ ├── Kokkos_CopyBackward.hpp │ │ │ ├── Kokkos_CopyCopyN.hpp │ │ │ ├── Kokkos_CopyIf.hpp │ │ │ ├── Kokkos_CountCountIf.hpp │ │ │ ├── Kokkos_Equal.hpp │ │ │ ├── Kokkos_ExclusiveScan.hpp │ │ │ ├── Kokkos_FillFillN.hpp │ │ │ ├── Kokkos_FindEnd.hpp │ │ │ ├── Kokkos_FindFirstOf.hpp │ │ │ ├── Kokkos_FindIfOrNot.hpp │ │ │ ├── Kokkos_ForEachForEachN.hpp │ │ │ ├── Kokkos_FunctorsForExclusiveScan.hpp │ │ │ ├── Kokkos_GenerateGenerateN.hpp │ │ │ ├── Kokkos_HelperPredicates.hpp │ │ │ ├── Kokkos_IdentityReferenceUnaryFunctor.hpp │ │ │ ├── Kokkos_InclusiveScan.hpp │ │ │ ├── Kokkos_IsPartitioned.hpp │ │ │ ├── Kokkos_IsSorted.hpp │ │ │ ├── Kokkos_IsSortedUntil.hpp │ │ │ ├── Kokkos_LexicographicalCompare.hpp │ │ │ ├── Kokkos_MinMaxMinmaxElement.hpp │ │ │ ├── Kokkos_Mismatch.hpp │ │ │ ├── Kokkos_Move.hpp │ │ │ ├── Kokkos_MoveBackward.hpp │ │ │ ├── Kokkos_MustUseKokkosSingleInTeam.hpp │ │ │ ├── Kokkos_PartitionCopy.hpp │ │ │ ├── Kokkos_PartitionPoint.hpp │ │ │ ├── Kokkos_RandomAccessIterator.hpp │ │ │ ├── Kokkos_Reduce.hpp │ │ │ ├── Kokkos_ReducerWithArbitraryJoinerNoNeutralElement.hpp │ │ │ ├── Kokkos_RemoveAllVariants.hpp │ │ │ ├── Kokkos_Replace.hpp │ │ │ ├── Kokkos_ReplaceCopy.hpp │ │ │ ├── Kokkos_ReplaceCopyIf.hpp │ │ │ ├── Kokkos_ReplaceIf.hpp │ │ │ ├── Kokkos_Reverse.hpp │ │ │ ├── Kokkos_ReverseCopy.hpp │ │ │ ├── Kokkos_Rotate.hpp │ │ │ ├── Kokkos_RotateCopy.hpp │ │ │ ├── Kokkos_Search.hpp │ │ │ ├── Kokkos_SearchN.hpp │ │ │ ├── Kokkos_ShiftLeft.hpp │ │ │ ├── Kokkos_ShiftRight.hpp │ │ │ ├── Kokkos_SwapRanges.hpp │ │ │ ├── Kokkos_Transform.hpp │ │ │ ├── Kokkos_TransformExclusiveScan.hpp │ │ │ ├── Kokkos_TransformInclusiveScan.hpp │ │ │ ├── Kokkos_TransformReduce.hpp │ │ │ ├── Kokkos_Unique.hpp │ │ │ ├── Kokkos_UniqueCopy.hpp │ │ │ └── Kokkos_ValueWrapperForNoNeutralElement.hpp │ └── unit_tests │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── TestBinSortA.hpp │ │ ├── TestBinSortB.hpp │ │ ├── TestNestedSort.hpp │ │ ├── TestRandom.hpp │ │ ├── TestRandomAccessIterator.cpp │ │ ├── TestSort.hpp │ │ ├── TestSortByKey.hpp │ │ ├── TestSortCustomComp.hpp │ │ ├── TestStdAlgorithmsAdjacentDifference.cpp │ │ ├── TestStdAlgorithmsAdjacentFind.cpp │ │ ├── TestStdAlgorithmsAllAnyNoneOf.cpp │ │ ├── TestStdAlgorithmsCommon.cpp │ │ ├── TestStdAlgorithmsCommon.hpp │ │ ├── TestStdAlgorithmsCompileOnly.cpp │ │ ├── TestStdAlgorithmsConstraints.cpp │ │ ├── TestStdAlgorithmsCopyIf.cpp │ │ ├── TestStdAlgorithmsCount.cpp │ │ ├── TestStdAlgorithmsEqual.cpp │ │ ├── TestStdAlgorithmsExclusiveScan.cpp │ │ ├── TestStdAlgorithmsFind.cpp │ │ ├── TestStdAlgorithmsFindEnd.cpp │ │ ├── TestStdAlgorithmsFindFirstOf.cpp │ │ ├── TestStdAlgorithmsForEach.cpp │ │ ├── TestStdAlgorithmsHelperFunctors.hpp │ │ ├── TestStdAlgorithmsInclusiveScan.cpp │ │ ├── TestStdAlgorithmsIsSorted.cpp │ │ ├── TestStdAlgorithmsIsSortedUntil.cpp │ │ ├── TestStdAlgorithmsLexicographicalCompare.cpp │ │ ├── TestStdAlgorithmsMinMaxElementOps.cpp │ │ ├── TestStdAlgorithmsMismatch.cpp │ │ ├── TestStdAlgorithmsModOps.cpp │ │ ├── TestStdAlgorithmsModSeqOps.cpp │ │ ├── TestStdAlgorithmsMoveBackward.cpp │ │ ├── TestStdAlgorithmsNumerics.cpp │ │ ├── TestStdAlgorithmsPartitionCopy.cpp │ │ ├── TestStdAlgorithmsPartitioningOps.cpp │ │ ├── TestStdAlgorithmsRemove.cpp │ │ ├── TestStdAlgorithmsRemoveCopy.cpp │ │ ├── TestStdAlgorithmsRemoveCopyIf.cpp │ │ ├── TestStdAlgorithmsRemoveIf.cpp │ │ ├── TestStdAlgorithmsReplace.cpp │ │ ├── TestStdAlgorithmsReplaceCopy.cpp │ │ ├── TestStdAlgorithmsReplaceCopyIf.cpp │ │ ├── TestStdAlgorithmsReplaceIf.cpp │ │ ├── TestStdAlgorithmsReverse.cpp │ │ ├── TestStdAlgorithmsRotate.cpp │ │ ├── TestStdAlgorithmsRotateCopy.cpp │ │ ├── TestStdAlgorithmsSearch.cpp │ │ ├── TestStdAlgorithmsSearch_n.cpp │ │ ├── TestStdAlgorithmsShiftLeft.cpp │ │ ├── TestStdAlgorithmsShiftRight.cpp │ │ ├── TestStdAlgorithmsTeamAdjacentDifference.cpp │ │ ├── TestStdAlgorithmsTeamAdjacentFind.cpp │ │ ├── TestStdAlgorithmsTeamAllOf.cpp │ │ ├── TestStdAlgorithmsTeamAnyOf.cpp │ │ ├── TestStdAlgorithmsTeamCopy.cpp │ │ ├── TestStdAlgorithmsTeamCopyBackward.cpp │ │ ├── TestStdAlgorithmsTeamCopyIf.cpp │ │ ├── TestStdAlgorithmsTeamCopy_n.cpp │ │ ├── TestStdAlgorithmsTeamCount.cpp │ │ ├── TestStdAlgorithmsTeamCountIf.cpp │ │ ├── TestStdAlgorithmsTeamEqual.cpp │ │ ├── TestStdAlgorithmsTeamExclusiveScan.cpp │ │ ├── TestStdAlgorithmsTeamFill.cpp │ │ ├── TestStdAlgorithmsTeamFill_n.cpp │ │ ├── TestStdAlgorithmsTeamFind.cpp │ │ ├── TestStdAlgorithmsTeamFindEnd.cpp │ │ ├── TestStdAlgorithmsTeamFindFirstOf.cpp │ │ ├── TestStdAlgorithmsTeamFindIf.cpp │ │ ├── TestStdAlgorithmsTeamFindIfNot.cpp │ │ ├── TestStdAlgorithmsTeamForEach.cpp │ │ ├── TestStdAlgorithmsTeamForEachN.cpp │ │ ├── TestStdAlgorithmsTeamGenerate.cpp │ │ ├── TestStdAlgorithmsTeamGenerate_n.cpp │ │ ├── TestStdAlgorithmsTeamInclusiveScan.cpp │ │ ├── TestStdAlgorithmsTeamIsPartitioned.cpp │ │ ├── TestStdAlgorithmsTeamIsSorted.cpp │ │ ├── TestStdAlgorithmsTeamIsSortedUntil.cpp │ │ ├── TestStdAlgorithmsTeamLexicographicalCompare.cpp │ │ ├── TestStdAlgorithmsTeamMaxElement.cpp │ │ ├── TestStdAlgorithmsTeamMinElement.cpp │ │ ├── TestStdAlgorithmsTeamMinMaxElement.cpp │ │ ├── TestStdAlgorithmsTeamMismatch.cpp │ │ ├── TestStdAlgorithmsTeamMove.cpp │ │ ├── TestStdAlgorithmsTeamMoveBackward.cpp │ │ ├── TestStdAlgorithmsTeamNoneOf.cpp │ │ ├── TestStdAlgorithmsTeamPartitionCopy.cpp │ │ ├── TestStdAlgorithmsTeamPartitionPoint.cpp │ │ ├── TestStdAlgorithmsTeamReduce.cpp │ │ ├── TestStdAlgorithmsTeamRemove.cpp │ │ ├── TestStdAlgorithmsTeamRemoveCopy.cpp │ │ ├── TestStdAlgorithmsTeamRemoveCopyIf.cpp │ │ ├── TestStdAlgorithmsTeamRemoveIf.cpp │ │ ├── TestStdAlgorithmsTeamReplace.cpp │ │ ├── TestStdAlgorithmsTeamReplaceCopy.cpp │ │ ├── TestStdAlgorithmsTeamReplaceCopyIf.cpp │ │ ├── TestStdAlgorithmsTeamReplaceIf.cpp │ │ ├── TestStdAlgorithmsTeamReverse.cpp │ │ ├── TestStdAlgorithmsTeamReverseCopy.cpp │ │ ├── TestStdAlgorithmsTeamRotate.cpp │ │ ├── TestStdAlgorithmsTeamRotateCopy.cpp │ │ ├── TestStdAlgorithmsTeamSearch.cpp │ │ ├── TestStdAlgorithmsTeamSearchN.cpp │ │ ├── TestStdAlgorithmsTeamShiftLeft.cpp │ │ ├── TestStdAlgorithmsTeamShiftRight.cpp │ │ ├── TestStdAlgorithmsTeamSwapRanges.cpp │ │ ├── TestStdAlgorithmsTeamTransformBinaryOp.cpp │ │ ├── TestStdAlgorithmsTeamTransformExclusiveScan.cpp │ │ ├── TestStdAlgorithmsTeamTransformInclusiveScan.cpp │ │ ├── TestStdAlgorithmsTeamTransformReduce.cpp │ │ ├── TestStdAlgorithmsTeamTransformUnaryOp.cpp │ │ ├── TestStdAlgorithmsTeamUnique.cpp │ │ ├── TestStdAlgorithmsTeamUniqueCopy.cpp │ │ ├── TestStdAlgorithmsTransformExclusiveScan.cpp │ │ ├── TestStdAlgorithmsTransformInclusiveScan.cpp │ │ ├── TestStdAlgorithmsTransformUnaryOp.cpp │ │ ├── TestStdAlgorithmsUnique.cpp │ │ ├── TestStdAlgorithmsUniqueCopy.cpp │ │ ├── TestStdReducers.cpp │ │ └── UnitTestMain.cpp ├── benchmarks │ ├── CMakeLists.txt │ ├── atomic │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ └── main.cpp │ ├── bytes_and_flops │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── bench.hpp │ │ ├── bench_double.cpp │ │ ├── bench_float.cpp │ │ ├── bench_int32_t.cpp │ │ ├── bench_int64_t.cpp │ │ ├── bench_stride.hpp │ │ ├── bench_unroll_stride.hpp │ │ └── main.cpp │ ├── gather │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── gather.hpp │ │ ├── gather_unroll.hpp │ │ └── main.cpp │ ├── gups │ │ ├── CMakeLists.txt │ │ └── gups.cpp │ ├── launch_latency │ │ ├── CMakeLists.txt │ │ └── launch_latency.cpp │ ├── policy_performance │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── main.cpp │ │ ├── policy_perf_test.hpp │ │ ├── script_basic_testing.sh │ │ └── script_sample_usage.sh │ ├── stream │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ └── stream-kokkos.cpp │ └── view_copy_constructor │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ └── view_copy_constructor.cpp ├── bin │ ├── hpcbind │ ├── kokkos_launch_compiler │ ├── nvcc_wrapper │ └── runtest ├── cmake │ ├── Dependencies.cmake │ ├── KokkosConfig.cmake.in │ ├── KokkosConfigCommon.cmake.in │ ├── KokkosCore_Config_HeaderSet.in │ ├── KokkosCore_config.h.in │ ├── Kokkos_Version_Info.cpp.in │ ├── Kokkos_Version_Info.hpp │ ├── Modules │ │ ├── CudaToolkit.cmake │ │ ├── FindTPLCUDA.cmake │ │ ├── FindTPLHPX.cmake │ │ ├── FindTPLHWLOC.cmake │ │ ├── FindTPLLIBDL.cmake │ │ ├── FindTPLLIBQUADMATH.cmake │ │ ├── FindTPLONEDPL.cmake │ │ ├── FindTPLROCM.cmake │ │ ├── FindTPLROCTHRUST.cmake │ │ └── FindTPLTHREADS.cmake │ ├── README.md │ ├── build_env_info.cmake │ ├── compile_tests │ │ ├── amd_apu.cc │ │ ├── clang_omp.cpp │ │ ├── cplusplus17.cpp │ │ ├── cuda_compute_capability.cc │ │ └── get_sve_hw_vl.cpp │ ├── cray.cmake │ ├── deps │ │ ├── CUDA.cmake │ │ ├── HWLOC.cmake │ │ ├── Pthread.cmake │ │ └── quadmath.cmake │ ├── fake_tribits.cmake │ ├── gnu.cmake │ ├── kokkos_arch.cmake │ ├── kokkos_check_env.cmake │ ├── kokkos_compiler_id.cmake │ ├── kokkos_configure_trilinos.cmake │ ├── kokkos_corner_cases.cmake │ ├── kokkos_enable_devices.cmake │ ├── kokkos_enable_options.cmake │ ├── kokkos_functions.cmake │ ├── kokkos_install.cmake │ ├── kokkos_pick_cxx_std.cmake │ ├── kokkos_test_cxx_std.cmake │ ├── kokkos_tpls.cmake │ ├── kokkos_tribits.cmake │ ├── msvc.cmake │ ├── pgi.cmake │ └── tpls │ │ ├── FindTPLHWLOC.cmake │ │ ├── FindTPLPthread.cmake │ │ └── FindTPLquadmath.cmake ├── containers │ ├── CMakeLists.txt │ ├── performance_tests │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── TestCuda.cpp │ │ ├── TestDynRankView.hpp │ │ ├── TestGlobal2LocalIds.hpp │ │ ├── TestHIP.cpp │ │ ├── TestHPX.cpp │ │ ├── TestMain.cpp │ │ ├── TestOpenMP.cpp │ │ ├── TestScatterView.hpp │ │ ├── TestThreads.cpp │ │ └── TestUnorderedMapPerformance.hpp │ ├── src │ │ ├── CMakeLists.txt │ │ ├── Kokkos_Bitset.hpp │ │ ├── Kokkos_DualView.hpp │ │ ├── Kokkos_DynRankView.hpp │ │ ├── Kokkos_DynamicView.hpp │ │ ├── Kokkos_ErrorReporter.hpp │ │ ├── Kokkos_Functional.hpp │ │ ├── Kokkos_OffsetView.hpp │ │ ├── Kokkos_ScatterView.hpp │ │ ├── Kokkos_StaticCrsGraph.hpp │ │ ├── Kokkos_UnorderedMap.hpp │ │ ├── Kokkos_Vector.hpp │ │ └── impl │ │ │ ├── Kokkos_Bitset_impl.hpp │ │ │ ├── Kokkos_Functional_impl.hpp │ │ │ ├── Kokkos_StaticCrsGraph_factory.hpp │ │ │ ├── Kokkos_UnorderedMap_impl.cpp │ │ │ └── Kokkos_UnorderedMap_impl.hpp │ └── unit_tests │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── TestBitset.hpp │ │ ├── TestCompileMain.cpp │ │ ├── TestCreateMirror.cpp │ │ ├── TestDualView.hpp │ │ ├── TestDualViewParameterPack.cpp │ │ ├── TestDynRankViewTypedefs.cpp │ │ ├── TestDynRankView_TeamScratch.hpp │ │ ├── TestDynRankView_ViewCustomization.hpp │ │ ├── TestDynViewAPI.hpp │ │ ├── TestDynViewAPI_generic.hpp │ │ ├── TestDynViewAPI_rank12345.hpp │ │ ├── TestDynViewAPI_rank67.hpp │ │ ├── TestDynamicView.hpp │ │ ├── TestErrorReporter.hpp │ │ ├── TestIsViewTrait.cpp │ │ ├── TestOffsetView.hpp │ │ ├── TestScatterView.hpp │ │ ├── TestStaticCrsGraph.hpp │ │ ├── TestUnorderedMap.hpp │ │ ├── TestVector.hpp │ │ ├── TestViewCtorPropEmbeddedDim.hpp │ │ ├── TestWithoutInitializing.hpp │ │ └── UnitTestMain.cpp ├── core │ ├── CMakeLists.txt │ ├── perf_test │ │ ├── BenchmarkMain.cpp │ │ ├── Benchmark_Context.cpp │ │ ├── Benchmark_Context.hpp │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── PerfTestBlasKernels.hpp │ │ ├── PerfTestDriver.hpp │ │ ├── PerfTestGramSchmidt.cpp │ │ ├── PerfTestHexGrad.cpp │ │ ├── PerfTestMDRange.hpp │ │ ├── PerfTestMain.cpp │ │ ├── PerfTest_Category.hpp │ │ ├── PerfTest_CustomReduction.cpp │ │ ├── PerfTest_ExecSpacePartitioning.cpp │ │ ├── PerfTest_MallocFree.cpp │ │ ├── PerfTest_ViewAllocate.cpp │ │ ├── PerfTest_ViewCopy.hpp │ │ ├── PerfTest_ViewCopy_Raw.cpp │ │ ├── PerfTest_ViewCopy_a123.cpp │ │ ├── PerfTest_ViewCopy_a45.cpp │ │ ├── PerfTest_ViewCopy_a6.cpp │ │ ├── PerfTest_ViewCopy_a7.cpp │ │ ├── PerfTest_ViewCopy_a8.cpp │ │ ├── PerfTest_ViewCopy_b123.cpp │ │ ├── PerfTest_ViewCopy_b45.cpp │ │ ├── PerfTest_ViewCopy_b6.cpp │ │ ├── PerfTest_ViewCopy_b7.cpp │ │ ├── PerfTest_ViewCopy_b8.cpp │ │ ├── PerfTest_ViewCopy_c123.cpp │ │ ├── PerfTest_ViewCopy_c45.cpp │ │ ├── PerfTest_ViewCopy_c6.cpp │ │ ├── PerfTest_ViewCopy_c7.cpp │ │ ├── PerfTest_ViewCopy_c8.cpp │ │ ├── PerfTest_ViewCopy_d123.cpp │ │ ├── PerfTest_ViewCopy_d45.cpp │ │ ├── PerfTest_ViewCopy_d6.cpp │ │ ├── PerfTest_ViewCopy_d7.cpp │ │ ├── PerfTest_ViewCopy_d8.cpp │ │ ├── PerfTest_ViewFill.hpp │ │ ├── PerfTest_ViewFill_123.cpp │ │ ├── PerfTest_ViewFill_45.cpp │ │ ├── PerfTest_ViewFill_6.cpp │ │ ├── PerfTest_ViewFill_7.cpp │ │ ├── PerfTest_ViewFill_8.cpp │ │ ├── PerfTest_ViewFill_Raw.cpp │ │ ├── PerfTest_ViewResize.hpp │ │ ├── PerfTest_ViewResize_123.cpp │ │ ├── PerfTest_ViewResize_45.cpp │ │ ├── PerfTest_ViewResize_6.cpp │ │ ├── PerfTest_ViewResize_7.cpp │ │ ├── PerfTest_ViewResize_8.cpp │ │ ├── PerfTest_ViewResize_Raw.cpp │ │ ├── run_mempool.sh │ │ ├── run_mempool_fill.sh │ │ ├── run_taskdag.sh │ │ ├── test_atomic.cpp │ │ ├── test_atomic_minmax_simple.cpp │ │ ├── test_mempool.cpp │ │ ├── test_reduction.cpp │ │ ├── test_sharedSpace.cpp │ │ └── test_taskdag.cpp │ ├── src │ │ ├── CMakeLists.txt │ │ ├── Cuda │ │ │ ├── Kokkos_Cuda.hpp │ │ │ ├── Kokkos_CudaSpace.cpp │ │ │ ├── Kokkos_CudaSpace.hpp │ │ │ ├── Kokkos_Cuda_BlockSize_Deduction.hpp │ │ │ ├── Kokkos_Cuda_Error.hpp │ │ │ ├── Kokkos_Cuda_GraphNodeKernel.hpp │ │ │ ├── Kokkos_Cuda_GraphNode_Impl.hpp │ │ │ ├── Kokkos_Cuda_Graph_Impl.hpp │ │ │ ├── Kokkos_Cuda_Half_Conversion.hpp │ │ │ ├── Kokkos_Cuda_Half_Impl_Type.hpp │ │ │ ├── Kokkos_Cuda_Half_MathematicalFunctions.hpp │ │ │ ├── Kokkos_Cuda_Instance.cpp │ │ │ ├── Kokkos_Cuda_Instance.hpp │ │ │ ├── Kokkos_Cuda_KernelLaunch.hpp │ │ │ ├── Kokkos_Cuda_MDRangePolicy.hpp │ │ │ ├── Kokkos_Cuda_Parallel_MDRange.hpp │ │ │ ├── Kokkos_Cuda_Parallel_Range.hpp │ │ │ ├── Kokkos_Cuda_Parallel_Team.hpp │ │ │ ├── Kokkos_Cuda_ReduceScan.hpp │ │ │ ├── Kokkos_Cuda_Task.cpp │ │ │ ├── Kokkos_Cuda_Task.hpp │ │ │ ├── Kokkos_Cuda_Team.hpp │ │ │ ├── Kokkos_Cuda_UniqueToken.hpp │ │ │ ├── Kokkos_Cuda_Vectorization.hpp │ │ │ ├── Kokkos_Cuda_View.hpp │ │ │ ├── Kokkos_Cuda_WorkGraphPolicy.hpp │ │ │ ├── Kokkos_Cuda_ZeroMemset.hpp │ │ │ └── Kokkos_Cuda_abort.hpp │ │ ├── HIP │ │ │ ├── Kokkos_HIP.cpp │ │ │ ├── Kokkos_HIP.hpp │ │ │ ├── Kokkos_HIP_Abort.hpp │ │ │ ├── Kokkos_HIP_BlockSize_Deduction.hpp │ │ │ ├── Kokkos_HIP_DeepCopy.cpp │ │ │ ├── Kokkos_HIP_DeepCopy.hpp │ │ │ ├── Kokkos_HIP_Error.hpp │ │ │ ├── Kokkos_HIP_GraphNodeKernel.hpp │ │ │ ├── Kokkos_HIP_GraphNode_Impl.hpp │ │ │ ├── Kokkos_HIP_Graph_Impl.hpp │ │ │ ├── Kokkos_HIP_Half_Conversion.hpp │ │ │ ├── Kokkos_HIP_Half_Impl_Type.hpp │ │ │ ├── Kokkos_HIP_Instance.cpp │ │ │ ├── Kokkos_HIP_Instance.hpp │ │ │ ├── Kokkos_HIP_IsXnack.cpp │ │ │ ├── Kokkos_HIP_IsXnack.hpp │ │ │ ├── Kokkos_HIP_KernelLaunch.hpp │ │ │ ├── Kokkos_HIP_MDRangePolicy.hpp │ │ │ ├── Kokkos_HIP_ParallelFor_MDRange.hpp │ │ │ ├── Kokkos_HIP_ParallelFor_Range.hpp │ │ │ ├── Kokkos_HIP_ParallelFor_Team.hpp │ │ │ ├── Kokkos_HIP_ParallelReduce_MDRange.hpp │ │ │ ├── Kokkos_HIP_ParallelReduce_Range.hpp │ │ │ ├── Kokkos_HIP_ParallelReduce_Team.hpp │ │ │ ├── Kokkos_HIP_ParallelScan_Range.hpp │ │ │ ├── Kokkos_HIP_ReduceScan.hpp │ │ │ ├── Kokkos_HIP_SharedAllocationRecord.cpp │ │ │ ├── Kokkos_HIP_SharedAllocationRecord.hpp │ │ │ ├── Kokkos_HIP_Shuffle_Reduce.hpp │ │ │ ├── Kokkos_HIP_Space.cpp │ │ │ ├── Kokkos_HIP_Space.hpp │ │ │ ├── Kokkos_HIP_Team.hpp │ │ │ ├── Kokkos_HIP_TeamPolicyInternal.hpp │ │ │ ├── Kokkos_HIP_UniqueToken.hpp │ │ │ ├── Kokkos_HIP_Vectorization.hpp │ │ │ ├── Kokkos_HIP_WorkGraphPolicy.hpp │ │ │ ├── Kokkos_HIP_ZeroMemset.cpp │ │ │ └── Kokkos_HIP_ZeroMemset.hpp │ │ ├── HPX │ │ │ ├── Kokkos_HPX.cpp │ │ │ ├── Kokkos_HPX.hpp │ │ │ ├── Kokkos_HPX_MDRangePolicy.hpp │ │ │ ├── Kokkos_HPX_Task.cpp │ │ │ ├── Kokkos_HPX_Task.hpp │ │ │ └── Kokkos_HPX_WorkGraphPolicy.hpp │ │ ├── KokkosExp_InterOp.hpp │ │ ├── KokkosExp_MDRangePolicy.hpp │ │ ├── Kokkos_Abort.hpp │ │ ├── Kokkos_AcquireUniqueTokenImpl.hpp │ │ ├── Kokkos_AnonymousSpace.hpp │ │ ├── Kokkos_Array.hpp │ │ ├── Kokkos_Assert.hpp │ │ ├── Kokkos_Atomic.hpp │ │ ├── Kokkos_Atomics_Desul_Wrapper.hpp │ │ ├── Kokkos_BitManipulation.hpp │ │ ├── Kokkos_Clamp.hpp │ │ ├── Kokkos_Complex.hpp │ │ ├── Kokkos_Concepts.hpp │ │ ├── Kokkos_CopyViews.hpp │ │ ├── Kokkos_Core.hpp │ │ ├── Kokkos_Core_fwd.hpp │ │ ├── Kokkos_Crs.hpp │ │ ├── Kokkos_DetectionIdiom.hpp │ │ ├── Kokkos_ExecPolicy.hpp │ │ ├── Kokkos_Extents.hpp │ │ ├── Kokkos_Future.hpp │ │ ├── Kokkos_Graph.hpp │ │ ├── Kokkos_GraphNode.hpp │ │ ├── Kokkos_Graph_fwd.hpp │ │ ├── Kokkos_Half.hpp │ │ ├── Kokkos_HostSpace.hpp │ │ ├── Kokkos_Layout.hpp │ │ ├── Kokkos_Macros.hpp │ │ ├── Kokkos_MathematicalConstants.hpp │ │ ├── Kokkos_MathematicalFunctions.hpp │ │ ├── Kokkos_MathematicalSpecialFunctions.hpp │ │ ├── Kokkos_MemoryPool.hpp │ │ ├── Kokkos_MemoryTraits.hpp │ │ ├── Kokkos_MinMax.hpp │ │ ├── Kokkos_NumericTraits.hpp │ │ ├── Kokkos_Pair.hpp │ │ ├── Kokkos_Parallel.hpp │ │ ├── Kokkos_Parallel_Reduce.hpp │ │ ├── Kokkos_PointerOwnership.hpp │ │ ├── Kokkos_Printf.hpp │ │ ├── Kokkos_Profiling_ProfileSection.hpp │ │ ├── Kokkos_Profiling_ScopedRegion.hpp │ │ ├── Kokkos_Rank.hpp │ │ ├── Kokkos_ReductionIdentity.hpp │ │ ├── Kokkos_ScratchSpace.hpp │ │ ├── Kokkos_Swap.hpp │ │ ├── Kokkos_TaskScheduler.hpp │ │ ├── Kokkos_TaskScheduler_fwd.hpp │ │ ├── Kokkos_Timer.hpp │ │ ├── Kokkos_Tuners.hpp │ │ ├── Kokkos_TypeInfo.hpp │ │ ├── Kokkos_UniqueToken.hpp │ │ ├── Kokkos_Vectorization.hpp │ │ ├── Kokkos_View.hpp │ │ ├── Kokkos_WorkGraphPolicy.hpp │ │ ├── Kokkos_hwloc.hpp │ │ ├── OpenACC │ │ │ ├── Kokkos_OpenACC.cpp │ │ │ ├── Kokkos_OpenACC.hpp │ │ │ ├── Kokkos_OpenACCSpace.cpp │ │ │ ├── Kokkos_OpenACCSpace.hpp │ │ │ ├── Kokkos_OpenACC_DeepCopy.hpp │ │ │ ├── Kokkos_OpenACC_FunctorAdapter.hpp │ │ │ ├── Kokkos_OpenACC_Instance.cpp │ │ │ ├── Kokkos_OpenACC_Instance.hpp │ │ │ ├── Kokkos_OpenACC_MDRangePolicy.hpp │ │ │ ├── Kokkos_OpenACC_Macros.hpp │ │ │ ├── Kokkos_OpenACC_ParallelFor_MDRange.hpp │ │ │ ├── Kokkos_OpenACC_ParallelFor_Range.hpp │ │ │ ├── Kokkos_OpenACC_ParallelFor_Team.hpp │ │ │ ├── Kokkos_OpenACC_ParallelReduce_MDRange.hpp │ │ │ ├── Kokkos_OpenACC_ParallelReduce_Range.hpp │ │ │ ├── Kokkos_OpenACC_ParallelReduce_Team.hpp │ │ │ ├── Kokkos_OpenACC_ParallelScan_Range.hpp │ │ │ ├── Kokkos_OpenACC_ScheduleType.hpp │ │ │ ├── Kokkos_OpenACC_SharedAllocationRecord.cpp │ │ │ ├── Kokkos_OpenACC_SharedAllocationRecord.hpp │ │ │ ├── Kokkos_OpenACC_Team.hpp │ │ │ └── Kokkos_OpenACC_Traits.hpp │ │ ├── OpenMP │ │ │ ├── Kokkos_OpenMP.cpp │ │ │ ├── Kokkos_OpenMP.hpp │ │ │ ├── Kokkos_OpenMP_Instance.cpp │ │ │ ├── Kokkos_OpenMP_Instance.hpp │ │ │ ├── Kokkos_OpenMP_MDRangePolicy.hpp │ │ │ ├── Kokkos_OpenMP_Parallel_For.hpp │ │ │ ├── Kokkos_OpenMP_Parallel_Reduce.hpp │ │ │ ├── Kokkos_OpenMP_Parallel_Scan.hpp │ │ │ ├── Kokkos_OpenMP_Task.cpp │ │ │ ├── Kokkos_OpenMP_Task.hpp │ │ │ ├── Kokkos_OpenMP_Team.hpp │ │ │ ├── Kokkos_OpenMP_UniqueToken.hpp │ │ │ └── Kokkos_OpenMP_WorkGraphPolicy.hpp │ │ ├── OpenMPTarget │ │ │ ├── Kokkos_OpenMPTarget.hpp │ │ │ ├── Kokkos_OpenMPTargetSpace.cpp │ │ │ ├── Kokkos_OpenMPTargetSpace.hpp │ │ │ ├── Kokkos_OpenMPTarget_Abort.hpp │ │ │ ├── Kokkos_OpenMPTarget_DeepCopy.hpp │ │ │ ├── Kokkos_OpenMPTarget_Error.hpp │ │ │ ├── Kokkos_OpenMPTarget_FunctorAdapter.hpp │ │ │ ├── Kokkos_OpenMPTarget_Instance.cpp │ │ │ ├── Kokkos_OpenMPTarget_Instance.hpp │ │ │ ├── Kokkos_OpenMPTarget_MDRangePolicy.hpp │ │ │ ├── Kokkos_OpenMPTarget_Macros.hpp │ │ │ ├── Kokkos_OpenMPTarget_Parallel.hpp │ │ │ ├── Kokkos_OpenMPTarget_ParallelFor_MDRange.hpp │ │ │ ├── Kokkos_OpenMPTarget_ParallelFor_Range.hpp │ │ │ ├── Kokkos_OpenMPTarget_ParallelFor_Team.hpp │ │ │ ├── Kokkos_OpenMPTarget_ParallelReduce_MDRange.hpp │ │ │ ├── Kokkos_OpenMPTarget_ParallelReduce_Range.hpp │ │ │ ├── Kokkos_OpenMPTarget_ParallelReduce_Team.hpp │ │ │ ├── Kokkos_OpenMPTarget_ParallelScan_Range.hpp │ │ │ ├── Kokkos_OpenMPTarget_ParallelScan_Team.hpp │ │ │ ├── Kokkos_OpenMPTarget_Parallel_Common.hpp │ │ │ ├── Kokkos_OpenMPTarget_Reducer.hpp │ │ │ └── Kokkos_OpenMPTarget_UniqueToken.hpp │ │ ├── SYCL │ │ │ ├── Kokkos_SYCL.cpp │ │ │ ├── Kokkos_SYCL.hpp │ │ │ ├── Kokkos_SYCL_Abort.hpp │ │ │ ├── Kokkos_SYCL_DeepCopy.hpp │ │ │ ├── Kokkos_SYCL_GraphNodeKernel.hpp │ │ │ ├── Kokkos_SYCL_GraphNode_Impl.hpp │ │ │ ├── Kokkos_SYCL_Graph_Impl.hpp │ │ │ ├── Kokkos_SYCL_Half_Conversion.hpp │ │ │ ├── Kokkos_SYCL_Half_Impl_Type.hpp │ │ │ ├── Kokkos_SYCL_Half_MathematicalFunctions.hpp │ │ │ ├── Kokkos_SYCL_Instance.cpp │ │ │ ├── Kokkos_SYCL_Instance.hpp │ │ │ ├── Kokkos_SYCL_MDRangePolicy.hpp │ │ │ ├── Kokkos_SYCL_ParallelFor_MDRange.hpp │ │ │ ├── Kokkos_SYCL_ParallelFor_Range.hpp │ │ │ ├── Kokkos_SYCL_ParallelFor_Team.hpp │ │ │ ├── Kokkos_SYCL_ParallelReduce_MDRange.hpp │ │ │ ├── Kokkos_SYCL_ParallelReduce_Range.hpp │ │ │ ├── Kokkos_SYCL_ParallelReduce_Team.hpp │ │ │ ├── Kokkos_SYCL_ParallelScan_Range.hpp │ │ │ ├── Kokkos_SYCL_Space.cpp │ │ │ ├── Kokkos_SYCL_Space.hpp │ │ │ ├── Kokkos_SYCL_Team.hpp │ │ │ ├── Kokkos_SYCL_TeamPolicy.hpp │ │ │ ├── Kokkos_SYCL_UniqueToken.hpp │ │ │ ├── Kokkos_SYCL_WorkgroupReduction.hpp │ │ │ └── Kokkos_SYCL_ZeroMemset.hpp │ │ ├── Serial │ │ │ ├── Kokkos_Serial.cpp │ │ │ ├── Kokkos_Serial.hpp │ │ │ ├── Kokkos_Serial_MDRangePolicy.hpp │ │ │ ├── Kokkos_Serial_Parallel_MDRange.hpp │ │ │ ├── Kokkos_Serial_Parallel_Range.hpp │ │ │ ├── Kokkos_Serial_Parallel_Team.hpp │ │ │ ├── Kokkos_Serial_Task.cpp │ │ │ ├── Kokkos_Serial_Task.hpp │ │ │ ├── Kokkos_Serial_UniqueToken.hpp │ │ │ ├── Kokkos_Serial_WorkGraphPolicy.hpp │ │ │ └── Kokkos_Serial_ZeroMemset.hpp │ │ ├── Threads │ │ │ ├── Kokkos_Threads.hpp │ │ │ ├── Kokkos_Threads_Instance.cpp │ │ │ ├── Kokkos_Threads_Instance.hpp │ │ │ ├── Kokkos_Threads_MDRangePolicy.hpp │ │ │ ├── Kokkos_Threads_ParallelFor_MDRange.hpp │ │ │ ├── Kokkos_Threads_ParallelFor_Range.hpp │ │ │ ├── Kokkos_Threads_ParallelFor_Team.hpp │ │ │ ├── Kokkos_Threads_ParallelReduce_MDRange.hpp │ │ │ ├── Kokkos_Threads_ParallelReduce_Range.hpp │ │ │ ├── Kokkos_Threads_ParallelReduce_Team.hpp │ │ │ ├── Kokkos_Threads_ParallelScan_Range.hpp │ │ │ ├── Kokkos_Threads_Spinwait.cpp │ │ │ ├── Kokkos_Threads_Spinwait.hpp │ │ │ ├── Kokkos_Threads_State.hpp │ │ │ ├── Kokkos_Threads_Team.hpp │ │ │ ├── Kokkos_Threads_UniqueToken.hpp │ │ │ └── Kokkos_Threads_WorkGraphPolicy.hpp │ │ ├── View │ │ │ ├── Hooks │ │ │ │ └── Kokkos_ViewHooks.hpp │ │ │ ├── Kokkos_BasicView.hpp │ │ │ ├── Kokkos_ViewAccessPreconditionsCheck.hpp │ │ │ ├── Kokkos_ViewAlloc.hpp │ │ │ ├── Kokkos_ViewAtomic.hpp │ │ │ ├── Kokkos_ViewCommonType.hpp │ │ │ ├── Kokkos_ViewCtor.hpp │ │ │ ├── Kokkos_ViewDataAnalysis.hpp │ │ │ ├── Kokkos_ViewLegacy.hpp │ │ │ ├── Kokkos_ViewMapping.hpp │ │ │ ├── Kokkos_ViewTracker.hpp │ │ │ ├── Kokkos_ViewTraits.hpp │ │ │ ├── Kokkos_ViewUniformType.hpp │ │ │ └── MDSpan │ │ │ │ ├── Kokkos_MDSpan_Accessor.hpp │ │ │ │ ├── Kokkos_MDSpan_Extents.hpp │ │ │ │ ├── Kokkos_MDSpan_Header.hpp │ │ │ │ └── Kokkos_MDSpan_Layout.hpp │ │ ├── decl │ │ │ ├── Kokkos_Declare_CUDA.hpp │ │ │ ├── Kokkos_Declare_HIP.hpp │ │ │ ├── Kokkos_Declare_HPX.hpp │ │ │ ├── Kokkos_Declare_OPENACC.hpp │ │ │ ├── Kokkos_Declare_OPENMP.hpp │ │ │ ├── Kokkos_Declare_OPENMPTARGET.hpp │ │ │ ├── Kokkos_Declare_SERIAL.hpp │ │ │ ├── Kokkos_Declare_SYCL.hpp │ │ │ └── Kokkos_Declare_THREADS.hpp │ │ ├── fwd │ │ │ ├── Kokkos_Fwd_CUDA.hpp │ │ │ ├── Kokkos_Fwd_HIP.hpp │ │ │ ├── Kokkos_Fwd_HPX.hpp │ │ │ ├── Kokkos_Fwd_OPENACC.hpp │ │ │ ├── Kokkos_Fwd_OPENMP.hpp │ │ │ ├── Kokkos_Fwd_OPENMPTARGET.hpp │ │ │ ├── Kokkos_Fwd_SERIAL.hpp │ │ │ ├── Kokkos_Fwd_SYCL.hpp │ │ │ └── Kokkos_Fwd_THREADS.hpp │ │ ├── impl │ │ │ ├── KokkosExp_Host_IterateTile.hpp │ │ │ ├── KokkosExp_IterateTileGPU.hpp │ │ │ ├── Kokkos_Abort.cpp │ │ │ ├── Kokkos_AnalyzePolicy.hpp │ │ │ ├── Kokkos_CPUDiscovery.cpp │ │ │ ├── Kokkos_CPUDiscovery.hpp │ │ │ ├── Kokkos_ChaseLev.hpp │ │ │ ├── Kokkos_CheckedIntegerOps.hpp │ │ │ ├── Kokkos_ClockTic.hpp │ │ │ ├── Kokkos_Combined_Reducer.hpp │ │ │ ├── Kokkos_Command_Line_Parsing.cpp │ │ │ ├── Kokkos_Command_Line_Parsing.hpp │ │ │ ├── Kokkos_ConcurrentBitset.hpp │ │ │ ├── Kokkos_Core.cpp │ │ │ ├── Kokkos_Default_GraphNodeKernel.hpp │ │ │ ├── Kokkos_Default_GraphNode_Impl.hpp │ │ │ ├── Kokkos_Default_Graph_Impl.hpp │ │ │ ├── Kokkos_Default_Graph_fwd.hpp │ │ │ ├── Kokkos_DesulAtomicsConfig.hpp │ │ │ ├── Kokkos_DeviceManagement.hpp │ │ │ ├── Kokkos_EBO.hpp │ │ │ ├── Kokkos_Error.cpp │ │ │ ├── Kokkos_Error.hpp │ │ │ ├── Kokkos_ExecPolicy.cpp │ │ │ ├── Kokkos_ExecSpaceManager.hpp │ │ │ ├── Kokkos_FunctorAnalysis.hpp │ │ │ ├── Kokkos_GraphImpl.hpp │ │ │ ├── Kokkos_GraphImpl_Utilities.hpp │ │ │ ├── Kokkos_GraphImpl_fwd.hpp │ │ │ ├── Kokkos_GraphNodeCustomization.hpp │ │ │ ├── Kokkos_GraphNodeImpl.hpp │ │ │ ├── Kokkos_GraphNodeThenImpl.hpp │ │ │ ├── Kokkos_Half_FloatingPointWrapper.hpp │ │ │ ├── Kokkos_Half_MathematicalFunctions.hpp │ │ │ ├── Kokkos_Half_NumericTraits.hpp │ │ │ ├── Kokkos_HostBarrier.cpp │ │ │ ├── Kokkos_HostBarrier.hpp │ │ │ ├── Kokkos_HostSharedPtr.hpp │ │ │ ├── Kokkos_HostSpace.cpp │ │ │ ├── Kokkos_HostSpace_ZeroMemset.hpp │ │ │ ├── Kokkos_HostSpace_deepcopy.cpp │ │ │ ├── Kokkos_HostSpace_deepcopy.hpp │ │ │ ├── Kokkos_HostThreadTeam.cpp │ │ │ ├── Kokkos_HostThreadTeam.hpp │ │ │ ├── Kokkos_InitializationSettings.hpp │ │ │ ├── Kokkos_LIFO.hpp │ │ │ ├── Kokkos_LinkedListNode.hpp │ │ │ ├── Kokkos_MemoryPool.cpp │ │ │ ├── Kokkos_MultipleTaskQueue.hpp │ │ │ ├── Kokkos_NvidiaGpuArchitectures.hpp │ │ │ ├── Kokkos_OptionalRef.hpp │ │ │ ├── Kokkos_ParseCommandLineArgumentsAndEnvironmentVariables.hpp │ │ │ ├── Kokkos_Profiling.cpp │ │ │ ├── Kokkos_Profiling.hpp │ │ │ ├── Kokkos_Profiling_C_Interface.h │ │ │ ├── Kokkos_Profiling_DeviceInfo.hpp │ │ │ ├── Kokkos_Profiling_Interface.hpp │ │ │ ├── Kokkos_QuadPrecisionMath.hpp │ │ │ ├── Kokkos_SharedAlloc.cpp │ │ │ ├── Kokkos_SharedAlloc.hpp │ │ │ ├── Kokkos_SharedAlloc_timpl.hpp │ │ │ ├── Kokkos_SimpleTaskScheduler.hpp │ │ │ ├── Kokkos_SingleTaskQueue.hpp │ │ │ ├── Kokkos_Stacktrace.cpp │ │ │ ├── Kokkos_Stacktrace.hpp │ │ │ ├── Kokkos_StringManipulation.hpp │ │ │ ├── Kokkos_TaskBase.hpp │ │ │ ├── Kokkos_TaskNode.hpp │ │ │ ├── Kokkos_TaskPolicyData.hpp │ │ │ ├── Kokkos_TaskQueue.hpp │ │ │ ├── Kokkos_TaskQueueCommon.hpp │ │ │ ├── Kokkos_TaskQueueMemoryManager.hpp │ │ │ ├── Kokkos_TaskQueueMultiple.hpp │ │ │ ├── Kokkos_TaskQueueMultiple_impl.hpp │ │ │ ├── Kokkos_TaskQueue_impl.hpp │ │ │ ├── Kokkos_TaskResult.hpp │ │ │ ├── Kokkos_TaskTeamMember.hpp │ │ │ ├── Kokkos_TeamMDPolicy.hpp │ │ │ ├── Kokkos_Tools.hpp │ │ │ ├── Kokkos_Tools_Generic.hpp │ │ │ ├── Kokkos_Traits.hpp │ │ │ ├── Kokkos_Utilities.hpp │ │ │ ├── Kokkos_VLAEmulation.hpp │ │ │ ├── Kokkos_Volatile_Load.hpp │ │ │ ├── Kokkos_ZeroMemset_fwd.hpp │ │ │ └── Kokkos_hwloc.cpp │ │ ├── setup │ │ │ ├── Kokkos_Setup_Cuda.hpp │ │ │ ├── Kokkos_Setup_HIP.hpp │ │ │ └── Kokkos_Setup_SYCL.hpp │ │ └── traits │ │ │ ├── Kokkos_ExecutionSpaceTrait.hpp │ │ │ ├── Kokkos_GraphKernelTrait.hpp │ │ │ ├── Kokkos_IndexTypeTrait.hpp │ │ │ ├── Kokkos_IterationPatternTrait.hpp │ │ │ ├── Kokkos_LaunchBoundsTrait.hpp │ │ │ ├── Kokkos_OccupancyControlTrait.hpp │ │ │ ├── Kokkos_PolicyTraitAdaptor.hpp │ │ │ ├── Kokkos_PolicyTraitMatcher.hpp │ │ │ ├── Kokkos_ScheduleTrait.hpp │ │ │ ├── Kokkos_Traits_fwd.hpp │ │ │ ├── Kokkos_WorkItemPropertyTrait.hpp │ │ │ └── Kokkos_WorkTagTrait.hpp │ └── unit_test │ │ ├── CMakeLists.txt │ │ ├── IncrementalTest.cpp.in │ │ ├── KokkosExecutionEnvironmentNeverInitializedFixture.hpp │ │ ├── Makefile │ │ ├── TestAbort.hpp │ │ ├── TestArray.cpp │ │ ├── TestArrayOps.hpp │ │ ├── TestAtomicOperations.hpp │ │ ├── TestAtomicOperations_complexdouble.hpp │ │ ├── TestAtomicOperations_complexfloat.hpp │ │ ├── TestAtomicOperations_double.hpp │ │ ├── TestAtomicOperations_float.hpp │ │ ├── TestAtomicOperations_int.hpp │ │ ├── TestAtomicOperations_longint.hpp │ │ ├── TestAtomicOperations_longlongint.hpp │ │ ├── TestAtomicOperations_shared.hpp │ │ ├── TestAtomicOperations_unsignedint.hpp │ │ ├── TestAtomicOperations_unsignedlongint.hpp │ │ ├── TestAtomicOperations_unsignedlonglongint.hpp │ │ ├── TestAtomicViews.hpp │ │ ├── TestAtomics.hpp │ │ ├── TestBitManipulation.cpp │ │ ├── TestBitManipulationBuiltins.hpp │ │ ├── TestBlockSizeDeduction.hpp │ │ ├── TestCStyleMemoryManagement.cpp │ │ ├── TestCTestDevice.cpp │ │ ├── TestCXX11.hpp │ │ ├── TestCXX11Deduction.hpp │ │ ├── TestCheckedIntegerOps.hpp │ │ ├── TestCommonPolicyConstructors.hpp │ │ ├── TestCommonPolicyInterface.hpp │ │ ├── TestCompileMain.cpp │ │ ├── TestCompilerMacros.cpp │ │ ├── TestComplex.hpp │ │ ├── TestConcepts.hpp │ │ ├── TestConcurrentBitset.hpp │ │ ├── TestCreateMirror.cpp │ │ ├── TestCrs.hpp │ │ ├── TestDeepCopyAlignment.hpp │ │ ├── TestDetectionIdiom.cpp │ │ ├── TestDeviceAndThreads.py │ │ ├── TestExecSpacePartitioning.hpp │ │ ├── TestExecSpaceThreadSafety.hpp │ │ ├── TestExecutionEnvironmentNonInitializedOrFinalized.cpp │ │ ├── TestExecutionSpace.hpp │ │ ├── TestFunctorAnalysis.hpp │ │ ├── TestGraph.hpp │ │ ├── TestGraphAtomicLocks.hpp │ │ ├── TestHWLOC.cpp │ │ ├── TestHalfConversion.hpp │ │ ├── TestHalfOperators.hpp │ │ ├── TestHostSharedPtr.hpp │ │ ├── TestHostSharedPtrAccessOnDevice.hpp │ │ ├── TestInitializationSettings.cpp │ │ ├── TestInitializeFinalize.cpp │ │ ├── TestInterOp.cpp │ │ ├── TestIrregularLayout.hpp │ │ ├── TestJoinBackwardCompatibility.hpp │ │ ├── TestKokkosHelpCausesNormalProgramTermination.cpp │ │ ├── TestLegionInitialization.cpp │ │ ├── TestLocalDeepCopy.hpp │ │ ├── TestMDRange.hpp │ │ ├── TestMDRangePolicyCTAD.cpp │ │ ├── TestMDRangePolicyConstructors.hpp │ │ ├── TestMDRangeReduce.hpp │ │ ├── TestMDRange_a.hpp │ │ ├── TestMDRange_b.hpp │ │ ├── TestMDRange_c.hpp │ │ ├── TestMDRange_d.hpp │ │ ├── TestMDRange_e.hpp │ │ ├── TestMDRange_f.hpp │ │ ├── TestMDRange_g.hpp │ │ ├── TestMDSpan.hpp │ │ ├── TestMDSpanAtomicAccessor.hpp │ │ ├── TestMDSpanConversion.hpp │ │ ├── TestMathematicalConstants.hpp │ │ ├── TestMathematicalFunctions.hpp │ │ ├── TestMathematicalFunctions1.hpp │ │ ├── TestMathematicalFunctions2.hpp │ │ ├── TestMathematicalFunctions3.hpp │ │ ├── TestMathematicalSpecialFunctions.hpp │ │ ├── TestMemoryPool.hpp │ │ ├── TestMinMaxClamp.hpp │ │ ├── TestMultiGPU.hpp │ │ ├── TestNestedReducerCTAD.cpp │ │ ├── TestNonTrivialScalarTypes.hpp │ │ ├── TestNumericTraits.hpp │ │ ├── TestOccupancyControlTrait.hpp │ │ ├── TestOther.hpp │ │ ├── TestParallelScanRangePolicy.hpp │ │ ├── TestParseCmdLineArgsAndEnvVars.cpp │ │ ├── TestPrintf.hpp │ │ ├── TestPushFinalizeHook.cpp │ │ ├── TestQuadPrecisionMath.hpp │ │ ├── TestRange.hpp │ │ ├── TestRangePolicy.hpp │ │ ├── TestRangePolicyCTAD.cpp │ │ ├── TestRangePolicyConstructors.hpp │ │ ├── TestRangePolicyRequire.hpp │ │ ├── TestRealloc.hpp │ │ ├── TestReduce.hpp │ │ ├── TestReduceCombinatorical.hpp │ │ ├── TestReducerCTADs.hpp │ │ ├── TestReducers.hpp │ │ ├── TestReducers_a.hpp │ │ ├── TestReducers_b.hpp │ │ ├── TestReducers_c.hpp │ │ ├── TestReducers_d.hpp │ │ ├── TestReducers_e.hpp │ │ ├── TestReductions.hpp │ │ ├── TestReductions_DeviceView.hpp │ │ ├── TestResize.hpp │ │ ├── TestScopeGuard.cpp │ │ ├── TestSharedAlloc.hpp │ │ ├── TestSharedHostPinnedSpace.cpp │ │ ├── TestSharedSpace.cpp │ │ ├── TestSpaceAwareAccessor.hpp │ │ ├── TestSpaceAwareAccessorAccessViolation.hpp │ │ ├── TestStackTrace.cpp │ │ ├── TestStackTrace.hpp │ │ ├── TestStackTrace_f0.cpp │ │ ├── TestStackTrace_f1.cpp │ │ ├── TestStackTrace_f2.cpp │ │ ├── TestStackTrace_f3.cpp │ │ ├── TestStackTrace_f4.cpp │ │ ├── TestStringManipulation.cpp │ │ ├── TestSubView_a.hpp │ │ ├── TestSubView_b.hpp │ │ ├── TestSubView_c01.hpp │ │ ├── TestSubView_c02.hpp │ │ ├── TestSubView_c03.hpp │ │ ├── TestSubView_c04.hpp │ │ ├── TestSubView_c05.hpp │ │ ├── TestSubView_c06.hpp │ │ ├── TestSubView_c07.hpp │ │ ├── TestSubView_c08.hpp │ │ ├── TestSubView_c09.hpp │ │ ├── TestSubView_c10.hpp │ │ ├── TestSubView_c11.hpp │ │ ├── TestSubView_c12.hpp │ │ ├── TestSubView_c13.hpp │ │ ├── TestSubView_c14.hpp │ │ ├── TestSubView_c15.hpp │ │ ├── TestSwap.hpp │ │ ├── TestTaskScheduler.hpp │ │ ├── TestTaskScheduler_single.hpp │ │ ├── TestTeam.hpp │ │ ├── TestTeamBasic.hpp │ │ ├── TestTeamCombinedReducers.hpp │ │ ├── TestTeamMDRange.hpp │ │ ├── TestTeamMDRangePolicyCTAD.cpp │ │ ├── TestTeamPolicyCTAD.cpp │ │ ├── TestTeamPolicyConstructors.hpp │ │ ├── TestTeamReductionScan.hpp │ │ ├── TestTeamScan.hpp │ │ ├── TestTeamScratch.hpp │ │ ├── TestTeamTeamSize.hpp │ │ ├── TestTeamVector.hpp │ │ ├── TestTeamVectorRange.hpp │ │ ├── TestTypeInfo.cpp │ │ ├── TestTypeList.cpp │ │ ├── TestUniqueToken.hpp │ │ ├── TestUtilities.hpp │ │ ├── TestVersionMacros.cpp │ │ ├── TestViewAPI.hpp │ │ ├── TestViewAPI_a.hpp │ │ ├── TestViewAPI_b.hpp │ │ ├── TestViewAPI_c.hpp │ │ ├── TestViewAPI_d.hpp │ │ ├── TestViewAPI_e.hpp │ │ ├── TestViewBadAlloc.hpp │ │ ├── TestViewCopy_a.hpp │ │ ├── TestViewCopy_b.hpp │ │ ├── TestViewCopy_c.hpp │ │ ├── TestViewCtorDimMatch.hpp │ │ ├── TestViewCtorProp.hpp │ │ ├── TestViewCtorPropEmbeddedDim.hpp │ │ ├── TestViewEmptyRuntimeUnmanaged.hpp │ │ ├── TestViewHooks.hpp │ │ ├── TestViewIsAssignable.hpp │ │ ├── TestViewLayoutStrideAssignment.hpp │ │ ├── TestViewMapping_a.hpp │ │ ├── TestViewMapping_b.hpp │ │ ├── TestViewMapping_subview.hpp │ │ ├── TestViewMemoryAccessViolation.hpp │ │ ├── TestViewOfClass.hpp │ │ ├── TestViewOfViews.hpp │ │ ├── TestViewOutOfBoundsAccess.hpp │ │ ├── TestViewRank.cpp │ │ ├── TestViewResize.hpp │ │ ├── TestViewSpaceAssign.hpp │ │ ├── TestViewSubview.hpp │ │ ├── TestViewTypeTraits.cpp │ │ ├── TestViewTypedefs.cpp │ │ ├── TestView_64bit.hpp │ │ ├── TestWindowsInclude.cpp │ │ ├── TestWithoutInitializing.hpp │ │ ├── TestWorkGraph.hpp │ │ ├── Test_InterOp_Streams.hpp │ │ ├── UnitTestMain.cpp │ │ ├── UnitTestMainInit.cpp │ │ ├── UnitTest_CMakePassCmdLineArgs.cpp │ │ ├── UnitTest_CMakeTriBITSCompatibility.cpp │ │ ├── UnitTest_DeviceAndThreads.cpp │ │ ├── category_files │ │ ├── TestCudaHostPinned_Category.hpp │ │ ├── TestCudaUVM_Category.hpp │ │ ├── TestCuda_Category.hpp │ │ ├── TestDefaultDeviceType_Category.hpp │ │ ├── TestHIPHostPinned_Category.hpp │ │ ├── TestHIPManaged_Category.hpp │ │ ├── TestHIP_Category.hpp │ │ ├── TestHPX_Category.hpp │ │ ├── TestOpenACC_Category.hpp │ │ ├── TestOpenMPTarget_Category.hpp │ │ ├── TestOpenMP_Category.hpp │ │ ├── TestSYCLHostUSM_Category.hpp │ │ ├── TestSYCLSharedUSM_Category.hpp │ │ ├── TestSYCL_Category.hpp │ │ ├── TestSerial_Category.hpp │ │ └── TestThreads_Category.hpp │ │ ├── configuration │ │ └── test-code │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── main.cpp │ │ │ ├── test_config.bash │ │ │ ├── test_config_arch_list.bash │ │ │ ├── test_config_device_list.bash │ │ │ ├── test_config_options_list.bash │ │ │ └── test_config_run.bash │ │ ├── cuda │ │ ├── TestCuda_DebugPinUVMSpace.cpp │ │ ├── TestCuda_DebugSerialExecution.cpp │ │ ├── TestCuda_InterOp_Graph.cpp │ │ ├── TestCuda_InterOp_Init.cpp │ │ ├── TestCuda_InterOp_Streams.cpp │ │ ├── TestCuda_InterOp_StreamsMultiGPU.cpp │ │ ├── TestCuda_ReducerViewSizeLimit.cpp │ │ ├── TestCuda_Spaces.cpp │ │ ├── TestCuda_Task.cpp │ │ └── TestCuda_TeamScratchStreams.cpp │ │ ├── default │ │ ├── TestDefaultDeviceDevelop.cpp │ │ ├── TestDefaultDeviceType.cpp │ │ ├── TestDefaultDeviceTypeResize.cpp │ │ ├── TestDefaultDeviceTypeViewAPI.cpp │ │ ├── TestDefaultDeviceType_a1.cpp │ │ ├── TestDefaultDeviceType_a2.cpp │ │ ├── TestDefaultDeviceType_a3.cpp │ │ ├── TestDefaultDeviceType_b1.cpp │ │ ├── TestDefaultDeviceType_b2.cpp │ │ ├── TestDefaultDeviceType_b3.cpp │ │ ├── TestDefaultDeviceType_c1.cpp │ │ ├── TestDefaultDeviceType_c2.cpp │ │ └── TestDefaultDeviceType_c3.cpp │ │ ├── headers_self_contained │ │ ├── CMakeLists.txt │ │ └── tstHeader.cpp │ │ ├── hip │ │ ├── TestHIP_AsyncLauncher.cpp │ │ ├── TestHIP_BlocksizeDeduction.cpp │ │ ├── TestHIP_InterOp_Graph.cpp │ │ ├── TestHIP_InterOp_Init.cpp │ │ ├── TestHIP_InterOp_Streams.cpp │ │ ├── TestHIP_InterOp_StreamsMultiGPU.cpp │ │ ├── TestHIP_Memory_Requirements.cpp │ │ ├── TestHIP_ScanUnit.cpp │ │ ├── TestHIP_SharedResourceLock.cpp │ │ ├── TestHIP_Spaces.cpp │ │ ├── TestHIP_TeamScratchStreams.cpp │ │ └── TestHIP_UnifiedMemory_ZeroMemset.cpp │ │ ├── hpx │ │ ├── TestHPX_InParallel.cpp │ │ ├── TestHPX_IndependentInstances.cpp │ │ ├── TestHPX_IndependentInstancesDelayedExecution.cpp │ │ ├── TestHPX_IndependentInstancesInstanceIds.cpp │ │ ├── TestHPX_IndependentInstancesRefCounting.cpp │ │ ├── TestHPX_IndependentInstancesSynchronization.cpp │ │ ├── TestHPX_InterOp.cpp │ │ └── TestHPX_Task.cpp │ │ ├── incremental │ │ ├── README.md │ │ ├── Test01_execspace.hpp │ │ ├── Test02_atomic_host.hpp │ │ ├── Test03a_MemorySpace_malloc.hpp │ │ ├── Test03b_MemorySpace_free.hpp │ │ ├── Test04_ParallelFor_RangePolicy.hpp │ │ ├── Test05_ParallelReduce_RangePolicy.hpp │ │ ├── Test06_ParallelFor_MDRangePolicy.hpp │ │ ├── Test08_deep_copy.hpp │ │ ├── Test10_HierarchicalBasics.hpp │ │ ├── Test11a_ParallelFor_TeamThreadRange.hpp │ │ ├── Test11b_ParallelFor_TeamVectorRange.hpp │ │ ├── Test11c_ParallelFor_ThreadVectorRange.hpp │ │ ├── Test12a_ThreadScratch.hpp │ │ ├── Test12b_TeamScratch.hpp │ │ ├── Test13a_ParallelRed_TeamThreadRange.hpp │ │ ├── Test13b_ParallelRed_TeamVectorRange.hpp │ │ ├── Test13c_ParallelRed_ThreadVectorRange.hpp │ │ ├── Test14_MDRangeReduce.hpp │ │ ├── Test16_ParallelScan.hpp │ │ └── Test17_CompleteAtomic.hpp │ │ ├── openmp │ │ ├── TestOpenMP_InterOp.cpp │ │ └── TestOpenMP_Task.cpp │ │ ├── serial │ │ └── TestSerial_Task.cpp │ │ ├── standalone │ │ ├── Makefile │ │ └── UnitTestMainInit.cpp │ │ ├── sycl │ │ ├── TestSYCL_InterOp_Graph.cpp │ │ ├── TestSYCL_InterOp_Init.cpp │ │ ├── TestSYCL_InterOp_Init_Context.cpp │ │ ├── TestSYCL_InterOp_Streams.cpp │ │ ├── TestSYCL_InterOp_StreamsMultiGPU.cpp │ │ ├── TestSYCL_Spaces.cpp │ │ └── TestSYCL_TeamScratchStreams.cpp │ │ ├── tools │ │ ├── TestAllCalls.cpp │ │ ├── TestBuiltinTuners.cpp │ │ ├── TestCInterface.c │ │ ├── TestCategoricalTuner.cpp │ │ ├── TestEventCorrectness.cpp │ │ ├── TestEventCorrectness.hpp │ │ ├── TestIndependence.cpp │ │ ├── TestKernelNames.cpp │ │ ├── TestLogicalSpaces.cpp │ │ ├── TestProfilingSection.cpp │ │ ├── TestScopedRegion.cpp │ │ ├── TestToolsInitialization.cpp │ │ ├── TestTuning.cpp │ │ ├── TestWithoutInitializing.cpp │ │ ├── include │ │ │ └── ToolTestingUtilities.hpp │ │ └── printing-tool.cpp │ │ └── view │ │ ├── TestBasicView.hpp │ │ ├── TestBasicViewMDSpanConversion.cpp │ │ ├── TestExtentsDatatypeConversion.cpp │ │ ├── TestReferenceCountedAccessor.hpp │ │ ├── TestReferenceCountedDataHandle.hpp │ │ ├── TestViewCustomization.cpp │ │ ├── TestViewCustomizationAccessorArg.hpp │ │ ├── TestViewCustomizationAccessorFromMapping.hpp │ │ └── TestViewCustomizationAllocationType.hpp ├── doc │ ├── Doxyfile │ ├── README.md │ ├── SAND2017-10464-Kokkos-Task-DAG.pdf │ ├── TuningDesign.md │ ├── build_docs │ ├── design_notes_space_instances.md │ └── index.doc ├── example │ ├── CMakeLists.txt │ ├── README │ ├── build_cmake_in_tree │ │ ├── CMakeLists.txt │ │ └── cmake_example.cpp │ ├── build_cmake_installed │ │ ├── CMakeLists.txt │ │ ├── cmake_example.cpp │ │ └── foo.f │ ├── build_cmake_installed_different_compiler │ │ ├── CMakeLists.txt │ │ ├── bar.cpp │ │ └── foo.cpp │ ├── build_cmake_installed_kk_as_language │ │ ├── CMakeLists.txt │ │ ├── bar.cpp │ │ ├── cmake_example.cpp │ │ └── foo.f │ ├── make_buildlink │ │ ├── Makefile │ │ ├── README │ │ └── main.cpp │ ├── query_device │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ └── query_device.cpp │ ├── relocatable_function │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── functor.cpp │ │ └── main.cpp │ ├── tutorial │ │ ├── 01_hello_world │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ └── hello_world.cpp │ │ ├── 01_hello_world_lambda │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ └── hello_world_lambda.cpp │ │ ├── 02_simple_reduce │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ └── simple_reduce.cpp │ │ ├── 02_simple_reduce_lambda │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ └── simple_reduce_lambda.cpp │ │ ├── 03_simple_view │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ └── simple_view.cpp │ │ ├── 03_simple_view_lambda │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ └── simple_view_lambda.cpp │ │ ├── 04_simple_memoryspaces │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ └── simple_memoryspaces.cpp │ │ ├── 05_simple_atomics │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ └── simple_atomics.cpp │ │ ├── 06_simple_mdrangepolicy │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ └── simple_mdrangepolicy.cpp │ │ ├── Advanced_Views │ │ │ ├── 01_data_layouts │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ └── data_layouts.cpp │ │ │ ├── 02_memory_traits │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ └── memory_traits.cpp │ │ │ ├── 03_subviews │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ └── subviews.cpp │ │ │ ├── 04_dualviews │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ └── dual_view.cpp │ │ │ ├── 05_NVIDIA_UVM │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ └── uvm_example.cpp │ │ │ ├── 06_AtomicViews │ │ │ │ └── Makefile │ │ │ ├── 07_Overlapping_DeepCopy │ │ │ │ ├── Makefile │ │ │ │ └── overlapping_deepcopy.cpp │ │ │ ├── CMakeLists.txt │ │ │ └── Makefile │ │ ├── Algorithms │ │ │ ├── 01_random_numbers │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ └── random_numbers.cpp │ │ │ ├── CMakeLists.txt │ │ │ └── Makefile │ │ ├── CMakeLists.txt │ │ ├── Hierarchical_Parallelism │ │ │ ├── 01_thread_teams │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ └── thread_teams.cpp │ │ │ ├── 01_thread_teams_lambda │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ └── thread_teams_lambda.cpp │ │ │ ├── 02_nested_parallel_for │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ └── nested_parallel_for.cpp │ │ │ ├── 03_vectorization │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ └── vectorization.cpp │ │ │ ├── 04_team_scan │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ └── team_scan.cpp │ │ │ ├── CMakeLists.txt │ │ │ └── Makefile │ │ ├── Makefile │ │ ├── README │ │ └── launch_bounds │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ └── launch_bounds_reduce.cpp │ └── virtual_functions │ │ ├── Makefile │ │ ├── classes.cpp │ │ ├── classes.hpp │ │ └── main.cpp ├── generate_makefile.bash ├── gnu_generate_makefile.bash ├── master_history.txt ├── simd │ ├── CMakeLists.txt │ ├── src │ │ ├── CMakeLists.txt │ │ ├── Kokkos_SIMD.hpp │ │ ├── Kokkos_SIMD_AVX2.hpp │ │ ├── Kokkos_SIMD_AVX512.hpp │ │ ├── Kokkos_SIMD_Common.hpp │ │ ├── Kokkos_SIMD_Common_Math.hpp │ │ ├── Kokkos_SIMD_NEON.hpp │ │ ├── Kokkos_SIMD_SVE.hpp │ │ ├── Kokkos_SIMD_Scalar.hpp │ │ ├── Kokkos_SIMD_dummy.cpp │ │ └── impl │ │ │ └── Kokkos_Neon_SVE_bridge.hpp │ └── unit_tests │ │ ├── CMakeLists.txt │ │ ├── TestSIMD.cpp │ │ ├── UnitTestMain.cpp │ │ └── include │ │ ├── SIMDTesting_Ops.hpp │ │ ├── SIMDTesting_Utilities.hpp │ │ ├── TestSIMD_Condition.hpp │ │ ├── TestSIMD_Construction.hpp │ │ ├── TestSIMD_Conversions.hpp │ │ ├── TestSIMD_GeneratorCtors.hpp │ │ ├── TestSIMD_MaskOps.hpp │ │ ├── TestSIMD_MathOps.hpp │ │ ├── TestSIMD_Reductions.hpp │ │ ├── TestSIMD_ShiftOps.hpp │ │ └── TestSIMD_WhereExpressions.hpp └── tpls │ ├── desul │ ├── Config.hpp.cmake.in │ ├── include │ │ └── desul │ │ │ ├── atomics.hpp │ │ │ └── atomics │ │ │ ├── Adapt_CXX.hpp │ │ │ ├── Adapt_GCC.hpp │ │ │ ├── Adapt_HIP.hpp │ │ │ ├── Adapt_SYCL.hpp │ │ │ ├── Atomic_Ref.hpp │ │ │ ├── Common.hpp │ │ │ ├── Compare_Exchange.hpp │ │ │ ├── Compare_Exchange_CUDA.hpp │ │ │ ├── Compare_Exchange_GCC.hpp │ │ │ ├── Compare_Exchange_HIP.hpp │ │ │ ├── Compare_Exchange_MSVC.hpp │ │ │ ├── Compare_Exchange_OpenACC.hpp │ │ │ ├── Compare_Exchange_OpenMP.hpp │ │ │ ├── Compare_Exchange_SYCL.hpp │ │ │ ├── Compare_Exchange_ScopeCaller.hpp │ │ │ ├── Fetch_Op.hpp │ │ │ ├── Fetch_Op_CUDA.hpp │ │ │ ├── Fetch_Op_GCC.hpp │ │ │ ├── Fetch_Op_Generic.hpp │ │ │ ├── Fetch_Op_HIP.hpp │ │ │ ├── Fetch_Op_OpenACC.hpp │ │ │ ├── Fetch_Op_OpenMP.hpp │ │ │ ├── Fetch_Op_SYCL.hpp │ │ │ ├── Fetch_Op_ScopeCaller.hpp │ │ │ ├── Generic.hpp │ │ │ ├── Lock_Array.hpp │ │ │ ├── Lock_Array_CUDA.hpp │ │ │ ├── Lock_Array_HIP.hpp │ │ │ ├── Lock_Array_SYCL.hpp │ │ │ ├── Lock_Based_Fetch_Op.hpp │ │ │ ├── Lock_Based_Fetch_Op_CUDA.hpp │ │ │ ├── Lock_Based_Fetch_Op_HIP.hpp │ │ │ ├── Lock_Based_Fetch_Op_Host.hpp │ │ │ ├── Lock_Based_Fetch_Op_OpenACC.hpp │ │ │ ├── Lock_Based_Fetch_Op_SYCL.hpp │ │ │ ├── Lock_Free_Fetch_Op.hpp │ │ │ ├── Macros.hpp │ │ │ ├── Operator_Function_Objects.hpp │ │ │ ├── Thread_Fence.hpp │ │ │ ├── Thread_Fence_CUDA.hpp │ │ │ ├── Thread_Fence_GCC.hpp │ │ │ ├── Thread_Fence_HIP.hpp │ │ │ ├── Thread_Fence_MSVC.hpp │ │ │ ├── Thread_Fence_OpenACC.hpp │ │ │ ├── Thread_Fence_OpenMP.hpp │ │ │ ├── Thread_Fence_SYCL.hpp │ │ │ ├── Thread_Fence_ScopeCaller.hpp │ │ │ ├── cuda │ │ │ ├── CUDA_asm.hpp │ │ │ ├── CUDA_asm_exchange.hpp │ │ │ ├── cuda_cc7_asm.inc │ │ │ ├── cuda_cc7_asm_atomic_fetch_op.inc │ │ │ ├── cuda_cc7_asm_atomic_fetch_op.inc_isglobal │ │ │ ├── cuda_cc7_asm_atomic_fetch_op.inc_predicate │ │ │ ├── cuda_cc7_asm_atomic_op.inc │ │ │ ├── cuda_cc7_asm_atomic_op.inc_isglobal │ │ │ ├── cuda_cc7_asm_atomic_op.inc_predicate │ │ │ ├── cuda_cc7_asm_exchange.inc │ │ │ ├── cuda_cc7_asm_exchange_memorder.inc │ │ │ ├── cuda_cc7_asm_exchange_op.inc │ │ │ └── cuda_cc7_asm_memorder.inc │ │ │ └── openmp │ │ │ ├── OpenMP_40.hpp │ │ │ └── OpenMP_40_op.inc │ └── src │ │ ├── Lock_Array_CUDA.cpp │ │ ├── Lock_Array_HIP.cpp │ │ └── Lock_Array_SYCL.cpp │ ├── gtest │ └── gtest │ │ ├── LICENSE │ │ ├── README │ │ ├── gtest-all.cc │ │ └── gtest.h │ └── mdspan │ └── include │ ├── experimental │ ├── __p0009_bits │ │ ├── compressed_pair.hpp │ │ ├── config.hpp │ │ ├── default_accessor.hpp │ │ ├── dynamic_extent.hpp │ │ ├── extents.hpp │ │ ├── full_extent_t.hpp │ │ ├── layout_left.hpp │ │ ├── layout_right.hpp │ │ ├── layout_stride.hpp │ │ ├── macros.hpp │ │ ├── mdspan.hpp │ │ ├── no_unique_address.hpp │ │ ├── trait_backports.hpp │ │ ├── type_list.hpp │ │ └── utility.hpp │ ├── __p1684_bits │ │ └── mdarray.hpp │ ├── __p2389_bits │ │ └── dims.hpp │ ├── __p2630_bits │ │ ├── strided_slice.hpp │ │ ├── submdspan.hpp │ │ ├── submdspan_extents.hpp │ │ └── submdspan_mapping.hpp │ └── __p2642_bits │ │ ├── layout_padded.hpp │ │ └── layout_padded_fwd.hpp │ └── mdspan │ ├── mdarray.hpp │ └── mdspan.hpp └── text2code ├── CMakeLists.txt ├── GKlib ├── .gitignore ├── CMakeLists.txt ├── GKlibConfig.cmake.in ├── LICENSE.txt ├── Makefile ├── README.md ├── apps │ ├── CMakeLists.txt │ ├── cmpnbrs.c │ ├── csrcnv.c │ ├── fis.c │ ├── gkgraph.c │ ├── gkrw.c │ ├── gksort.c │ ├── gkuniq.c │ ├── grKx.c │ ├── m2mnbrs.c │ ├── splatt2svd.c │ └── strings.c ├── cmake │ └── GKlibSystem.cmake ├── conf │ └── check_thread_storage.c ├── include │ ├── GKlib.h │ ├── gk_arch.h │ ├── gk_defs.h │ ├── gk_externs.h │ ├── gk_getopt.h │ ├── gk_macros.h │ ├── gk_mkblas.h │ ├── gk_mkmemory.h │ ├── gk_mkpqueue.h │ ├── gk_mkpqueue2.h │ ├── gk_mkrandom.h │ ├── gk_mksort.h │ ├── gk_mkutils.h │ ├── gk_ms_inttypes.h │ ├── gk_ms_stat.h │ ├── gk_ms_stdint.h │ ├── gk_proto.h │ ├── gk_struct.h │ ├── gk_types.h │ ├── gkregex.h │ └── win32 │ │ └── adapt.h ├── scripts │ └── gexpand.pl └── src │ ├── b64.c │ ├── blas.c │ ├── cache.c │ ├── csr.c │ ├── error.c │ ├── evaluate.c │ ├── fkvkselect.c │ ├── fs.c │ ├── getopt.c │ ├── gk_util.c │ ├── gkregex.c │ ├── graph.c │ ├── htable.c │ ├── io.c │ ├── itemsets.c │ ├── mcore.c │ ├── memory.c │ ├── pqueue.c │ ├── random.c │ ├── rw.c │ ├── seq.c │ ├── sort.c │ ├── string.c │ ├── timers.c │ ├── tokenizer.c │ └── win32 │ └── adapt.c ├── METIS ├── .gitignore ├── .gitmodules ├── BUILD-Windows.txt ├── CMakeLists.txt ├── Changelog ├── LICENSE ├── Makefile ├── README.md ├── conf │ ├── check_thread_storage.c │ └── gkbuild.cmake ├── graphs │ ├── 4elt.graph │ ├── README │ ├── copter2.graph │ ├── mdual.graph │ ├── metis.mesh │ └── test.mgraph ├── include │ ├── CMakeLists.txt │ └── metis.h ├── libmetis │ ├── CMakeLists.txt │ ├── auxapi.c │ ├── balance.c │ ├── bucketsort.c │ ├── checkgraph.c │ ├── coarsen.c │ ├── compress.c │ ├── contig.c │ ├── debug.c │ ├── defs.h │ ├── fm.c │ ├── fortran.c │ ├── frename.c │ ├── gklib.c │ ├── gklib_defs.h │ ├── gklib_rename.h │ ├── graph.c │ ├── initpart.c │ ├── kmetis.c │ ├── kwayfm.c │ ├── kwayrefine.c │ ├── macros.h │ ├── mcutil.c │ ├── mesh.c │ ├── meshpart.c │ ├── metislib.h │ ├── minconn.c │ ├── mincover.c │ ├── mmd.c │ ├── ometis.c │ ├── options.c │ ├── parmetis.c │ ├── pmetis.c │ ├── proto.h │ ├── refine.c │ ├── rename.h │ ├── separator.c │ ├── sfm.c │ ├── srefine.c │ ├── stat.c │ ├── stdheaders.h │ ├── struct.h │ ├── timing.c │ ├── util.c │ └── wspace.c ├── manual │ └── manual.pdf ├── programs │ ├── CMakeLists.txt │ ├── cmdline_gpmetis.c │ ├── cmdline_m2gmetis.c │ ├── cmdline_mpmetis.c │ ├── cmdline_ndmetis.c │ ├── cmpfillin.c │ ├── defs.h │ ├── gpmetis.c │ ├── graphchk.c │ ├── io.c │ ├── m2gmetis.c │ ├── metisbin.h │ ├── mpmetis.c │ ├── ndmetis.c │ ├── proto.h │ ├── smbfactor.c │ ├── stat.c │ └── struct.h ├── test │ ├── Makefile │ ├── mtest.c │ └── proto.h ├── utils │ ├── int2idxtype.sh │ ├── listunescapedsymbols.csh │ ├── mkdist.sh │ └── s+r.sh └── vsgen.bat ├── Makefile ├── ParMETIS ├── BUILD.txt ├── CMakeLists.txt ├── Changelog ├── Install.txt ├── LICENSE ├── Makefile ├── README.md ├── bin │ ├── pm_dglpart │ ├── pm_mtest │ ├── pm_parmetis │ ├── pm_pometis │ └── pm_ptest ├── conf │ ├── check_thread_storage.c │ └── gkbuild.cmake ├── graphs │ ├── bricks.hex3d │ ├── rotor.graph │ └── rotor.graph.xyz ├── include │ ├── CMakeLists.txt │ └── parmetis.h ├── lib │ └── libparmetis.a ├── libparmetis │ ├── CMakeLists.txt │ ├── akwayfm.c │ ├── ametis.c │ ├── balancemylink.c │ ├── comm.c │ ├── csrmatch.c │ ├── ctrl.c │ ├── debug.c │ ├── defs.h │ ├── diffutil.c │ ├── frename.c │ ├── gklib.c │ ├── gklib_defs.h │ ├── gklib_rename.h │ ├── gkmetis.c │ ├── gkmpi.c │ ├── graph.c │ ├── initbalance.c │ ├── initmsection.c │ ├── initpart.c │ ├── kmetis.c │ ├── kwayrefine.c │ ├── macros.h │ ├── match.c │ ├── mdiffusion.c │ ├── mesh.c │ ├── mmetis.c │ ├── move.c │ ├── msetup.c │ ├── node_refine.c │ ├── ometis.c │ ├── parmetislib.h │ ├── proto.h │ ├── pspases.c │ ├── redomylink.c │ ├── remap.c │ ├── rename.h │ ├── renumber.c │ ├── rmetis.c │ ├── selectq.c │ ├── serial.c │ ├── stat.c │ ├── struct.h │ ├── timer.c │ ├── util.c │ ├── wave.c │ ├── weird.c │ ├── wspace.c │ └── xyzpart.c ├── manual │ └── manual.pdf ├── programs │ ├── CMakeLists.txt │ ├── adaptgraph.c │ ├── dglpart.c │ ├── io.c │ ├── mtest.c │ ├── otest.c │ ├── parmetis.c │ ├── parmetisbin.h │ ├── plotorder.pl │ ├── pometis.c │ ├── proto.h │ └── ptest.c └── utils │ └── listunescapedsymbols.csh ├── install.txt ├── symengine ├── AUTHORS ├── CMakeLists.txt ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── appveyor.yml ├── benchmarks │ ├── CMakeLists.txt │ ├── add1.cpp │ ├── bench.cpp │ ├── bench_eval_double.cpp │ ├── diff_cache.cpp │ ├── eval_double1.cpp │ ├── expand1.cpp │ ├── expand1.nb │ ├── expand2.cpp │ ├── expand2.m │ ├── expand2.mpl │ ├── expand2_ginac.cpp │ ├── expand2b.cpp │ ├── expand3.cpp │ ├── expand4.nb │ ├── expand5.nb │ ├── expand6.cpp │ ├── expand6.m │ ├── expand6.mpl │ ├── expand6_ginac.cpp │ ├── expand6b.cpp │ ├── expand6b.m │ ├── expand6b.mpl │ ├── expand6b_ginac.cpp │ ├── expand7.cpp │ ├── expand7.m │ ├── expand7.mpl │ ├── expand7_ginac.cpp │ ├── lwbench.cpp │ ├── lwbench_ginac.cpp │ ├── matrix_add1.cpp │ ├── matrix_add1_ginac.cpp │ ├── matrix_add2.cpp │ ├── matrix_add2_ginac.cpp │ ├── matrix_mul1.cpp │ ├── matrix_mul1_ginac.cpp │ ├── matrix_mul2.cpp │ ├── matrix_mul2_ginac.cpp │ ├── ntheorybench.cpp │ ├── parsing.cpp │ ├── parsing_google.cpp │ ├── series.cpp │ ├── series_expansion_sincos_flint.cpp │ ├── series_expansion_sincos_piranha.cpp │ ├── series_expansion_sinp.cpp │ ├── symbench.cpp │ ├── symbench.m │ ├── symbench.nb │ ├── symbench_ginac.cpp │ ├── symengine_bench.cpp │ ├── symengine_bench.m │ ├── symengine_bench.mpl │ ├── symengine_bench_ginac.cpp │ ├── visitor_call.cpp │ ├── visitor_expressions.h │ └── visitor_init.cpp ├── bin │ ├── appveyor-download.cmd │ ├── install_travis.sh │ ├── release_authors.sh │ ├── release_notes.sh │ ├── test_format_local.sh │ ├── test_make_install.py │ ├── test_matchpycpp_gen_tests.sh │ ├── test_symengine_unix.sh │ ├── test_travis.sh │ ├── test_tutorials.py │ ├── travis_clang_format.sh │ ├── trigger_feedstock.sh │ └── update_authors.sh ├── binder │ ├── doxygendoc.yml │ ├── environment.yml │ └── postBuild ├── boost │ ├── align.hpp │ ├── aligned_storage.hpp │ ├── any.hpp │ ├── array.hpp │ ├── asio.hpp │ ├── assert.hpp │ ├── assert │ │ └── source_location.hpp │ ├── assign.hpp │ ├── atomic.hpp │ ├── beast.hpp │ ├── bimap.hpp │ ├── bind.hpp │ ├── blank.hpp │ ├── blank_fwd.hpp │ ├── call_traits.hpp │ ├── callable_traits.hpp │ ├── cast.hpp │ ├── cerrno.hpp │ ├── checked_delete.hpp │ ├── chrono.hpp │ ├── circular_buffer.hpp │ ├── circular_buffer_fwd.hpp │ ├── cobalt.hpp │ ├── compressed_pair.hpp │ ├── compute.hpp │ ├── concept │ │ ├── assert.hpp │ │ ├── detail │ │ │ ├── backward_compatibility.hpp │ │ │ ├── borland.hpp │ │ │ ├── concept_def.hpp │ │ │ ├── concept_undef.hpp │ │ │ ├── general.hpp │ │ │ ├── has_constraints.hpp │ │ │ └── msvc.hpp │ │ ├── requires.hpp │ │ └── usage.hpp │ ├── concept_archetype.hpp │ ├── concept_check.hpp │ ├── config.hpp │ ├── config │ │ ├── abi │ │ │ ├── borland_prefix.hpp │ │ │ ├── borland_suffix.hpp │ │ │ ├── msvc_prefix.hpp │ │ │ └── msvc_suffix.hpp │ │ ├── abi_prefix.hpp │ │ ├── abi_suffix.hpp │ │ ├── assert_cxx03.hpp │ │ ├── assert_cxx11.hpp │ │ ├── assert_cxx14.hpp │ │ ├── assert_cxx17.hpp │ │ ├── assert_cxx20.hpp │ │ ├── assert_cxx23.hpp │ │ ├── assert_cxx98.hpp │ │ ├── auto_link.hpp │ │ ├── compiler │ │ │ ├── borland.hpp │ │ │ ├── clang.hpp │ │ │ ├── clang_version.hpp │ │ │ ├── codegear.hpp │ │ │ ├── comeau.hpp │ │ │ ├── common_edg.hpp │ │ │ ├── compaq_cxx.hpp │ │ │ ├── cray.hpp │ │ │ ├── diab.hpp │ │ │ ├── digitalmars.hpp │ │ │ ├── gcc.hpp │ │ │ ├── gcc_xml.hpp │ │ │ ├── greenhills.hpp │ │ │ ├── hp_acc.hpp │ │ │ ├── intel.hpp │ │ │ ├── kai.hpp │ │ │ ├── metrowerks.hpp │ │ │ ├── mpw.hpp │ │ │ ├── nvcc.hpp │ │ │ ├── pathscale.hpp │ │ │ ├── pgi.hpp │ │ │ ├── sgi_mipspro.hpp │ │ │ ├── sunpro_cc.hpp │ │ │ ├── vacpp.hpp │ │ │ ├── visualc.hpp │ │ │ ├── xlcpp.hpp │ │ │ └── xlcpp_zos.hpp │ │ ├── detail │ │ │ ├── cxx_composite.hpp │ │ │ ├── posix_features.hpp │ │ │ ├── select_compiler_config.hpp │ │ │ ├── select_platform_config.hpp │ │ │ ├── select_stdlib_config.hpp │ │ │ └── suffix.hpp │ │ ├── header_deprecated.hpp │ │ ├── helper_macros.hpp │ │ ├── no_tr1 │ │ │ ├── cmath.hpp │ │ │ ├── complex.hpp │ │ │ ├── functional.hpp │ │ │ ├── memory.hpp │ │ │ └── utility.hpp │ │ ├── platform │ │ │ ├── aix.hpp │ │ │ ├── amigaos.hpp │ │ │ ├── beos.hpp │ │ │ ├── bsd.hpp │ │ │ ├── cloudabi.hpp │ │ │ ├── cray.hpp │ │ │ ├── cygwin.hpp │ │ │ ├── haiku.hpp │ │ │ ├── hpux.hpp │ │ │ ├── irix.hpp │ │ │ ├── linux.hpp │ │ │ ├── macos.hpp │ │ │ ├── qnxnto.hpp │ │ │ ├── solaris.hpp │ │ │ ├── symbian.hpp │ │ │ ├── vms.hpp │ │ │ ├── vxworks.hpp │ │ │ ├── wasm.hpp │ │ │ ├── win32.hpp │ │ │ └── zos.hpp │ │ ├── pragma_message.hpp │ │ ├── requires_threads.hpp │ │ ├── stdlib │ │ │ ├── dinkumware.hpp │ │ │ ├── libcomo.hpp │ │ │ ├── libcpp.hpp │ │ │ ├── libstdcpp3.hpp │ │ │ ├── modena.hpp │ │ │ ├── msl.hpp │ │ │ ├── roguewave.hpp │ │ │ ├── sgi.hpp │ │ │ ├── stlport.hpp │ │ │ ├── vacpp.hpp │ │ │ └── xlcpp_zos.hpp │ │ ├── user.hpp │ │ ├── warning_disable.hpp │ │ └── workaround.hpp │ ├── container │ │ ├── adaptive_pool.hpp │ │ ├── allocator.hpp │ │ ├── allocator_traits.hpp │ │ ├── container_fwd.hpp │ │ ├── deque.hpp │ │ ├── detail │ │ │ ├── adaptive_node_pool.hpp │ │ │ ├── adaptive_node_pool_impl.hpp │ │ │ ├── addressof.hpp │ │ │ ├── advanced_insert_int.hpp │ │ │ ├── algorithm.hpp │ │ │ ├── alloc_helpers.hpp │ │ │ ├── alloc_lib.h │ │ │ ├── allocation_type.hpp │ │ │ ├── allocator_version_traits.hpp │ │ │ ├── auto_link.hpp │ │ │ ├── block_list.hpp │ │ │ ├── block_slist.hpp │ │ │ ├── compare_functors.hpp │ │ │ ├── config_begin.hpp │ │ │ ├── config_end.hpp │ │ │ ├── construct_in_place.hpp │ │ │ ├── container_or_allocator_rebind.hpp │ │ │ ├── container_rebind.hpp │ │ │ ├── copy_move_algo.hpp │ │ │ ├── destroyers.hpp │ │ │ ├── dispatch_uses_allocator.hpp │ │ │ ├── dlmalloc.hpp │ │ │ ├── flat_tree.hpp │ │ │ ├── function_detector.hpp │ │ │ ├── guards_dended.hpp │ │ │ ├── is_container.hpp │ │ │ ├── is_contiguous_container.hpp │ │ │ ├── is_pair.hpp │ │ │ ├── is_sorted.hpp │ │ │ ├── iterator.hpp │ │ │ ├── iterator_to_raw_pointer.hpp │ │ │ ├── iterators.hpp │ │ │ ├── math_functions.hpp │ │ │ ├── min_max.hpp │ │ │ ├── minimal_char_traits_header.hpp │ │ │ ├── mpl.hpp │ │ │ ├── multiallocation_chain.hpp │ │ │ ├── mutex.hpp │ │ │ ├── next_capacity.hpp │ │ │ ├── node_alloc_holder.hpp │ │ │ ├── node_pool.hpp │ │ │ ├── node_pool_impl.hpp │ │ │ ├── pair.hpp │ │ │ ├── pair_key_mapped_of_value.hpp │ │ │ ├── placement_new.hpp │ │ │ ├── pool_common.hpp │ │ │ ├── pool_common_alloc.hpp │ │ │ ├── pool_resource.hpp │ │ │ ├── singleton.hpp │ │ │ ├── std_fwd.hpp │ │ │ ├── thread_mutex.hpp │ │ │ ├── transform_iterator.hpp │ │ │ ├── tree.hpp │ │ │ ├── type_traits.hpp │ │ │ ├── value_functors.hpp │ │ │ ├── value_init.hpp │ │ │ ├── variadic_templates_tools.hpp │ │ │ ├── version_type.hpp │ │ │ └── workaround.hpp │ │ ├── devector.hpp │ │ ├── flat_map.hpp │ │ ├── flat_set.hpp │ │ ├── list.hpp │ │ ├── map.hpp │ │ ├── new_allocator.hpp │ │ ├── node_allocator.hpp │ │ ├── node_handle.hpp │ │ ├── options.hpp │ │ ├── pmr │ │ │ ├── deque.hpp │ │ │ ├── devector.hpp │ │ │ ├── flat_map.hpp │ │ │ ├── flat_set.hpp │ │ │ ├── global_resource.hpp │ │ │ ├── list.hpp │ │ │ ├── map.hpp │ │ │ ├── memory_resource.hpp │ │ │ ├── monotonic_buffer_resource.hpp │ │ │ ├── polymorphic_allocator.hpp │ │ │ ├── pool_options.hpp │ │ │ ├── resource_adaptor.hpp │ │ │ ├── set.hpp │ │ │ ├── slist.hpp │ │ │ ├── small_vector.hpp │ │ │ ├── stable_vector.hpp │ │ │ ├── string.hpp │ │ │ ├── synchronized_pool_resource.hpp │ │ │ ├── unsynchronized_pool_resource.hpp │ │ │ └── vector.hpp │ │ ├── scoped_allocator.hpp │ │ ├── scoped_allocator_fwd.hpp │ │ ├── set.hpp │ │ ├── slist.hpp │ │ ├── small_vector.hpp │ │ ├── stable_vector.hpp │ │ ├── static_vector.hpp │ │ ├── string.hpp │ │ ├── throw_exception.hpp │ │ ├── uses_allocator.hpp │ │ ├── uses_allocator_fwd.hpp │ │ └── vector.hpp │ ├── contract.hpp │ ├── contract_macro.hpp │ ├── convert.hpp │ ├── core │ │ ├── addressof.hpp │ │ ├── alignof.hpp │ │ ├── alloc_construct.hpp │ │ ├── allocator_access.hpp │ │ ├── allocator_traits.hpp │ │ ├── bit.hpp │ │ ├── checked_delete.hpp │ │ ├── cmath.hpp │ │ ├── data.hpp │ │ ├── default_allocator.hpp │ │ ├── demangle.hpp │ │ ├── detail │ │ │ ├── is_same.hpp │ │ │ ├── lwt_unattended.hpp │ │ │ ├── sp_thread_pause.hpp │ │ │ ├── sp_thread_sleep.hpp │ │ │ ├── sp_thread_yield.hpp │ │ │ ├── sp_win32_sleep.hpp │ │ │ ├── splitmix64.hpp │ │ │ └── string_view.hpp │ │ ├── empty_value.hpp │ │ ├── enable_if.hpp │ │ ├── exchange.hpp │ │ ├── explicit_operator_bool.hpp │ │ ├── fclose_deleter.hpp │ │ ├── first_scalar.hpp │ │ ├── identity.hpp │ │ ├── ignore_unused.hpp │ │ ├── invoke_swap.hpp │ │ ├── is_same.hpp │ │ ├── launder.hpp │ │ ├── lightweight_test.hpp │ │ ├── lightweight_test_trait.hpp │ │ ├── make_span.hpp │ │ ├── max_align.hpp │ │ ├── memory_resource.hpp │ │ ├── no_exceptions_support.hpp │ │ ├── noinit_adaptor.hpp │ │ ├── noncopyable.hpp │ │ ├── null_deleter.hpp │ │ ├── nvp.hpp │ │ ├── pointer_traits.hpp │ │ ├── quick_exit.hpp │ │ ├── ref.hpp │ │ ├── scoped_enum.hpp │ │ ├── serialization.hpp │ │ ├── size.hpp │ │ ├── snprintf.hpp │ │ ├── span.hpp │ │ ├── swap.hpp │ │ ├── type_name.hpp │ │ ├── typeinfo.hpp │ │ ├── uncaught_exceptions.hpp │ │ ├── underlying_type.hpp │ │ ├── use_default.hpp │ │ ├── verbose_terminate_handler.hpp │ │ └── yield_primitives.hpp │ ├── crc.hpp │ ├── cregex.hpp │ ├── cstdfloat.hpp │ ├── cstdint.hpp │ ├── cstdlib.hpp │ ├── current_function.hpp │ ├── cxx11_char_types.hpp │ ├── date_time.hpp │ ├── describe.hpp │ ├── detail │ │ ├── algorithm.hpp │ │ ├── allocator_utilities.hpp │ │ ├── atomic_count.hpp │ │ ├── basic_pointerbuf.hpp │ │ ├── binary_search.hpp │ │ ├── bitmask.hpp │ │ ├── call_traits.hpp │ │ ├── catch_exceptions.hpp │ │ ├── compressed_pair.hpp │ │ ├── container_fwd.hpp │ │ ├── fenv.hpp │ │ ├── has_default_constructor.hpp │ │ ├── identifier.hpp │ │ ├── indirect_traits.hpp │ │ ├── interlocked.hpp │ │ ├── is_incrementable.hpp │ │ ├── is_sorted.hpp │ │ ├── is_xxx.hpp │ │ ├── iterator.hpp │ │ ├── lcast_precision.hpp │ │ ├── lightweight_main.hpp │ │ ├── lightweight_mutex.hpp │ │ ├── lightweight_test.hpp │ │ ├── lightweight_test_report.hpp │ │ ├── lightweight_thread.hpp │ │ ├── named_template_params.hpp │ │ ├── no_exceptions_support.hpp │ │ ├── numeric_traits.hpp │ │ ├── ob_compressed_pair.hpp │ │ ├── quick_allocator.hpp │ │ ├── reference_content.hpp │ │ ├── scoped_enum_emulation.hpp │ │ ├── select_type.hpp │ │ ├── sp_typeinfo.hpp │ │ ├── templated_streams.hpp │ │ ├── utf8_codecvt_facet.hpp │ │ ├── utf8_codecvt_facet.ipp │ │ ├── winapi │ │ │ ├── access_rights.hpp │ │ │ ├── apc.hpp │ │ │ ├── basic_types.hpp │ │ │ ├── bcrypt.hpp │ │ │ ├── character_code_conversion.hpp │ │ │ ├── condition_variable.hpp │ │ │ ├── config.hpp │ │ │ ├── critical_section.hpp │ │ │ ├── crypt.hpp │ │ │ ├── dbghelp.hpp │ │ │ ├── debugapi.hpp │ │ │ ├── detail │ │ │ │ └── deprecated_namespace.hpp │ │ │ ├── directory_management.hpp │ │ │ ├── dll.hpp │ │ │ ├── environment.hpp │ │ │ ├── error_codes.hpp │ │ │ ├── error_handling.hpp │ │ │ ├── event.hpp │ │ │ ├── file_management.hpp │ │ │ ├── file_mapping.hpp │ │ │ ├── get_current_process.hpp │ │ │ ├── get_current_process_id.hpp │ │ │ ├── get_current_thread.hpp │ │ │ ├── get_current_thread_id.hpp │ │ │ ├── get_last_error.hpp │ │ │ ├── get_process_times.hpp │ │ │ ├── get_system_directory.hpp │ │ │ ├── get_thread_times.hpp │ │ │ ├── handle_info.hpp │ │ │ ├── handles.hpp │ │ │ ├── heap_memory.hpp │ │ │ ├── init_once.hpp │ │ │ ├── jobs.hpp │ │ │ ├── limits.hpp │ │ │ ├── local_memory.hpp │ │ │ ├── memory.hpp │ │ │ ├── mutex.hpp │ │ │ ├── overlapped.hpp │ │ │ ├── page_protection_flags.hpp │ │ │ ├── pipes.hpp │ │ │ ├── priority_class.hpp │ │ │ ├── process.hpp │ │ │ ├── security.hpp │ │ │ ├── semaphore.hpp │ │ │ ├── shell.hpp │ │ │ ├── show_window.hpp │ │ │ ├── srw_lock.hpp │ │ │ ├── stack_backtrace.hpp │ │ │ ├── synchronization.hpp │ │ │ ├── system.hpp │ │ │ ├── thread.hpp │ │ │ ├── thread_pool.hpp │ │ │ ├── time.hpp │ │ │ ├── timers.hpp │ │ │ ├── tls.hpp │ │ │ ├── wait.hpp │ │ │ └── waitable_timer.hpp │ │ └── workaround.hpp │ ├── dll.hpp │ ├── dynamic_bitset.hpp │ ├── dynamic_bitset_fwd.hpp │ ├── enable_shared_from_this.hpp │ ├── endian.hpp │ ├── exception │ │ ├── all.hpp │ │ ├── current_exception_cast.hpp │ │ ├── detail │ │ │ ├── clone_current_exception.hpp │ │ │ ├── error_info_impl.hpp │ │ │ ├── exception_ptr.hpp │ │ │ ├── is_output_streamable.hpp │ │ │ ├── object_hex_dump.hpp │ │ │ ├── shared_ptr.hpp │ │ │ └── type_info.hpp │ │ ├── diagnostic_information.hpp │ │ ├── enable_current_exception.hpp │ │ ├── enable_error_info.hpp │ │ ├── errinfo_api_function.hpp │ │ ├── errinfo_at_line.hpp │ │ ├── errinfo_errno.hpp │ │ ├── errinfo_file_handle.hpp │ │ ├── errinfo_file_name.hpp │ │ ├── errinfo_file_open_mode.hpp │ │ ├── errinfo_nested_exception.hpp │ │ ├── errinfo_type_info_name.hpp │ │ ├── error_info.hpp │ │ ├── exception.hpp │ │ ├── get_error_info.hpp │ │ ├── info.hpp │ │ ├── info_tuple.hpp │ │ ├── to_string.hpp │ │ └── to_string_stub.hpp │ ├── exception_ptr.hpp │ ├── filesystem.hpp │ ├── flyweight.hpp │ ├── foreach.hpp │ ├── foreach_fwd.hpp │ ├── format.hpp │ ├── function.hpp │ ├── function_equal.hpp │ ├── function_output_iterator.hpp │ ├── functional.hpp │ ├── generator_iterator.hpp │ ├── geometry.hpp │ ├── get_pointer.hpp │ ├── gil.hpp │ ├── hana.hpp │ ├── histogram.hpp │ ├── hof.hpp │ ├── implicit_cast.hpp │ ├── indirect_reference.hpp │ ├── integer.hpp │ ├── integer │ │ ├── common_factor.hpp │ │ ├── common_factor_ct.hpp │ │ ├── common_factor_rt.hpp │ │ ├── extended_euclidean.hpp │ │ ├── integer_log2.hpp │ │ ├── integer_mask.hpp │ │ ├── mod_inverse.hpp │ │ ├── static_log2.hpp │ │ └── static_min_max.hpp │ ├── integer_fwd.hpp │ ├── integer_traits.hpp │ ├── intrusive_ptr.hpp │ ├── io │ │ ├── detail │ │ │ ├── buffer_fill.hpp │ │ │ └── ostream_guard.hpp │ │ ├── ios_state.hpp │ │ ├── nullstream.hpp │ │ ├── ostream_joiner.hpp │ │ ├── ostream_put.hpp │ │ └── quoted.hpp │ ├── io_fwd.hpp │ ├── is_placeholder.hpp │ ├── iterator.hpp │ ├── iterator │ │ ├── advance.hpp │ │ ├── counting_iterator.hpp │ │ ├── detail │ │ │ ├── any_conversion_eater.hpp │ │ │ ├── config_def.hpp │ │ │ ├── config_undef.hpp │ │ │ ├── enable_if.hpp │ │ │ ├── facade_iterator_category.hpp │ │ │ └── minimum_category.hpp │ │ ├── distance.hpp │ │ ├── filter_iterator.hpp │ │ ├── function_input_iterator.hpp │ │ ├── function_output_iterator.hpp │ │ ├── indirect_iterator.hpp │ │ ├── interoperable.hpp │ │ ├── is_iterator.hpp │ │ ├── is_lvalue_iterator.hpp │ │ ├── is_readable_iterator.hpp │ │ ├── iterator_adaptor.hpp │ │ ├── iterator_archetypes.hpp │ │ ├── iterator_categories.hpp │ │ ├── iterator_concepts.hpp │ │ ├── iterator_facade.hpp │ │ ├── iterator_traits.hpp │ │ ├── minimum_category.hpp │ │ ├── new_iterator_tests.hpp │ │ ├── permutation_iterator.hpp │ │ ├── reverse_iterator.hpp │ │ ├── transform_iterator.hpp │ │ └── zip_iterator.hpp │ ├── iterator_adaptors.hpp │ ├── json.hpp │ ├── lambda2.hpp │ ├── leaf.hpp │ ├── lexical_cast.hpp │ ├── lexical_cast │ │ ├── bad_lexical_cast.hpp │ │ ├── detail │ │ │ ├── buffer_view.hpp │ │ │ ├── converter_lexical.hpp │ │ │ ├── converter_lexical_streams.hpp │ │ │ ├── converter_numeric.hpp │ │ │ ├── inf_nan.hpp │ │ │ ├── is_character.hpp │ │ │ ├── lcast_char_constants.hpp │ │ │ ├── lcast_unsigned_converters.hpp │ │ │ └── widest_char.hpp │ │ ├── lexical_cast_old.hpp │ │ └── try_lexical_convert.hpp │ ├── limits.hpp │ ├── local_function.hpp │ ├── locale.hpp │ ├── make_default.hpp │ ├── make_shared.hpp │ ├── make_unique.hpp │ ├── math │ │ ├── bindings │ │ │ ├── detail │ │ │ │ ├── big_digamma.hpp │ │ │ │ └── big_lanczos.hpp │ │ │ ├── mpfr.hpp │ │ │ ├── mpreal.hpp │ │ │ └── rr.hpp │ │ ├── ccmath │ │ │ ├── abs.hpp │ │ │ ├── ccmath.hpp │ │ │ ├── ceil.hpp │ │ │ ├── copysign.hpp │ │ │ ├── detail │ │ │ │ ├── config.hpp │ │ │ │ └── swap.hpp │ │ │ ├── div.hpp │ │ │ ├── fabs.hpp │ │ │ ├── fdim.hpp │ │ │ ├── floor.hpp │ │ │ ├── fma.hpp │ │ │ ├── fmax.hpp │ │ │ ├── fmin.hpp │ │ │ ├── fmod.hpp │ │ │ ├── fpclassify.hpp │ │ │ ├── frexp.hpp │ │ │ ├── hypot.hpp │ │ │ ├── ilogb.hpp │ │ │ ├── isfinite.hpp │ │ │ ├── isgreater.hpp │ │ │ ├── isgreaterequal.hpp │ │ │ ├── isinf.hpp │ │ │ ├── isless.hpp │ │ │ ├── islessequal.hpp │ │ │ ├── isnan.hpp │ │ │ ├── isnormal.hpp │ │ │ ├── isunordered.hpp │ │ │ ├── ldexp.hpp │ │ │ ├── logb.hpp │ │ │ ├── modf.hpp │ │ │ ├── next.hpp │ │ │ ├── remainder.hpp │ │ │ ├── round.hpp │ │ │ ├── scalbln.hpp │ │ │ ├── scalbn.hpp │ │ │ ├── signbit.hpp │ │ │ ├── sqrt.hpp │ │ │ └── trunc.hpp │ │ ├── common_factor.hpp │ │ ├── common_factor_ct.hpp │ │ ├── common_factor_rt.hpp │ │ ├── complex.hpp │ │ ├── complex │ │ │ ├── acos.hpp │ │ │ ├── acosh.hpp │ │ │ ├── asin.hpp │ │ │ ├── asinh.hpp │ │ │ ├── atan.hpp │ │ │ ├── atanh.hpp │ │ │ ├── details.hpp │ │ │ └── fabs.hpp │ │ ├── concepts │ │ │ ├── distributions.hpp │ │ │ ├── real_concept.hpp │ │ │ ├── real_type_concept.hpp │ │ │ └── std_real_concept.hpp │ │ ├── constants │ │ │ ├── calculate_constants.hpp │ │ │ ├── constants.hpp │ │ │ └── info.hpp │ │ ├── cstdfloat │ │ │ ├── cstdfloat_cmath.hpp │ │ │ ├── cstdfloat_complex.hpp │ │ │ ├── cstdfloat_complex_std.hpp │ │ │ ├── cstdfloat_iostream.hpp │ │ │ ├── cstdfloat_limits.hpp │ │ │ └── cstdfloat_types.hpp │ │ ├── differentiation │ │ │ ├── autodiff.hpp │ │ │ ├── autodiff_cpp11.hpp │ │ │ ├── finite_difference.hpp │ │ │ └── lanczos_smoothing.hpp │ │ ├── distributions.hpp │ │ ├── distributions │ │ │ ├── arcsine.hpp │ │ │ ├── bernoulli.hpp │ │ │ ├── beta.hpp │ │ │ ├── binomial.hpp │ │ │ ├── cauchy.hpp │ │ │ ├── chi_squared.hpp │ │ │ ├── complement.hpp │ │ │ ├── detail │ │ │ │ ├── common_error_handling.hpp │ │ │ │ ├── derived_accessors.hpp │ │ │ │ ├── generic_mode.hpp │ │ │ │ ├── generic_quantile.hpp │ │ │ │ ├── hypergeometric_cdf.hpp │ │ │ │ ├── hypergeometric_pdf.hpp │ │ │ │ ├── hypergeometric_quantile.hpp │ │ │ │ └── inv_discrete_quantile.hpp │ │ │ ├── empirical_cumulative_distribution_function.hpp │ │ │ ├── exponential.hpp │ │ │ ├── extreme_value.hpp │ │ │ ├── find_location.hpp │ │ │ ├── find_scale.hpp │ │ │ ├── fisher_f.hpp │ │ │ ├── fwd.hpp │ │ │ ├── gamma.hpp │ │ │ ├── geometric.hpp │ │ │ ├── hyperexponential.hpp │ │ │ ├── hypergeometric.hpp │ │ │ ├── inverse_chi_squared.hpp │ │ │ ├── inverse_gamma.hpp │ │ │ ├── inverse_gaussian.hpp │ │ │ ├── kolmogorov_smirnov.hpp │ │ │ ├── laplace.hpp │ │ │ ├── logistic.hpp │ │ │ ├── lognormal.hpp │ │ │ ├── negative_binomial.hpp │ │ │ ├── non_central_beta.hpp │ │ │ ├── non_central_chi_squared.hpp │ │ │ ├── non_central_f.hpp │ │ │ ├── non_central_t.hpp │ │ │ ├── normal.hpp │ │ │ ├── pareto.hpp │ │ │ ├── poisson.hpp │ │ │ ├── rayleigh.hpp │ │ │ ├── skew_normal.hpp │ │ │ ├── students_t.hpp │ │ │ ├── triangular.hpp │ │ │ ├── uniform.hpp │ │ │ └── weibull.hpp │ │ ├── filters │ │ │ └── daubechies.hpp │ │ ├── interpolators │ │ │ ├── barycentric_rational.hpp │ │ │ ├── bezier_polynomial.hpp │ │ │ ├── bilinear_uniform.hpp │ │ │ ├── cardinal_cubic_b_spline.hpp │ │ │ ├── cardinal_quadratic_b_spline.hpp │ │ │ ├── cardinal_quintic_b_spline.hpp │ │ │ ├── cardinal_trigonometric.hpp │ │ │ ├── catmull_rom.hpp │ │ │ ├── cubic_b_spline.hpp │ │ │ ├── cubic_hermite.hpp │ │ │ ├── detail │ │ │ │ ├── barycentric_rational_detail.hpp │ │ │ │ ├── bezier_polynomial_detail.hpp │ │ │ │ ├── bilinear_uniform_detail.hpp │ │ │ │ ├── cardinal_cubic_b_spline_detail.hpp │ │ │ │ ├── cardinal_quadratic_b_spline_detail.hpp │ │ │ │ ├── cardinal_quintic_b_spline_detail.hpp │ │ │ │ ├── cardinal_trigonometric_detail.hpp │ │ │ │ ├── cubic_b_spline_detail.hpp │ │ │ │ ├── cubic_hermite_detail.hpp │ │ │ │ ├── quintic_hermite_detail.hpp │ │ │ │ ├── septic_hermite_detail.hpp │ │ │ │ ├── vector_barycentric_rational_detail.hpp │ │ │ │ └── whittaker_shannon_detail.hpp │ │ │ ├── makima.hpp │ │ │ ├── pchip.hpp │ │ │ ├── quintic_hermite.hpp │ │ │ ├── septic_hermite.hpp │ │ │ ├── vector_barycentric_rational.hpp │ │ │ └── whittaker_shannon.hpp │ │ ├── octonion.hpp │ │ ├── policies │ │ │ ├── error_handling.hpp │ │ │ └── policy.hpp │ │ ├── quadrature │ │ │ ├── detail │ │ │ │ ├── exp_sinh_detail.hpp │ │ │ │ ├── ooura_fourier_integrals_detail.hpp │ │ │ │ ├── sinh_sinh_detail.hpp │ │ │ │ └── tanh_sinh_detail.hpp │ │ │ ├── exp_sinh.hpp │ │ │ ├── gauss.hpp │ │ │ ├── gauss_kronrod.hpp │ │ │ ├── naive_monte_carlo.hpp │ │ │ ├── ooura_fourier_integrals.hpp │ │ │ ├── sinh_sinh.hpp │ │ │ ├── tanh_sinh.hpp │ │ │ ├── trapezoidal.hpp │ │ │ └── wavelet_transforms.hpp │ │ ├── quaternion.hpp │ │ ├── special_functions.hpp │ │ ├── special_functions │ │ │ ├── acosh.hpp │ │ │ ├── airy.hpp │ │ │ ├── asinh.hpp │ │ │ ├── atanh.hpp │ │ │ ├── bernoulli.hpp │ │ │ ├── bessel.hpp │ │ │ ├── bessel_iterators.hpp │ │ │ ├── bessel_prime.hpp │ │ │ ├── beta.hpp │ │ │ ├── binomial.hpp │ │ │ ├── cardinal_b_spline.hpp │ │ │ ├── cbrt.hpp │ │ │ ├── chebyshev.hpp │ │ │ ├── chebyshev_transform.hpp │ │ │ ├── cos_pi.hpp │ │ │ ├── daubechies_scaling.hpp │ │ │ ├── daubechies_wavelet.hpp │ │ │ ├── detail │ │ │ │ ├── airy_ai_bi_zero.hpp │ │ │ │ ├── bernoulli_details.hpp │ │ │ │ ├── bessel_derivatives_linear.hpp │ │ │ │ ├── bessel_i0.hpp │ │ │ │ ├── bessel_i1.hpp │ │ │ │ ├── bessel_ik.hpp │ │ │ │ ├── bessel_j0.hpp │ │ │ │ ├── bessel_j1.hpp │ │ │ │ ├── bessel_jn.hpp │ │ │ │ ├── bessel_jy.hpp │ │ │ │ ├── bessel_jy_asym.hpp │ │ │ │ ├── bessel_jy_derivatives_asym.hpp │ │ │ │ ├── bessel_jy_derivatives_series.hpp │ │ │ │ ├── bessel_jy_series.hpp │ │ │ │ ├── bessel_jy_zero.hpp │ │ │ │ ├── bessel_k0.hpp │ │ │ │ ├── bessel_k1.hpp │ │ │ │ ├── bessel_kn.hpp │ │ │ │ ├── bessel_y0.hpp │ │ │ │ ├── bessel_y1.hpp │ │ │ │ ├── bessel_yn.hpp │ │ │ │ ├── daubechies_scaling_integer_grid.hpp │ │ │ │ ├── erf_inv.hpp │ │ │ │ ├── fp_traits.hpp │ │ │ │ ├── gamma_inva.hpp │ │ │ │ ├── hypergeometric_0F1_bessel.hpp │ │ │ │ ├── hypergeometric_1F1_addition_theorems_on_z.hpp │ │ │ │ ├── hypergeometric_1F1_bessel.hpp │ │ │ │ ├── hypergeometric_1F1_by_ratios.hpp │ │ │ │ ├── hypergeometric_1F1_cf.hpp │ │ │ │ ├── hypergeometric_1F1_large_a.hpp │ │ │ │ ├── hypergeometric_1F1_large_abz.hpp │ │ │ │ ├── hypergeometric_1F1_negative_b_regions.hpp │ │ │ │ ├── hypergeometric_1F1_recurrence.hpp │ │ │ │ ├── hypergeometric_1F1_scaled_series.hpp │ │ │ │ ├── hypergeometric_1F1_small_a_negative_b_by_ratio.hpp │ │ │ │ ├── hypergeometric_asym.hpp │ │ │ │ ├── hypergeometric_cf.hpp │ │ │ │ ├── hypergeometric_pFq_checked_series.hpp │ │ │ │ ├── hypergeometric_pade.hpp │ │ │ │ ├── hypergeometric_rational.hpp │ │ │ │ ├── hypergeometric_separated_series.hpp │ │ │ │ ├── hypergeometric_series.hpp │ │ │ │ ├── ibeta_inv_ab.hpp │ │ │ │ ├── ibeta_inverse.hpp │ │ │ │ ├── iconv.hpp │ │ │ │ ├── igamma_inverse.hpp │ │ │ │ ├── igamma_large.hpp │ │ │ │ ├── lambert_w_lookup_table.ipp │ │ │ │ ├── lanczos_sse2.hpp │ │ │ │ ├── lgamma_small.hpp │ │ │ │ ├── polygamma.hpp │ │ │ │ ├── round_fwd.hpp │ │ │ │ ├── t_distribution_inv.hpp │ │ │ │ ├── unchecked_bernoulli.hpp │ │ │ │ └── unchecked_factorial.hpp │ │ │ ├── digamma.hpp │ │ │ ├── ellint_1.hpp │ │ │ ├── ellint_2.hpp │ │ │ ├── ellint_3.hpp │ │ │ ├── ellint_d.hpp │ │ │ ├── ellint_rc.hpp │ │ │ ├── ellint_rd.hpp │ │ │ ├── ellint_rf.hpp │ │ │ ├── ellint_rg.hpp │ │ │ ├── ellint_rj.hpp │ │ │ ├── erf.hpp │ │ │ ├── expint.hpp │ │ │ ├── expm1.hpp │ │ │ ├── factorials.hpp │ │ │ ├── fibonacci.hpp │ │ │ ├── fourier_transform_daubechies.hpp │ │ │ ├── fpclassify.hpp │ │ │ ├── gamma.hpp │ │ │ ├── gegenbauer.hpp │ │ │ ├── hankel.hpp │ │ │ ├── hermite.hpp │ │ │ ├── heuman_lambda.hpp │ │ │ ├── hypergeometric_0F1.hpp │ │ │ ├── hypergeometric_1F0.hpp │ │ │ ├── hypergeometric_1F1.hpp │ │ │ ├── hypergeometric_2F0.hpp │ │ │ ├── hypergeometric_pFq.hpp │ │ │ ├── hypot.hpp │ │ │ ├── jacobi.hpp │ │ │ ├── jacobi_elliptic.hpp │ │ │ ├── jacobi_theta.hpp │ │ │ ├── jacobi_zeta.hpp │ │ │ ├── laguerre.hpp │ │ │ ├── lambert_w.hpp │ │ │ ├── lanczos.hpp │ │ │ ├── legendre.hpp │ │ │ ├── legendre_stieltjes.hpp │ │ │ ├── log1p.hpp │ │ │ ├── logaddexp.hpp │ │ │ ├── logsumexp.hpp │ │ │ ├── math_fwd.hpp │ │ │ ├── modf.hpp │ │ │ ├── next.hpp │ │ │ ├── nonfinite_num_facets.hpp │ │ │ ├── owens_t.hpp │ │ │ ├── polygamma.hpp │ │ │ ├── pow.hpp │ │ │ ├── powm1.hpp │ │ │ ├── prime.hpp │ │ │ ├── relative_difference.hpp │ │ │ ├── round.hpp │ │ │ ├── rsqrt.hpp │ │ │ ├── sign.hpp │ │ │ ├── sin_pi.hpp │ │ │ ├── sinc.hpp │ │ │ ├── sinhc.hpp │ │ │ ├── spherical_harmonic.hpp │ │ │ ├── sqrt1pm1.hpp │ │ │ ├── trigamma.hpp │ │ │ ├── trunc.hpp │ │ │ ├── ulp.hpp │ │ │ └── zeta.hpp │ │ ├── statistics │ │ │ ├── anderson_darling.hpp │ │ │ ├── bivariate_statistics.hpp │ │ │ ├── chatterjee_correlation.hpp │ │ │ ├── detail │ │ │ │ ├── rank.hpp │ │ │ │ └── single_pass.hpp │ │ │ ├── linear_regression.hpp │ │ │ ├── ljung_box.hpp │ │ │ ├── runs_test.hpp │ │ │ ├── signal_statistics.hpp │ │ │ ├── t_test.hpp │ │ │ ├── univariate_statistics.hpp │ │ │ └── z_test.hpp │ │ ├── tools │ │ │ ├── agm.hpp │ │ │ ├── assert.hpp │ │ │ ├── atomic.hpp │ │ │ ├── big_constant.hpp │ │ │ ├── bivariate_statistics.hpp │ │ │ ├── centered_continued_fraction.hpp │ │ │ ├── cohen_acceleration.hpp │ │ │ ├── color_maps.hpp │ │ │ ├── complex.hpp │ │ │ ├── concepts.hpp │ │ │ ├── condition_numbers.hpp │ │ │ ├── config.hpp │ │ │ ├── convert_from_string.hpp │ │ │ ├── cubic_roots.hpp │ │ │ ├── cxx03_warn.hpp │ │ │ ├── detail │ │ │ │ ├── is_const_iterable.hpp │ │ │ │ ├── polynomial_horner1_10.hpp │ │ │ │ ├── polynomial_horner1_11.hpp │ │ │ │ ├── polynomial_horner1_12.hpp │ │ │ │ ├── polynomial_horner1_13.hpp │ │ │ │ ├── polynomial_horner1_14.hpp │ │ │ │ ├── polynomial_horner1_15.hpp │ │ │ │ ├── polynomial_horner1_16.hpp │ │ │ │ ├── polynomial_horner1_17.hpp │ │ │ │ ├── polynomial_horner1_18.hpp │ │ │ │ ├── polynomial_horner1_19.hpp │ │ │ │ ├── polynomial_horner1_2.hpp │ │ │ │ ├── polynomial_horner1_20.hpp │ │ │ │ ├── polynomial_horner1_3.hpp │ │ │ │ ├── polynomial_horner1_4.hpp │ │ │ │ ├── polynomial_horner1_5.hpp │ │ │ │ ├── polynomial_horner1_6.hpp │ │ │ │ ├── polynomial_horner1_7.hpp │ │ │ │ ├── polynomial_horner1_8.hpp │ │ │ │ ├── polynomial_horner1_9.hpp │ │ │ │ ├── polynomial_horner2_10.hpp │ │ │ │ ├── polynomial_horner2_11.hpp │ │ │ │ ├── polynomial_horner2_12.hpp │ │ │ │ ├── polynomial_horner2_13.hpp │ │ │ │ ├── polynomial_horner2_14.hpp │ │ │ │ ├── polynomial_horner2_15.hpp │ │ │ │ ├── polynomial_horner2_16.hpp │ │ │ │ ├── polynomial_horner2_17.hpp │ │ │ │ ├── polynomial_horner2_18.hpp │ │ │ │ ├── polynomial_horner2_19.hpp │ │ │ │ ├── polynomial_horner2_2.hpp │ │ │ │ ├── polynomial_horner2_20.hpp │ │ │ │ ├── polynomial_horner2_3.hpp │ │ │ │ ├── polynomial_horner2_4.hpp │ │ │ │ ├── polynomial_horner2_5.hpp │ │ │ │ ├── polynomial_horner2_6.hpp │ │ │ │ ├── polynomial_horner2_7.hpp │ │ │ │ ├── polynomial_horner2_8.hpp │ │ │ │ ├── polynomial_horner2_9.hpp │ │ │ │ ├── polynomial_horner3_10.hpp │ │ │ │ ├── polynomial_horner3_11.hpp │ │ │ │ ├── polynomial_horner3_12.hpp │ │ │ │ ├── polynomial_horner3_13.hpp │ │ │ │ ├── polynomial_horner3_14.hpp │ │ │ │ ├── polynomial_horner3_15.hpp │ │ │ │ ├── polynomial_horner3_16.hpp │ │ │ │ ├── polynomial_horner3_17.hpp │ │ │ │ ├── polynomial_horner3_18.hpp │ │ │ │ ├── polynomial_horner3_19.hpp │ │ │ │ ├── polynomial_horner3_2.hpp │ │ │ │ ├── polynomial_horner3_20.hpp │ │ │ │ ├── polynomial_horner3_3.hpp │ │ │ │ ├── polynomial_horner3_4.hpp │ │ │ │ ├── polynomial_horner3_5.hpp │ │ │ │ ├── polynomial_horner3_6.hpp │ │ │ │ ├── polynomial_horner3_7.hpp │ │ │ │ ├── polynomial_horner3_8.hpp │ │ │ │ ├── polynomial_horner3_9.hpp │ │ │ │ ├── rational_horner1_10.hpp │ │ │ │ ├── rational_horner1_11.hpp │ │ │ │ ├── rational_horner1_12.hpp │ │ │ │ ├── rational_horner1_13.hpp │ │ │ │ ├── rational_horner1_14.hpp │ │ │ │ ├── rational_horner1_15.hpp │ │ │ │ ├── rational_horner1_16.hpp │ │ │ │ ├── rational_horner1_17.hpp │ │ │ │ ├── rational_horner1_18.hpp │ │ │ │ ├── rational_horner1_19.hpp │ │ │ │ ├── rational_horner1_2.hpp │ │ │ │ ├── rational_horner1_20.hpp │ │ │ │ ├── rational_horner1_3.hpp │ │ │ │ ├── rational_horner1_4.hpp │ │ │ │ ├── rational_horner1_5.hpp │ │ │ │ ├── rational_horner1_6.hpp │ │ │ │ ├── rational_horner1_7.hpp │ │ │ │ ├── rational_horner1_8.hpp │ │ │ │ ├── rational_horner1_9.hpp │ │ │ │ ├── rational_horner2_10.hpp │ │ │ │ ├── rational_horner2_11.hpp │ │ │ │ ├── rational_horner2_12.hpp │ │ │ │ ├── rational_horner2_13.hpp │ │ │ │ ├── rational_horner2_14.hpp │ │ │ │ ├── rational_horner2_15.hpp │ │ │ │ ├── rational_horner2_16.hpp │ │ │ │ ├── rational_horner2_17.hpp │ │ │ │ ├── rational_horner2_18.hpp │ │ │ │ ├── rational_horner2_19.hpp │ │ │ │ ├── rational_horner2_2.hpp │ │ │ │ ├── rational_horner2_20.hpp │ │ │ │ ├── rational_horner2_3.hpp │ │ │ │ ├── rational_horner2_4.hpp │ │ │ │ ├── rational_horner2_5.hpp │ │ │ │ ├── rational_horner2_6.hpp │ │ │ │ ├── rational_horner2_7.hpp │ │ │ │ ├── rational_horner2_8.hpp │ │ │ │ ├── rational_horner2_9.hpp │ │ │ │ ├── rational_horner3_10.hpp │ │ │ │ ├── rational_horner3_11.hpp │ │ │ │ ├── rational_horner3_12.hpp │ │ │ │ ├── rational_horner3_13.hpp │ │ │ │ ├── rational_horner3_14.hpp │ │ │ │ ├── rational_horner3_15.hpp │ │ │ │ ├── rational_horner3_16.hpp │ │ │ │ ├── rational_horner3_17.hpp │ │ │ │ ├── rational_horner3_18.hpp │ │ │ │ ├── rational_horner3_19.hpp │ │ │ │ ├── rational_horner3_2.hpp │ │ │ │ ├── rational_horner3_20.hpp │ │ │ │ ├── rational_horner3_3.hpp │ │ │ │ ├── rational_horner3_4.hpp │ │ │ │ ├── rational_horner3_5.hpp │ │ │ │ ├── rational_horner3_6.hpp │ │ │ │ ├── rational_horner3_7.hpp │ │ │ │ ├── rational_horner3_8.hpp │ │ │ │ └── rational_horner3_9.hpp │ │ │ ├── engel_expansion.hpp │ │ │ ├── estrin.hpp │ │ │ ├── fraction.hpp │ │ │ ├── header_deprecated.hpp │ │ │ ├── is_constant_evaluated.hpp │ │ │ ├── is_detected.hpp │ │ │ ├── is_standalone.hpp │ │ │ ├── luroth_expansion.hpp │ │ │ ├── minima.hpp │ │ │ ├── mp.hpp │ │ │ ├── norms.hpp │ │ │ ├── nothrow.hpp │ │ │ ├── numerical_differentiation.hpp │ │ │ ├── polynomial.hpp │ │ │ ├── polynomial_gcd.hpp │ │ │ ├── precision.hpp │ │ │ ├── promotion.hpp │ │ │ ├── quartic_roots.hpp │ │ │ ├── random_vector.hpp │ │ │ ├── rational.hpp │ │ │ ├── real_cast.hpp │ │ │ ├── recurrence.hpp │ │ │ ├── roots.hpp │ │ │ ├── series.hpp │ │ │ ├── signal_statistics.hpp │ │ │ ├── simple_continued_fraction.hpp │ │ │ ├── stats.hpp │ │ │ ├── test_value.hpp │ │ │ ├── throw_exception.hpp │ │ │ ├── toms748_solve.hpp │ │ │ ├── traits.hpp │ │ │ ├── tuple.hpp │ │ │ ├── ulps_plot.hpp │ │ │ ├── univariate_statistics.hpp │ │ │ ├── user.hpp │ │ │ └── workaround.hpp │ │ ├── tr1.hpp │ │ └── tr1_c_macros.ipp │ ├── math_fwd.hpp │ ├── mem_fn.hpp │ ├── memory_order.hpp │ ├── metaparse.hpp │ ├── move │ │ ├── adl_move_swap.hpp │ │ ├── algo │ │ │ ├── adaptive_merge.hpp │ │ │ ├── adaptive_sort.hpp │ │ │ ├── detail │ │ │ │ ├── adaptive_sort_merge.hpp │ │ │ │ ├── basic_op.hpp │ │ │ │ ├── heap_sort.hpp │ │ │ │ ├── insertion_sort.hpp │ │ │ │ ├── is_sorted.hpp │ │ │ │ ├── merge.hpp │ │ │ │ ├── merge_sort.hpp │ │ │ │ ├── pdqsort.hpp │ │ │ │ ├── search.hpp │ │ │ │ └── set_difference.hpp │ │ │ ├── move.hpp │ │ │ ├── predicate.hpp │ │ │ └── unique.hpp │ │ ├── algorithm.hpp │ │ ├── core.hpp │ │ ├── default_delete.hpp │ │ ├── detail │ │ │ ├── addressof.hpp │ │ │ ├── config_begin.hpp │ │ │ ├── config_end.hpp │ │ │ ├── destruct_n.hpp │ │ │ ├── force_ptr.hpp │ │ │ ├── fwd_macros.hpp │ │ │ ├── iterator_to_raw_pointer.hpp │ │ │ ├── iterator_traits.hpp │ │ │ ├── meta_utils.hpp │ │ │ ├── meta_utils_core.hpp │ │ │ ├── move_helpers.hpp │ │ │ ├── nsec_clock.hpp │ │ │ ├── placement_new.hpp │ │ │ ├── pointer_element.hpp │ │ │ ├── reverse_iterator.hpp │ │ │ ├── std_ns_begin.hpp │ │ │ ├── std_ns_end.hpp │ │ │ ├── to_raw_pointer.hpp │ │ │ ├── type_traits.hpp │ │ │ ├── unique_ptr_meta_utils.hpp │ │ │ └── workaround.hpp │ │ ├── iterator.hpp │ │ ├── make_unique.hpp │ │ ├── move.hpp │ │ ├── traits.hpp │ │ ├── unique_ptr.hpp │ │ ├── utility.hpp │ │ └── utility_core.hpp │ ├── mp11.hpp │ ├── mpi.hpp │ ├── mpl │ │ ├── O1_size.hpp │ │ ├── O1_size_fwd.hpp │ │ ├── accumulate.hpp │ │ ├── advance.hpp │ │ ├── advance_fwd.hpp │ │ ├── alias.hpp │ │ ├── always.hpp │ │ ├── and.hpp │ │ ├── apply.hpp │ │ ├── apply_fwd.hpp │ │ ├── apply_wrap.hpp │ │ ├── arg.hpp │ │ ├── arg_fwd.hpp │ │ ├── arithmetic.hpp │ │ ├── as_sequence.hpp │ │ ├── assert.hpp │ │ ├── at.hpp │ │ ├── at_fwd.hpp │ │ ├── aux_ │ │ │ ├── O1_size_impl.hpp │ │ │ ├── adl_barrier.hpp │ │ │ ├── advance_backward.hpp │ │ │ ├── advance_forward.hpp │ │ │ ├── apply_1st.hpp │ │ │ ├── arg_typedef.hpp │ │ │ ├── arithmetic_op.hpp │ │ │ ├── arity.hpp │ │ │ ├── arity_spec.hpp │ │ │ ├── at_impl.hpp │ │ │ ├── back_impl.hpp │ │ │ ├── basic_bind.hpp │ │ │ ├── begin_end_impl.hpp │ │ │ ├── clear_impl.hpp │ │ │ ├── common_name_wknd.hpp │ │ │ ├── comparison_op.hpp │ │ │ ├── config │ │ │ │ ├── adl.hpp │ │ │ │ ├── arrays.hpp │ │ │ │ ├── bcc.hpp │ │ │ │ ├── bind.hpp │ │ │ │ ├── compiler.hpp │ │ │ │ ├── ctps.hpp │ │ │ │ ├── dependent_nttp.hpp │ │ │ │ ├── dmc_ambiguous_ctps.hpp │ │ │ │ ├── dtp.hpp │ │ │ │ ├── eti.hpp │ │ │ │ ├── forwarding.hpp │ │ │ │ ├── gcc.hpp │ │ │ │ ├── gpu.hpp │ │ │ │ ├── has_apply.hpp │ │ │ │ ├── has_xxx.hpp │ │ │ │ ├── integral.hpp │ │ │ │ ├── intel.hpp │ │ │ │ ├── lambda.hpp │ │ │ │ ├── msvc.hpp │ │ │ │ ├── msvc_typename.hpp │ │ │ │ ├── nttp.hpp │ │ │ │ ├── operators.hpp │ │ │ │ ├── overload_resolution.hpp │ │ │ │ ├── pp_counter.hpp │ │ │ │ ├── preprocessor.hpp │ │ │ │ ├── static_constant.hpp │ │ │ │ ├── ttp.hpp │ │ │ │ ├── typeof.hpp │ │ │ │ ├── use_preprocessed.hpp │ │ │ │ └── workaround.hpp │ │ │ ├── contains_impl.hpp │ │ │ ├── count_args.hpp │ │ │ ├── count_impl.hpp │ │ │ ├── empty_impl.hpp │ │ │ ├── erase_impl.hpp │ │ │ ├── erase_key_impl.hpp │ │ │ ├── filter_iter.hpp │ │ │ ├── find_if_pred.hpp │ │ │ ├── fold_impl.hpp │ │ │ ├── fold_impl_body.hpp │ │ │ ├── fold_op.hpp │ │ │ ├── fold_pred.hpp │ │ │ ├── front_impl.hpp │ │ │ ├── full_lambda.hpp │ │ │ ├── has_apply.hpp │ │ │ ├── has_begin.hpp │ │ │ ├── has_key_impl.hpp │ │ │ ├── has_rebind.hpp │ │ │ ├── has_size.hpp │ │ │ ├── has_tag.hpp │ │ │ ├── has_type.hpp │ │ │ ├── include_preprocessed.hpp │ │ │ ├── insert_impl.hpp │ │ │ ├── insert_range_impl.hpp │ │ │ ├── inserter_algorithm.hpp │ │ │ ├── integral_wrapper.hpp │ │ │ ├── is_msvc_eti_arg.hpp │ │ │ ├── iter_apply.hpp │ │ │ ├── iter_fold_if_impl.hpp │ │ │ ├── iter_fold_impl.hpp │ │ │ ├── iter_push_front.hpp │ │ │ ├── joint_iter.hpp │ │ │ ├── lambda_arity_param.hpp │ │ │ ├── lambda_no_ctps.hpp │ │ │ ├── lambda_spec.hpp │ │ │ ├── lambda_support.hpp │ │ │ ├── largest_int.hpp │ │ │ ├── logical_op.hpp │ │ │ ├── msvc_dtw.hpp │ │ │ ├── msvc_eti_base.hpp │ │ │ ├── msvc_is_class.hpp │ │ │ ├── msvc_never_true.hpp │ │ │ ├── msvc_type.hpp │ │ │ ├── na.hpp │ │ │ ├── na_assert.hpp │ │ │ ├── na_fwd.hpp │ │ │ ├── na_spec.hpp │ │ │ ├── nested_type_wknd.hpp │ │ │ ├── nttp_decl.hpp │ │ │ ├── numeric_cast_utils.hpp │ │ │ ├── numeric_op.hpp │ │ │ ├── order_impl.hpp │ │ │ ├── overload_names.hpp │ │ │ ├── partition_op.hpp │ │ │ ├── pop_back_impl.hpp │ │ │ ├── pop_front_impl.hpp │ │ │ ├── preprocessed │ │ │ │ ├── bcc │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── bcc551 │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── bcc_pre590 │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── dmc │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── gcc │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── msvc60 │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── msvc70 │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── mwcw │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── no_ctps │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── no_ttp │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ └── plain │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ ├── preprocessor │ │ │ │ ├── add.hpp │ │ │ │ ├── def_params_tail.hpp │ │ │ │ ├── default_params.hpp │ │ │ │ ├── enum.hpp │ │ │ │ ├── ext_params.hpp │ │ │ │ ├── filter_params.hpp │ │ │ │ ├── is_seq.hpp │ │ │ │ ├── params.hpp │ │ │ │ ├── partial_spec_params.hpp │ │ │ │ ├── range.hpp │ │ │ │ ├── repeat.hpp │ │ │ │ ├── sub.hpp │ │ │ │ ├── token_equal.hpp │ │ │ │ └── tuple.hpp │ │ │ ├── ptr_to_ref.hpp │ │ │ ├── push_back_impl.hpp │ │ │ ├── push_front_impl.hpp │ │ │ ├── range_c │ │ │ │ ├── O1_size.hpp │ │ │ │ ├── back.hpp │ │ │ │ ├── empty.hpp │ │ │ │ ├── front.hpp │ │ │ │ ├── iterator.hpp │ │ │ │ ├── size.hpp │ │ │ │ └── tag.hpp │ │ │ ├── reverse_fold_impl.hpp │ │ │ ├── reverse_fold_impl_body.hpp │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ ├── sequence_wrapper.hpp │ │ │ ├── shift_op.hpp │ │ │ ├── single_element_iter.hpp │ │ │ ├── size_impl.hpp │ │ │ ├── sort_impl.hpp │ │ │ ├── static_cast.hpp │ │ │ ├── template_arity.hpp │ │ │ ├── template_arity_fwd.hpp │ │ │ ├── test.hpp │ │ │ ├── test │ │ │ │ ├── assert.hpp │ │ │ │ ├── data.hpp │ │ │ │ └── test_case.hpp │ │ │ ├── traits_lambda_spec.hpp │ │ │ ├── transform_iter.hpp │ │ │ ├── type_wrapper.hpp │ │ │ ├── unwrap.hpp │ │ │ ├── value_wknd.hpp │ │ │ └── yes_no.hpp │ │ ├── back.hpp │ │ ├── back_fwd.hpp │ │ ├── back_inserter.hpp │ │ ├── base.hpp │ │ ├── begin.hpp │ │ ├── begin_end.hpp │ │ ├── begin_end_fwd.hpp │ │ ├── bind.hpp │ │ ├── bind_fwd.hpp │ │ ├── bitand.hpp │ │ ├── bitor.hpp │ │ ├── bitwise.hpp │ │ ├── bitxor.hpp │ │ ├── bool.hpp │ │ ├── bool_fwd.hpp │ │ ├── char.hpp │ │ ├── char_fwd.hpp │ │ ├── clear.hpp │ │ ├── clear_fwd.hpp │ │ ├── comparison.hpp │ │ ├── contains.hpp │ │ ├── contains_fwd.hpp │ │ ├── copy.hpp │ │ ├── copy_if.hpp │ │ ├── count.hpp │ │ ├── count_fwd.hpp │ │ ├── count_if.hpp │ │ ├── deque.hpp │ │ ├── deref.hpp │ │ ├── distance.hpp │ │ ├── distance_fwd.hpp │ │ ├── divides.hpp │ │ ├── empty.hpp │ │ ├── empty_base.hpp │ │ ├── empty_fwd.hpp │ │ ├── empty_sequence.hpp │ │ ├── end.hpp │ │ ├── equal.hpp │ │ ├── equal_to.hpp │ │ ├── erase.hpp │ │ ├── erase_fwd.hpp │ │ ├── erase_key.hpp │ │ ├── erase_key_fwd.hpp │ │ ├── eval_if.hpp │ │ ├── filter_view.hpp │ │ ├── find.hpp │ │ ├── find_if.hpp │ │ ├── fold.hpp │ │ ├── for_each.hpp │ │ ├── front.hpp │ │ ├── front_fwd.hpp │ │ ├── front_inserter.hpp │ │ ├── get_tag.hpp │ │ ├── greater.hpp │ │ ├── greater_equal.hpp │ │ ├── has_key.hpp │ │ ├── has_key_fwd.hpp │ │ ├── has_xxx.hpp │ │ ├── identity.hpp │ │ ├── if.hpp │ │ ├── index_if.hpp │ │ ├── index_of.hpp │ │ ├── inherit.hpp │ │ ├── inherit_linearly.hpp │ │ ├── insert.hpp │ │ ├── insert_fwd.hpp │ │ ├── insert_range.hpp │ │ ├── insert_range_fwd.hpp │ │ ├── inserter.hpp │ │ ├── int.hpp │ │ ├── int_fwd.hpp │ │ ├── integral_c.hpp │ │ ├── integral_c_fwd.hpp │ │ ├── integral_c_tag.hpp │ │ ├── is_placeholder.hpp │ │ ├── is_sequence.hpp │ │ ├── iter_fold.hpp │ │ ├── iter_fold_if.hpp │ │ ├── iterator_category.hpp │ │ ├── iterator_range.hpp │ │ ├── iterator_tags.hpp │ │ ├── joint_view.hpp │ │ ├── key_type.hpp │ │ ├── key_type_fwd.hpp │ │ ├── lambda.hpp │ │ ├── lambda_fwd.hpp │ │ ├── less.hpp │ │ ├── less_equal.hpp │ │ ├── limits │ │ │ ├── arity.hpp │ │ │ ├── list.hpp │ │ │ ├── map.hpp │ │ │ ├── set.hpp │ │ │ ├── string.hpp │ │ │ ├── unrolling.hpp │ │ │ └── vector.hpp │ │ ├── list.hpp │ │ ├── list │ │ │ ├── aux_ │ │ │ │ ├── O1_size.hpp │ │ │ │ ├── begin_end.hpp │ │ │ │ ├── clear.hpp │ │ │ │ ├── empty.hpp │ │ │ │ ├── front.hpp │ │ │ │ ├── include_preprocessed.hpp │ │ │ │ ├── item.hpp │ │ │ │ ├── iterator.hpp │ │ │ │ ├── numbered.hpp │ │ │ │ ├── numbered_c.hpp │ │ │ │ ├── pop_front.hpp │ │ │ │ ├── preprocessed │ │ │ │ │ └── plain │ │ │ │ │ │ ├── list10.hpp │ │ │ │ │ │ ├── list10_c.hpp │ │ │ │ │ │ ├── list20.hpp │ │ │ │ │ │ ├── list20_c.hpp │ │ │ │ │ │ ├── list30.hpp │ │ │ │ │ │ ├── list30_c.hpp │ │ │ │ │ │ ├── list40.hpp │ │ │ │ │ │ ├── list40_c.hpp │ │ │ │ │ │ ├── list50.hpp │ │ │ │ │ │ └── list50_c.hpp │ │ │ │ ├── push_back.hpp │ │ │ │ ├── push_front.hpp │ │ │ │ ├── size.hpp │ │ │ │ └── tag.hpp │ │ │ ├── list0.hpp │ │ │ ├── list0_c.hpp │ │ │ ├── list10.hpp │ │ │ ├── list10_c.hpp │ │ │ ├── list20.hpp │ │ │ ├── list20_c.hpp │ │ │ ├── list30.hpp │ │ │ ├── list30_c.hpp │ │ │ ├── list40.hpp │ │ │ ├── list40_c.hpp │ │ │ ├── list50.hpp │ │ │ └── list50_c.hpp │ │ ├── list_c.hpp │ │ ├── logical.hpp │ │ ├── long.hpp │ │ ├── long_fwd.hpp │ │ ├── lower_bound.hpp │ │ ├── map.hpp │ │ ├── map │ │ │ ├── aux_ │ │ │ │ ├── at_impl.hpp │ │ │ │ ├── begin_end_impl.hpp │ │ │ │ ├── clear_impl.hpp │ │ │ │ ├── contains_impl.hpp │ │ │ │ ├── empty_impl.hpp │ │ │ │ ├── erase_impl.hpp │ │ │ │ ├── erase_key_impl.hpp │ │ │ │ ├── has_key_impl.hpp │ │ │ │ ├── include_preprocessed.hpp │ │ │ │ ├── insert_impl.hpp │ │ │ │ ├── insert_range_impl.hpp │ │ │ │ ├── item.hpp │ │ │ │ ├── iterator.hpp │ │ │ │ ├── key_type_impl.hpp │ │ │ │ ├── map0.hpp │ │ │ │ ├── numbered.hpp │ │ │ │ ├── preprocessed │ │ │ │ │ ├── no_ctps │ │ │ │ │ │ ├── map10.hpp │ │ │ │ │ │ ├── map20.hpp │ │ │ │ │ │ ├── map30.hpp │ │ │ │ │ │ ├── map40.hpp │ │ │ │ │ │ └── map50.hpp │ │ │ │ │ ├── plain │ │ │ │ │ │ ├── map10.hpp │ │ │ │ │ │ ├── map20.hpp │ │ │ │ │ │ ├── map30.hpp │ │ │ │ │ │ ├── map40.hpp │ │ │ │ │ │ └── map50.hpp │ │ │ │ │ └── typeof_based │ │ │ │ │ │ ├── map10.hpp │ │ │ │ │ │ ├── map20.hpp │ │ │ │ │ │ ├── map30.hpp │ │ │ │ │ │ ├── map40.hpp │ │ │ │ │ │ └── map50.hpp │ │ │ │ ├── size_impl.hpp │ │ │ │ ├── tag.hpp │ │ │ │ └── value_type_impl.hpp │ │ │ ├── map0.hpp │ │ │ ├── map10.hpp │ │ │ ├── map20.hpp │ │ │ ├── map30.hpp │ │ │ ├── map40.hpp │ │ │ └── map50.hpp │ │ ├── math │ │ │ ├── fixed_c.hpp │ │ │ ├── is_even.hpp │ │ │ └── rational_c.hpp │ │ ├── max.hpp │ │ ├── max_element.hpp │ │ ├── min.hpp │ │ ├── min_element.hpp │ │ ├── min_max.hpp │ │ ├── minus.hpp │ │ ├── modulus.hpp │ │ ├── multiplies.hpp │ │ ├── multiset │ │ │ ├── aux_ │ │ │ │ ├── count_impl.hpp │ │ │ │ ├── insert_impl.hpp │ │ │ │ ├── item.hpp │ │ │ │ ├── multiset0.hpp │ │ │ │ └── tag.hpp │ │ │ └── multiset0.hpp │ │ ├── negate.hpp │ │ ├── next.hpp │ │ ├── next_prior.hpp │ │ ├── not.hpp │ │ ├── not_equal_to.hpp │ │ ├── numeric_cast.hpp │ │ ├── or.hpp │ │ ├── order.hpp │ │ ├── order_fwd.hpp │ │ ├── pair.hpp │ │ ├── pair_view.hpp │ │ ├── partition.hpp │ │ ├── placeholders.hpp │ │ ├── plus.hpp │ │ ├── pop_back.hpp │ │ ├── pop_back_fwd.hpp │ │ ├── pop_front.hpp │ │ ├── pop_front_fwd.hpp │ │ ├── print.hpp │ │ ├── prior.hpp │ │ ├── protect.hpp │ │ ├── push_back.hpp │ │ ├── push_back_fwd.hpp │ │ ├── push_front.hpp │ │ ├── push_front_fwd.hpp │ │ ├── quote.hpp │ │ ├── range_c.hpp │ │ ├── remove.hpp │ │ ├── remove_if.hpp │ │ ├── replace.hpp │ │ ├── replace_if.hpp │ │ ├── reverse.hpp │ │ ├── reverse_fold.hpp │ │ ├── reverse_iter_fold.hpp │ │ ├── same_as.hpp │ │ ├── sequence_tag.hpp │ │ ├── sequence_tag_fwd.hpp │ │ ├── set.hpp │ │ ├── set │ │ │ ├── aux_ │ │ │ │ ├── at_impl.hpp │ │ │ │ ├── begin_end_impl.hpp │ │ │ │ ├── clear_impl.hpp │ │ │ │ ├── empty_impl.hpp │ │ │ │ ├── erase_impl.hpp │ │ │ │ ├── erase_key_impl.hpp │ │ │ │ ├── has_key_impl.hpp │ │ │ │ ├── include_preprocessed.hpp │ │ │ │ ├── insert_impl.hpp │ │ │ │ ├── insert_range_impl.hpp │ │ │ │ ├── item.hpp │ │ │ │ ├── iterator.hpp │ │ │ │ ├── key_type_impl.hpp │ │ │ │ ├── numbered.hpp │ │ │ │ ├── numbered_c.hpp │ │ │ │ ├── preprocessed │ │ │ │ │ └── plain │ │ │ │ │ │ ├── set10.hpp │ │ │ │ │ │ ├── set10_c.hpp │ │ │ │ │ │ ├── set20.hpp │ │ │ │ │ │ ├── set20_c.hpp │ │ │ │ │ │ ├── set30.hpp │ │ │ │ │ │ ├── set30_c.hpp │ │ │ │ │ │ ├── set40.hpp │ │ │ │ │ │ ├── set40_c.hpp │ │ │ │ │ │ ├── set50.hpp │ │ │ │ │ │ └── set50_c.hpp │ │ │ │ ├── set0.hpp │ │ │ │ ├── size_impl.hpp │ │ │ │ ├── tag.hpp │ │ │ │ └── value_type_impl.hpp │ │ │ ├── set0.hpp │ │ │ ├── set0_c.hpp │ │ │ ├── set10.hpp │ │ │ ├── set10_c.hpp │ │ │ ├── set20.hpp │ │ │ ├── set20_c.hpp │ │ │ ├── set30.hpp │ │ │ ├── set30_c.hpp │ │ │ ├── set40.hpp │ │ │ ├── set40_c.hpp │ │ │ ├── set50.hpp │ │ │ └── set50_c.hpp │ │ ├── set_c.hpp │ │ ├── shift_left.hpp │ │ ├── shift_right.hpp │ │ ├── single_view.hpp │ │ ├── size.hpp │ │ ├── size_fwd.hpp │ │ ├── size_t.hpp │ │ ├── size_t_fwd.hpp │ │ ├── sizeof.hpp │ │ ├── sort.hpp │ │ ├── stable_partition.hpp │ │ ├── string.hpp │ │ ├── switch.hpp │ │ ├── tag.hpp │ │ ├── times.hpp │ │ ├── transform.hpp │ │ ├── transform_view.hpp │ │ ├── unique.hpp │ │ ├── unpack_args.hpp │ │ ├── upper_bound.hpp │ │ ├── value_type.hpp │ │ ├── value_type_fwd.hpp │ │ ├── vector.hpp │ │ ├── vector │ │ │ ├── aux_ │ │ │ │ ├── O1_size.hpp │ │ │ │ ├── at.hpp │ │ │ │ ├── back.hpp │ │ │ │ ├── begin_end.hpp │ │ │ │ ├── clear.hpp │ │ │ │ ├── empty.hpp │ │ │ │ ├── front.hpp │ │ │ │ ├── include_preprocessed.hpp │ │ │ │ ├── item.hpp │ │ │ │ ├── iterator.hpp │ │ │ │ ├── numbered.hpp │ │ │ │ ├── numbered_c.hpp │ │ │ │ ├── pop_back.hpp │ │ │ │ ├── pop_front.hpp │ │ │ │ ├── preprocessed │ │ │ │ │ ├── no_ctps │ │ │ │ │ │ ├── vector10.hpp │ │ │ │ │ │ ├── vector10_c.hpp │ │ │ │ │ │ ├── vector20.hpp │ │ │ │ │ │ ├── vector20_c.hpp │ │ │ │ │ │ ├── vector30.hpp │ │ │ │ │ │ ├── vector30_c.hpp │ │ │ │ │ │ ├── vector40.hpp │ │ │ │ │ │ ├── vector40_c.hpp │ │ │ │ │ │ ├── vector50.hpp │ │ │ │ │ │ └── vector50_c.hpp │ │ │ │ │ ├── plain │ │ │ │ │ │ ├── vector10.hpp │ │ │ │ │ │ ├── vector10_c.hpp │ │ │ │ │ │ ├── vector20.hpp │ │ │ │ │ │ ├── vector20_c.hpp │ │ │ │ │ │ ├── vector30.hpp │ │ │ │ │ │ ├── vector30_c.hpp │ │ │ │ │ │ ├── vector40.hpp │ │ │ │ │ │ ├── vector40_c.hpp │ │ │ │ │ │ ├── vector50.hpp │ │ │ │ │ │ └── vector50_c.hpp │ │ │ │ │ └── typeof_based │ │ │ │ │ │ ├── vector10.hpp │ │ │ │ │ │ ├── vector10_c.hpp │ │ │ │ │ │ ├── vector20.hpp │ │ │ │ │ │ ├── vector20_c.hpp │ │ │ │ │ │ ├── vector30.hpp │ │ │ │ │ │ ├── vector30_c.hpp │ │ │ │ │ │ ├── vector40.hpp │ │ │ │ │ │ ├── vector40_c.hpp │ │ │ │ │ │ ├── vector50.hpp │ │ │ │ │ │ └── vector50_c.hpp │ │ │ │ ├── push_back.hpp │ │ │ │ ├── push_front.hpp │ │ │ │ ├── size.hpp │ │ │ │ ├── tag.hpp │ │ │ │ └── vector0.hpp │ │ │ ├── vector0.hpp │ │ │ ├── vector0_c.hpp │ │ │ ├── vector10.hpp │ │ │ ├── vector10_c.hpp │ │ │ ├── vector20.hpp │ │ │ ├── vector20_c.hpp │ │ │ ├── vector30.hpp │ │ │ ├── vector30_c.hpp │ │ │ ├── vector40.hpp │ │ │ ├── vector40_c.hpp │ │ │ ├── vector50.hpp │ │ │ └── vector50_c.hpp │ │ ├── vector_c.hpp │ │ ├── void.hpp │ │ ├── void_fwd.hpp │ │ └── zip_view.hpp │ ├── multi_array.hpp │ ├── multi_index_container.hpp │ ├── multi_index_container_fwd.hpp │ ├── multiprecision │ │ ├── complex128.hpp │ │ ├── complex_adaptor.hpp │ │ ├── concepts │ │ │ └── mp_number_archetypes.hpp │ │ ├── cpp_bin_float.hpp │ │ ├── cpp_bin_float │ │ │ ├── io.hpp │ │ │ └── transcendental.hpp │ │ ├── cpp_complex.hpp │ │ ├── cpp_dec_float.hpp │ │ ├── cpp_int.hpp │ │ ├── cpp_int │ │ │ ├── add.hpp │ │ │ ├── add_unsigned.hpp │ │ │ ├── bitwise.hpp │ │ │ ├── checked.hpp │ │ │ ├── comparison.hpp │ │ │ ├── cpp_int_config.hpp │ │ │ ├── divide.hpp │ │ │ ├── import_export.hpp │ │ │ ├── intel_intrinsics.hpp │ │ │ ├── limits.hpp │ │ │ ├── literals.hpp │ │ │ ├── misc.hpp │ │ │ ├── multiply.hpp │ │ │ ├── serialize.hpp │ │ │ └── value_pack.hpp │ │ ├── debug_adaptor.hpp │ │ ├── detail │ │ │ ├── assert.hpp │ │ │ ├── atomic.hpp │ │ │ ├── bitscan.hpp │ │ │ ├── check_cpp11_config.hpp │ │ │ ├── constexpr.hpp │ │ │ ├── default_ops.hpp │ │ │ ├── digits.hpp │ │ │ ├── dynamic_array.hpp │ │ │ ├── empty_value.hpp │ │ │ ├── endian.hpp │ │ │ ├── et_ops.hpp │ │ │ ├── float128_functions.hpp │ │ │ ├── float_string_cvt.hpp │ │ │ ├── fpclassify.hpp │ │ │ ├── functions │ │ │ │ ├── constants.hpp │ │ │ │ ├── pow.hpp │ │ │ │ ├── trig.hpp │ │ │ │ └── trunc.hpp │ │ │ ├── generic_interconvert.hpp │ │ │ ├── hash.hpp │ │ │ ├── integer_ops.hpp │ │ │ ├── itos.hpp │ │ │ ├── min_max.hpp │ │ │ ├── no_et_ops.hpp │ │ │ ├── no_exceptions_support.hpp │ │ │ ├── number_base.hpp │ │ │ ├── number_compare.hpp │ │ │ ├── precision.hpp │ │ │ ├── rebind.hpp │ │ │ ├── standalone_config.hpp │ │ │ ├── static_array.hpp │ │ │ ├── string_helpers.hpp │ │ │ ├── tables.hpp │ │ │ ├── ublas_interop.hpp │ │ │ ├── uniform_int_distribution.hpp │ │ │ └── utype_helper.hpp │ │ ├── eigen.hpp │ │ ├── float128.hpp │ │ ├── fwd.hpp │ │ ├── gmp.hpp │ │ ├── integer.hpp │ │ ├── logged_adaptor.hpp │ │ ├── miller_rabin.hpp │ │ ├── mpc.hpp │ │ ├── mpfi.hpp │ │ ├── mpfr.hpp │ │ ├── number.hpp │ │ ├── random.hpp │ │ ├── rational_adaptor.hpp │ │ ├── tommath.hpp │ │ └── traits │ │ │ ├── explicit_conversion.hpp │ │ │ ├── extract_exponent_type.hpp │ │ │ ├── is_backend.hpp │ │ │ ├── is_byte_container.hpp │ │ │ ├── is_complex.hpp │ │ │ ├── is_convertible_arithmetic.hpp │ │ │ ├── is_restricted_conversion.hpp │ │ │ ├── is_variable_precision.hpp │ │ │ ├── max_digits10.hpp │ │ │ ├── std_integer_traits.hpp │ │ │ └── transcendental_reduction_type.hpp │ ├── mysql.hpp │ ├── next_prior.hpp │ ├── non_type.hpp │ ├── noncopyable.hpp │ ├── nondet_random.hpp │ ├── none.hpp │ ├── none_t.hpp │ ├── numeric │ │ ├── conversion │ │ │ ├── bounds.hpp │ │ │ ├── cast.hpp │ │ │ ├── conversion_traits.hpp │ │ │ ├── converter.hpp │ │ │ ├── converter_policies.hpp │ │ │ ├── detail │ │ │ │ ├── bounds.hpp │ │ │ │ ├── conversion_traits.hpp │ │ │ │ ├── converter.hpp │ │ │ │ ├── int_float_mixture.hpp │ │ │ │ ├── is_subranged.hpp │ │ │ │ ├── meta.hpp │ │ │ │ ├── numeric_cast_traits.hpp │ │ │ │ ├── old_numeric_cast.hpp │ │ │ │ ├── preprocessed │ │ │ │ │ ├── numeric_cast_traits_common.hpp │ │ │ │ │ └── numeric_cast_traits_long_long.hpp │ │ │ │ ├── sign_mixture.hpp │ │ │ │ └── udt_builtin_mixture.hpp │ │ │ ├── int_float_mixture.hpp │ │ │ ├── int_float_mixture_enum.hpp │ │ │ ├── is_subranged.hpp │ │ │ ├── numeric_cast_traits.hpp │ │ │ ├── sign_mixture.hpp │ │ │ ├── sign_mixture_enum.hpp │ │ │ ├── udt_builtin_mixture.hpp │ │ │ └── udt_builtin_mixture_enum.hpp │ │ ├── interval.hpp │ │ ├── interval │ │ │ ├── arith.hpp │ │ │ ├── arith2.hpp │ │ │ ├── arith3.hpp │ │ │ ├── checking.hpp │ │ │ ├── compare.hpp │ │ │ ├── compare │ │ │ │ ├── certain.hpp │ │ │ │ ├── explicit.hpp │ │ │ │ ├── lexicographic.hpp │ │ │ │ ├── possible.hpp │ │ │ │ ├── set.hpp │ │ │ │ └── tribool.hpp │ │ │ ├── constants.hpp │ │ │ ├── detail │ │ │ │ ├── alpha_rounding_control.hpp │ │ │ │ ├── bcc_rounding_control.hpp │ │ │ │ ├── bugs.hpp │ │ │ │ ├── c99_rounding_control.hpp │ │ │ │ ├── c99sub_rounding_control.hpp │ │ │ │ ├── division.hpp │ │ │ │ ├── ia64_rounding_control.hpp │ │ │ │ ├── interval_prototype.hpp │ │ │ │ ├── msvc_rounding_control.hpp │ │ │ │ ├── ppc_rounding_control.hpp │ │ │ │ ├── sparc_rounding_control.hpp │ │ │ │ ├── test_input.hpp │ │ │ │ ├── x86_rounding_control.hpp │ │ │ │ └── x86gcc_rounding_control.hpp │ │ │ ├── ext │ │ │ │ ├── integer.hpp │ │ │ │ └── x86_fast_rounding_control.hpp │ │ │ ├── hw_rounding.hpp │ │ │ ├── interval.hpp │ │ │ ├── io.hpp │ │ │ ├── limits.hpp │ │ │ ├── policies.hpp │ │ │ ├── rounded_arith.hpp │ │ │ ├── rounded_transc.hpp │ │ │ ├── rounding.hpp │ │ │ ├── transc.hpp │ │ │ ├── utility.hpp │ │ │ └── utility_fwd.hpp │ │ ├── odeint.hpp │ │ ├── odeint │ │ │ ├── algebra │ │ │ │ ├── algebra_dispatcher.hpp │ │ │ │ ├── array_algebra.hpp │ │ │ │ ├── default_operations.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── extract_value_type.hpp │ │ │ │ │ ├── for_each.hpp │ │ │ │ │ ├── macros.hpp │ │ │ │ │ └── norm_inf.hpp │ │ │ │ ├── fusion_algebra.hpp │ │ │ │ ├── fusion_algebra_dispatcher.hpp │ │ │ │ ├── multi_array_algebra.hpp │ │ │ │ ├── norm_result_type.hpp │ │ │ │ ├── operations_dispatcher.hpp │ │ │ │ ├── range_algebra.hpp │ │ │ │ └── vector_space_algebra.hpp │ │ │ ├── config.hpp │ │ │ ├── external │ │ │ │ ├── blaze │ │ │ │ │ ├── blaze_algebra_dispatcher.hpp │ │ │ │ │ └── blaze_resize.hpp │ │ │ │ ├── compute │ │ │ │ │ ├── compute.hpp │ │ │ │ │ ├── compute_algebra.hpp │ │ │ │ │ ├── compute_algebra_dispatcher.hpp │ │ │ │ │ ├── compute_operations.hpp │ │ │ │ │ ├── compute_operations_dispatcher.hpp │ │ │ │ │ └── compute_resize.hpp │ │ │ │ ├── eigen │ │ │ │ │ ├── eigen.hpp │ │ │ │ │ ├── eigen_algebra.hpp │ │ │ │ │ ├── eigen_algebra_dispatcher.hpp │ │ │ │ │ └── eigen_resize.hpp │ │ │ │ ├── gsl │ │ │ │ │ └── gsl_wrapper.hpp │ │ │ │ ├── mkl │ │ │ │ │ └── mkl_operations.hpp │ │ │ │ ├── mpi │ │ │ │ │ ├── mpi.hpp │ │ │ │ │ ├── mpi_nested_algebra.hpp │ │ │ │ │ ├── mpi_state.hpp │ │ │ │ │ └── mpi_vector_state.hpp │ │ │ │ ├── mtl4 │ │ │ │ │ ├── implicit_euler_mtl4.hpp │ │ │ │ │ ├── mtl4.hpp │ │ │ │ │ ├── mtl4_algebra_dispatcher.hpp │ │ │ │ │ └── mtl4_resize.hpp │ │ │ │ ├── nt2 │ │ │ │ │ ├── nt2_algebra_dispatcher.hpp │ │ │ │ │ ├── nt2_copy.hpp │ │ │ │ │ ├── nt2_norm_inf.hpp │ │ │ │ │ └── nt2_resize.hpp │ │ │ │ ├── openmp │ │ │ │ │ ├── openmp.hpp │ │ │ │ │ ├── openmp_nested_algebra.hpp │ │ │ │ │ ├── openmp_range_algebra.hpp │ │ │ │ │ └── openmp_state.hpp │ │ │ │ ├── thrust │ │ │ │ │ ├── thrust.hpp │ │ │ │ │ ├── thrust_algebra.hpp │ │ │ │ │ ├── thrust_algebra_dispatcher.hpp │ │ │ │ │ ├── thrust_operations.hpp │ │ │ │ │ ├── thrust_operations_dispatcher.hpp │ │ │ │ │ └── thrust_resize.hpp │ │ │ │ ├── vexcl │ │ │ │ │ ├── vexcl.hpp │ │ │ │ │ ├── vexcl_abs.hpp │ │ │ │ │ ├── vexcl_algebra_dispatcher.hpp │ │ │ │ │ ├── vexcl_copy.hpp │ │ │ │ │ ├── vexcl_norm_inf.hpp │ │ │ │ │ ├── vexcl_resize.hpp │ │ │ │ │ └── vexcl_same_instance.hpp │ │ │ │ └── viennacl │ │ │ │ │ ├── viennacl_operations.hpp │ │ │ │ │ └── viennacl_resize.hpp │ │ │ ├── integrate │ │ │ │ ├── check_adapter.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── functors.hpp │ │ │ │ │ ├── integrate_adaptive.hpp │ │ │ │ │ ├── integrate_const.hpp │ │ │ │ │ ├── integrate_n_steps.hpp │ │ │ │ │ └── integrate_times.hpp │ │ │ │ ├── integrate.hpp │ │ │ │ ├── integrate_adaptive.hpp │ │ │ │ ├── integrate_const.hpp │ │ │ │ ├── integrate_n_steps.hpp │ │ │ │ ├── integrate_times.hpp │ │ │ │ ├── max_step_checker.hpp │ │ │ │ ├── null_observer.hpp │ │ │ │ └── observer_collection.hpp │ │ │ ├── iterator │ │ │ │ ├── adaptive_iterator.hpp │ │ │ │ ├── adaptive_time_iterator.hpp │ │ │ │ ├── const_step_iterator.hpp │ │ │ │ ├── const_step_time_iterator.hpp │ │ │ │ ├── detail │ │ │ │ │ └── ode_iterator_base.hpp │ │ │ │ ├── impl │ │ │ │ │ ├── adaptive_iterator_impl.hpp │ │ │ │ │ ├── const_step_iterator_impl.hpp │ │ │ │ │ ├── n_step_iterator_impl.hpp │ │ │ │ │ └── times_iterator_impl.hpp │ │ │ │ ├── integrate │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── functors.hpp │ │ │ │ │ │ ├── integrate_adaptive.hpp │ │ │ │ │ │ ├── integrate_const.hpp │ │ │ │ │ │ ├── integrate_n_steps.hpp │ │ │ │ │ │ └── integrate_times.hpp │ │ │ │ │ ├── integrate.hpp │ │ │ │ │ ├── integrate_adaptive.hpp │ │ │ │ │ ├── integrate_const.hpp │ │ │ │ │ ├── integrate_n_steps.hpp │ │ │ │ │ ├── integrate_times.hpp │ │ │ │ │ ├── null_observer.hpp │ │ │ │ │ └── observer_collection.hpp │ │ │ │ ├── n_step_iterator.hpp │ │ │ │ ├── n_step_time_iterator.hpp │ │ │ │ ├── times_iterator.hpp │ │ │ │ └── times_time_iterator.hpp │ │ │ ├── stepper │ │ │ │ ├── adams_bashforth.hpp │ │ │ │ ├── adams_bashforth_moulton.hpp │ │ │ │ ├── adams_moulton.hpp │ │ │ │ ├── adaptive_adams_bashforth_moulton.hpp │ │ │ │ ├── base │ │ │ │ │ ├── algebra_stepper_base.hpp │ │ │ │ │ ├── explicit_error_stepper_base.hpp │ │ │ │ │ ├── explicit_error_stepper_fsal_base.hpp │ │ │ │ │ ├── explicit_stepper_base.hpp │ │ │ │ │ └── symplectic_rkn_stepper_base.hpp │ │ │ │ ├── bulirsch_stoer.hpp │ │ │ │ ├── bulirsch_stoer_dense_out.hpp │ │ │ │ ├── controlled_adams_bashforth_moulton.hpp │ │ │ │ ├── controlled_runge_kutta.hpp │ │ │ │ ├── controlled_step_result.hpp │ │ │ │ ├── dense_output_runge_kutta.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── adams_bashforth_call_algebra.hpp │ │ │ │ │ ├── adams_bashforth_coefficients.hpp │ │ │ │ │ ├── adams_moulton_call_algebra.hpp │ │ │ │ │ ├── adams_moulton_coefficients.hpp │ │ │ │ │ ├── adaptive_adams_coefficients.hpp │ │ │ │ │ ├── generic_rk_algorithm.hpp │ │ │ │ │ ├── generic_rk_call_algebra.hpp │ │ │ │ │ ├── generic_rk_operations.hpp │ │ │ │ │ ├── pid_step_adjuster.hpp │ │ │ │ │ ├── pid_step_adjuster_coefficients.hpp │ │ │ │ │ └── rotating_buffer.hpp │ │ │ │ ├── euler.hpp │ │ │ │ ├── explicit_error_generic_rk.hpp │ │ │ │ ├── explicit_generic_rk.hpp │ │ │ │ ├── extrapolation_stepper.hpp │ │ │ │ ├── generation.hpp │ │ │ │ ├── generation │ │ │ │ │ ├── generation_controlled_adams_bashforth_moulton.hpp │ │ │ │ │ ├── generation_controlled_runge_kutta.hpp │ │ │ │ │ ├── generation_dense_output_runge_kutta.hpp │ │ │ │ │ ├── generation_rosenbrock4.hpp │ │ │ │ │ ├── generation_runge_kutta_cash_karp54.hpp │ │ │ │ │ ├── generation_runge_kutta_cash_karp54_classic.hpp │ │ │ │ │ ├── generation_runge_kutta_dopri5.hpp │ │ │ │ │ ├── generation_runge_kutta_fehlberg78.hpp │ │ │ │ │ ├── make_controlled.hpp │ │ │ │ │ └── make_dense_output.hpp │ │ │ │ ├── implicit_euler.hpp │ │ │ │ ├── modified_midpoint.hpp │ │ │ │ ├── rosenbrock4.hpp │ │ │ │ ├── rosenbrock4_controller.hpp │ │ │ │ ├── rosenbrock4_dense_output.hpp │ │ │ │ ├── runge_kutta4.hpp │ │ │ │ ├── runge_kutta4_classic.hpp │ │ │ │ ├── runge_kutta_cash_karp54.hpp │ │ │ │ ├── runge_kutta_cash_karp54_classic.hpp │ │ │ │ ├── runge_kutta_dopri5.hpp │ │ │ │ ├── runge_kutta_fehlberg78.hpp │ │ │ │ ├── stepper_categories.hpp │ │ │ │ ├── symplectic_euler.hpp │ │ │ │ ├── symplectic_rkn_sb3a_m4_mclachlan.hpp │ │ │ │ ├── symplectic_rkn_sb3a_mclachlan.hpp │ │ │ │ └── velocity_verlet.hpp │ │ │ ├── util │ │ │ │ ├── bind.hpp │ │ │ │ ├── copy.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── is_range.hpp │ │ │ │ │ └── less_with_sign.hpp │ │ │ │ ├── is_pair.hpp │ │ │ │ ├── is_resizeable.hpp │ │ │ │ ├── multi_array_adaption.hpp │ │ │ │ ├── n_ary_helper.hpp │ │ │ │ ├── odeint_error.hpp │ │ │ │ ├── resize.hpp │ │ │ │ ├── resizer.hpp │ │ │ │ ├── same_instance.hpp │ │ │ │ ├── same_size.hpp │ │ │ │ ├── split.hpp │ │ │ │ ├── split_adaptor.hpp │ │ │ │ ├── state_wrapper.hpp │ │ │ │ ├── stepper_traits.hpp │ │ │ │ ├── ublas_matrix_expression.patch │ │ │ │ ├── ublas_wrapper.hpp │ │ │ │ ├── unit_helper.hpp │ │ │ │ └── unwrap_reference.hpp │ │ │ └── version.hpp │ │ └── ublas │ │ │ ├── assignment.hpp │ │ │ ├── banded.hpp │ │ │ ├── blas.hpp │ │ │ ├── detail │ │ │ ├── concepts.hpp │ │ │ ├── config.hpp │ │ │ ├── definitions.hpp │ │ │ ├── documentation.hpp │ │ │ ├── duff.hpp │ │ │ ├── iterator.hpp │ │ │ ├── matrix_assign.hpp │ │ │ ├── raw.hpp │ │ │ ├── returntype_deduction.hpp │ │ │ ├── temporary.hpp │ │ │ └── vector_assign.hpp │ │ │ ├── doxydoc.hpp │ │ │ ├── exception.hpp │ │ │ ├── experimental │ │ │ └── sparse_view.hpp │ │ │ ├── expression_types.hpp │ │ │ ├── functional.hpp │ │ │ ├── fwd.hpp │ │ │ ├── hermitian.hpp │ │ │ ├── io.hpp │ │ │ ├── lu.hpp │ │ │ ├── matrix.hpp │ │ │ ├── matrix_expression.hpp │ │ │ ├── matrix_proxy.hpp │ │ │ ├── matrix_sparse.hpp │ │ │ ├── matrix_vector.hpp │ │ │ ├── opencl.hpp │ │ │ ├── opencl │ │ │ ├── elementwise.hpp │ │ │ ├── library.hpp │ │ │ ├── matrix.hpp │ │ │ ├── misc.hpp │ │ │ ├── operations.hpp │ │ │ ├── prod.hpp │ │ │ ├── transpose.hpp │ │ │ └── vector.hpp │ │ │ ├── operation.hpp │ │ │ ├── operation │ │ │ ├── begin.hpp │ │ │ ├── c_array.hpp │ │ │ ├── end.hpp │ │ │ ├── num_columns.hpp │ │ │ ├── num_rows.hpp │ │ │ └── size.hpp │ │ │ ├── operation_blocked.hpp │ │ │ ├── operation_sparse.hpp │ │ │ ├── operations.hpp │ │ │ ├── storage.hpp │ │ │ ├── storage_sparse.hpp │ │ │ ├── symmetric.hpp │ │ │ ├── tags.hpp │ │ │ ├── tensor.hpp │ │ │ ├── tensor │ │ │ ├── algorithms.hpp │ │ │ ├── expression.hpp │ │ │ ├── expression_evaluation.hpp │ │ │ ├── extents.hpp │ │ │ ├── functions.hpp │ │ │ ├── index.hpp │ │ │ ├── multi_index.hpp │ │ │ ├── multi_index_utility.hpp │ │ │ ├── multiplication.hpp │ │ │ ├── operators_arithmetic.hpp │ │ │ ├── operators_comparison.hpp │ │ │ ├── ostream.hpp │ │ │ ├── storage_traits.hpp │ │ │ ├── strides.hpp │ │ │ └── tensor.hpp │ │ │ ├── traits.hpp │ │ │ ├── traits │ │ │ ├── c_array.hpp │ │ │ ├── const_iterator_type.hpp │ │ │ └── iterator_type.hpp │ │ │ ├── triangular.hpp │ │ │ ├── vector.hpp │ │ │ ├── vector_expression.hpp │ │ │ ├── vector_of_vector.hpp │ │ │ ├── vector_proxy.hpp │ │ │ └── vector_sparse.hpp │ ├── operators.hpp │ ├── operators_v1.hpp │ ├── optional.hpp │ ├── outcome.hpp │ ├── parameter.hpp │ ├── pfr.hpp │ ├── phoenix.hpp │ ├── pointee.hpp │ ├── pointer_cast.hpp │ ├── pointer_to_other.hpp │ ├── polymorphic_cast.hpp │ ├── polymorphic_pointer_cast.hpp │ ├── predef.h │ ├── predef │ │ ├── architecture.h │ │ ├── architecture │ │ │ ├── alpha.h │ │ │ ├── arm.h │ │ │ ├── blackfin.h │ │ │ ├── convex.h │ │ │ ├── e2k.h │ │ │ ├── ia64.h │ │ │ ├── loongarch.h │ │ │ ├── m68k.h │ │ │ ├── mips.h │ │ │ ├── parisc.h │ │ │ ├── ppc.h │ │ │ ├── ptx.h │ │ │ ├── pyramid.h │ │ │ ├── riscv.h │ │ │ ├── rs6k.h │ │ │ ├── sparc.h │ │ │ ├── superh.h │ │ │ ├── sys370.h │ │ │ ├── sys390.h │ │ │ ├── x86.h │ │ │ ├── x86 │ │ │ │ ├── 32.h │ │ │ │ └── 64.h │ │ │ └── z.h │ │ ├── compiler.h │ │ ├── compiler │ │ │ ├── borland.h │ │ │ ├── clang.h │ │ │ ├── comeau.h │ │ │ ├── compaq.h │ │ │ ├── diab.h │ │ │ ├── digitalmars.h │ │ │ ├── dignus.h │ │ │ ├── edg.h │ │ │ ├── ekopath.h │ │ │ ├── gcc.h │ │ │ ├── gcc_xml.h │ │ │ ├── greenhills.h │ │ │ ├── hp_acc.h │ │ │ ├── iar.h │ │ │ ├── ibm.h │ │ │ ├── intel.h │ │ │ ├── kai.h │ │ │ ├── llvm.h │ │ │ ├── metaware.h │ │ │ ├── metrowerks.h │ │ │ ├── microtec.h │ │ │ ├── mpw.h │ │ │ ├── nvcc.h │ │ │ ├── palm.h │ │ │ ├── pgi.h │ │ │ ├── sgi_mipspro.h │ │ │ ├── sunpro.h │ │ │ ├── tendra.h │ │ │ ├── visualc.h │ │ │ └── watcom.h │ │ ├── detail │ │ │ ├── _cassert.h │ │ │ ├── _exception.h │ │ │ ├── comp_detected.h │ │ │ ├── os_detected.h │ │ │ ├── platform_detected.h │ │ │ ├── test.h │ │ │ └── test_def.h │ │ ├── hardware.h │ │ ├── hardware │ │ │ ├── simd.h │ │ │ └── simd │ │ │ │ ├── arm.h │ │ │ │ ├── arm │ │ │ │ └── versions.h │ │ │ │ ├── ppc.h │ │ │ │ ├── ppc │ │ │ │ └── versions.h │ │ │ │ ├── x86.h │ │ │ │ ├── x86 │ │ │ │ └── versions.h │ │ │ │ ├── x86_amd.h │ │ │ │ └── x86_amd │ │ │ │ └── versions.h │ │ ├── language.h │ │ ├── language │ │ │ ├── cuda.h │ │ │ ├── objc.h │ │ │ ├── stdc.h │ │ │ └── stdcpp.h │ │ ├── library.h │ │ ├── library │ │ │ ├── c.h │ │ │ ├── c │ │ │ │ ├── _prefix.h │ │ │ │ ├── cloudabi.h │ │ │ │ ├── gnu.h │ │ │ │ ├── uc.h │ │ │ │ ├── vms.h │ │ │ │ └── zos.h │ │ │ ├── std.h │ │ │ └── std │ │ │ │ ├── _prefix.h │ │ │ │ ├── cxx.h │ │ │ │ ├── dinkumware.h │ │ │ │ ├── libcomo.h │ │ │ │ ├── modena.h │ │ │ │ ├── msl.h │ │ │ │ ├── msvc.h │ │ │ │ ├── roguewave.h │ │ │ │ ├── sgi.h │ │ │ │ ├── stdcpp3.h │ │ │ │ ├── stlport.h │ │ │ │ └── vacpp.h │ │ ├── make.h │ │ ├── os.h │ │ ├── os │ │ │ ├── aix.h │ │ │ ├── amigaos.h │ │ │ ├── beos.h │ │ │ ├── bsd.h │ │ │ ├── bsd │ │ │ │ ├── bsdi.h │ │ │ │ ├── dragonfly.h │ │ │ │ ├── free.h │ │ │ │ ├── net.h │ │ │ │ └── open.h │ │ │ ├── cygwin.h │ │ │ ├── haiku.h │ │ │ ├── hpux.h │ │ │ ├── ios.h │ │ │ ├── irix.h │ │ │ ├── linux.h │ │ │ ├── macos.h │ │ │ ├── os400.h │ │ │ ├── qnxnto.h │ │ │ ├── solaris.h │ │ │ ├── unix.h │ │ │ ├── vms.h │ │ │ └── windows.h │ │ ├── other.h │ │ ├── other │ │ │ ├── endian.h │ │ │ ├── wordsize.h │ │ │ └── workaround.h │ │ ├── platform.h │ │ ├── platform │ │ │ ├── android.h │ │ │ ├── cloudabi.h │ │ │ ├── ios.h │ │ │ ├── mingw.h │ │ │ ├── mingw32.h │ │ │ ├── mingw64.h │ │ │ ├── windows_desktop.h │ │ │ ├── windows_phone.h │ │ │ ├── windows_runtime.h │ │ │ ├── windows_server.h │ │ │ ├── windows_store.h │ │ │ ├── windows_system.h │ │ │ └── windows_uwp.h │ │ ├── version.h │ │ └── version_number.h │ ├── preprocessor.hpp │ ├── preprocessor │ │ ├── arithmetic.hpp │ │ ├── arithmetic │ │ │ ├── add.hpp │ │ │ ├── dec.hpp │ │ │ ├── detail │ │ │ │ ├── div_base.hpp │ │ │ │ ├── is_1_number.hpp │ │ │ │ ├── is_maximum_number.hpp │ │ │ │ ├── is_minimum_number.hpp │ │ │ │ └── maximum_number.hpp │ │ │ ├── div.hpp │ │ │ ├── inc.hpp │ │ │ ├── limits │ │ │ │ ├── dec_1024.hpp │ │ │ │ ├── dec_256.hpp │ │ │ │ ├── dec_512.hpp │ │ │ │ ├── inc_1024.hpp │ │ │ │ ├── inc_256.hpp │ │ │ │ └── inc_512.hpp │ │ │ ├── mod.hpp │ │ │ ├── mul.hpp │ │ │ └── sub.hpp │ │ ├── array.hpp │ │ ├── array │ │ │ ├── data.hpp │ │ │ ├── detail │ │ │ │ └── get_data.hpp │ │ │ ├── elem.hpp │ │ │ ├── enum.hpp │ │ │ ├── insert.hpp │ │ │ ├── pop_back.hpp │ │ │ ├── pop_front.hpp │ │ │ ├── push_back.hpp │ │ │ ├── push_front.hpp │ │ │ ├── remove.hpp │ │ │ ├── replace.hpp │ │ │ ├── reverse.hpp │ │ │ ├── size.hpp │ │ │ ├── to_list.hpp │ │ │ ├── to_seq.hpp │ │ │ └── to_tuple.hpp │ │ ├── assert_msg.hpp │ │ ├── cat.hpp │ │ ├── comma.hpp │ │ ├── comma_if.hpp │ │ ├── comparison.hpp │ │ ├── comparison │ │ │ ├── equal.hpp │ │ │ ├── greater.hpp │ │ │ ├── greater_equal.hpp │ │ │ ├── less.hpp │ │ │ ├── less_equal.hpp │ │ │ ├── limits │ │ │ │ ├── not_equal_1024.hpp │ │ │ │ ├── not_equal_256.hpp │ │ │ │ └── not_equal_512.hpp │ │ │ └── not_equal.hpp │ │ ├── config │ │ │ ├── config.hpp │ │ │ └── limits.hpp │ │ ├── control.hpp │ │ ├── control │ │ │ ├── deduce_d.hpp │ │ │ ├── detail │ │ │ │ ├── dmc │ │ │ │ │ └── while.hpp │ │ │ │ ├── edg │ │ │ │ │ ├── limits │ │ │ │ │ │ ├── while_1024.hpp │ │ │ │ │ │ ├── while_256.hpp │ │ │ │ │ │ └── while_512.hpp │ │ │ │ │ └── while.hpp │ │ │ │ ├── limits │ │ │ │ │ ├── while_1024.hpp │ │ │ │ │ ├── while_256.hpp │ │ │ │ │ └── while_512.hpp │ │ │ │ ├── msvc │ │ │ │ │ └── while.hpp │ │ │ │ └── while.hpp │ │ │ ├── expr_if.hpp │ │ │ ├── expr_iif.hpp │ │ │ ├── if.hpp │ │ │ ├── iif.hpp │ │ │ ├── limits │ │ │ │ ├── while_1024.hpp │ │ │ │ ├── while_256.hpp │ │ │ │ └── while_512.hpp │ │ │ └── while.hpp │ │ ├── debug.hpp │ │ ├── debug │ │ │ ├── assert.hpp │ │ │ ├── error.hpp │ │ │ └── line.hpp │ │ ├── dec.hpp │ │ ├── detail │ │ │ ├── auto_rec.hpp │ │ │ ├── check.hpp │ │ │ ├── dmc │ │ │ │ └── auto_rec.hpp │ │ │ ├── is_binary.hpp │ │ │ ├── is_nullary.hpp │ │ │ ├── is_unary.hpp │ │ │ ├── limits │ │ │ │ ├── auto_rec_1024.hpp │ │ │ │ ├── auto_rec_256.hpp │ │ │ │ └── auto_rec_512.hpp │ │ │ ├── null.hpp │ │ │ └── split.hpp │ │ ├── empty.hpp │ │ ├── enum.hpp │ │ ├── enum_params.hpp │ │ ├── enum_params_with_a_default.hpp │ │ ├── enum_params_with_defaults.hpp │ │ ├── enum_shifted.hpp │ │ ├── enum_shifted_params.hpp │ │ ├── expand.hpp │ │ ├── expr_if.hpp │ │ ├── facilities.hpp │ │ ├── facilities │ │ │ ├── apply.hpp │ │ │ ├── check_empty.hpp │ │ │ ├── detail │ │ │ │ └── is_empty.hpp │ │ │ ├── empty.hpp │ │ │ ├── expand.hpp │ │ │ ├── identity.hpp │ │ │ ├── intercept.hpp │ │ │ ├── is_1.hpp │ │ │ ├── is_empty.hpp │ │ │ ├── is_empty_or_1.hpp │ │ │ ├── is_empty_variadic.hpp │ │ │ ├── limits │ │ │ │ ├── intercept_1024.hpp │ │ │ │ ├── intercept_256.hpp │ │ │ │ └── intercept_512.hpp │ │ │ ├── overload.hpp │ │ │ └── va_opt.hpp │ │ ├── for.hpp │ │ ├── identity.hpp │ │ ├── if.hpp │ │ ├── inc.hpp │ │ ├── iterate.hpp │ │ ├── iteration.hpp │ │ ├── iteration │ │ │ ├── detail │ │ │ │ ├── bounds │ │ │ │ │ ├── lower1.hpp │ │ │ │ │ ├── lower2.hpp │ │ │ │ │ ├── lower3.hpp │ │ │ │ │ ├── lower4.hpp │ │ │ │ │ ├── lower5.hpp │ │ │ │ │ ├── upper1.hpp │ │ │ │ │ ├── upper2.hpp │ │ │ │ │ ├── upper3.hpp │ │ │ │ │ ├── upper4.hpp │ │ │ │ │ └── upper5.hpp │ │ │ │ ├── finish.hpp │ │ │ │ ├── iter │ │ │ │ │ ├── forward1.hpp │ │ │ │ │ ├── forward2.hpp │ │ │ │ │ ├── forward3.hpp │ │ │ │ │ ├── forward4.hpp │ │ │ │ │ ├── forward5.hpp │ │ │ │ │ ├── limits │ │ │ │ │ │ ├── forward1_1024.hpp │ │ │ │ │ │ ├── forward1_256.hpp │ │ │ │ │ │ ├── forward1_512.hpp │ │ │ │ │ │ ├── forward2_1024.hpp │ │ │ │ │ │ ├── forward2_256.hpp │ │ │ │ │ │ ├── forward2_512.hpp │ │ │ │ │ │ ├── forward3_1024.hpp │ │ │ │ │ │ ├── forward3_256.hpp │ │ │ │ │ │ ├── forward3_512.hpp │ │ │ │ │ │ ├── forward4_1024.hpp │ │ │ │ │ │ ├── forward4_256.hpp │ │ │ │ │ │ ├── forward4_512.hpp │ │ │ │ │ │ ├── forward5_1024.hpp │ │ │ │ │ │ ├── forward5_256.hpp │ │ │ │ │ │ ├── forward5_512.hpp │ │ │ │ │ │ ├── reverse1_1024.hpp │ │ │ │ │ │ ├── reverse1_256.hpp │ │ │ │ │ │ ├── reverse1_512.hpp │ │ │ │ │ │ ├── reverse2_1024.hpp │ │ │ │ │ │ ├── reverse2_256.hpp │ │ │ │ │ │ ├── reverse2_512.hpp │ │ │ │ │ │ ├── reverse3_1024.hpp │ │ │ │ │ │ ├── reverse3_256.hpp │ │ │ │ │ │ ├── reverse3_512.hpp │ │ │ │ │ │ ├── reverse4_1024.hpp │ │ │ │ │ │ ├── reverse4_256.hpp │ │ │ │ │ │ ├── reverse4_512.hpp │ │ │ │ │ │ ├── reverse5_1024.hpp │ │ │ │ │ │ ├── reverse5_256.hpp │ │ │ │ │ │ └── reverse5_512.hpp │ │ │ │ │ ├── reverse1.hpp │ │ │ │ │ ├── reverse2.hpp │ │ │ │ │ ├── reverse3.hpp │ │ │ │ │ ├── reverse4.hpp │ │ │ │ │ └── reverse5.hpp │ │ │ │ ├── limits │ │ │ │ │ ├── local_1024.hpp │ │ │ │ │ ├── local_256.hpp │ │ │ │ │ ├── local_512.hpp │ │ │ │ │ ├── rlocal_1024.hpp │ │ │ │ │ ├── rlocal_256.hpp │ │ │ │ │ └── rlocal_512.hpp │ │ │ │ ├── local.hpp │ │ │ │ ├── rlocal.hpp │ │ │ │ ├── self.hpp │ │ │ │ └── start.hpp │ │ │ ├── iterate.hpp │ │ │ ├── local.hpp │ │ │ └── self.hpp │ │ ├── library.hpp │ │ ├── limits.hpp │ │ ├── list.hpp │ │ ├── list │ │ │ ├── adt.hpp │ │ │ ├── append.hpp │ │ │ ├── at.hpp │ │ │ ├── cat.hpp │ │ │ ├── detail │ │ │ │ ├── dmc │ │ │ │ │ └── fold_left.hpp │ │ │ │ ├── edg │ │ │ │ │ ├── fold_left.hpp │ │ │ │ │ ├── fold_right.hpp │ │ │ │ │ └── limits │ │ │ │ │ │ ├── fold_left_1024.hpp │ │ │ │ │ │ ├── fold_left_256.hpp │ │ │ │ │ │ ├── fold_left_512.hpp │ │ │ │ │ │ ├── fold_right_1024.hpp │ │ │ │ │ │ ├── fold_right_256.hpp │ │ │ │ │ │ └── fold_right_512.hpp │ │ │ │ ├── fold_left.hpp │ │ │ │ ├── fold_right.hpp │ │ │ │ └── limits │ │ │ │ │ ├── fold_left_1024.hpp │ │ │ │ │ ├── fold_left_256.hpp │ │ │ │ │ ├── fold_left_512.hpp │ │ │ │ │ ├── fold_right_1024.hpp │ │ │ │ │ ├── fold_right_256.hpp │ │ │ │ │ └── fold_right_512.hpp │ │ │ ├── enum.hpp │ │ │ ├── filter.hpp │ │ │ ├── first_n.hpp │ │ │ ├── fold_left.hpp │ │ │ ├── fold_right.hpp │ │ │ ├── for_each.hpp │ │ │ ├── for_each_i.hpp │ │ │ ├── for_each_product.hpp │ │ │ ├── limits │ │ │ │ ├── fold_left_1024.hpp │ │ │ │ ├── fold_left_256.hpp │ │ │ │ └── fold_left_512.hpp │ │ │ ├── rest_n.hpp │ │ │ ├── reverse.hpp │ │ │ ├── size.hpp │ │ │ ├── to_array.hpp │ │ │ ├── to_seq.hpp │ │ │ ├── to_tuple.hpp │ │ │ └── transform.hpp │ │ ├── logical.hpp │ │ ├── logical │ │ │ ├── and.hpp │ │ │ ├── bitand.hpp │ │ │ ├── bitnor.hpp │ │ │ ├── bitor.hpp │ │ │ ├── bitxor.hpp │ │ │ ├── bool.hpp │ │ │ ├── compl.hpp │ │ │ ├── limits │ │ │ │ ├── bool_1024.hpp │ │ │ │ ├── bool_256.hpp │ │ │ │ └── bool_512.hpp │ │ │ ├── nor.hpp │ │ │ ├── not.hpp │ │ │ ├── or.hpp │ │ │ └── xor.hpp │ │ ├── max.hpp │ │ ├── min.hpp │ │ ├── punctuation.hpp │ │ ├── punctuation │ │ │ ├── comma.hpp │ │ │ ├── comma_if.hpp │ │ │ ├── detail │ │ │ │ └── is_begin_parens.hpp │ │ │ ├── is_begin_parens.hpp │ │ │ ├── paren.hpp │ │ │ ├── paren_if.hpp │ │ │ └── remove_parens.hpp │ │ ├── repeat.hpp │ │ ├── repeat_2nd.hpp │ │ ├── repeat_3rd.hpp │ │ ├── repeat_from_to.hpp │ │ ├── repeat_from_to_2nd.hpp │ │ ├── repeat_from_to_3rd.hpp │ │ ├── repetition.hpp │ │ ├── repetition │ │ │ ├── deduce_r.hpp │ │ │ ├── deduce_z.hpp │ │ │ ├── detail │ │ │ │ ├── dmc │ │ │ │ │ └── for.hpp │ │ │ │ ├── edg │ │ │ │ │ ├── for.hpp │ │ │ │ │ └── limits │ │ │ │ │ │ ├── for_1024.hpp │ │ │ │ │ │ ├── for_256.hpp │ │ │ │ │ │ └── for_512.hpp │ │ │ │ ├── for.hpp │ │ │ │ ├── limits │ │ │ │ │ ├── for_1024.hpp │ │ │ │ │ ├── for_256.hpp │ │ │ │ │ └── for_512.hpp │ │ │ │ └── msvc │ │ │ │ │ └── for.hpp │ │ │ ├── enum.hpp │ │ │ ├── enum_binary_params.hpp │ │ │ ├── enum_params.hpp │ │ │ ├── enum_params_with_a_default.hpp │ │ │ ├── enum_params_with_defaults.hpp │ │ │ ├── enum_shifted.hpp │ │ │ ├── enum_shifted_binary_params.hpp │ │ │ ├── enum_shifted_params.hpp │ │ │ ├── enum_trailing.hpp │ │ │ ├── enum_trailing_binary_params.hpp │ │ │ ├── enum_trailing_params.hpp │ │ │ ├── for.hpp │ │ │ ├── limits │ │ │ │ ├── for_1024.hpp │ │ │ │ ├── for_256.hpp │ │ │ │ ├── for_512.hpp │ │ │ │ ├── repeat_1024.hpp │ │ │ │ ├── repeat_256.hpp │ │ │ │ └── repeat_512.hpp │ │ │ ├── repeat.hpp │ │ │ └── repeat_from_to.hpp │ │ ├── selection.hpp │ │ ├── selection │ │ │ ├── max.hpp │ │ │ └── min.hpp │ │ ├── seq.hpp │ │ ├── seq │ │ │ ├── cat.hpp │ │ │ ├── detail │ │ │ │ ├── binary_transform.hpp │ │ │ │ ├── is_empty.hpp │ │ │ │ ├── limits │ │ │ │ │ ├── split_1024.hpp │ │ │ │ │ ├── split_256.hpp │ │ │ │ │ └── split_512.hpp │ │ │ │ ├── split.hpp │ │ │ │ └── to_list_msvc.hpp │ │ │ ├── elem.hpp │ │ │ ├── enum.hpp │ │ │ ├── filter.hpp │ │ │ ├── first_n.hpp │ │ │ ├── fold_left.hpp │ │ │ ├── fold_right.hpp │ │ │ ├── for_each.hpp │ │ │ ├── for_each_i.hpp │ │ │ ├── for_each_product.hpp │ │ │ ├── insert.hpp │ │ │ ├── limits │ │ │ │ ├── elem_1024.hpp │ │ │ │ ├── elem_256.hpp │ │ │ │ ├── elem_512.hpp │ │ │ │ ├── enum_1024.hpp │ │ │ │ ├── enum_256.hpp │ │ │ │ ├── enum_512.hpp │ │ │ │ ├── fold_left_1024.hpp │ │ │ │ ├── fold_left_256.hpp │ │ │ │ ├── fold_left_512.hpp │ │ │ │ ├── fold_right_1024.hpp │ │ │ │ ├── fold_right_256.hpp │ │ │ │ ├── fold_right_512.hpp │ │ │ │ ├── size_1024.hpp │ │ │ │ ├── size_256.hpp │ │ │ │ └── size_512.hpp │ │ │ ├── pop_back.hpp │ │ │ ├── pop_front.hpp │ │ │ ├── push_back.hpp │ │ │ ├── push_front.hpp │ │ │ ├── remove.hpp │ │ │ ├── replace.hpp │ │ │ ├── rest_n.hpp │ │ │ ├── reverse.hpp │ │ │ ├── seq.hpp │ │ │ ├── size.hpp │ │ │ ├── subseq.hpp │ │ │ ├── to_array.hpp │ │ │ ├── to_list.hpp │ │ │ ├── to_tuple.hpp │ │ │ ├── transform.hpp │ │ │ └── variadic_seq_to_seq.hpp │ │ ├── slot.hpp │ │ ├── slot │ │ │ ├── counter.hpp │ │ │ ├── detail │ │ │ │ ├── counter.hpp │ │ │ │ ├── def.hpp │ │ │ │ ├── shared.hpp │ │ │ │ ├── slot1.hpp │ │ │ │ ├── slot2.hpp │ │ │ │ ├── slot3.hpp │ │ │ │ ├── slot4.hpp │ │ │ │ └── slot5.hpp │ │ │ └── slot.hpp │ │ ├── stringize.hpp │ │ ├── tuple.hpp │ │ ├── tuple │ │ │ ├── detail │ │ │ │ └── is_single_return.hpp │ │ │ ├── eat.hpp │ │ │ ├── elem.hpp │ │ │ ├── enum.hpp │ │ │ ├── insert.hpp │ │ │ ├── limits │ │ │ │ ├── reverse_128.hpp │ │ │ │ ├── reverse_256.hpp │ │ │ │ ├── reverse_64.hpp │ │ │ │ ├── to_list_128.hpp │ │ │ │ ├── to_list_256.hpp │ │ │ │ ├── to_list_64.hpp │ │ │ │ ├── to_seq_128.hpp │ │ │ │ ├── to_seq_256.hpp │ │ │ │ └── to_seq_64.hpp │ │ │ ├── pop_back.hpp │ │ │ ├── pop_front.hpp │ │ │ ├── push_back.hpp │ │ │ ├── push_front.hpp │ │ │ ├── rem.hpp │ │ │ ├── remove.hpp │ │ │ ├── replace.hpp │ │ │ ├── reverse.hpp │ │ │ ├── size.hpp │ │ │ ├── to_array.hpp │ │ │ ├── to_list.hpp │ │ │ └── to_seq.hpp │ │ ├── variadic.hpp │ │ ├── variadic │ │ │ ├── detail │ │ │ │ ├── has_opt.hpp │ │ │ │ └── is_single_return.hpp │ │ │ ├── elem.hpp │ │ │ ├── has_opt.hpp │ │ │ ├── limits │ │ │ │ ├── elem_128.hpp │ │ │ │ ├── elem_256.hpp │ │ │ │ ├── elem_64.hpp │ │ │ │ ├── size_128.hpp │ │ │ │ ├── size_256.hpp │ │ │ │ └── size_64.hpp │ │ │ ├── size.hpp │ │ │ ├── to_array.hpp │ │ │ ├── to_list.hpp │ │ │ ├── to_seq.hpp │ │ │ └── to_tuple.hpp │ │ ├── while.hpp │ │ └── wstringize.hpp │ ├── process.hpp │ ├── program_options.hpp │ ├── progress.hpp │ ├── python.hpp │ ├── qvm.hpp │ ├── qvm_lite.hpp │ ├── random.hpp │ ├── random │ │ ├── additive_combine.hpp │ │ ├── bernoulli_distribution.hpp │ │ ├── beta_distribution.hpp │ │ ├── binomial_distribution.hpp │ │ ├── cauchy_distribution.hpp │ │ ├── chi_squared_distribution.hpp │ │ ├── detail │ │ │ ├── auto_link.hpp │ │ │ ├── config.hpp │ │ │ ├── const_mod.hpp │ │ │ ├── disable_warnings.hpp │ │ │ ├── enable_warnings.hpp │ │ │ ├── generator_bits.hpp │ │ │ ├── generator_seed_seq.hpp │ │ │ ├── gray_coded_qrng.hpp │ │ │ ├── int_float_pair.hpp │ │ │ ├── integer_log2.hpp │ │ │ ├── iterator_mixin.hpp │ │ │ ├── large_arithmetic.hpp │ │ │ ├── mixmax_skip_N17.ipp │ │ │ ├── niederreiter_base2_table.hpp │ │ │ ├── operators.hpp │ │ │ ├── polynomial.hpp │ │ │ ├── ptr_helper.hpp │ │ │ ├── qrng_base.hpp │ │ │ ├── seed.hpp │ │ │ ├── seed_impl.hpp │ │ │ ├── signed_unsigned_tools.hpp │ │ │ ├── sobol_table.hpp │ │ │ ├── uniform_int_float.hpp │ │ │ └── vector_io.hpp │ │ ├── discard_block.hpp │ │ ├── discrete_distribution.hpp │ │ ├── exponential_distribution.hpp │ │ ├── extreme_value_distribution.hpp │ │ ├── faure.hpp │ │ ├── fisher_f_distribution.hpp │ │ ├── gamma_distribution.hpp │ │ ├── generate_canonical.hpp │ │ ├── geometric_distribution.hpp │ │ ├── hyperexponential_distribution.hpp │ │ ├── independent_bits.hpp │ │ ├── inversive_congruential.hpp │ │ ├── lagged_fibonacci.hpp │ │ ├── laplace_distribution.hpp │ │ ├── linear_congruential.hpp │ │ ├── linear_feedback_shift.hpp │ │ ├── lognormal_distribution.hpp │ │ ├── mersenne_twister.hpp │ │ ├── mixmax.hpp │ │ ├── negative_binomial_distribution.hpp │ │ ├── niederreiter_base2.hpp │ │ ├── non_central_chi_squared_distribution.hpp │ │ ├── normal_distribution.hpp │ │ ├── piecewise_constant_distribution.hpp │ │ ├── piecewise_linear_distribution.hpp │ │ ├── poisson_distribution.hpp │ │ ├── random_device.hpp │ │ ├── random_number_generator.hpp │ │ ├── ranlux.hpp │ │ ├── seed_seq.hpp │ │ ├── shuffle_order.hpp │ │ ├── shuffle_output.hpp │ │ ├── sobol.hpp │ │ ├── student_t_distribution.hpp │ │ ├── subtract_with_carry.hpp │ │ ├── taus88.hpp │ │ ├── traits.hpp │ │ ├── triangle_distribution.hpp │ │ ├── uniform_01.hpp │ │ ├── uniform_int.hpp │ │ ├── uniform_int_distribution.hpp │ │ ├── uniform_on_sphere.hpp │ │ ├── uniform_real.hpp │ │ ├── uniform_real_distribution.hpp │ │ ├── uniform_smallint.hpp │ │ ├── variate_generator.hpp │ │ ├── weibull_distribution.hpp │ │ └── xor_combine.hpp │ ├── range.hpp │ ├── range │ │ ├── adaptor │ │ │ ├── adjacent_filtered.hpp │ │ │ ├── argument_fwd.hpp │ │ │ ├── copied.hpp │ │ │ ├── define_adaptor.hpp │ │ │ ├── filtered.hpp │ │ │ ├── formatted.hpp │ │ │ ├── indexed.hpp │ │ │ ├── indirected.hpp │ │ │ ├── map.hpp │ │ │ ├── ref_unwrapped.hpp │ │ │ ├── replaced.hpp │ │ │ ├── replaced_if.hpp │ │ │ ├── reversed.hpp │ │ │ ├── sliced.hpp │ │ │ ├── strided.hpp │ │ │ ├── tokenized.hpp │ │ │ ├── transformed.hpp │ │ │ ├── type_erased.hpp │ │ │ └── uniqued.hpp │ │ ├── adaptors.hpp │ │ ├── algorithm.hpp │ │ ├── algorithm │ │ │ ├── adjacent_find.hpp │ │ │ ├── binary_search.hpp │ │ │ ├── copy.hpp │ │ │ ├── copy_backward.hpp │ │ │ ├── count.hpp │ │ │ ├── count_if.hpp │ │ │ ├── equal.hpp │ │ │ ├── equal_range.hpp │ │ │ ├── fill.hpp │ │ │ ├── fill_n.hpp │ │ │ ├── find.hpp │ │ │ ├── find_end.hpp │ │ │ ├── find_first_of.hpp │ │ │ ├── find_if.hpp │ │ │ ├── for_each.hpp │ │ │ ├── generate.hpp │ │ │ ├── heap_algorithm.hpp │ │ │ ├── inplace_merge.hpp │ │ │ ├── lexicographical_compare.hpp │ │ │ ├── lower_bound.hpp │ │ │ ├── max_element.hpp │ │ │ ├── merge.hpp │ │ │ ├── min_element.hpp │ │ │ ├── mismatch.hpp │ │ │ ├── nth_element.hpp │ │ │ ├── partial_sort.hpp │ │ │ ├── partial_sort_copy.hpp │ │ │ ├── partition.hpp │ │ │ ├── permutation.hpp │ │ │ ├── random_shuffle.hpp │ │ │ ├── remove.hpp │ │ │ ├── remove_copy.hpp │ │ │ ├── remove_copy_if.hpp │ │ │ ├── remove_if.hpp │ │ │ ├── replace.hpp │ │ │ ├── replace_copy.hpp │ │ │ ├── replace_copy_if.hpp │ │ │ ├── replace_if.hpp │ │ │ ├── reverse.hpp │ │ │ ├── reverse_copy.hpp │ │ │ ├── rotate.hpp │ │ │ ├── rotate_copy.hpp │ │ │ ├── search.hpp │ │ │ ├── search_n.hpp │ │ │ ├── set_algorithm.hpp │ │ │ ├── sort.hpp │ │ │ ├── stable_partition.hpp │ │ │ ├── stable_sort.hpp │ │ │ ├── swap_ranges.hpp │ │ │ ├── transform.hpp │ │ │ ├── unique.hpp │ │ │ ├── unique_copy.hpp │ │ │ └── upper_bound.hpp │ │ ├── algorithm_ext.hpp │ │ ├── algorithm_ext │ │ │ ├── copy_n.hpp │ │ │ ├── erase.hpp │ │ │ ├── for_each.hpp │ │ │ ├── insert.hpp │ │ │ ├── iota.hpp │ │ │ ├── is_sorted.hpp │ │ │ ├── overwrite.hpp │ │ │ ├── push_back.hpp │ │ │ └── push_front.hpp │ │ ├── any_range.hpp │ │ ├── as_array.hpp │ │ ├── as_literal.hpp │ │ ├── atl.hpp │ │ ├── begin.hpp │ │ ├── category.hpp │ │ ├── combine.hpp │ │ ├── concepts.hpp │ │ ├── config.hpp │ │ ├── const_iterator.hpp │ │ ├── const_reverse_iterator.hpp │ │ ├── counting_range.hpp │ │ ├── detail │ │ │ ├── any_iterator.hpp │ │ │ ├── any_iterator_buffer.hpp │ │ │ ├── any_iterator_interface.hpp │ │ │ ├── any_iterator_wrapper.hpp │ │ │ ├── collection_traits.hpp │ │ │ ├── collection_traits_detail.hpp │ │ │ ├── combine_cxx03.hpp │ │ │ ├── combine_cxx11.hpp │ │ │ ├── combine_no_rvalue.hpp │ │ │ ├── combine_rvalue.hpp │ │ │ ├── common.hpp │ │ │ ├── default_constructible_unary_fn.hpp │ │ │ ├── demote_iterator_traversal_tag.hpp │ │ │ ├── difference_type.hpp │ │ │ ├── empty.hpp │ │ │ ├── extract_optional_type.hpp │ │ │ ├── has_member_size.hpp │ │ │ ├── implementation_help.hpp │ │ │ ├── join_iterator.hpp │ │ │ ├── less.hpp │ │ │ ├── microsoft.hpp │ │ │ ├── misc_concept.hpp │ │ │ ├── msvc_has_iterator_workaround.hpp │ │ │ ├── range_return.hpp │ │ │ ├── safe_bool.hpp │ │ │ ├── sfinae.hpp │ │ │ ├── sizer.hpp │ │ │ └── str_types.hpp │ │ ├── difference_type.hpp │ │ ├── distance.hpp │ │ ├── empty.hpp │ │ ├── end.hpp │ │ ├── functions.hpp │ │ ├── has_range_iterator.hpp │ │ ├── irange.hpp │ │ ├── istream_range.hpp │ │ ├── iterator.hpp │ │ ├── iterator_range.hpp │ │ ├── iterator_range_core.hpp │ │ ├── iterator_range_hash.hpp │ │ ├── iterator_range_io.hpp │ │ ├── join.hpp │ │ ├── metafunctions.hpp │ │ ├── mfc.hpp │ │ ├── mfc_map.hpp │ │ ├── mutable_iterator.hpp │ │ ├── numeric.hpp │ │ ├── pointer.hpp │ │ ├── range_fwd.hpp │ │ ├── rbegin.hpp │ │ ├── reference.hpp │ │ ├── rend.hpp │ │ ├── result_iterator.hpp │ │ ├── reverse_iterator.hpp │ │ ├── reverse_result_iterator.hpp │ │ ├── size.hpp │ │ ├── size_type.hpp │ │ ├── sub_range.hpp │ │ ├── traversal.hpp │ │ └── value_type.hpp │ ├── ratio.hpp │ ├── rational.hpp │ ├── redis.hpp │ ├── ref.hpp │ ├── regex.h │ ├── regex.hpp │ ├── regex_fwd.hpp │ ├── scope_exit.hpp │ ├── scoped_array.hpp │ ├── scoped_ptr.hpp │ ├── shared_array.hpp │ ├── shared_container_iterator.hpp │ ├── shared_ptr.hpp │ ├── signals2.hpp │ ├── smart_ptr.hpp │ ├── spirit.hpp │ ├── stacktrace.hpp │ ├── static_assert.hpp │ ├── static_string.hpp │ ├── swap.hpp │ ├── system.hpp │ ├── thread.hpp │ ├── throw_exception.hpp │ ├── timer.hpp │ ├── token_functions.hpp │ ├── token_iterator.hpp │ ├── tokenizer.hpp │ ├── type.hpp │ ├── type_index.hpp │ ├── type_traits.hpp │ ├── type_traits │ │ ├── add_const.hpp │ │ ├── add_cv.hpp │ │ ├── add_lvalue_reference.hpp │ │ ├── add_pointer.hpp │ │ ├── add_reference.hpp │ │ ├── add_rvalue_reference.hpp │ │ ├── add_volatile.hpp │ │ ├── aligned_storage.hpp │ │ ├── alignment_of.hpp │ │ ├── alignment_traits.hpp │ │ ├── arithmetic_traits.hpp │ │ ├── array_traits.hpp │ │ ├── broken_compiler_spec.hpp │ │ ├── common_type.hpp │ │ ├── composite_traits.hpp │ │ ├── conditional.hpp │ │ ├── config.hpp │ │ ├── conjunction.hpp │ │ ├── conversion_traits.hpp │ │ ├── copy_cv.hpp │ │ ├── copy_cv_ref.hpp │ │ ├── copy_reference.hpp │ │ ├── cv_traits.hpp │ │ ├── decay.hpp │ │ ├── declval.hpp │ │ ├── detail │ │ │ ├── bool_trait_def.hpp │ │ │ ├── bool_trait_undef.hpp │ │ │ ├── common_arithmetic_type.hpp │ │ │ ├── common_type_impl.hpp │ │ │ ├── composite_member_pointer_type.hpp │ │ │ ├── composite_pointer_type.hpp │ │ │ ├── config.hpp │ │ │ ├── detector.hpp │ │ │ ├── has_binary_operator.hpp │ │ │ ├── has_postfix_operator.hpp │ │ │ ├── has_prefix_operator.hpp │ │ │ ├── ice_and.hpp │ │ │ ├── ice_eq.hpp │ │ │ ├── ice_not.hpp │ │ │ ├── ice_or.hpp │ │ │ ├── is_function_cxx_03.hpp │ │ │ ├── is_function_cxx_11.hpp │ │ │ ├── is_function_msvc10_fix.hpp │ │ │ ├── is_function_ptr_helper.hpp │ │ │ ├── is_function_ptr_tester.hpp │ │ │ ├── is_likely_lambda.hpp │ │ │ ├── is_mem_fun_pointer_impl.hpp │ │ │ ├── is_mem_fun_pointer_tester.hpp │ │ │ ├── is_member_function_pointer_cxx_03.hpp │ │ │ ├── is_member_function_pointer_cxx_11.hpp │ │ │ ├── is_rvalue_reference_msvc10_fix.hpp │ │ │ ├── is_swappable_cxx_11.hpp │ │ │ ├── mp_defer.hpp │ │ │ ├── template_arity_spec.hpp │ │ │ └── yes_no_type.hpp │ │ ├── detected.hpp │ │ ├── detected_or.hpp │ │ ├── disjunction.hpp │ │ ├── enable_if.hpp │ │ ├── extent.hpp │ │ ├── floating_point_promotion.hpp │ │ ├── function_traits.hpp │ │ ├── has_bit_and.hpp │ │ ├── has_bit_and_assign.hpp │ │ ├── has_bit_or.hpp │ │ ├── has_bit_or_assign.hpp │ │ ├── has_bit_xor.hpp │ │ ├── has_bit_xor_assign.hpp │ │ ├── has_complement.hpp │ │ ├── has_dereference.hpp │ │ ├── has_divides.hpp │ │ ├── has_divides_assign.hpp │ │ ├── has_equal_to.hpp │ │ ├── has_greater.hpp │ │ ├── has_greater_equal.hpp │ │ ├── has_left_shift.hpp │ │ ├── has_left_shift_assign.hpp │ │ ├── has_less.hpp │ │ ├── has_less_equal.hpp │ │ ├── has_logical_and.hpp │ │ ├── has_logical_not.hpp │ │ ├── has_logical_or.hpp │ │ ├── has_minus.hpp │ │ ├── has_minus_assign.hpp │ │ ├── has_modulus.hpp │ │ ├── has_modulus_assign.hpp │ │ ├── has_multiplies.hpp │ │ ├── has_multiplies_assign.hpp │ │ ├── has_negate.hpp │ │ ├── has_new_operator.hpp │ │ ├── has_not_equal_to.hpp │ │ ├── has_nothrow_assign.hpp │ │ ├── has_nothrow_constructor.hpp │ │ ├── has_nothrow_copy.hpp │ │ ├── has_nothrow_destructor.hpp │ │ ├── has_operator.hpp │ │ ├── has_plus.hpp │ │ ├── has_plus_assign.hpp │ │ ├── has_post_decrement.hpp │ │ ├── has_post_increment.hpp │ │ ├── has_pre_decrement.hpp │ │ ├── has_pre_increment.hpp │ │ ├── has_right_shift.hpp │ │ ├── has_right_shift_assign.hpp │ │ ├── has_trivial_assign.hpp │ │ ├── has_trivial_constructor.hpp │ │ ├── has_trivial_copy.hpp │ │ ├── has_trivial_destructor.hpp │ │ ├── has_trivial_move_assign.hpp │ │ ├── has_trivial_move_constructor.hpp │ │ ├── has_unary_minus.hpp │ │ ├── has_unary_plus.hpp │ │ ├── has_virtual_destructor.hpp │ │ ├── ice.hpp │ │ ├── integral_constant.hpp │ │ ├── integral_promotion.hpp │ │ ├── intrinsics.hpp │ │ ├── is_abstract.hpp │ │ ├── is_arithmetic.hpp │ │ ├── is_array.hpp │ │ ├── is_assignable.hpp │ │ ├── is_base_and_derived.hpp │ │ ├── is_base_of.hpp │ │ ├── is_base_of_tr1.hpp │ │ ├── is_bounded_array.hpp │ │ ├── is_class.hpp │ │ ├── is_complete.hpp │ │ ├── is_complex.hpp │ │ ├── is_compound.hpp │ │ ├── is_const.hpp │ │ ├── is_constructible.hpp │ │ ├── is_convertible.hpp │ │ ├── is_copy_assignable.hpp │ │ ├── is_copy_constructible.hpp │ │ ├── is_default_constructible.hpp │ │ ├── is_destructible.hpp │ │ ├── is_detected.hpp │ │ ├── is_detected_convertible.hpp │ │ ├── is_detected_exact.hpp │ │ ├── is_empty.hpp │ │ ├── is_enum.hpp │ │ ├── is_final.hpp │ │ ├── is_float.hpp │ │ ├── is_floating_point.hpp │ │ ├── is_function.hpp │ │ ├── is_fundamental.hpp │ │ ├── is_integral.hpp │ │ ├── is_list_constructible.hpp │ │ ├── is_lvalue_reference.hpp │ │ ├── is_member_function_pointer.hpp │ │ ├── is_member_object_pointer.hpp │ │ ├── is_member_pointer.hpp │ │ ├── is_noncopyable.hpp │ │ ├── is_nothrow_move_assignable.hpp │ │ ├── is_nothrow_move_constructible.hpp │ │ ├── is_nothrow_swappable.hpp │ │ ├── is_object.hpp │ │ ├── is_pod.hpp │ │ ├── is_pointer.hpp │ │ ├── is_polymorphic.hpp │ │ ├── is_reference.hpp │ │ ├── is_rvalue_reference.hpp │ │ ├── is_same.hpp │ │ ├── is_scalar.hpp │ │ ├── is_scoped_enum.hpp │ │ ├── is_signed.hpp │ │ ├── is_stateless.hpp │ │ ├── is_swappable.hpp │ │ ├── is_trivially_copyable.hpp │ │ ├── is_unbounded_array.hpp │ │ ├── is_union.hpp │ │ ├── is_unscoped_enum.hpp │ │ ├── is_unsigned.hpp │ │ ├── is_virtual_base_of.hpp │ │ ├── is_void.hpp │ │ ├── is_volatile.hpp │ │ ├── make_signed.hpp │ │ ├── make_unsigned.hpp │ │ ├── make_void.hpp │ │ ├── negation.hpp │ │ ├── nonesuch.hpp │ │ ├── object_traits.hpp │ │ ├── promote.hpp │ │ ├── rank.hpp │ │ ├── reference_traits.hpp │ │ ├── remove_all_extents.hpp │ │ ├── remove_bounds.hpp │ │ ├── remove_const.hpp │ │ ├── remove_cv.hpp │ │ ├── remove_cv_ref.hpp │ │ ├── remove_extent.hpp │ │ ├── remove_pointer.hpp │ │ ├── remove_reference.hpp │ │ ├── remove_volatile.hpp │ │ ├── same_traits.hpp │ │ ├── transform_traits.hpp │ │ ├── type_identity.hpp │ │ └── type_with_alignment.hpp │ ├── unordered_map.hpp │ ├── unordered_set.hpp │ ├── url.hpp │ ├── utility.hpp │ ├── utility │ │ ├── addressof.hpp │ │ ├── base_from_member.hpp │ │ ├── binary.hpp │ │ ├── compare_pointees.hpp │ │ ├── declval.hpp │ │ ├── detail │ │ │ ├── in_place_factory_prefix.hpp │ │ │ ├── in_place_factory_suffix.hpp │ │ │ ├── minstd_rand.hpp │ │ │ ├── result_of_iterate.hpp │ │ │ └── result_of_variadic.hpp │ │ ├── enable_if.hpp │ │ ├── explicit_operator_bool.hpp │ │ ├── identity_type.hpp │ │ ├── in_place_factory.hpp │ │ ├── result_of.hpp │ │ ├── string_ref.hpp │ │ ├── string_ref_fwd.hpp │ │ ├── string_view.hpp │ │ ├── string_view_fwd.hpp │ │ ├── swap.hpp │ │ ├── typed_in_place_factory.hpp │ │ └── value_init.hpp │ ├── variant.hpp │ ├── variant2.hpp │ ├── version.hpp │ ├── visit_each.hpp │ ├── wave.hpp │ └── weak_ptr.hpp ├── cmake │ ├── FindARB.cmake │ ├── FindBFD.cmake │ ├── FindCEREAL.cmake │ ├── FindECM.cmake │ ├── FindEXECINFO.cmake │ ├── FindFASTFLOAT.cmake │ ├── FindFLINT.cmake │ ├── FindGMP.cmake │ ├── FindLINKH.cmake │ ├── FindMPC.cmake │ ├── FindMPFR.cmake │ ├── FindPIRANHA.cmake │ ├── FindPRIMESIEVE.cmake │ ├── FindTCMALLOC.cmake │ ├── LibFindMacros.cmake │ ├── SymEngineConfig.cmake.in │ ├── SymEngineConfigVersion.cmake.in │ ├── UserOverride.cmake │ ├── checkclang.cpp │ ├── checkcxx11.cpp │ ├── checkgmpxx.cpp │ ├── checkstdtostring.cpp │ └── cotire.cmake ├── codecov.yml ├── docs │ ├── Doxygen │ │ ├── Doxyfile-prj.cfg │ │ ├── Doxyfile.cfg │ │ ├── doxyYoda │ │ │ ├── README │ │ │ ├── css │ │ │ │ └── doxyYoda.min.css │ │ │ ├── html │ │ │ │ ├── footer.html │ │ │ │ └── header.html │ │ │ ├── version.txt │ │ │ └── xml │ │ │ │ └── doxyYoda.xml │ │ ├── images │ │ │ └── symEngineTree.png │ │ ├── md │ │ │ ├── doc_guide.md │ │ │ └── style_guide.md │ │ ├── readme.md │ │ └── refs.bib │ └── mystMD │ │ ├── Matrices.myst.md │ │ ├── firststeps.myst.md │ │ ├── index.md │ │ └── readme.org └── symengine │ ├── CMakeLists.txt │ ├── add.cpp │ ├── add.h │ ├── as_real_imag.cpp │ ├── assumptions.cpp │ ├── assumptions.h │ ├── basic-inl.h │ ├── basic-methods.inc │ ├── basic.cpp │ ├── basic.h │ ├── complex.cpp │ ├── complex.h │ ├── complex_double.cpp │ ├── complex_double.h │ ├── complex_mpc.cpp │ ├── complex_mpc.h │ ├── constants.cpp │ ├── constants.h │ ├── cse.cpp │ ├── cwrapper.cpp │ ├── cwrapper.h │ ├── dense_matrix.cpp │ ├── derivative.cpp │ ├── derivative.h │ ├── dict.cpp │ ├── dict.h │ ├── diophantine.cpp │ ├── diophantine.h │ ├── eval.cpp │ ├── eval.h │ ├── eval_arb.cpp │ ├── eval_arb.h │ ├── eval_double.cpp │ ├── eval_double.h │ ├── eval_mpc.cpp │ ├── eval_mpc.h │ ├── eval_mpfr.cpp │ ├── eval_mpfr.h │ ├── expand.cpp │ ├── expression.cpp │ ├── expression.h │ ├── fields.cpp │ ├── fields.h │ ├── finitediff.cpp │ ├── finitediff.h │ ├── flint_wrapper.h │ ├── functions.cpp │ ├── functions.h │ ├── infinity.cpp │ ├── infinity.h │ ├── integer.cpp │ ├── integer.h │ ├── lambda_double.h │ ├── llvm_double.cpp │ ├── llvm_double.h │ ├── logic.cpp │ ├── logic.h │ ├── matrices │ ├── conjugate_matrix.cpp │ ├── conjugate_matrix.h │ ├── diagonal_matrix.cpp │ ├── diagonal_matrix.h │ ├── hadamard_product.cpp │ ├── hadamard_product.h │ ├── identity_matrix.cpp │ ├── identity_matrix.h │ ├── immutable_dense_matrix.cpp │ ├── immutable_dense_matrix.h │ ├── is_diagonal.cpp │ ├── is_lower.cpp │ ├── is_real.cpp │ ├── is_square.cpp │ ├── is_symmetric.cpp │ ├── is_toeplitz.cpp │ ├── is_upper.cpp │ ├── is_zero.cpp │ ├── matrix_add.cpp │ ├── matrix_add.h │ ├── matrix_expr.h │ ├── matrix_mul.cpp │ ├── matrix_mul.h │ ├── matrix_symbol.cpp │ ├── matrix_symbol.h │ ├── size.cpp │ ├── size.h │ ├── trace.cpp │ ├── trace.h │ ├── transpose.cpp │ ├── transpose.h │ ├── zero_matrix.cpp │ └── zero_matrix.h │ ├── matrix.cpp │ ├── matrix.h │ ├── matrix_expressions.h │ ├── monomials.cpp │ ├── monomials.h │ ├── mp_boost.cpp │ ├── mp_class.h │ ├── mp_wrapper.cpp │ ├── mp_wrapper.h │ ├── mul.cpp │ ├── mul.h │ ├── nan.cpp │ ├── nan.h │ ├── ntheory.cpp │ ├── ntheory.h │ ├── ntheory_funcs.cpp │ ├── ntheory_funcs.h │ ├── number.cpp │ ├── number.h │ ├── numer_denom.cpp │ ├── parser.h │ ├── parser │ ├── parser.cpp │ ├── parser.h │ ├── parser.tab.cc │ ├── parser.tab.hh │ ├── parser.yy │ ├── parser_old.cpp │ ├── sbml │ │ ├── sbml_parser.cpp │ │ ├── sbml_parser.h │ │ ├── sbml_parser.tab.cc │ │ ├── sbml_parser.tab.hh │ │ ├── sbml_parser.yy │ │ ├── sbml_tokenizer.cpp │ │ ├── sbml_tokenizer.h │ │ └── sbml_tokenizer.re │ ├── tokenizer.cpp │ ├── tokenizer.h │ └── tokenizer.re │ ├── polys │ ├── basic_conversions.cpp │ ├── basic_conversions.h │ ├── cancel.h │ ├── msymenginepoly.cpp │ ├── msymenginepoly.h │ ├── uexprpoly.cpp │ ├── uexprpoly.h │ ├── uintpoly.cpp │ ├── uintpoly.h │ ├── uintpoly_flint.cpp │ ├── uintpoly_flint.h │ ├── uintpoly_piranha.cpp │ ├── uintpoly_piranha.h │ ├── upolybase.h │ ├── uratpoly.cpp │ ├── uratpoly.h │ └── usymenginepoly.h │ ├── pow.cpp │ ├── pow.h │ ├── prime_sieve.cpp │ ├── prime_sieve.h │ ├── printers.h │ ├── printers │ ├── codegen.cpp │ ├── codegen.h │ ├── latex.cpp │ ├── latex.h │ ├── mathml.cpp │ ├── mathml.h │ ├── sbml.cpp │ ├── sbml.h │ ├── stringbox.cpp │ ├── stringbox.h │ ├── strprinter.cpp │ ├── strprinter.h │ ├── unicode.cpp │ └── unicode.h │ ├── rational.cpp │ ├── rational.h │ ├── real_double.cpp │ ├── real_double.h │ ├── real_mpfr.cpp │ ├── real_mpfr.h │ ├── refine.cpp │ ├── refine.h │ ├── rewrite.cpp │ ├── rings.cpp │ ├── rings.h │ ├── serialize-cereal.h │ ├── series.cpp │ ├── series.h │ ├── series_flint.cpp │ ├── series_flint.h │ ├── series_generic.cpp │ ├── series_generic.h │ ├── series_piranha.cpp │ ├── series_piranha.h │ ├── series_visitor.h │ ├── set_funcs.cpp │ ├── sets.cpp │ ├── sets.h │ ├── simplify.cpp │ ├── simplify.h │ ├── solve.cpp │ ├── solve.h │ ├── sparse_matrix.cpp │ ├── subs.h │ ├── symbol.cpp │ ├── symbol.h │ ├── symengine_assert.h │ ├── symengine_casts.h │ ├── symengine_config.h.in │ ├── symengine_config_cling.h.in │ ├── symengine_exception.h │ ├── symengine_rcp.cpp │ ├── symengine_rcp.h │ ├── test_visitors.cpp │ ├── test_visitors.h │ ├── tests │ ├── CMakeLists.txt │ ├── basic │ │ ├── CMakeLists.txt │ │ ├── test_arit.cpp │ │ ├── test_as_numer_denom.cpp │ │ ├── test_as_real_imag.cpp │ │ ├── test_assumptions.cpp │ │ ├── test_basic.cpp │ │ ├── test_count_ops.cpp │ │ ├── test_cse.cpp │ │ ├── test_fields.cpp │ │ ├── test_functions.cpp │ │ ├── test_infinity.cpp │ │ ├── test_integer.cpp │ │ ├── test_integer_class.cpp │ │ ├── test_nan.cpp │ │ ├── test_number.cpp │ │ ├── test_parser.cpp │ │ ├── test_poly.cpp │ │ ├── test_rational.cpp │ │ ├── test_refine.cpp │ │ ├── test_relationals.cpp │ │ ├── test_sbml_parser.cpp │ │ ├── test_serialize-cereal.cpp │ │ ├── test_series.cpp │ │ ├── test_series_expansion_UP.cpp │ │ ├── test_series_expansion_URatF.cpp │ │ ├── test_series_expansion_URatP.cpp │ │ ├── test_series_generic.cpp │ │ ├── test_sets.cpp │ │ ├── test_simplify.cpp │ │ ├── test_solve.cpp │ │ ├── test_subs.cpp │ │ ├── test_test_visitors.cpp │ │ ├── test_tribool.cpp │ │ └── test_tuple.cpp │ ├── cwrapper │ │ ├── CMakeLists.txt │ │ └── test_cwrapper.c │ ├── eval │ │ ├── CMakeLists.txt │ │ ├── test_eval_arb.cpp │ │ ├── test_eval_double.cpp │ │ ├── test_eval_mpc.cpp │ │ ├── test_eval_mpfr.cpp │ │ ├── test_evalf.cpp │ │ └── test_lambda_double.cpp │ ├── expression │ │ ├── CMakeLists.txt │ │ └── test_expression.cpp │ ├── finitediff │ │ ├── CMakeLists.txt │ │ └── test_finitediff.cpp │ ├── logic │ │ ├── CMakeLists.txt │ │ └── test_logic.cpp │ ├── matrix │ │ ├── CMakeLists.txt │ │ ├── test_matrix.cpp │ │ └── test_matrixexpr.cpp │ ├── ntheory │ │ ├── CMakeLists.txt │ │ ├── test_diophantine.cpp │ │ ├── test_ntheory.cpp │ │ └── test_ntheory_funcs.cpp │ ├── polynomial │ │ ├── CMakeLists.txt │ │ ├── test_basic_conversions.cpp │ │ ├── test_cancel.cpp │ │ ├── test_mexprpoly.cpp │ │ ├── test_mintpoly.cpp │ │ ├── test_uexprpoly.cpp │ │ ├── test_uintpoly.cpp │ │ ├── test_uintpoly_flint.cpp │ │ ├── test_uintpoly_piranha.cpp │ │ ├── test_uratpoly.cpp │ │ ├── test_uratpoly_flint.cpp │ │ └── test_uratpoly_piranha.cpp │ ├── printing │ │ ├── CMakeLists.txt │ │ ├── test_ccode.cpp │ │ └── test_printing.cpp │ └── rcp │ │ ├── CMakeLists.txt │ │ └── test_rcp.cpp │ ├── tribool.h │ ├── tuple.cpp │ ├── tuple.h │ ├── type_codes.inc │ ├── utilities │ ├── catch │ │ ├── .gitattributes │ │ ├── CMakeLists.txt │ │ ├── catch.cpp │ │ └── catch.hpp │ ├── cereal │ │ ├── LICENSE │ │ └── include │ │ │ └── cereal │ │ │ ├── access.hpp │ │ │ ├── archives │ │ │ ├── adapters.hpp │ │ │ ├── binary.hpp │ │ │ ├── json.hpp │ │ │ ├── portable_binary.hpp │ │ │ └── xml.hpp │ │ │ ├── cereal.hpp │ │ │ ├── details │ │ │ ├── helpers.hpp │ │ │ ├── polymorphic_impl.hpp │ │ │ ├── polymorphic_impl_fwd.hpp │ │ │ ├── static_object.hpp │ │ │ ├── traits.hpp │ │ │ └── util.hpp │ │ │ ├── macros.hpp │ │ │ ├── specialize.hpp │ │ │ ├── types │ │ │ ├── array.hpp │ │ │ ├── atomic.hpp │ │ │ ├── base_class.hpp │ │ │ ├── bitset.hpp │ │ │ ├── boost_variant.hpp │ │ │ ├── chrono.hpp │ │ │ ├── common.hpp │ │ │ ├── complex.hpp │ │ │ ├── concepts │ │ │ │ └── pair_associative_container.hpp │ │ │ ├── deque.hpp │ │ │ ├── forward_list.hpp │ │ │ ├── functional.hpp │ │ │ ├── list.hpp │ │ │ ├── map.hpp │ │ │ ├── memory.hpp │ │ │ ├── optional.hpp │ │ │ ├── polymorphic.hpp │ │ │ ├── queue.hpp │ │ │ ├── set.hpp │ │ │ ├── stack.hpp │ │ │ ├── string.hpp │ │ │ ├── tuple.hpp │ │ │ ├── unordered_map.hpp │ │ │ ├── unordered_set.hpp │ │ │ ├── utility.hpp │ │ │ ├── valarray.hpp │ │ │ ├── variant.hpp │ │ │ └── vector.hpp │ │ │ └── version.hpp │ ├── fast_float │ │ └── include │ │ │ └── fast_float │ │ │ └── fast_float.h │ ├── matchpycpp │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── autogen_tests │ │ │ ├── CMakeLists.txt │ │ │ ├── test_case001.cpp │ │ │ ├── test_case002.cpp │ │ │ ├── test_case003.cpp │ │ │ ├── test_case004.cpp │ │ │ ├── test_case005.cpp │ │ │ ├── test_case006.cpp │ │ │ └── test_case007.cpp │ │ ├── bipartite.h │ │ ├── common.h │ │ ├── cpp_code_generation.py │ │ ├── environment.yml │ │ ├── generate_tests.py │ │ ├── generator_trick.h │ │ ├── hopcroft_karp.h │ │ ├── many_to_one.h │ │ ├── substitution.h │ │ ├── symengine_printer.py │ │ ├── tests │ │ │ ├── .gitkeep │ │ │ ├── CMakeLists.txt │ │ │ ├── bipartite │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── test_bipartite.cpp │ │ │ └── hopcroft_karp │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── test_hopcroft_karp.cpp │ │ └── utils.h │ ├── stream_fmt.h │ └── teuchos │ │ ├── CMakeLists.txt │ │ ├── Teuchos_Assert.hpp │ │ ├── Teuchos_ConfigDefs.hpp │ │ ├── Teuchos_ConstTypeTraits.hpp │ │ ├── Teuchos_DLLExportMacro.h │ │ ├── Teuchos_ENull.hpp │ │ ├── Teuchos_Exceptions.hpp │ │ ├── Teuchos_NullIteratorTraits.hpp │ │ ├── Teuchos_Ptr.cpp │ │ ├── Teuchos_Ptr.hpp │ │ ├── Teuchos_PtrDecl.hpp │ │ ├── Teuchos_RCP.hpp │ │ ├── Teuchos_RCPDecl.hpp │ │ ├── Teuchos_RCPNode.cpp │ │ ├── Teuchos_RCPNode.hpp │ │ ├── Teuchos_TestForException.cpp │ │ ├── Teuchos_TestForException.hpp │ │ ├── Teuchos_TypeNameTraits.cpp │ │ ├── Teuchos_TypeNameTraits.hpp │ │ ├── Teuchos_any.hpp │ │ ├── Teuchos_config.h.in │ │ ├── Teuchos_dyn_cast.cpp │ │ ├── Teuchos_dyn_cast.hpp │ │ ├── Teuchos_getBaseObjVoidPtr.hpp │ │ ├── Teuchos_map.hpp │ │ ├── Teuchos_stacktrace.cpp │ │ ├── Teuchos_stacktrace.hpp │ │ └── Teuchos_toString.hpp │ ├── visitor.cpp │ └── visitor.h └── text2code ├── .DS_Store ├── CMakeLists.txt ├── CodeCompiler.cpp ├── CodeGenerator.cpp ├── CodeGenerator.hpp ├── README.md ├── TextParser.hpp ├── connectivity.cpp ├── connectivity_test.cpp ├── domaindecomposition.cpp ├── doxyfile ├── gaussnodes.bin ├── grid.bin ├── helpers.cpp ├── helpersexasim.cpp ├── makemaster.cpp ├── makemasterexasim.cpp ├── makemesh.cpp ├── makemeshexasim.cpp ├── masternodes.bin ├── parmetis.cpp ├── partition.bin ├── pdeapp.txt ├── pdemodel.txt ├── readmesh.cpp ├── readpdeapp.cpp ├── text2code.cpp ├── tinyexpr.cpp ├── tinyexpr.h ├── utils.cpp ├── writebinaryfiles.cpp └── writebinaryfilesexasim.cpp /.github/workflows/exasim-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/.github/workflows/exasim-ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/README.md -------------------------------------------------------------------------------- /backend/Common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Common/common.h -------------------------------------------------------------------------------- /backend/Common/cpuimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Common/cpuimpl.h -------------------------------------------------------------------------------- /backend/Common/kokkosimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Common/kokkosimpl.h -------------------------------------------------------------------------------- /backend/Common/pblas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Common/pblas.h -------------------------------------------------------------------------------- /backend/Discretization/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Discretization/.DS_Store -------------------------------------------------------------------------------- /backend/Discretization/geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Discretization/geometry.cpp -------------------------------------------------------------------------------- /backend/Discretization/getuhat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Discretization/getuhat.cpp -------------------------------------------------------------------------------- /backend/Discretization/massinv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Discretization/massinv.cpp -------------------------------------------------------------------------------- /backend/Discretization/matvec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Discretization/matvec.cpp -------------------------------------------------------------------------------- /backend/Discretization/qequation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Discretization/qequation.cpp -------------------------------------------------------------------------------- /backend/Discretization/qresidual.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Discretization/qresidual.cpp -------------------------------------------------------------------------------- /backend/Discretization/residual.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Discretization/residual.cpp -------------------------------------------------------------------------------- /backend/Discretization/setstructs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Discretization/setstructs.cpp -------------------------------------------------------------------------------- /backend/Discretization/uequation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Discretization/uequation.cpp -------------------------------------------------------------------------------- /backend/Discretization/uresidual.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Discretization/uresidual.cpp -------------------------------------------------------------------------------- /backend/Discretization/wequation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Discretization/wequation.cpp -------------------------------------------------------------------------------- /backend/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Doxyfile -------------------------------------------------------------------------------- /backend/Main/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Main/main.cpp -------------------------------------------------------------------------------- /backend/Model/Code2Cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/Code2Cpp.cpp -------------------------------------------------------------------------------- /backend/Model/HdgEoS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/HdgEoS.cpp -------------------------------------------------------------------------------- /backend/Model/HdgEoS1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/HdgEoS1.cpp -------------------------------------------------------------------------------- /backend/Model/HdgEoS2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/HdgEoS2.cpp -------------------------------------------------------------------------------- /backend/Model/HdgFbou.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/HdgFbou.cpp -------------------------------------------------------------------------------- /backend/Model/HdgFbou1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/HdgFbou1.cpp -------------------------------------------------------------------------------- /backend/Model/HdgFbou2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/HdgFbou2.cpp -------------------------------------------------------------------------------- /backend/Model/HdgFbouonly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/HdgFbouonly.cpp -------------------------------------------------------------------------------- /backend/Model/HdgFbouonly1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/HdgFbouonly1.cpp -------------------------------------------------------------------------------- /backend/Model/HdgFbouonly2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/HdgFbouonly2.cpp -------------------------------------------------------------------------------- /backend/Model/HdgFint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/HdgFint.cpp -------------------------------------------------------------------------------- /backend/Model/HdgFint1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/HdgFint1.cpp -------------------------------------------------------------------------------- /backend/Model/HdgFint2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/HdgFint2.cpp -------------------------------------------------------------------------------- /backend/Model/HdgFintonly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/HdgFintonly.cpp -------------------------------------------------------------------------------- /backend/Model/HdgFintonly1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/HdgFintonly1.cpp -------------------------------------------------------------------------------- /backend/Model/HdgFintonly2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/HdgFintonly2.cpp -------------------------------------------------------------------------------- /backend/Model/HdgFlux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/HdgFlux.cpp -------------------------------------------------------------------------------- /backend/Model/HdgFlux1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/HdgFlux1.cpp -------------------------------------------------------------------------------- /backend/Model/HdgFlux2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/HdgFlux2.cpp -------------------------------------------------------------------------------- /backend/Model/HdgQoIboundary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/HdgQoIboundary.cpp -------------------------------------------------------------------------------- /backend/Model/HdgQoIvolume.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/HdgQoIvolume.cpp -------------------------------------------------------------------------------- /backend/Model/HdgSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/HdgSource.cpp -------------------------------------------------------------------------------- /backend/Model/HdgSource1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/HdgSource1.cpp -------------------------------------------------------------------------------- /backend/Model/HdgSource2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/HdgSource2.cpp -------------------------------------------------------------------------------- /backend/Model/HdgSourcew.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/HdgSourcew.cpp -------------------------------------------------------------------------------- /backend/Model/HdgSourcew1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/HdgSourcew1.cpp -------------------------------------------------------------------------------- /backend/Model/HdgSourcew2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/HdgSourcew2.cpp -------------------------------------------------------------------------------- /backend/Model/HdgSourcewonly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/HdgSourcewonly.cpp -------------------------------------------------------------------------------- /backend/Model/HdgSourcewonly1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/HdgSourcewonly1.cpp -------------------------------------------------------------------------------- /backend/Model/HdgSourcewonly2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/HdgSourcewonly2.cpp -------------------------------------------------------------------------------- /backend/Model/HdgTdfunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/HdgTdfunc.cpp -------------------------------------------------------------------------------- /backend/Model/HdgUbou.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/HdgUbou.cpp -------------------------------------------------------------------------------- /backend/Model/HdgVisScalars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/HdgVisScalars.cpp -------------------------------------------------------------------------------- /backend/Model/HdgVisVectors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/HdgVisVectors.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosAvfield.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosAvfield.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosAvfield1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosAvfield1.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosAvfield2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosAvfield2.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosDrivers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosDrivers.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosEoS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosEoS.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosEoS1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosEoS1.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosEoS2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosEoS2.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosEoSdu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosEoSdu.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosEoSdu1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosEoSdu1.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosEoSdu2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosEoSdu2.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosEoSdw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosEoSdw.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosEoSdw1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosEoSdw1.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosEoSdw2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosEoSdw2.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosFbou.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosFbou.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosFbou1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosFbou1.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosFbou2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosFbou2.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosFhat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosFhat.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosFhat1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosFhat1.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosFhat2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosFhat2.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosFint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosFint.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosFlux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosFlux.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosFlux1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosFlux1.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosFlux2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosFlux2.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosInitodg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosInitodg.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosInitodg1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosInitodg1.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosInitodg2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosInitodg2.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosInitq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosInitq.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosInitq1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosInitq1.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosInitq2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosInitq2.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosInitu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosInitu.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosInitu1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosInitu1.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosInitu2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosInitu2.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosInitudg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosInitudg.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosInitudg1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosInitudg1.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosInitudg2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosInitudg2.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosInitwdg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosInitwdg.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosInitwdg1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosInitwdg1.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosInitwdg2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosInitwdg2.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosMonitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosMonitor.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosMonitor1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosMonitor1.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosMonitor2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosMonitor2.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosOutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosOutput.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosOutput1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosOutput1.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosOutput2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosOutput2.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosQoIboundary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosQoIboundary.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosQoIboundary1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosQoIboundary1.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosQoIboundary2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosQoIboundary2.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosQoIvolume.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosQoIvolume.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosQoIvolume1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosQoIvolume1.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosQoIvolume2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosQoIvolume2.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosSource.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosSource1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosSource1.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosSource2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosSource2.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosSourcew.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosSourcew.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosSourcew1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosSourcew1.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosSourcew2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosSourcew2.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosStab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosStab.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosStab1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosStab1.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosStab2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosStab2.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosTdfunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosTdfunc.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosTdfunc1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosTdfunc1.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosTdfunc2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosTdfunc2.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosUbou.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosUbou.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosUbou1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosUbou1.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosUbou2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosUbou2.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosUhat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosUhat.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosUhat1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosUhat1.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosUhat2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosUhat2.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosVisScalars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosVisScalars.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosVisScalars1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosVisScalars1.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosVisScalars2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosVisScalars2.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosVisTensors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosVisTensors.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosVisTensors1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosVisTensors1.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosVisTensors2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosVisTensors2.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosVisVectors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosVisVectors.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosVisVectors1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosVisVectors1.cpp -------------------------------------------------------------------------------- /backend/Model/KokkosVisVectors2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/KokkosVisVectors2.cpp -------------------------------------------------------------------------------- /backend/Model/ModelDrivers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/ModelDrivers.cpp -------------------------------------------------------------------------------- /backend/Model/SymbolicFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/SymbolicFunctions.cpp -------------------------------------------------------------------------------- /backend/Model/SymbolicFunctions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/SymbolicFunctions.hpp -------------------------------------------------------------------------------- /backend/Model/cpuInitodg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/cpuInitodg.cpp -------------------------------------------------------------------------------- /backend/Model/cpuInitodg1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/cpuInitodg1.cpp -------------------------------------------------------------------------------- /backend/Model/cpuInitodg2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/cpuInitodg2.cpp -------------------------------------------------------------------------------- /backend/Model/cpuInitq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/cpuInitq.cpp -------------------------------------------------------------------------------- /backend/Model/cpuInitq1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/cpuInitq1.cpp -------------------------------------------------------------------------------- /backend/Model/cpuInitq2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/cpuInitq2.cpp -------------------------------------------------------------------------------- /backend/Model/cpuInitu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/cpuInitu.cpp -------------------------------------------------------------------------------- /backend/Model/cpuInitu1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/cpuInitu1.cpp -------------------------------------------------------------------------------- /backend/Model/cpuInitu2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/cpuInitu2.cpp -------------------------------------------------------------------------------- /backend/Model/cpuInitudg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/cpuInitudg.cpp -------------------------------------------------------------------------------- /backend/Model/cpuInitudg1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/cpuInitudg1.cpp -------------------------------------------------------------------------------- /backend/Model/cpuInitudg2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/cpuInitudg2.cpp -------------------------------------------------------------------------------- /backend/Model/cpuInitwdg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/cpuInitwdg.cpp -------------------------------------------------------------------------------- /backend/Model/cpuInitwdg1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/cpuInitwdg1.cpp -------------------------------------------------------------------------------- /backend/Model/cpuInitwdg2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/cpuInitwdg2.cpp -------------------------------------------------------------------------------- /backend/Model/libpdemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/libpdemodel.cpp -------------------------------------------------------------------------------- /backend/Model/libpdemodel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Model/libpdemodel.hpp -------------------------------------------------------------------------------- /backend/Preprocessing/TextParser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Preprocessing/TextParser.hpp -------------------------------------------------------------------------------- /backend/Preprocessing/gaussnodes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Preprocessing/gaussnodes.bin -------------------------------------------------------------------------------- /backend/Preprocessing/grid.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Preprocessing/grid.bin -------------------------------------------------------------------------------- /backend/Preprocessing/helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Preprocessing/helpers.cpp -------------------------------------------------------------------------------- /backend/Preprocessing/makemaster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Preprocessing/makemaster.cpp -------------------------------------------------------------------------------- /backend/Preprocessing/makemesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Preprocessing/makemesh.cpp -------------------------------------------------------------------------------- /backend/Preprocessing/masternodes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Preprocessing/masternodes.bin -------------------------------------------------------------------------------- /backend/Preprocessing/parmetis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Preprocessing/parmetis.cpp -------------------------------------------------------------------------------- /backend/Preprocessing/partition.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Preprocessing/partition.bin -------------------------------------------------------------------------------- /backend/Preprocessing/pdeapp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Preprocessing/pdeapp.txt -------------------------------------------------------------------------------- /backend/Preprocessing/pdemodel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Preprocessing/pdemodel.txt -------------------------------------------------------------------------------- /backend/Preprocessing/readmesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Preprocessing/readmesh.cpp -------------------------------------------------------------------------------- /backend/Preprocessing/readpdeapp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Preprocessing/readpdeapp.cpp -------------------------------------------------------------------------------- /backend/Preprocessing/text2code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Preprocessing/text2code.cpp -------------------------------------------------------------------------------- /backend/Preprocessing/tinyexpr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Preprocessing/tinyexpr.cpp -------------------------------------------------------------------------------- /backend/Preprocessing/tinyexpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Preprocessing/tinyexpr.h -------------------------------------------------------------------------------- /backend/Preprocessing/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Preprocessing/utils.cpp -------------------------------------------------------------------------------- /backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/README.md -------------------------------------------------------------------------------- /backend/Solution/avsolution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Solution/avsolution.cpp -------------------------------------------------------------------------------- /backend/Solution/solution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Solution/solution.cpp -------------------------------------------------------------------------------- /backend/Solution/solution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Solution/solution.h -------------------------------------------------------------------------------- /backend/Solution/timestepcoeff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Solution/timestepcoeff.cpp -------------------------------------------------------------------------------- /backend/Solution/updatesolution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Solution/updatesolution.cpp -------------------------------------------------------------------------------- /backend/Solution/updatesource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Solution/updatesource.cpp -------------------------------------------------------------------------------- /backend/Solver/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Solver/.DS_Store -------------------------------------------------------------------------------- /backend/Solver/getpoly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Solver/getpoly.cpp -------------------------------------------------------------------------------- /backend/Solver/gmres.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Solver/gmres.cpp -------------------------------------------------------------------------------- /backend/Solver/ptcsolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Solver/ptcsolver.cpp -------------------------------------------------------------------------------- /backend/Solver/setsysstruct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Solver/setsysstruct.cpp -------------------------------------------------------------------------------- /backend/Solver/solver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Solver/solver.cpp -------------------------------------------------------------------------------- /backend/Solver/solver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/backend/Solver/solver.h -------------------------------------------------------------------------------- /doc/Exasim.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/doc/Exasim.pdf -------------------------------------------------------------------------------- /doc/ExasimOverview.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/doc/ExasimOverview.rtf -------------------------------------------------------------------------------- /doc/exasimlogo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/doc/exasimlogo.pdf -------------------------------------------------------------------------------- /doc/exasimlogo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/doc/exasimlogo1.png -------------------------------------------------------------------------------- /doc/exasimlogo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/doc/exasimlogo2.png -------------------------------------------------------------------------------- /doc/exasimlogo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/doc/exasimlogo3.png -------------------------------------------------------------------------------- /doc/exasimlogomedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/doc/exasimlogomedium.png -------------------------------------------------------------------------------- /doc/exasimlogosmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/doc/exasimlogosmall.png -------------------------------------------------------------------------------- /examples/Burgers/Burgers2d/bg2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Burgers/Burgers2d/bg2d.png -------------------------------------------------------------------------------- /examples/Burgers/Burgers2d/pdeapp.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Burgers/Burgers2d/pdeapp.jl -------------------------------------------------------------------------------- /examples/Burgers/Burgers2d/pdeapp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Burgers/Burgers2d/pdeapp.m -------------------------------------------------------------------------------- /examples/Burgers/Burgers2d/pdeapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Burgers/Burgers2d/pdeapp.py -------------------------------------------------------------------------------- /examples/Burgers/Burgers2d/pdemodel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Burgers/Burgers2d/pdemodel.m -------------------------------------------------------------------------------- /examples/Euler/EulerVortex/pdeapp.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Euler/EulerVortex/pdeapp.jl -------------------------------------------------------------------------------- /examples/Euler/EulerVortex/pdeapp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Euler/EulerVortex/pdeapp.m -------------------------------------------------------------------------------- /examples/Euler/EulerVortex/pdeapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Euler/EulerVortex/pdeapp.py -------------------------------------------------------------------------------- /examples/Euler/EulerVortex/pdemodel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Euler/EulerVortex/pdemodel.m -------------------------------------------------------------------------------- /examples/Euler/mach8cylinder/pdeapp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Euler/mach8cylinder/pdeapp.m -------------------------------------------------------------------------------- /examples/Euler/naca0012/grid.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Euler/naca0012/grid.bin -------------------------------------------------------------------------------- /examples/Euler/naca0012/pdeapp.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Euler/naca0012/pdeapp.jl -------------------------------------------------------------------------------- /examples/Euler/naca0012/pdeapp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Euler/naca0012/pdeapp.m -------------------------------------------------------------------------------- /examples/Euler/naca0012/pdeapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Euler/naca0012/pdeapp.py -------------------------------------------------------------------------------- /examples/Euler/naca0012/pdemodel.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Euler/naca0012/pdemodel.jl -------------------------------------------------------------------------------- /examples/Euler/naca0012/pdemodel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Euler/naca0012/pdemodel.m -------------------------------------------------------------------------------- /examples/Euler/naca0012/pdemodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Euler/naca0012/pdemodel.py -------------------------------------------------------------------------------- /examples/Euler/reacting_flow/pdeapp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Euler/reacting_flow/pdeapp.m -------------------------------------------------------------------------------- /examples/GSI/concentration1d/pdeapp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/GSI/concentration1d/pdeapp.m -------------------------------------------------------------------------------- /examples/GSI/heat1d/pdeapp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/GSI/heat1d/pdeapp.m -------------------------------------------------------------------------------- /examples/GSI/heat1d/pdemodel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/GSI/heat1d/pdemodel.m -------------------------------------------------------------------------------- /examples/HeatEquation/warmup/pdeapp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/HeatEquation/warmup/pdeapp.m -------------------------------------------------------------------------------- /examples/Ionosphere/ionTest/pdeapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Ionosphere/ionTest/pdeapp.py -------------------------------------------------------------------------------- /examples/Ionosphere/test3d/exarun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Ionosphere/test3d/exarun.py -------------------------------------------------------------------------------- /examples/MHD/MagneticVortex/pdeapp.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/MHD/MagneticVortex/pdeapp.jl -------------------------------------------------------------------------------- /examples/MHD/MagneticVortex/pdeapp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/MHD/MagneticVortex/pdeapp.m -------------------------------------------------------------------------------- /examples/MHD/MagneticVortex/pdeapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/MHD/MagneticVortex/pdeapp.py -------------------------------------------------------------------------------- /examples/MongeAmpere/square/pdeapp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/MongeAmpere/square/pdeapp.m -------------------------------------------------------------------------------- /examples/NavierStokes/naca2d/code2cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/NavierStokes/naca2d/code2cpp -------------------------------------------------------------------------------- /examples/NavierStokes/naca2d/fbou.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/NavierStokes/naca2d/fbou.m -------------------------------------------------------------------------------- /examples/NavierStokes/naca2d/fhat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/NavierStokes/naca2d/fhat.m -------------------------------------------------------------------------------- /examples/NavierStokes/naca2d/flux.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/NavierStokes/naca2d/flux.m -------------------------------------------------------------------------------- /examples/NavierStokes/naca2d/flux2d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/NavierStokes/naca2d/flux2d.m -------------------------------------------------------------------------------- /examples/NavierStokes/naca2d/flux3d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/NavierStokes/naca2d/flux3d.m -------------------------------------------------------------------------------- /examples/NavierStokes/naca2d/getan.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/NavierStokes/naca2d/getan.m -------------------------------------------------------------------------------- /examples/NavierStokes/naca2d/grid.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/NavierStokes/naca2d/grid.bin -------------------------------------------------------------------------------- /examples/NavierStokes/naca2d/pdeapp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/NavierStokes/naca2d/pdeapp.m -------------------------------------------------------------------------------- /examples/NavierStokes/naca2d/source.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/NavierStokes/naca2d/source.m -------------------------------------------------------------------------------- /examples/NavierStokes/naca2d/symAn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/NavierStokes/naca2d/symAn.m -------------------------------------------------------------------------------- /examples/NavierStokes/naca2d/tmp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/NavierStokes/naca2d/tmp.m -------------------------------------------------------------------------------- /examples/NavierStokes/naca2d/tmp2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/NavierStokes/naca2d/tmp2.m -------------------------------------------------------------------------------- /examples/NavierStokes/naca2d/tmp3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/NavierStokes/naca2d/tmp3.m -------------------------------------------------------------------------------- /examples/NavierStokes/nsmach8/udg.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/NavierStokes/nsmach8/udg.bin -------------------------------------------------------------------------------- /examples/NavierStokes/nsmach8/vdg.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/NavierStokes/nsmach8/vdg.bin -------------------------------------------------------------------------------- /examples/NavierStokes/nsmach8/xdg.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/NavierStokes/nsmach8/xdg.bin -------------------------------------------------------------------------------- /examples/Poisson/Cone/coneincube.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Cone/coneincube.geo -------------------------------------------------------------------------------- /examples/Poisson/Cone/coneincube.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Cone/coneincube.msh -------------------------------------------------------------------------------- /examples/Poisson/Cone/grid.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Cone/grid.bin -------------------------------------------------------------------------------- /examples/Poisson/Cone/partition.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Cone/partition.bin -------------------------------------------------------------------------------- /examples/Poisson/Cone/pdeapp.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Cone/pdeapp.jl -------------------------------------------------------------------------------- /examples/Poisson/Cone/pdeapp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Cone/pdeapp.m -------------------------------------------------------------------------------- /examples/Poisson/Cone/pdeapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Cone/pdeapp.py -------------------------------------------------------------------------------- /examples/Poisson/Cone/pdeapp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Cone/pdeapp.txt -------------------------------------------------------------------------------- /examples/Poisson/Cone/pdemodel.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Cone/pdemodel.jl -------------------------------------------------------------------------------- /examples/Poisson/Cone/pdemodel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Cone/pdemodel.m -------------------------------------------------------------------------------- /examples/Poisson/Cone/pdemodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Cone/pdemodel.py -------------------------------------------------------------------------------- /examples/Poisson/Cone/pdemodel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Cone/pdemodel.txt -------------------------------------------------------------------------------- /examples/Poisson/Lshape/grid.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Lshape/grid.bin -------------------------------------------------------------------------------- /examples/Poisson/Lshape/lshape.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Lshape/lshape.geo -------------------------------------------------------------------------------- /examples/Poisson/Lshape/lshape.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Lshape/lshape.msh -------------------------------------------------------------------------------- /examples/Poisson/Lshape/pdeapp.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Lshape/pdeapp.jl -------------------------------------------------------------------------------- /examples/Poisson/Lshape/pdeapp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Lshape/pdeapp.m -------------------------------------------------------------------------------- /examples/Poisson/Lshape/pdeapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Lshape/pdeapp.py -------------------------------------------------------------------------------- /examples/Poisson/Lshape/pdeapp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Lshape/pdeapp.txt -------------------------------------------------------------------------------- /examples/Poisson/Lshape/pdemodel.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Lshape/pdemodel.jl -------------------------------------------------------------------------------- /examples/Poisson/Lshape/pdemodel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Lshape/pdemodel.m -------------------------------------------------------------------------------- /examples/Poisson/Lshape/pdemodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Lshape/pdemodel.py -------------------------------------------------------------------------------- /examples/Poisson/Lshape/pdemodel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Lshape/pdemodel.txt -------------------------------------------------------------------------------- /examples/Poisson/Nonlinear/grid.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Nonlinear/grid.bin -------------------------------------------------------------------------------- /examples/Poisson/Nonlinear/pdeapp.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Nonlinear/pdeapp.jl -------------------------------------------------------------------------------- /examples/Poisson/Nonlinear/pdeapp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Nonlinear/pdeapp.m -------------------------------------------------------------------------------- /examples/Poisson/Nonlinear/pdeapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Nonlinear/pdeapp.py -------------------------------------------------------------------------------- /examples/Poisson/Nonlinear/pdeapp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Nonlinear/pdeapp.txt -------------------------------------------------------------------------------- /examples/Poisson/Nonlinear/pdemodel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Nonlinear/pdemodel.m -------------------------------------------------------------------------------- /examples/Poisson/Nonlinear2/fbou.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Nonlinear2/fbou.m -------------------------------------------------------------------------------- /examples/Poisson/Nonlinear2/fhat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Nonlinear2/fhat.m -------------------------------------------------------------------------------- /examples/Poisson/Nonlinear2/flux.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Nonlinear2/flux.m -------------------------------------------------------------------------------- /examples/Poisson/Nonlinear2/pdeapp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Nonlinear2/pdeapp.m -------------------------------------------------------------------------------- /examples/Poisson/Nonlinear2/source.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Nonlinear2/source.m -------------------------------------------------------------------------------- /examples/Poisson/Orion/domain5.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Orion/domain5.geo -------------------------------------------------------------------------------- /examples/Poisson/Orion/domain5.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Orion/domain5.msh -------------------------------------------------------------------------------- /examples/Poisson/Orion/domain6.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Orion/domain6.geo -------------------------------------------------------------------------------- /examples/Poisson/Orion/domain6.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Orion/domain6.msh -------------------------------------------------------------------------------- /examples/Poisson/Orion/grid.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Orion/grid.bin -------------------------------------------------------------------------------- /examples/Poisson/Orion/midcurve.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Orion/midcurve.mat -------------------------------------------------------------------------------- /examples/Poisson/Orion/mkmesh_orion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Orion/mkmesh_orion.m -------------------------------------------------------------------------------- /examples/Poisson/Orion/mshOrion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Orion/mshOrion.m -------------------------------------------------------------------------------- /examples/Poisson/Orion/orion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Orion/orion.m -------------------------------------------------------------------------------- /examples/Poisson/Orion/outerwall.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Orion/outerwall.m -------------------------------------------------------------------------------- /examples/Poisson/Orion/pdeapp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Orion/pdeapp.txt -------------------------------------------------------------------------------- /examples/Poisson/Orion/pdemodel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Orion/pdemodel.txt -------------------------------------------------------------------------------- /examples/Poisson/Orion/shockcurve.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Orion/shockcurve.mat -------------------------------------------------------------------------------- /examples/Poisson/Orion/xdg.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Orion/xdg.bin -------------------------------------------------------------------------------- /examples/Poisson/Periodic/grid.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Periodic/grid.bin -------------------------------------------------------------------------------- /examples/Poisson/Periodic/pdeapp.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Periodic/pdeapp.jl -------------------------------------------------------------------------------- /examples/Poisson/Periodic/pdeapp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Periodic/pdeapp.m -------------------------------------------------------------------------------- /examples/Poisson/Periodic/pdeapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Periodic/pdeapp.py -------------------------------------------------------------------------------- /examples/Poisson/Periodic/pdeapp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Periodic/pdeapp.txt -------------------------------------------------------------------------------- /examples/Poisson/Periodic/pdemodel.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Periodic/pdemodel.jl -------------------------------------------------------------------------------- /examples/Poisson/Periodic/pdemodel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Periodic/pdemodel.m -------------------------------------------------------------------------------- /examples/Poisson/Periodic/pdemodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/Periodic/pdemodel.py -------------------------------------------------------------------------------- /examples/Poisson/poisson1d/grid.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/poisson1d/grid.bin -------------------------------------------------------------------------------- /examples/Poisson/poisson1d/pdeapp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/poisson1d/pdeapp.m -------------------------------------------------------------------------------- /examples/Poisson/poisson1d/pdeapp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/poisson1d/pdeapp.txt -------------------------------------------------------------------------------- /examples/Poisson/poisson1d/pdemodel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/poisson1d/pdemodel.m -------------------------------------------------------------------------------- /examples/Poisson/poisson2d/f2t.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/poisson2d/f2t.mat -------------------------------------------------------------------------------- /examples/Poisson/poisson2d/fbou.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/poisson2d/fbou.m -------------------------------------------------------------------------------- /examples/Poisson/poisson2d/fhat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/poisson2d/fhat.m -------------------------------------------------------------------------------- /examples/Poisson/poisson2d/flux.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/poisson2d/flux.m -------------------------------------------------------------------------------- /examples/Poisson/poisson2d/grid.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/poisson2d/grid.bin -------------------------------------------------------------------------------- /examples/Poisson/poisson2d/pdeapp.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/poisson2d/pdeapp.jl -------------------------------------------------------------------------------- /examples/Poisson/poisson2d/pdeapp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/poisson2d/pdeapp.m -------------------------------------------------------------------------------- /examples/Poisson/poisson2d/pdeapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/poisson2d/pdeapp.py -------------------------------------------------------------------------------- /examples/Poisson/poisson2d/pdeapp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/poisson2d/pdeapp.txt -------------------------------------------------------------------------------- /examples/Poisson/poisson2d/pdemodel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/poisson2d/pdemodel.m -------------------------------------------------------------------------------- /examples/Poisson/poisson2d/source.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/poisson2d/source.m -------------------------------------------------------------------------------- /examples/Poisson/poisson2d/xdg.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/poisson2d/xdg.bin -------------------------------------------------------------------------------- /examples/Poisson/poisson3d/fbou.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/poisson3d/fbou.m -------------------------------------------------------------------------------- /examples/Poisson/poisson3d/fhat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/poisson3d/fhat.m -------------------------------------------------------------------------------- /examples/Poisson/poisson3d/flux.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/poisson3d/flux.m -------------------------------------------------------------------------------- /examples/Poisson/poisson3d/grid.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/poisson3d/grid.bin -------------------------------------------------------------------------------- /examples/Poisson/poisson3d/pdeapp.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/poisson3d/pdeapp.jl -------------------------------------------------------------------------------- /examples/Poisson/poisson3d/pdeapp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/poisson3d/pdeapp.m -------------------------------------------------------------------------------- /examples/Poisson/poisson3d/pdeapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/poisson3d/pdeapp.py -------------------------------------------------------------------------------- /examples/Poisson/poisson3d/pdeapp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/poisson3d/pdeapp.txt -------------------------------------------------------------------------------- /examples/Poisson/poisson3d/pdemodel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/poisson3d/pdemodel.m -------------------------------------------------------------------------------- /examples/Poisson/poisson3d/source.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Poisson/poisson3d/source.m -------------------------------------------------------------------------------- /examples/RANS/flatplate/evfunc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/RANS/flatplate/evfunc.m -------------------------------------------------------------------------------- /examples/RANS/flatplate/pdeapp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/RANS/flatplate/pdeapp.m -------------------------------------------------------------------------------- /examples/RANS/flatplate/pdemodel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/RANS/flatplate/pdemodel.m -------------------------------------------------------------------------------- /examples/RANS/naca0012/pdeapp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/RANS/naca0012/pdeapp.m -------------------------------------------------------------------------------- /examples/RANS/naca0012/pdemodel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/RANS/naca0012/pdemodel.m -------------------------------------------------------------------------------- /examples/ShallowWater/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/ShallowWater/.DS_Store -------------------------------------------------------------------------------- /examples/SpaceWeather/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/SpaceWeather/.DS_Store -------------------------------------------------------------------------------- /examples/SpaceWeather/Ring2D/euv.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/SpaceWeather/Ring2D/euv.csv -------------------------------------------------------------------------------- /examples/SpaceWeather/Ring2D/pdeapp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/SpaceWeather/Ring2D/pdeapp.m -------------------------------------------------------------------------------- /examples/SpaceWeather/SW1D/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/SpaceWeather/SW1D/.DS_Store -------------------------------------------------------------------------------- /examples/SpaceWeather/SW1D/euv.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/SpaceWeather/SW1D/euv.csv -------------------------------------------------------------------------------- /examples/SpaceWeather/SW1D/pdeapp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/SpaceWeather/SW1D/pdeapp.m -------------------------------------------------------------------------------- /examples/SpaceWeather/SW1D/pdemodel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/SpaceWeather/SW1D/pdemodel.m -------------------------------------------------------------------------------- /examples/SpaceWeather/SW1D/plotpde.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/SpaceWeather/SW1D/plotpde.m -------------------------------------------------------------------------------- /examples/Stokes/Kovasznay/pdeapp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Stokes/Kovasznay/pdeapp.m -------------------------------------------------------------------------------- /examples/Stokes/Kovasznay/pdemodel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Stokes/Kovasznay/pdemodel.m -------------------------------------------------------------------------------- /examples/Stokes/square/pdeapp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Stokes/square/pdeapp.m -------------------------------------------------------------------------------- /examples/Stokes/square/pdemodel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/examples/Stokes/square/pdemodel.m -------------------------------------------------------------------------------- /frontends/Julia/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Julia/.DS_Store -------------------------------------------------------------------------------- /frontends/Julia/Gencode/Gencode.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Julia/Gencode/Gencode.jl -------------------------------------------------------------------------------- /frontends/Julia/Gencode/contains.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Julia/Gencode/contains.jl -------------------------------------------------------------------------------- /frontends/Julia/Gencode/gencodeall.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Julia/Gencode/gencodeall.jl -------------------------------------------------------------------------------- /frontends/Julia/Gencode/gencodebou.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Julia/Gencode/gencodebou.jl -------------------------------------------------------------------------------- /frontends/Julia/Gencode/genlib.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Julia/Gencode/genlib.jl -------------------------------------------------------------------------------- /frontends/Julia/Gencode/getccode.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Julia/Gencode/getccode.jl -------------------------------------------------------------------------------- /frontends/Julia/Gencode/getflux2d.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Julia/Gencode/getflux2d.jl -------------------------------------------------------------------------------- /frontends/Julia/Gencode/nocodeelem.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Julia/Gencode/nocodeelem.jl -------------------------------------------------------------------------------- /frontends/Julia/Gencode/nocodeface.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Julia/Gencode/nocodeface.jl -------------------------------------------------------------------------------- /frontends/Julia/Gencode/runcode.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Julia/Gencode/runcode.jl -------------------------------------------------------------------------------- /frontends/Julia/Gencode/string2cmd.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Julia/Gencode/string2cmd.jl -------------------------------------------------------------------------------- /frontends/Julia/Gencode/syminit.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Julia/Gencode/syminit.jl -------------------------------------------------------------------------------- /frontends/Julia/Gencode/varsassign.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Julia/Gencode/varsassign.jl -------------------------------------------------------------------------------- /frontends/Julia/Mesh/Mesh.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Julia/Mesh/Mesh.jl -------------------------------------------------------------------------------- /frontends/Julia/Mesh/cubemesh.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Julia/Mesh/cubemesh.jl -------------------------------------------------------------------------------- /frontends/Julia/Mesh/gmshcall.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Julia/Mesh/gmshcall.jl -------------------------------------------------------------------------------- /frontends/Julia/Mesh/lshape.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Julia/Mesh/lshape.geo -------------------------------------------------------------------------------- /frontends/Julia/Mesh/lshape.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Julia/Mesh/lshape.msh -------------------------------------------------------------------------------- /frontends/Julia/Mesh/readmesh.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Julia/Mesh/readmesh.jl -------------------------------------------------------------------------------- /frontends/Julia/Mesh/squaremesh.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Julia/Mesh/squaremesh.jl -------------------------------------------------------------------------------- /frontends/Julia/Mesh/writemesh.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Julia/Mesh/writemesh.jl -------------------------------------------------------------------------------- /frontends/Julia/Postprocessing/vis.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Julia/Postprocessing/vis.jl -------------------------------------------------------------------------------- /frontends/Julia/Preprocessing/xiny.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Julia/Preprocessing/xiny.jl -------------------------------------------------------------------------------- /frontends/Matlab/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/.DS_Store -------------------------------------------------------------------------------- /frontends/Matlab/Gencode/gencode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Gencode/gencode.m -------------------------------------------------------------------------------- /frontends/Matlab/Gencode/gencodeall.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Gencode/gencodeall.m -------------------------------------------------------------------------------- /frontends/Matlab/Gencode/gencodebou.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Gencode/gencodebou.m -------------------------------------------------------------------------------- /frontends/Matlab/Gencode/getccode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Gencode/getccode.m -------------------------------------------------------------------------------- /frontends/Matlab/Gencode/hdggencode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Gencode/hdggencode.m -------------------------------------------------------------------------------- /frontends/Matlab/Gencode/kkgencode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Gencode/kkgencode.m -------------------------------------------------------------------------------- /frontends/Matlab/Gencode/nocodeelem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Gencode/nocodeelem.m -------------------------------------------------------------------------------- /frontends/Matlab/Gencode/nocodeface.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Gencode/nocodeface.m -------------------------------------------------------------------------------- /frontends/Matlab/Gencode/runcode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Gencode/runcode.m -------------------------------------------------------------------------------- /frontends/Matlab/Gencode/syminit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Gencode/syminit.m -------------------------------------------------------------------------------- /frontends/Matlab/Gencode/symsassign.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Gencode/symsassign.m -------------------------------------------------------------------------------- /frontends/Matlab/Gencode/varsassign.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Gencode/varsassign.m -------------------------------------------------------------------------------- /frontends/Matlab/HDG/assembleRHS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/HDG/assembleRHS.m -------------------------------------------------------------------------------- /frontends/Matlab/HDG/assemblelRHS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/HDG/assemblelRHS.m -------------------------------------------------------------------------------- /frontends/Matlab/HDG/block_ilu0.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/HDG/block_ilu0.m -------------------------------------------------------------------------------- /frontends/Matlab/HDG/blockjacobi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/HDG/blockjacobi.m -------------------------------------------------------------------------------- /frontends/Matlab/HDG/cgpoisson.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/HDG/cgpoisson.m -------------------------------------------------------------------------------- /frontends/Matlab/HDG/compareexasim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/HDG/compareexasim.m -------------------------------------------------------------------------------- /frontends/Matlab/HDG/crs2full.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/HDG/crs2full.m -------------------------------------------------------------------------------- /frontends/Matlab/HDG/crs_assembly.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/HDG/crs_assembly.m -------------------------------------------------------------------------------- /frontends/Matlab/HDG/crs_blockilu0.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/HDG/crs_blockilu0.m -------------------------------------------------------------------------------- /frontends/Matlab/HDG/crs_hdg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/HDG/crs_hdg.m -------------------------------------------------------------------------------- /frontends/Matlab/HDG/faceextract.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/HDG/faceextract.m -------------------------------------------------------------------------------- /frontends/Matlab/HDG/facegeom.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/HDG/facegeom.m -------------------------------------------------------------------------------- /frontends/Matlab/HDG/faceinsert.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/HDG/faceinsert.m -------------------------------------------------------------------------------- /frontends/Matlab/HDG/facereordering.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/HDG/facereordering.m -------------------------------------------------------------------------------- /frontends/Matlab/HDG/hdgdirk.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/HDG/hdgdirk.m -------------------------------------------------------------------------------- /frontends/Matlab/HDG/hdggmres.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/HDG/hdggmres.m -------------------------------------------------------------------------------- /frontends/Matlab/HDG/hdgmatvec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/HDG/hdgmatvec.m -------------------------------------------------------------------------------- /frontends/Matlab/HDG/hdgmesh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/HDG/hdgmesh.m -------------------------------------------------------------------------------- /frontends/Matlab/HDG/hdgsolve.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/HDG/hdgsolve.m -------------------------------------------------------------------------------- /frontends/Matlab/HDG/inituhat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/HDG/inituhat.m -------------------------------------------------------------------------------- /frontends/Matlab/HDG/mapContractK.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/HDG/mapContractK.m -------------------------------------------------------------------------------- /frontends/Matlab/HDG/matrix_compute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/HDG/matrix_compute.m -------------------------------------------------------------------------------- /frontends/Matlab/HDG/nodes2indices.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/HDG/nodes2indices.m -------------------------------------------------------------------------------- /frontends/Matlab/HDG/pathapply.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/HDG/pathapply.m -------------------------------------------------------------------------------- /frontends/Matlab/HDG/pathapply2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/HDG/pathapply2.m -------------------------------------------------------------------------------- /frontends/Matlab/HDG/pathcompute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/HDG/pathcompute.m -------------------------------------------------------------------------------- /frontends/Matlab/HDG/pathcompute2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/HDG/pathcompute2.m -------------------------------------------------------------------------------- /frontends/Matlab/HDG/pathextract.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/HDG/pathextract.m -------------------------------------------------------------------------------- /frontends/Matlab/HDG/pathextract2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/HDG/pathextract2.m -------------------------------------------------------------------------------- /frontends/Matlab/HDG/pathinsert.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/HDG/pathinsert.m -------------------------------------------------------------------------------- /frontends/Matlab/HDG/pathinsert2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/HDG/pathinsert2.m -------------------------------------------------------------------------------- /frontends/Matlab/HDG/pathlu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/HDG/pathlu.m -------------------------------------------------------------------------------- /frontends/Matlab/HDG/pathpartition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/HDG/pathpartition.m -------------------------------------------------------------------------------- /frontends/Matlab/HDG/pathreordering.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/HDG/pathreordering.m -------------------------------------------------------------------------------- /frontends/Matlab/HDG/pathsolve.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/HDG/pathsolve.m -------------------------------------------------------------------------------- /frontends/Matlab/HDG/pathsolve2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/HDG/pathsolve2.m -------------------------------------------------------------------------------- /frontends/Matlab/HDG/pathsystem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/HDG/pathsystem.m -------------------------------------------------------------------------------- /frontends/Matlab/HDG/pathsystem2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/HDG/pathsystem2.m -------------------------------------------------------------------------------- /frontends/Matlab/HDG/qequationint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/HDG/qequationint.m -------------------------------------------------------------------------------- /frontends/Matlab/HDG/qequationschur.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/HDG/qequationschur.m -------------------------------------------------------------------------------- /frontends/Matlab/HDG/removenodes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/HDG/removenodes.m -------------------------------------------------------------------------------- /frontends/Matlab/HDG/sortrecurrence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/HDG/sortrecurrence.m -------------------------------------------------------------------------------- /frontends/Matlab/HDG/uequationint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/HDG/uequationint.m -------------------------------------------------------------------------------- /frontends/Matlab/HDG/uequationschur.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/HDG/uequationschur.m -------------------------------------------------------------------------------- /frontends/Matlab/HDG/vector_apply.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/HDG/vector_apply.m -------------------------------------------------------------------------------- /frontends/Matlab/HDG/vector_compute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/HDG/vector_compute.m -------------------------------------------------------------------------------- /frontends/Matlab/HDG/volgeom.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/HDG/volgeom.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/cmesh/block.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/cmesh/block.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/cmesh/cart2dg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/cmesh/cart2dg.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/cmesh/ht13foil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/cmesh/ht13foil -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/cmesh/mapp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/cmesh/mapp.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/cmesh/naca.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/cmesh/naca.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/cmesh/script.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/cmesh/script.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/cmesh/sub2ind.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/cmesh/sub2ind.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/connectmesh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/connectmesh.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/cubemesh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/cubemesh.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/extrudemesh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/extrudemesh.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/fixmesh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/fixmesh.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/gmsh2pq.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/gmsh2pq.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/gmsh2pt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/gmsh2pt.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/gmsh2ptnew.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/gmsh2ptnew.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/gmshcall.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/gmshcall.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/gmshmatlab.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/gmshmatlab.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/gmshwrapper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/gmshwrapper.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/lesmesh/map.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/lesmesh/map.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/linemesh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/linemesh.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/lshapemesh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/lshapemesh.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/meshplot3D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/meshplot3D.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/mkmesh/dpoly.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/mkmesh/dpoly.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/mkmesh/fixp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/mkmesh/fixp.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/mkmesh/mkf2e.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/mkmesh/mkf2e.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/mkmesh/mkf2f.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/mkmesh/mkf2f.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/mkmesh/mkmesh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/mkmesh/mkmesh.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/mkmesh/mkt2e.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/mkmesh/mkt2e.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/mkmesh/mkt2f.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/mkmesh/mkt2f.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/mkmesh/mkt2t.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/mkmesh/mkt2t.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/mkmesh/uniref.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/mkmesh/uniref.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/mkmesh_Lshape.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/mkmesh_Lshape.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/mkmesh_bullet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/mkmesh_bullet.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/mkmesh_circle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/mkmesh_circle.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/mkmesh_cube.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/mkmesh_cube.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/mkmesh_dm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/mkmesh_dm.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/mkmesh_gap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/mkmesh_gap.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/mkmesh_line.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/mkmesh_line.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/mkmesh_naca.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/mkmesh_naca.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/mkmesh_rect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/mkmesh_rect.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/mkmesh_roof.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/mkmesh_roof.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/mkmesh_sd7003.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/mkmesh_sd7003.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/mkmesh_square.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/mkmesh_square.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/poly2gmsh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/poly2gmsh.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/radaptivity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/radaptivity.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/readmesh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/readmesh.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/rectmesh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/rectmesh.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/simpplot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/simpplot.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/simpvol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/simpvol.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/sphereCube.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/sphereCube.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/squaremesh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/squaremesh.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/surfmesh/xm.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/surfmesh/xm.mat -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/uniref.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/uniref.m -------------------------------------------------------------------------------- /frontends/Matlab/Mesh/writemesh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Mesh/writemesh.m -------------------------------------------------------------------------------- /frontends/Matlab/Postprocessing/vis.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Postprocessing/vis.m -------------------------------------------------------------------------------- /frontends/Matlab/Preprocessing/mkf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Preprocessing/mkf.m -------------------------------------------------------------------------------- /frontends/Matlab/Preprocessing/test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Preprocessing/test.m -------------------------------------------------------------------------------- /frontends/Matlab/Preprocessing/xiny.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Preprocessing/xiny.m -------------------------------------------------------------------------------- /frontends/Matlab/STG/calculateEk.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/STG/calculateEk.m -------------------------------------------------------------------------------- /frontends/Matlab/STG/calculatek.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/STG/calculatek.m -------------------------------------------------------------------------------- /frontends/Matlab/STG/fluctvel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/STG/fluctvel.m -------------------------------------------------------------------------------- /frontends/Matlab/STG/freestreamturb.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/STG/freestreamturb.m -------------------------------------------------------------------------------- /frontends/Matlab/STG/interpolate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/STG/interpolate.m -------------------------------------------------------------------------------- /frontends/Matlab/STG/randomgen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/STG/randomgen.m -------------------------------------------------------------------------------- /frontends/Matlab/STG/stg.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/STG/stg.cu -------------------------------------------------------------------------------- /frontends/Matlab/STG/stgcomp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/STG/stgcomp.m -------------------------------------------------------------------------------- /frontends/Matlab/STG/stginit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/STG/stginit.m -------------------------------------------------------------------------------- /frontends/Matlab/STG/wavenumbers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/STG/wavenumbers.m -------------------------------------------------------------------------------- /frontends/Matlab/Utilities/calerror.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Utilities/calerror.m -------------------------------------------------------------------------------- /frontends/Matlab/Utilities/coolwarm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Utilities/coolwarm.m -------------------------------------------------------------------------------- /frontends/Matlab/Utilities/dante.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Utilities/dante.m -------------------------------------------------------------------------------- /frontends/Matlab/Utilities/dg2cg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Utilities/dg2cg.m -------------------------------------------------------------------------------- /frontends/Matlab/Utilities/dg2cg2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Utilities/dg2cg2.m -------------------------------------------------------------------------------- /frontends/Matlab/Utilities/faceplot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Utilities/faceplot.m -------------------------------------------------------------------------------- /frontends/Matlab/Utilities/fieldatx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Utilities/fieldatx.m -------------------------------------------------------------------------------- /frontends/Matlab/Utilities/findex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Utilities/findex.m -------------------------------------------------------------------------------- /frontends/Matlab/Utilities/findxi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Utilities/findxi.m -------------------------------------------------------------------------------- /frontends/Matlab/Utilities/getuhat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Utilities/getuhat.m -------------------------------------------------------------------------------- /frontends/Matlab/Utilities/gradu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Utilities/gradu.m -------------------------------------------------------------------------------- /frontends/Matlab/Utilities/inferno.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Utilities/inferno.m -------------------------------------------------------------------------------- /frontends/Matlab/Utilities/initu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Utilities/initu.m -------------------------------------------------------------------------------- /frontends/Matlab/Utilities/limiting.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Utilities/limiting.m -------------------------------------------------------------------------------- /frontends/Matlab/Utilities/lmax.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Utilities/lmax.m -------------------------------------------------------------------------------- /frontends/Matlab/Utilities/lmin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Utilities/lmin.m -------------------------------------------------------------------------------- /frontends/Matlab/Utilities/logdec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Utilities/logdec.m -------------------------------------------------------------------------------- /frontends/Matlab/Utilities/loginc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Utilities/loginc.m -------------------------------------------------------------------------------- /frontends/Matlab/Utilities/mArrow3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Utilities/mArrow3.m -------------------------------------------------------------------------------- /frontends/Matlab/Utilities/magma.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Utilities/magma.m -------------------------------------------------------------------------------- /frontends/Matlab/Utilities/massinv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Utilities/massinv.m -------------------------------------------------------------------------------- /frontends/Matlab/Utilities/meshdist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Utilities/meshdist.m -------------------------------------------------------------------------------- /frontends/Matlab/Utilities/meshplot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Utilities/meshplot.m -------------------------------------------------------------------------------- /frontends/Matlab/Utilities/mkmovie.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Utilities/mkmovie.m -------------------------------------------------------------------------------- /frontends/Matlab/Utilities/mkpng.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Utilities/mkpng.m -------------------------------------------------------------------------------- /frontends/Matlab/Utilities/newtonx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Utilities/newtonx.m -------------------------------------------------------------------------------- /frontends/Matlab/Utilities/plasma.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Utilities/plasma.m -------------------------------------------------------------------------------- /frontends/Matlab/Utilities/plotface.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Utilities/plotface.m -------------------------------------------------------------------------------- /frontends/Matlab/Utilities/points.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Utilities/points.m -------------------------------------------------------------------------------- /frontends/Matlab/Utilities/ptplot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Utilities/ptplot.m -------------------------------------------------------------------------------- /frontends/Matlab/Utilities/redblue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Utilities/redblue.m -------------------------------------------------------------------------------- /frontends/Matlab/Utilities/scaplot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Utilities/scaplot.m -------------------------------------------------------------------------------- /frontends/Matlab/Utilities/scaplot3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Utilities/scaplot3.m -------------------------------------------------------------------------------- /frontends/Matlab/Utilities/secplot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Utilities/secplot.m -------------------------------------------------------------------------------- /frontends/Matlab/Utilities/ssplot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Utilities/ssplot.m -------------------------------------------------------------------------------- /frontends/Matlab/Utilities/uhplot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Utilities/uhplot.m -------------------------------------------------------------------------------- /frontends/Matlab/Utilities/viridis.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Utilities/viridis.m -------------------------------------------------------------------------------- /frontends/Matlab/Utilities/volgeom.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/Utilities/volgeom.m -------------------------------------------------------------------------------- /frontends/Matlab/master/errormsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/master/errormsg.cpp -------------------------------------------------------------------------------- /frontends/Matlab/master/gaussQuad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/master/gaussQuad.cpp -------------------------------------------------------------------------------- /frontends/Matlab/master/gaussquad.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/master/gaussquad.m -------------------------------------------------------------------------------- /frontends/Matlab/master/gaussquad1d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/master/gaussquad1d.m -------------------------------------------------------------------------------- /frontends/Matlab/master/gaussquad2d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/master/gaussquad2d.m -------------------------------------------------------------------------------- /frontends/Matlab/master/gaussquad3d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/master/gaussquad3d.m -------------------------------------------------------------------------------- /frontends/Matlab/master/jacobi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/master/jacobi.m -------------------------------------------------------------------------------- /frontends/Matlab/master/koornwinder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/master/koornwinder.m -------------------------------------------------------------------------------- /frontends/Matlab/master/make_master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/master/make_master -------------------------------------------------------------------------------- /frontends/Matlab/master/make_master.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/master/make_master.a -------------------------------------------------------------------------------- /frontends/Matlab/master/make_master.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/master/make_master.o -------------------------------------------------------------------------------- /frontends/Matlab/master/mkmaster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/master/mkmaster.cpp -------------------------------------------------------------------------------- /frontends/Matlab/master/mkmaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/master/mkmaster.h -------------------------------------------------------------------------------- /frontends/Matlab/master/mkmaster.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/master/mkmaster.m -------------------------------------------------------------------------------- /frontends/Matlab/master/mkshape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/master/mkshape.cpp -------------------------------------------------------------------------------- /frontends/Matlab/master/mkshape.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/master/mkshape.m -------------------------------------------------------------------------------- /frontends/Matlab/master/prismshape.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/master/prismshape.m -------------------------------------------------------------------------------- /frontends/Matlab/master/testmaster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/master/testmaster -------------------------------------------------------------------------------- /frontends/Matlab/master/testmaster2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/master/testmaster2 -------------------------------------------------------------------------------- /frontends/Matlab/master/typedefint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/master/typedefint.h -------------------------------------------------------------------------------- /frontends/Matlab/master/validate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/master/validate -------------------------------------------------------------------------------- /frontends/Matlab/master/wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Matlab/master/wrapper.h -------------------------------------------------------------------------------- /frontends/Python/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Python/.DS_Store -------------------------------------------------------------------------------- /frontends/Python/Gencode/Gencode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Python/Gencode/Gencode.py -------------------------------------------------------------------------------- /frontends/Python/Gencode/genlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Python/Gencode/genlib.py -------------------------------------------------------------------------------- /frontends/Python/Gencode/getccode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Python/Gencode/getccode.py -------------------------------------------------------------------------------- /frontends/Python/Gencode/getflux2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Python/Gencode/getflux2d.py -------------------------------------------------------------------------------- /frontends/Python/Gencode/runcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Python/Gencode/runcode.py -------------------------------------------------------------------------------- /frontends/Python/Gencode/syminit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Python/Gencode/syminit.py -------------------------------------------------------------------------------- /frontends/Python/Mesh/Mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Python/Mesh/Mesh.py -------------------------------------------------------------------------------- /frontends/Python/Mesh/cubemesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Python/Mesh/cubemesh.py -------------------------------------------------------------------------------- /frontends/Python/Mesh/cubesphere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Python/Mesh/cubesphere.py -------------------------------------------------------------------------------- /frontends/Python/Mesh/gmshcall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Python/Mesh/gmshcall.py -------------------------------------------------------------------------------- /frontends/Python/Mesh/linemesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Python/Mesh/linemesh.py -------------------------------------------------------------------------------- /frontends/Python/Mesh/lshape.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Python/Mesh/lshape.geo -------------------------------------------------------------------------------- /frontends/Python/Mesh/lshape.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Python/Mesh/lshape.msh -------------------------------------------------------------------------------- /frontends/Python/Mesh/readmesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Python/Mesh/readmesh.py -------------------------------------------------------------------------------- /frontends/Python/Mesh/squaremesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Python/Mesh/squaremesh.py -------------------------------------------------------------------------------- /frontends/Python/Mesh/writemesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/frontends/Python/Mesh/writemesh.py -------------------------------------------------------------------------------- /install/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/install/CMakeLists.txt -------------------------------------------------------------------------------- /install/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/install/Makefile -------------------------------------------------------------------------------- /install/Makefile.builds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/install/Makefile.builds -------------------------------------------------------------------------------- /install/cmakecompile.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/install/cmakecompile.jl -------------------------------------------------------------------------------- /install/cmakecompile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/install/cmakecompile.m -------------------------------------------------------------------------------- /install/compilepdemodel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/install/compilepdemodel.m -------------------------------------------------------------------------------- /install/findinstallexec.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/install/findinstallexec.jl -------------------------------------------------------------------------------- /install/findinstallexec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/install/findinstallexec.m -------------------------------------------------------------------------------- /install/findinstallexec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/install/findinstallexec.py -------------------------------------------------------------------------------- /install/hpc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/install/hpc.txt -------------------------------------------------------------------------------- /install/install.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/install/install.jl -------------------------------------------------------------------------------- /install/install.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/install/install.m -------------------------------------------------------------------------------- /install/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/install/install.py -------------------------------------------------------------------------------- /install/installkokkos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/install/installkokkos.txt -------------------------------------------------------------------------------- /install/setpath.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/install/setpath.jl -------------------------------------------------------------------------------- /install/setpath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/install/setpath.m -------------------------------------------------------------------------------- /install/setpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/install/setpath.py -------------------------------------------------------------------------------- /kokkos/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/CHANGELOG.md -------------------------------------------------------------------------------- /kokkos/CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/CITATION.cff -------------------------------------------------------------------------------- /kokkos/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/CMakeLists.txt -------------------------------------------------------------------------------- /kokkos/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/CONTRIBUTING.md -------------------------------------------------------------------------------- /kokkos/Copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/Copyright.txt -------------------------------------------------------------------------------- /kokkos/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/LICENSE -------------------------------------------------------------------------------- /kokkos/Makefile.builds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/Makefile.builds -------------------------------------------------------------------------------- /kokkos/Makefile.kokkos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/Makefile.kokkos -------------------------------------------------------------------------------- /kokkos/Makefile.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/Makefile.targets -------------------------------------------------------------------------------- /kokkos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/README.md -------------------------------------------------------------------------------- /kokkos/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/SECURITY.md -------------------------------------------------------------------------------- /kokkos/Spack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/Spack.md -------------------------------------------------------------------------------- /kokkos/algorithms/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/algorithms/CMakeLists.txt -------------------------------------------------------------------------------- /kokkos/algorithms/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/algorithms/src/CMakeLists.txt -------------------------------------------------------------------------------- /kokkos/algorithms/src/Kokkos_Sort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/algorithms/src/Kokkos_Sort.hpp -------------------------------------------------------------------------------- /kokkos/algorithms/unit_tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/algorithms/unit_tests/Makefile -------------------------------------------------------------------------------- /kokkos/benchmarks/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/benchmarks/CMakeLists.txt -------------------------------------------------------------------------------- /kokkos/benchmarks/atomic/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | kokkos_add_executable(atomic SOURCES main.cpp) 2 | -------------------------------------------------------------------------------- /kokkos/benchmarks/atomic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/benchmarks/atomic/Makefile -------------------------------------------------------------------------------- /kokkos/benchmarks/atomic/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/benchmarks/atomic/main.cpp -------------------------------------------------------------------------------- /kokkos/benchmarks/gather/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | kokkos_add_executable(gather SOURCES main.cpp) 2 | -------------------------------------------------------------------------------- /kokkos/benchmarks/gather/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/benchmarks/gather/Makefile -------------------------------------------------------------------------------- /kokkos/benchmarks/gather/gather.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/benchmarks/gather/gather.hpp -------------------------------------------------------------------------------- /kokkos/benchmarks/gather/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/benchmarks/gather/main.cpp -------------------------------------------------------------------------------- /kokkos/benchmarks/gups/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/benchmarks/gups/CMakeLists.txt -------------------------------------------------------------------------------- /kokkos/benchmarks/gups/gups.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/benchmarks/gups/gups.cpp -------------------------------------------------------------------------------- /kokkos/benchmarks/policy_performance/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | kokkos_add_executable(policy_performance SOURCES main.cpp) 2 | -------------------------------------------------------------------------------- /kokkos/benchmarks/stream/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/benchmarks/stream/Makefile -------------------------------------------------------------------------------- /kokkos/bin/hpcbind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/bin/hpcbind -------------------------------------------------------------------------------- /kokkos/bin/kokkos_launch_compiler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/bin/kokkos_launch_compiler -------------------------------------------------------------------------------- /kokkos/bin/nvcc_wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/bin/nvcc_wrapper -------------------------------------------------------------------------------- /kokkos/bin/runtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/bin/runtest -------------------------------------------------------------------------------- /kokkos/cmake/Dependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/cmake/Dependencies.cmake -------------------------------------------------------------------------------- /kokkos/cmake/KokkosConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/cmake/KokkosConfig.cmake.in -------------------------------------------------------------------------------- /kokkos/cmake/KokkosCore_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/cmake/KokkosCore_config.h.in -------------------------------------------------------------------------------- /kokkos/cmake/Kokkos_Version_Info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/cmake/Kokkos_Version_Info.hpp -------------------------------------------------------------------------------- /kokkos/cmake/Modules/FindTPLHPX.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/cmake/Modules/FindTPLHPX.cmake -------------------------------------------------------------------------------- /kokkos/cmake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/cmake/README.md -------------------------------------------------------------------------------- /kokkos/cmake/build_env_info.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/cmake/build_env_info.cmake -------------------------------------------------------------------------------- /kokkos/cmake/compile_tests/amd_apu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/cmake/compile_tests/amd_apu.cc -------------------------------------------------------------------------------- /kokkos/cmake/cray.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/cmake/cray.cmake -------------------------------------------------------------------------------- /kokkos/cmake/deps/CUDA.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/cmake/deps/CUDA.cmake -------------------------------------------------------------------------------- /kokkos/cmake/deps/HWLOC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/cmake/deps/HWLOC.cmake -------------------------------------------------------------------------------- /kokkos/cmake/deps/Pthread.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/cmake/deps/Pthread.cmake -------------------------------------------------------------------------------- /kokkos/cmake/deps/quadmath.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/cmake/deps/quadmath.cmake -------------------------------------------------------------------------------- /kokkos/cmake/fake_tribits.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/cmake/fake_tribits.cmake -------------------------------------------------------------------------------- /kokkos/cmake/gnu.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/cmake/gnu.cmake -------------------------------------------------------------------------------- /kokkos/cmake/kokkos_arch.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/cmake/kokkos_arch.cmake -------------------------------------------------------------------------------- /kokkos/cmake/kokkos_check_env.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/cmake/kokkos_check_env.cmake -------------------------------------------------------------------------------- /kokkos/cmake/kokkos_compiler_id.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/cmake/kokkos_compiler_id.cmake -------------------------------------------------------------------------------- /kokkos/cmake/kokkos_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/cmake/kokkos_install.cmake -------------------------------------------------------------------------------- /kokkos/cmake/kokkos_tpls.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/cmake/kokkos_tpls.cmake -------------------------------------------------------------------------------- /kokkos/cmake/kokkos_tribits.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/cmake/kokkos_tribits.cmake -------------------------------------------------------------------------------- /kokkos/cmake/msvc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/cmake/msvc.cmake -------------------------------------------------------------------------------- /kokkos/cmake/pgi.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/cmake/pgi.cmake -------------------------------------------------------------------------------- /kokkos/containers/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/containers/CMakeLists.txt -------------------------------------------------------------------------------- /kokkos/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/core/CMakeLists.txt -------------------------------------------------------------------------------- /kokkos/core/perf_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/core/perf_test/Makefile -------------------------------------------------------------------------------- /kokkos/core/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/core/src/CMakeLists.txt -------------------------------------------------------------------------------- /kokkos/core/src/HIP/Kokkos_HIP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/core/src/HIP/Kokkos_HIP.cpp -------------------------------------------------------------------------------- /kokkos/core/src/HIP/Kokkos_HIP.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/core/src/HIP/Kokkos_HIP.hpp -------------------------------------------------------------------------------- /kokkos/core/src/HPX/Kokkos_HPX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/core/src/HPX/Kokkos_HPX.cpp -------------------------------------------------------------------------------- /kokkos/core/src/HPX/Kokkos_HPX.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/core/src/HPX/Kokkos_HPX.hpp -------------------------------------------------------------------------------- /kokkos/core/src/Kokkos_Abort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/core/src/Kokkos_Abort.hpp -------------------------------------------------------------------------------- /kokkos/core/src/Kokkos_Array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/core/src/Kokkos_Array.hpp -------------------------------------------------------------------------------- /kokkos/core/src/Kokkos_Assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/core/src/Kokkos_Assert.hpp -------------------------------------------------------------------------------- /kokkos/core/src/Kokkos_Atomic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/core/src/Kokkos_Atomic.hpp -------------------------------------------------------------------------------- /kokkos/core/src/Kokkos_Clamp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/core/src/Kokkos_Clamp.hpp -------------------------------------------------------------------------------- /kokkos/core/src/Kokkos_Complex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/core/src/Kokkos_Complex.hpp -------------------------------------------------------------------------------- /kokkos/core/src/Kokkos_Core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/core/src/Kokkos_Core.hpp -------------------------------------------------------------------------------- /kokkos/core/src/Kokkos_Crs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/core/src/Kokkos_Crs.hpp -------------------------------------------------------------------------------- /kokkos/core/src/Kokkos_Extents.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/core/src/Kokkos_Extents.hpp -------------------------------------------------------------------------------- /kokkos/core/src/Kokkos_Future.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/core/src/Kokkos_Future.hpp -------------------------------------------------------------------------------- /kokkos/core/src/Kokkos_Graph.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/core/src/Kokkos_Graph.hpp -------------------------------------------------------------------------------- /kokkos/core/src/Kokkos_Half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/core/src/Kokkos_Half.hpp -------------------------------------------------------------------------------- /kokkos/core/src/Kokkos_Layout.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/core/src/Kokkos_Layout.hpp -------------------------------------------------------------------------------- /kokkos/core/src/Kokkos_Macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/core/src/Kokkos_Macros.hpp -------------------------------------------------------------------------------- /kokkos/core/src/Kokkos_MinMax.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/core/src/Kokkos_MinMax.hpp -------------------------------------------------------------------------------- /kokkos/core/src/Kokkos_Pair.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/core/src/Kokkos_Pair.hpp -------------------------------------------------------------------------------- /kokkos/core/src/Kokkos_Printf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/core/src/Kokkos_Printf.hpp -------------------------------------------------------------------------------- /kokkos/core/src/Kokkos_Rank.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/core/src/Kokkos_Rank.hpp -------------------------------------------------------------------------------- /kokkos/core/src/Kokkos_Swap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/core/src/Kokkos_Swap.hpp -------------------------------------------------------------------------------- /kokkos/core/src/Kokkos_Timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/core/src/Kokkos_Timer.hpp -------------------------------------------------------------------------------- /kokkos/core/src/Kokkos_Tuners.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/core/src/Kokkos_Tuners.hpp -------------------------------------------------------------------------------- /kokkos/core/src/Kokkos_View.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/core/src/Kokkos_View.hpp -------------------------------------------------------------------------------- /kokkos/core/src/Kokkos_hwloc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/core/src/Kokkos_hwloc.hpp -------------------------------------------------------------------------------- /kokkos/core/unit_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/core/unit_test/Makefile -------------------------------------------------------------------------------- /kokkos/core/unit_test/TestCrs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/core/unit_test/TestCrs.hpp -------------------------------------------------------------------------------- /kokkos/core/unit_test/TestSwap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/core/unit_test/TestSwap.hpp -------------------------------------------------------------------------------- /kokkos/core/unit_test/TestTeam.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/core/unit_test/TestTeam.hpp -------------------------------------------------------------------------------- /kokkos/core/unit_test/tools/TestCInterface.c: -------------------------------------------------------------------------------- 1 | #include 2 | int main() {} 3 | -------------------------------------------------------------------------------- /kokkos/doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/doc/Doxyfile -------------------------------------------------------------------------------- /kokkos/doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/doc/README.md -------------------------------------------------------------------------------- /kokkos/doc/TuningDesign.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/doc/TuningDesign.md -------------------------------------------------------------------------------- /kokkos/doc/build_docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/doc/build_docs -------------------------------------------------------------------------------- /kokkos/doc/index.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/doc/index.doc -------------------------------------------------------------------------------- /kokkos/example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/example/CMakeLists.txt -------------------------------------------------------------------------------- /kokkos/example/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/example/README -------------------------------------------------------------------------------- /kokkos/example/tutorial/Algorithms/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | kokkos_add_example_directories(01_random_numbers) 2 | -------------------------------------------------------------------------------- /kokkos/example/tutorial/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/example/tutorial/Makefile -------------------------------------------------------------------------------- /kokkos/example/tutorial/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/example/tutorial/README -------------------------------------------------------------------------------- /kokkos/generate_makefile.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/generate_makefile.bash -------------------------------------------------------------------------------- /kokkos/gnu_generate_makefile.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/gnu_generate_makefile.bash -------------------------------------------------------------------------------- /kokkos/master_history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/master_history.txt -------------------------------------------------------------------------------- /kokkos/simd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/simd/CMakeLists.txt -------------------------------------------------------------------------------- /kokkos/simd/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/simd/src/CMakeLists.txt -------------------------------------------------------------------------------- /kokkos/simd/src/Kokkos_SIMD.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/simd/src/Kokkos_SIMD.hpp -------------------------------------------------------------------------------- /kokkos/tpls/gtest/gtest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/tpls/gtest/gtest/LICENSE -------------------------------------------------------------------------------- /kokkos/tpls/gtest/gtest/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/tpls/gtest/gtest/README -------------------------------------------------------------------------------- /kokkos/tpls/gtest/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/kokkos/tpls/gtest/gtest/gtest.h -------------------------------------------------------------------------------- /text2code/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/CMakeLists.txt -------------------------------------------------------------------------------- /text2code/GKlib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/GKlib/.gitignore -------------------------------------------------------------------------------- /text2code/GKlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/GKlib/CMakeLists.txt -------------------------------------------------------------------------------- /text2code/GKlib/GKlibConfig.cmake.in: -------------------------------------------------------------------------------- 1 | include(${CMAKE_CURRENT_LIST_DIR}/GKlibTargets.cmake) 2 | -------------------------------------------------------------------------------- /text2code/GKlib/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/GKlib/LICENSE.txt -------------------------------------------------------------------------------- /text2code/GKlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/GKlib/Makefile -------------------------------------------------------------------------------- /text2code/GKlib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/GKlib/README.md -------------------------------------------------------------------------------- /text2code/GKlib/apps/cmpnbrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/GKlib/apps/cmpnbrs.c -------------------------------------------------------------------------------- /text2code/GKlib/apps/csrcnv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/GKlib/apps/csrcnv.c -------------------------------------------------------------------------------- /text2code/GKlib/apps/fis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/GKlib/apps/fis.c -------------------------------------------------------------------------------- /text2code/GKlib/apps/gkgraph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/GKlib/apps/gkgraph.c -------------------------------------------------------------------------------- /text2code/GKlib/apps/gkrw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/GKlib/apps/gkrw.c -------------------------------------------------------------------------------- /text2code/GKlib/apps/gksort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/GKlib/apps/gksort.c -------------------------------------------------------------------------------- /text2code/GKlib/apps/gkuniq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/GKlib/apps/gkuniq.c -------------------------------------------------------------------------------- /text2code/GKlib/apps/grKx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/GKlib/apps/grKx.c -------------------------------------------------------------------------------- /text2code/GKlib/apps/m2mnbrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/GKlib/apps/m2mnbrs.c -------------------------------------------------------------------------------- /text2code/GKlib/apps/splatt2svd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/GKlib/apps/splatt2svd.c -------------------------------------------------------------------------------- /text2code/GKlib/apps/strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/GKlib/apps/strings.c -------------------------------------------------------------------------------- /text2code/GKlib/include/GKlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/GKlib/include/GKlib.h -------------------------------------------------------------------------------- /text2code/GKlib/include/gk_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/GKlib/include/gk_arch.h -------------------------------------------------------------------------------- /text2code/GKlib/include/gk_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/GKlib/include/gk_defs.h -------------------------------------------------------------------------------- /text2code/GKlib/include/gk_proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/GKlib/include/gk_proto.h -------------------------------------------------------------------------------- /text2code/GKlib/include/gk_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/GKlib/include/gk_types.h -------------------------------------------------------------------------------- /text2code/GKlib/include/gkregex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/GKlib/include/gkregex.h -------------------------------------------------------------------------------- /text2code/GKlib/scripts/gexpand.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/GKlib/scripts/gexpand.pl -------------------------------------------------------------------------------- /text2code/GKlib/src/b64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/GKlib/src/b64.c -------------------------------------------------------------------------------- /text2code/GKlib/src/blas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/GKlib/src/blas.c -------------------------------------------------------------------------------- /text2code/GKlib/src/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/GKlib/src/cache.c -------------------------------------------------------------------------------- /text2code/GKlib/src/csr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/GKlib/src/csr.c -------------------------------------------------------------------------------- /text2code/GKlib/src/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/GKlib/src/error.c -------------------------------------------------------------------------------- /text2code/GKlib/src/evaluate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/GKlib/src/evaluate.c -------------------------------------------------------------------------------- /text2code/GKlib/src/fkvkselect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/GKlib/src/fkvkselect.c -------------------------------------------------------------------------------- /text2code/GKlib/src/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/GKlib/src/fs.c -------------------------------------------------------------------------------- /text2code/GKlib/src/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/GKlib/src/getopt.c -------------------------------------------------------------------------------- /text2code/GKlib/src/gk_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/GKlib/src/gk_util.c -------------------------------------------------------------------------------- /text2code/GKlib/src/gkregex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/GKlib/src/gkregex.c -------------------------------------------------------------------------------- /text2code/GKlib/src/graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/GKlib/src/graph.c -------------------------------------------------------------------------------- /text2code/GKlib/src/htable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/GKlib/src/htable.c -------------------------------------------------------------------------------- /text2code/GKlib/src/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/GKlib/src/io.c -------------------------------------------------------------------------------- /text2code/GKlib/src/itemsets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/GKlib/src/itemsets.c -------------------------------------------------------------------------------- /text2code/GKlib/src/mcore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/GKlib/src/mcore.c -------------------------------------------------------------------------------- /text2code/GKlib/src/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/GKlib/src/memory.c -------------------------------------------------------------------------------- /text2code/GKlib/src/pqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/GKlib/src/pqueue.c -------------------------------------------------------------------------------- /text2code/GKlib/src/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/GKlib/src/random.c -------------------------------------------------------------------------------- /text2code/GKlib/src/rw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/GKlib/src/rw.c -------------------------------------------------------------------------------- /text2code/GKlib/src/seq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/GKlib/src/seq.c -------------------------------------------------------------------------------- /text2code/GKlib/src/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/GKlib/src/sort.c -------------------------------------------------------------------------------- /text2code/GKlib/src/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/GKlib/src/string.c -------------------------------------------------------------------------------- /text2code/GKlib/src/timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/GKlib/src/timers.c -------------------------------------------------------------------------------- /text2code/GKlib/src/tokenizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/GKlib/src/tokenizer.c -------------------------------------------------------------------------------- /text2code/GKlib/src/win32/adapt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/GKlib/src/win32/adapt.c -------------------------------------------------------------------------------- /text2code/METIS/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/.gitignore -------------------------------------------------------------------------------- /text2code/METIS/.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /text2code/METIS/BUILD-Windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/BUILD-Windows.txt -------------------------------------------------------------------------------- /text2code/METIS/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/CMakeLists.txt -------------------------------------------------------------------------------- /text2code/METIS/Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/Changelog -------------------------------------------------------------------------------- /text2code/METIS/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/LICENSE -------------------------------------------------------------------------------- /text2code/METIS/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/Makefile -------------------------------------------------------------------------------- /text2code/METIS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/README.md -------------------------------------------------------------------------------- /text2code/METIS/conf/gkbuild.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/conf/gkbuild.cmake -------------------------------------------------------------------------------- /text2code/METIS/graphs/4elt.graph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/graphs/4elt.graph -------------------------------------------------------------------------------- /text2code/METIS/graphs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/graphs/README -------------------------------------------------------------------------------- /text2code/METIS/graphs/mdual.graph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/graphs/mdual.graph -------------------------------------------------------------------------------- /text2code/METIS/graphs/metis.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/graphs/metis.mesh -------------------------------------------------------------------------------- /text2code/METIS/graphs/test.mgraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/graphs/test.mgraph -------------------------------------------------------------------------------- /text2code/METIS/include/metis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/include/metis.h -------------------------------------------------------------------------------- /text2code/METIS/libmetis/auxapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/libmetis/auxapi.c -------------------------------------------------------------------------------- /text2code/METIS/libmetis/balance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/libmetis/balance.c -------------------------------------------------------------------------------- /text2code/METIS/libmetis/coarsen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/libmetis/coarsen.c -------------------------------------------------------------------------------- /text2code/METIS/libmetis/contig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/libmetis/contig.c -------------------------------------------------------------------------------- /text2code/METIS/libmetis/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/libmetis/debug.c -------------------------------------------------------------------------------- /text2code/METIS/libmetis/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/libmetis/defs.h -------------------------------------------------------------------------------- /text2code/METIS/libmetis/fm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/libmetis/fm.c -------------------------------------------------------------------------------- /text2code/METIS/libmetis/fortran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/libmetis/fortran.c -------------------------------------------------------------------------------- /text2code/METIS/libmetis/frename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/libmetis/frename.c -------------------------------------------------------------------------------- /text2code/METIS/libmetis/gklib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/libmetis/gklib.c -------------------------------------------------------------------------------- /text2code/METIS/libmetis/graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/libmetis/graph.c -------------------------------------------------------------------------------- /text2code/METIS/libmetis/kmetis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/libmetis/kmetis.c -------------------------------------------------------------------------------- /text2code/METIS/libmetis/kwayfm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/libmetis/kwayfm.c -------------------------------------------------------------------------------- /text2code/METIS/libmetis/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/libmetis/macros.h -------------------------------------------------------------------------------- /text2code/METIS/libmetis/mcutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/libmetis/mcutil.c -------------------------------------------------------------------------------- /text2code/METIS/libmetis/mesh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/libmetis/mesh.c -------------------------------------------------------------------------------- /text2code/METIS/libmetis/minconn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/libmetis/minconn.c -------------------------------------------------------------------------------- /text2code/METIS/libmetis/mmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/libmetis/mmd.c -------------------------------------------------------------------------------- /text2code/METIS/libmetis/ometis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/libmetis/ometis.c -------------------------------------------------------------------------------- /text2code/METIS/libmetis/options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/libmetis/options.c -------------------------------------------------------------------------------- /text2code/METIS/libmetis/pmetis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/libmetis/pmetis.c -------------------------------------------------------------------------------- /text2code/METIS/libmetis/proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/libmetis/proto.h -------------------------------------------------------------------------------- /text2code/METIS/libmetis/refine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/libmetis/refine.c -------------------------------------------------------------------------------- /text2code/METIS/libmetis/rename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/libmetis/rename.h -------------------------------------------------------------------------------- /text2code/METIS/libmetis/sfm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/libmetis/sfm.c -------------------------------------------------------------------------------- /text2code/METIS/libmetis/srefine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/libmetis/srefine.c -------------------------------------------------------------------------------- /text2code/METIS/libmetis/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/libmetis/stat.c -------------------------------------------------------------------------------- /text2code/METIS/libmetis/struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/libmetis/struct.h -------------------------------------------------------------------------------- /text2code/METIS/libmetis/timing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/libmetis/timing.c -------------------------------------------------------------------------------- /text2code/METIS/libmetis/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/libmetis/util.c -------------------------------------------------------------------------------- /text2code/METIS/libmetis/wspace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/libmetis/wspace.c -------------------------------------------------------------------------------- /text2code/METIS/manual/manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/manual/manual.pdf -------------------------------------------------------------------------------- /text2code/METIS/programs/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/programs/defs.h -------------------------------------------------------------------------------- /text2code/METIS/programs/gpmetis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/programs/gpmetis.c -------------------------------------------------------------------------------- /text2code/METIS/programs/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/programs/io.c -------------------------------------------------------------------------------- /text2code/METIS/programs/mpmetis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/programs/mpmetis.c -------------------------------------------------------------------------------- /text2code/METIS/programs/ndmetis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/programs/ndmetis.c -------------------------------------------------------------------------------- /text2code/METIS/programs/proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/programs/proto.h -------------------------------------------------------------------------------- /text2code/METIS/programs/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/programs/stat.c -------------------------------------------------------------------------------- /text2code/METIS/programs/struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/programs/struct.h -------------------------------------------------------------------------------- /text2code/METIS/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/test/Makefile -------------------------------------------------------------------------------- /text2code/METIS/test/mtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/test/mtest.c -------------------------------------------------------------------------------- /text2code/METIS/test/proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/test/proto.h -------------------------------------------------------------------------------- /text2code/METIS/utils/mkdist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/utils/mkdist.sh -------------------------------------------------------------------------------- /text2code/METIS/utils/s+r.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/utils/s+r.sh -------------------------------------------------------------------------------- /text2code/METIS/vsgen.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/METIS/vsgen.bat -------------------------------------------------------------------------------- /text2code/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/Makefile -------------------------------------------------------------------------------- /text2code/ParMETIS/BUILD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/ParMETIS/BUILD.txt -------------------------------------------------------------------------------- /text2code/ParMETIS/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/ParMETIS/CMakeLists.txt -------------------------------------------------------------------------------- /text2code/ParMETIS/Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/ParMETIS/Changelog -------------------------------------------------------------------------------- /text2code/ParMETIS/Install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/ParMETIS/Install.txt -------------------------------------------------------------------------------- /text2code/ParMETIS/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/ParMETIS/LICENSE -------------------------------------------------------------------------------- /text2code/ParMETIS/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/ParMETIS/Makefile -------------------------------------------------------------------------------- /text2code/ParMETIS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/ParMETIS/README.md -------------------------------------------------------------------------------- /text2code/ParMETIS/bin/pm_dglpart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/ParMETIS/bin/pm_dglpart -------------------------------------------------------------------------------- /text2code/ParMETIS/bin/pm_mtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/ParMETIS/bin/pm_mtest -------------------------------------------------------------------------------- /text2code/ParMETIS/bin/pm_parmetis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/ParMETIS/bin/pm_parmetis -------------------------------------------------------------------------------- /text2code/ParMETIS/bin/pm_pometis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/ParMETIS/bin/pm_pometis -------------------------------------------------------------------------------- /text2code/ParMETIS/bin/pm_ptest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/ParMETIS/bin/pm_ptest -------------------------------------------------------------------------------- /text2code/ParMETIS/include/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | install(FILES parmetis.h DESTINATION include) -------------------------------------------------------------------------------- /text2code/ParMETIS/programs/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/ParMETIS/programs/io.c -------------------------------------------------------------------------------- /text2code/install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/install.txt -------------------------------------------------------------------------------- /text2code/symengine/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/symengine/AUTHORS -------------------------------------------------------------------------------- /text2code/symengine/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/symengine/CMakeLists.txt -------------------------------------------------------------------------------- /text2code/symengine/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/symengine/LICENSE -------------------------------------------------------------------------------- /text2code/symengine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/symengine/README.md -------------------------------------------------------------------------------- /text2code/symengine/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/symengine/appveyor.yml -------------------------------------------------------------------------------- /text2code/symengine/boost/any.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/symengine/boost/any.hpp -------------------------------------------------------------------------------- /text2code/symengine/boost/asio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/symengine/boost/asio.hpp -------------------------------------------------------------------------------- /text2code/symengine/boost/bind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/symengine/boost/bind.hpp -------------------------------------------------------------------------------- /text2code/symengine/boost/cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/symengine/boost/cast.hpp -------------------------------------------------------------------------------- /text2code/symengine/boost/crc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/symengine/boost/crc.hpp -------------------------------------------------------------------------------- /text2code/symengine/boost/dll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/symengine/boost/dll.hpp -------------------------------------------------------------------------------- /text2code/symengine/boost/gil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/symengine/boost/gil.hpp -------------------------------------------------------------------------------- /text2code/symengine/boost/hana.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/symengine/boost/hana.hpp -------------------------------------------------------------------------------- /text2code/symengine/boost/hof.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/symengine/boost/hof.hpp -------------------------------------------------------------------------------- /text2code/symengine/boost/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/symengine/boost/json.hpp -------------------------------------------------------------------------------- /text2code/symengine/boost/leaf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/symengine/boost/leaf.hpp -------------------------------------------------------------------------------- /text2code/symengine/boost/mp11.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/symengine/boost/mp11.hpp -------------------------------------------------------------------------------- /text2code/symengine/boost/mpi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/symengine/boost/mpi.hpp -------------------------------------------------------------------------------- /text2code/symengine/boost/none.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/symengine/boost/none.hpp -------------------------------------------------------------------------------- /text2code/symengine/boost/pfr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/symengine/boost/pfr.hpp -------------------------------------------------------------------------------- /text2code/symengine/boost/predef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/symengine/boost/predef.h -------------------------------------------------------------------------------- /text2code/symengine/boost/qvm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/symengine/boost/qvm.hpp -------------------------------------------------------------------------------- /text2code/symengine/boost/ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/symengine/boost/ref.hpp -------------------------------------------------------------------------------- /text2code/symengine/boost/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/symengine/boost/regex.h -------------------------------------------------------------------------------- /text2code/symengine/boost/swap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/symengine/boost/swap.hpp -------------------------------------------------------------------------------- /text2code/symengine/boost/type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/symengine/boost/type.hpp -------------------------------------------------------------------------------- /text2code/symengine/boost/url.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/symengine/boost/url.hpp -------------------------------------------------------------------------------- /text2code/symengine/boost/wave.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/symengine/boost/wave.hpp -------------------------------------------------------------------------------- /text2code/symengine/cmake/checkclang.cpp: -------------------------------------------------------------------------------- 1 | #include "math.h" 2 | -------------------------------------------------------------------------------- /text2code/symengine/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/symengine/codecov.yml -------------------------------------------------------------------------------- /text2code/symengine/docs/Doxygen/doxyYoda/version.txt: -------------------------------------------------------------------------------- 1 | 0.0.2 2 | -------------------------------------------------------------------------------- /text2code/symengine/symengine/utilities/catch/.gitattributes: -------------------------------------------------------------------------------- 1 | catch.hpp binary 2 | -------------------------------------------------------------------------------- /text2code/symengine/symengine/utilities/matchpycpp/tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /text2code/text2code/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/text2code/.DS_Store -------------------------------------------------------------------------------- /text2code/text2code/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/text2code/CMakeLists.txt -------------------------------------------------------------------------------- /text2code/text2code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/text2code/README.md -------------------------------------------------------------------------------- /text2code/text2code/TextParser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/text2code/TextParser.hpp -------------------------------------------------------------------------------- /text2code/text2code/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/text2code/doxyfile -------------------------------------------------------------------------------- /text2code/text2code/gaussnodes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/text2code/gaussnodes.bin -------------------------------------------------------------------------------- /text2code/text2code/grid.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/text2code/grid.bin -------------------------------------------------------------------------------- /text2code/text2code/helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/text2code/helpers.cpp -------------------------------------------------------------------------------- /text2code/text2code/makemaster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/text2code/makemaster.cpp -------------------------------------------------------------------------------- /text2code/text2code/makemesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/text2code/makemesh.cpp -------------------------------------------------------------------------------- /text2code/text2code/parmetis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/text2code/parmetis.cpp -------------------------------------------------------------------------------- /text2code/text2code/partition.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/text2code/partition.bin -------------------------------------------------------------------------------- /text2code/text2code/pdeapp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/text2code/pdeapp.txt -------------------------------------------------------------------------------- /text2code/text2code/pdemodel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/text2code/pdemodel.txt -------------------------------------------------------------------------------- /text2code/text2code/readmesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/text2code/readmesh.cpp -------------------------------------------------------------------------------- /text2code/text2code/readpdeapp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/text2code/readpdeapp.cpp -------------------------------------------------------------------------------- /text2code/text2code/text2code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/text2code/text2code.cpp -------------------------------------------------------------------------------- /text2code/text2code/tinyexpr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/text2code/tinyexpr.cpp -------------------------------------------------------------------------------- /text2code/text2code/tinyexpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/text2code/tinyexpr.h -------------------------------------------------------------------------------- /text2code/text2code/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exapde/Exasim/HEAD/text2code/text2code/utils.cpp --------------------------------------------------------------------------------