Skip to content

Commit

Permalink
Attempt at fixing docs
Browse files Browse the repository at this point in the history
  • Loading branch information
garth-wells committed Jun 18, 2024
1 parent 461efe0 commit c81beb2
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions cpp/Contact.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,12 @@ class Contact
{
public:
/// Constructor
///
/// @todo Simplify the constructor arguments
///
/// @param[in] markers List of meshtags defining the contact surfaces
/// @param[in] surfaces Adjacency list. Links of i contains meshtag values
/// associated with ith meshtag in markers
/// @param[in] surfaces For surface `i`, `surfaces.links(i)` gives the
/// tag values of the facets in `markers[i]` that make up surface `i`.
/// @param[in] contact_pairs list of pairs (i, j) marking the ith and jth
/// surface in surfaces->array() as a contact pair
/// @param[in] mesh TODO
Expand Down Expand Up @@ -306,7 +309,8 @@ class Contact
// quadrature rule
QuadratureRule _quadrature_rule;

std::vector<int> _surfaces; // meshtag values for surfaces
// meshtag values for surfaces
std::vector<int> _surfaces;

// store index of candidate_surface for each quadrature_surface
std::vector<std::array<int, 2>> _contact_pairs;
Expand Down

0 comments on commit c81beb2

Please sign in to comment.