mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
UIndirectList
This commit is contained in:
@ -212,7 +212,7 @@ void Foam::sampledSets::combineSampledSets
|
||||
(
|
||||
samplePts.name(),
|
||||
samplePts.axis(),
|
||||
IndirectList<point>(allPts, indexSets[seti]),
|
||||
UIndirectList<point>(allPts, indexSets[seti]),
|
||||
refPt
|
||||
)
|
||||
);
|
||||
|
||||
@ -198,8 +198,11 @@ void Foam::sampledSets::combineSampledValues
|
||||
)
|
||||
);
|
||||
|
||||
masterValues[seti] =
|
||||
IndirectList<T>(allData, indexSets[seti])();
|
||||
masterValues[seti] = UIndirectList<T>
|
||||
(
|
||||
allData,
|
||||
indexSets[seti]
|
||||
)();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user