Skip to content
Merged
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
10 changes: 7 additions & 3 deletions src/props/EffectiveDiffusivityHypre.H
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#ifndef EFFECTIVEDIFFUSIVITYHYPRE_H
#define EFFECTIVEDIFFUSIVITYHYPRE_H

Expand Down Expand Up @@ -121,12 +121,16 @@
return HypreStructSolver::hiV(b);
}


private:
// --- Private Methods ---
// Implementation methods. They are nominally internal but must live in
// the public section because nvcc forbids extended __device__ lambdas in
// private/protected member functions (see CUDA Programming Guide §I.4.1).
// Compare TortuosityHypre.H, which exposes the same methods publicly for
// the same reason.
void setupMatrixEquation();
void generateActiveMask(); // Simpler version for D=0/1 based on phase_id


private:
// --- Member Variables ---
// Configuration (solver config m_solvertype/m_eps/m_maxiter/m_verbose are in base class)
std::string m_resultspath;
Expand Down
Loading