mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: ptscotchDecomp : consistent dummy variant
This commit is contained in:
@ -58,13 +58,35 @@ void Foam::ptscotchDecomp::check(const int retVal, const char* str)
|
|||||||
{}
|
{}
|
||||||
|
|
||||||
|
|
||||||
|
Foam::label Foam::ptscotchDecomp::decomposeZeroDomains
|
||||||
|
(
|
||||||
|
const List<int>& initxadj,
|
||||||
|
const List<int>& initadjncy,
|
||||||
|
const scalarField& initcWeights,
|
||||||
|
|
||||||
|
List<int>& finalDecomp
|
||||||
|
) const
|
||||||
|
{
|
||||||
|
FatalErrorIn
|
||||||
|
(
|
||||||
|
"label ptscotchDecomp::decompose"
|
||||||
|
"("
|
||||||
|
"const List<int>&, "
|
||||||
|
"const List<int>&, "
|
||||||
|
"const scalarField&, "
|
||||||
|
"List<int>&"
|
||||||
|
")"
|
||||||
|
) << notImplementedMessage << exit(FatalError);
|
||||||
|
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
Foam::label Foam::ptscotchDecomp::decompose
|
Foam::label Foam::ptscotchDecomp::decompose
|
||||||
(
|
(
|
||||||
List<int>& adjncy,
|
const List<int>& adjncy,
|
||||||
List<int>& xadj,
|
const List<int>& xadj,
|
||||||
const scalarField& cWeights,
|
const scalarField& cWeights,
|
||||||
List<int>& finalDecomp
|
List<int>& finalDecomp
|
||||||
)
|
) const
|
||||||
{
|
{
|
||||||
FatalErrorIn
|
FatalErrorIn
|
||||||
(
|
(
|
||||||
|
|||||||
Reference in New Issue
Block a user