Skip to content

Commit

Permalink
Merge pull request CEED#1425 from CEED/sjg/var-name-consistency
Browse files Browse the repository at this point in the history
Consistency fix for a few missed CeedElemRestriction and CeedBasis variable names in the public API
  • Loading branch information
sebastiangrimberg authored Dec 13, 2023
2 parents 4818fbf + bafebce commit b451d15
Show file tree
Hide file tree
Showing 3 changed files with 103 additions and 103 deletions.
2 changes: 1 addition & 1 deletion include/ceed/ceed.h
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ CEED_EXTERN int CeedOperatorCreate(Ceed ceed, CeedQFunction qf, CeedQFunction dq
CEED_EXTERN int CeedOperatorCreateAtPoints(Ceed ceed, CeedQFunction qf, CeedQFunction dqf, CeedQFunction dqfT, CeedOperator *op);
CEED_EXTERN int CeedCompositeOperatorCreate(Ceed ceed, CeedOperator *op);
CEED_EXTERN int CeedOperatorReferenceCopy(CeedOperator op, CeedOperator *op_copy);
CEED_EXTERN int CeedOperatorSetField(CeedOperator op, const char *field_name, CeedElemRestriction r, CeedBasis b, CeedVector v);
CEED_EXTERN int CeedOperatorSetField(CeedOperator op, const char *field_name, CeedElemRestriction rstr, CeedBasis basis, CeedVector vec);
CEED_EXTERN int CeedOperatorGetFields(CeedOperator op, CeedInt *num_input_fields, CeedOperatorField **input_fields, CeedInt *num_output_fields,
CeedOperatorField **output_fields);

Expand Down
2 changes: 1 addition & 1 deletion interface/ceed-elemrestriction.c
Original file line number Diff line number Diff line change
Expand Up @@ -1257,7 +1257,7 @@ int CeedElemRestrictionApplyBlock(CeedElemRestriction rstr, CeedInt block, CeedT
@brief Get the `Ceed` associated with a `CeedElemRestriction`
@param[in] rstr `CeedElemRestriction`
@param[out] ceed Variable to store `Ceed`
@param[out] ceed Variable to store `Ceed`
@return An error code: 0 - success, otherwise - failure
Expand Down
Loading

0 comments on commit b451d15

Please sign in to comment.