├── .codecov.yml ├── .coveragerc ├── .github └── workflows │ ├── release.yml │ └── test.yaml ├── .gitignore ├── .readthedocs.yaml ├── CHANGELOG ├── LICENSE ├── README.md ├── devtools ├── __init__.py ├── _git.py ├── _log_default.py ├── _log_gha.py ├── container │ ├── __init__.py │ ├── build.py │ └── build_base.py └── gha │ ├── __init__.py │ ├── api.py │ ├── delete_coverage_artifacts.py │ ├── get_base_and_image_tags.py │ ├── report_coverage.py │ └── unittest.py ├── docs ├── _static │ └── mods.css ├── _templates │ └── breadcrumbs.html ├── conf.py ├── favicon.ico ├── index.rst └── sphinx_mods.py ├── examples ├── __init__.py ├── adaptivity.py ├── burgers.py ├── cahnhilliard.py ├── coil.py ├── cylinderflow.py ├── drivencavity.py ├── elasticity.py ├── finitestrain.py ├── laplace.py ├── platewithhole.py ├── poisson.py ├── torsion.py ├── turek.geo └── turek.py ├── nutils ├── SI.py ├── __init__.py ├── _backports.py ├── _graph.py ├── _pyast.py ├── _util.py ├── cache.py ├── cli.py ├── debug_flags.py ├── element.py ├── elementseq.py ├── evaluable.py ├── export.py ├── expression_v1.py ├── expression_v2.py ├── function.py ├── matrix │ ├── __init__.py │ ├── _auto.py │ ├── _base.py │ ├── _mkl.py │ ├── _numpy.py │ └── _scipy.py ├── mesh.py ├── numeric.py ├── parallel.py ├── points.py ├── pointsseq.py ├── sample.py ├── solver.py ├── testing.py ├── topology.py ├── transform.py ├── transformseq.py ├── types.py ├── unit.py └── warnings.py ├── pyproject.toml └── tests ├── __init__.py ├── test_SI.py ├── test_basis.py ├── test_cache.py ├── test_cli.py ├── test_docs.py ├── test_element.py ├── test_elementseq.py ├── test_evaluable.py ├── test_export.py ├── test_expression_v1.py ├── test_expression_v2.py ├── test_finitecell.py ├── test_function.py ├── test_graph.py ├── test_ischeme.py ├── test_matrix.py ├── test_mesh.py ├── test_mesh ├── mesh2d.geo ├── mesh2d_p1_v2.msh ├── mesh2d_p1_v4.msh ├── mesh2d_p2_v2.msh ├── mesh2d_p2_v4.msh ├── mesh2d_p3_v2.msh ├── mesh2d_p3_v4.msh ├── mesh2d_p4_v2.msh ├── mesh2d_p4_v4.msh ├── mesh3d.geo ├── mesh3d_p1_v2.msh ├── mesh3d_p1_v4.msh ├── mesh3d_p2_v2.msh ├── mesh3d_p2_v4.msh ├── mesh3dmani.geo ├── mesh3dmani_p1_v2.msh ├── mesh3dmani_p1_v4.msh ├── mesh3dmani_p2_v2.msh └── mesh3dmani_p2_v4.msh ├── test_normals.py ├── test_numeric.py ├── test_parallel.py ├── test_points.py ├── test_pointsseq.py ├── test_quadrature.py ├── test_sample.py ├── test_solver.py ├── test_testing.py ├── test_topology.py ├── test_transform.py ├── test_transformseq.py ├── test_types.py ├── test_unit.py ├── test_util.py └── test_warnings.py /.codecov.yml: -------------------------------------------------------------------------------- 1 | comment: off 2 | -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | source = nutils 3 | 4 | [html] 5 | directory = build/coverage/ 6 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/README.md -------------------------------------------------------------------------------- /devtools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/devtools/__init__.py -------------------------------------------------------------------------------- /devtools/_git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/devtools/_git.py -------------------------------------------------------------------------------- /devtools/_log_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/devtools/_log_default.py -------------------------------------------------------------------------------- /devtools/_log_gha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/devtools/_log_gha.py -------------------------------------------------------------------------------- /devtools/container/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/devtools/container/__init__.py -------------------------------------------------------------------------------- /devtools/container/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/devtools/container/build.py -------------------------------------------------------------------------------- /devtools/container/build_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/devtools/container/build_base.py -------------------------------------------------------------------------------- /devtools/gha/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /devtools/gha/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/devtools/gha/api.py -------------------------------------------------------------------------------- /devtools/gha/delete_coverage_artifacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/devtools/gha/delete_coverage_artifacts.py -------------------------------------------------------------------------------- /devtools/gha/get_base_and_image_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/devtools/gha/get_base_and_image_tags.py -------------------------------------------------------------------------------- /devtools/gha/report_coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/devtools/gha/report_coverage.py -------------------------------------------------------------------------------- /devtools/gha/unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/devtools/gha/unittest.py -------------------------------------------------------------------------------- /docs/_static/mods.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/docs/_static/mods.css -------------------------------------------------------------------------------- /docs/_templates/breadcrumbs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/docs/_templates/breadcrumbs.html -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/sphinx_mods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/docs/sphinx_mods.py -------------------------------------------------------------------------------- /examples/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/examples/__init__.py -------------------------------------------------------------------------------- /examples/adaptivity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/examples/adaptivity.py -------------------------------------------------------------------------------- /examples/burgers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/examples/burgers.py -------------------------------------------------------------------------------- /examples/cahnhilliard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/examples/cahnhilliard.py -------------------------------------------------------------------------------- /examples/coil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/examples/coil.py -------------------------------------------------------------------------------- /examples/cylinderflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/examples/cylinderflow.py -------------------------------------------------------------------------------- /examples/drivencavity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/examples/drivencavity.py -------------------------------------------------------------------------------- /examples/elasticity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/examples/elasticity.py -------------------------------------------------------------------------------- /examples/finitestrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/examples/finitestrain.py -------------------------------------------------------------------------------- /examples/laplace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/examples/laplace.py -------------------------------------------------------------------------------- /examples/platewithhole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/examples/platewithhole.py -------------------------------------------------------------------------------- /examples/poisson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/examples/poisson.py -------------------------------------------------------------------------------- /examples/torsion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/examples/torsion.py -------------------------------------------------------------------------------- /examples/turek.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/examples/turek.geo -------------------------------------------------------------------------------- /examples/turek.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/examples/turek.py -------------------------------------------------------------------------------- /nutils/SI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/nutils/SI.py -------------------------------------------------------------------------------- /nutils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/nutils/__init__.py -------------------------------------------------------------------------------- /nutils/_backports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/nutils/_backports.py -------------------------------------------------------------------------------- /nutils/_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/nutils/_graph.py -------------------------------------------------------------------------------- /nutils/_pyast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/nutils/_pyast.py -------------------------------------------------------------------------------- /nutils/_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/nutils/_util.py -------------------------------------------------------------------------------- /nutils/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/nutils/cache.py -------------------------------------------------------------------------------- /nutils/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/nutils/cli.py -------------------------------------------------------------------------------- /nutils/debug_flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/nutils/debug_flags.py -------------------------------------------------------------------------------- /nutils/element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/nutils/element.py -------------------------------------------------------------------------------- /nutils/elementseq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/nutils/elementseq.py -------------------------------------------------------------------------------- /nutils/evaluable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/nutils/evaluable.py -------------------------------------------------------------------------------- /nutils/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/nutils/export.py -------------------------------------------------------------------------------- /nutils/expression_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/nutils/expression_v1.py -------------------------------------------------------------------------------- /nutils/expression_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/nutils/expression_v2.py -------------------------------------------------------------------------------- /nutils/function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/nutils/function.py -------------------------------------------------------------------------------- /nutils/matrix/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/nutils/matrix/__init__.py -------------------------------------------------------------------------------- /nutils/matrix/_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/nutils/matrix/_auto.py -------------------------------------------------------------------------------- /nutils/matrix/_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/nutils/matrix/_base.py -------------------------------------------------------------------------------- /nutils/matrix/_mkl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/nutils/matrix/_mkl.py -------------------------------------------------------------------------------- /nutils/matrix/_numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/nutils/matrix/_numpy.py -------------------------------------------------------------------------------- /nutils/matrix/_scipy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/nutils/matrix/_scipy.py -------------------------------------------------------------------------------- /nutils/mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/nutils/mesh.py -------------------------------------------------------------------------------- /nutils/numeric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/nutils/numeric.py -------------------------------------------------------------------------------- /nutils/parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/nutils/parallel.py -------------------------------------------------------------------------------- /nutils/points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/nutils/points.py -------------------------------------------------------------------------------- /nutils/pointsseq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/nutils/pointsseq.py -------------------------------------------------------------------------------- /nutils/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/nutils/sample.py -------------------------------------------------------------------------------- /nutils/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/nutils/solver.py -------------------------------------------------------------------------------- /nutils/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/nutils/testing.py -------------------------------------------------------------------------------- /nutils/topology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/nutils/topology.py -------------------------------------------------------------------------------- /nutils/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/nutils/transform.py -------------------------------------------------------------------------------- /nutils/transformseq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/nutils/transformseq.py -------------------------------------------------------------------------------- /nutils/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/nutils/types.py -------------------------------------------------------------------------------- /nutils/unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/nutils/unit.py -------------------------------------------------------------------------------- /nutils/warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/nutils/warnings.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_SI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_SI.py -------------------------------------------------------------------------------- /tests/test_basis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_basis.py -------------------------------------------------------------------------------- /tests/test_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_cache.py -------------------------------------------------------------------------------- /tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_cli.py -------------------------------------------------------------------------------- /tests/test_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_docs.py -------------------------------------------------------------------------------- /tests/test_element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_element.py -------------------------------------------------------------------------------- /tests/test_elementseq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_elementseq.py -------------------------------------------------------------------------------- /tests/test_evaluable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_evaluable.py -------------------------------------------------------------------------------- /tests/test_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_export.py -------------------------------------------------------------------------------- /tests/test_expression_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_expression_v1.py -------------------------------------------------------------------------------- /tests/test_expression_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_expression_v2.py -------------------------------------------------------------------------------- /tests/test_finitecell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_finitecell.py -------------------------------------------------------------------------------- /tests/test_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_function.py -------------------------------------------------------------------------------- /tests/test_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_graph.py -------------------------------------------------------------------------------- /tests/test_ischeme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_ischeme.py -------------------------------------------------------------------------------- /tests/test_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_matrix.py -------------------------------------------------------------------------------- /tests/test_mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_mesh.py -------------------------------------------------------------------------------- /tests/test_mesh/mesh2d.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_mesh/mesh2d.geo -------------------------------------------------------------------------------- /tests/test_mesh/mesh2d_p1_v2.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_mesh/mesh2d_p1_v2.msh -------------------------------------------------------------------------------- /tests/test_mesh/mesh2d_p1_v4.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_mesh/mesh2d_p1_v4.msh -------------------------------------------------------------------------------- /tests/test_mesh/mesh2d_p2_v2.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_mesh/mesh2d_p2_v2.msh -------------------------------------------------------------------------------- /tests/test_mesh/mesh2d_p2_v4.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_mesh/mesh2d_p2_v4.msh -------------------------------------------------------------------------------- /tests/test_mesh/mesh2d_p3_v2.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_mesh/mesh2d_p3_v2.msh -------------------------------------------------------------------------------- /tests/test_mesh/mesh2d_p3_v4.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_mesh/mesh2d_p3_v4.msh -------------------------------------------------------------------------------- /tests/test_mesh/mesh2d_p4_v2.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_mesh/mesh2d_p4_v2.msh -------------------------------------------------------------------------------- /tests/test_mesh/mesh2d_p4_v4.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_mesh/mesh2d_p4_v4.msh -------------------------------------------------------------------------------- /tests/test_mesh/mesh3d.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_mesh/mesh3d.geo -------------------------------------------------------------------------------- /tests/test_mesh/mesh3d_p1_v2.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_mesh/mesh3d_p1_v2.msh -------------------------------------------------------------------------------- /tests/test_mesh/mesh3d_p1_v4.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_mesh/mesh3d_p1_v4.msh -------------------------------------------------------------------------------- /tests/test_mesh/mesh3d_p2_v2.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_mesh/mesh3d_p2_v2.msh -------------------------------------------------------------------------------- /tests/test_mesh/mesh3d_p2_v4.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_mesh/mesh3d_p2_v4.msh -------------------------------------------------------------------------------- /tests/test_mesh/mesh3dmani.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_mesh/mesh3dmani.geo -------------------------------------------------------------------------------- /tests/test_mesh/mesh3dmani_p1_v2.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_mesh/mesh3dmani_p1_v2.msh -------------------------------------------------------------------------------- /tests/test_mesh/mesh3dmani_p1_v4.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_mesh/mesh3dmani_p1_v4.msh -------------------------------------------------------------------------------- /tests/test_mesh/mesh3dmani_p2_v2.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_mesh/mesh3dmani_p2_v2.msh -------------------------------------------------------------------------------- /tests/test_mesh/mesh3dmani_p2_v4.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_mesh/mesh3dmani_p2_v4.msh -------------------------------------------------------------------------------- /tests/test_normals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_normals.py -------------------------------------------------------------------------------- /tests/test_numeric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_numeric.py -------------------------------------------------------------------------------- /tests/test_parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_parallel.py -------------------------------------------------------------------------------- /tests/test_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_points.py -------------------------------------------------------------------------------- /tests/test_pointsseq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_pointsseq.py -------------------------------------------------------------------------------- /tests/test_quadrature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_quadrature.py -------------------------------------------------------------------------------- /tests/test_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_sample.py -------------------------------------------------------------------------------- /tests/test_solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_solver.py -------------------------------------------------------------------------------- /tests/test_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_testing.py -------------------------------------------------------------------------------- /tests/test_topology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_topology.py -------------------------------------------------------------------------------- /tests/test_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_transform.py -------------------------------------------------------------------------------- /tests/test_transformseq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_transformseq.py -------------------------------------------------------------------------------- /tests/test_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_types.py -------------------------------------------------------------------------------- /tests/test_unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_unit.py -------------------------------------------------------------------------------- /tests/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_util.py -------------------------------------------------------------------------------- /tests/test_warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evalf/nutils/HEAD/tests/test_warnings.py --------------------------------------------------------------------------------