Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update doc for adaptVerbose and mark it deprecated #447

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions ma/ma.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,15 @@ void adapt(Input* in);
note that this function will delete the Input object. */
void adapt(const Input* in);
/** \brief adapt verbose for debugging with mutable configuration Input
\details see maInput.h for details. The mesh will be
written (vtk-format) at each operation stage */
void adaptVerbose(Input* in, bool verbosef = false);
\details see maInput.h for details. Additional iteration(s) of refine, snap,
and fixElementShapes are called which can lead to a different mesh than 'adapt'.
The mesh for visualization will be written (vtk-format) at each operation stage. */
void adaptVerbose(Input* in, bool verbosef = false) __attribute__((deprecated));
/** \brief adapt verbose for debugging with unmutable configuration Input
\details see maInput.h for details. The mesh will be
written (vtk-format) at each operation stage */
void adaptVerbose(const Input* in, bool verbosef = false);
\details see maInput.h for details. Additional iteration(s) of refine, snap,
and fixElementShapes are called which can lead to a different mesh than 'adapt'.
The mesh for visualization will be written (vtk-format) at each operation stage. */
void adaptVerbose(const Input* in, bool verbosef = false) __attribute__((deprecated));
/** \brief run uniform refinement, plus snapping and shape correction */
void runUniformRefinement(Mesh* m, int n=1, SolutionTransfer* s=0);
/** \brief run uniform refinement with matched entity support
Expand Down
Loading