From 05c8b32098b88d0e7b442b41bca38739c8599adb Mon Sep 17 00:00:00 2001 From: Thomas Gibson <gibsonthomas1120@hotmail.com> Date: Sun, 25 Apr 2021 14:57:43 -0500 Subject: [PATCH] Add DOF descriptions mod to doc builder --- doc/index.rst | 1 + grudge/dof_desc.py | 3 --- grudge/symbolic/operators.py | 4 ++-- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/doc/index.rst b/doc/index.rst index 48d761bd..1e459c7c 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -7,6 +7,7 @@ Contents: :maxdepth: 2 discretization + dof_desc symbolic misc 🚀 Github <https://github.com/inducer/grudge> diff --git a/grudge/dof_desc.py b/grudge/dof_desc.py index 37d7febb..3ea894f7 100644 --- a/grudge/dof_desc.py +++ b/grudge/dof_desc.py @@ -32,9 +32,6 @@ from meshmode.mesh import \ __doc__ = """ -DOF description -^^^^^^^^^^^^^^^ - .. autoclass:: DTAG_SCALAR .. autoclass:: DTAG_VOLUME_ALL .. autoclass:: DTAG_BOUNDARY diff --git a/grudge/symbolic/operators.py b/grudge/symbolic/operators.py index 141090f4..701661ca 100644 --- a/grudge/symbolic/operators.py +++ b/grudge/symbolic/operators.py @@ -92,12 +92,12 @@ class Operator(pymbolic.primitives.Expression): """ .. attribute:: dd_in - an instance of :class:`~grudge.sym.DOFDesc` describing the + an instance of :class:`~grudge.dof_desc.DOFDesc` describing the input discretization. .. attribute:: dd_out - an instance of :class:`~grudge.sym.DOFDesc` describing the + an instance of :class:`~grudge.dof_desc.DOFDesc` describing the output discretization. """ -- GitLab