Skip to content

Commit 6f44865

Browse files
authored
Merge pull request #941 from CEED/jrwrigh/doc_fixes
docs: Fix function and API descriptions
2 parents 11dfcfe + 979e564 commit 6f44865

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

doc/sphinx/source/libCEEDapi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@ be added according to demand.
470470
There are two common approaches for supporting non-conforming elements: applying the node constraints via $\bm P$ so that the **L-vector** can be processed uniformly and applying the constraints via $\bm{\mathcal{E}}$ so that the **E-vector** is uniform.
471471
The former can be done with the existing interface while the latter will require a generalization to element restriction that would define field values at constrained nodes as linear combinations of the values at primary nodes.
472472
473-
These operations, $\bm{P}$, $\bm{B}$, and $\bm{D}$,
473+
These operations, $\bm{\mathcal{E}}$, $\bm{B}$, and $\bm{D}$,
474474
are combined with a {ref}`CeedOperator`. As with {ref}`CeedQFunction`s, operator fields are added
475475
separately with a matching field name, basis ($\bm{B}$), element restriction
476476
($\bm{\mathcal{E}}$), and **L-vector**. The flag

interface/ceed-operator.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -653,7 +653,8 @@ int CeedOperatorReferenceCopy(CeedOperator op, CeedOperator *op_copy) {
653653
654654
Active fields must be specified using this function, but their data (in a
655655
CeedVector) is passed in CeedOperatorApply(). There can be at most one active
656-
input and at most one active output.
656+
input CeedVector and at most one active output CeedVector passed to
657+
CeedOperatorApply().
657658
658659
@param op CeedOperator on which to provide the field
659660
@param field_name Name of the field (to be matched with the name used by

0 commit comments

Comments
 (0)