mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: avoid implicit cast of UList to List
This commit is contained in:
@ -78,10 +78,10 @@ Foam::scalarListList Foam::VF::viewFactor2AI::calculate
|
||||
const labelListList& visibleFaceFaces,
|
||||
const pointField& compactCf,
|
||||
const vectorField& compactSf,
|
||||
const List<List<vector>>& compactFineSf,
|
||||
const List<List<point>>& compactFineCf,
|
||||
const DynamicList<List<point>>& compactPoints,
|
||||
const DynamicList<label>& compactPatchId
|
||||
const UList<List<vector>>& compactFineSf,
|
||||
const UList<List<point>>& compactFineCf,
|
||||
const UList<List<point>>& compactPoints,
|
||||
const UList<label>& compactPatchId
|
||||
) const
|
||||
{
|
||||
// Fill local view factor matrix
|
||||
|
||||
@ -85,10 +85,10 @@ protected:
|
||||
const labelListList& visibleFaceFaces,
|
||||
const pointField& compactCf,
|
||||
const vectorField& compactSf,
|
||||
const List<List<vector>>& compactFineSf,
|
||||
const List<List<point>>& compactFineCf,
|
||||
const DynamicList<List<point>>& compactPoints,
|
||||
const DynamicList<label>& compactPatchId
|
||||
const UList<List<vector>>& compactFineSf,
|
||||
const UList<List<point>>& compactFineCf,
|
||||
const UList<List<point>>& compactPoints,
|
||||
const UList<label>& compactPatchId
|
||||
) const;
|
||||
|
||||
|
||||
|
||||
@ -84,10 +84,10 @@ Foam::scalarListList Foam::VF::viewFactor2LI::calculate
|
||||
const labelListList& visibleFaceFaces,
|
||||
const pointField& compactCf,
|
||||
const vectorField& compactSf,
|
||||
const List<List<vector>>& compactFineSf,
|
||||
const List<List<point>>& compactFineCf,
|
||||
const DynamicList<List<point>>& compactPoints,
|
||||
const DynamicList<label>& compactPatchId
|
||||
const UList<List<vector>>& compactFineSf,
|
||||
const UList<List<point>>& compactFineCf,
|
||||
const UList<List<point>>& compactPoints,
|
||||
const UList<label>& compactPatchId
|
||||
) const
|
||||
{
|
||||
// Fill local view factor matrix
|
||||
|
||||
@ -98,10 +98,10 @@ protected:
|
||||
const labelListList& visibleFaceFaces,
|
||||
const pointField& compactCf,
|
||||
const vectorField& compactSf,
|
||||
const List<List<vector>>& compactFineSf,
|
||||
const List<List<point>>& compactFineCf,
|
||||
const DynamicList<List<point>>& compactPoints,
|
||||
const DynamicList<label>& compactPatchId
|
||||
const UList<List<vector>>& compactFineSf,
|
||||
const UList<List<point>>& compactFineCf,
|
||||
const UList<List<point>>& compactPoints,
|
||||
const UList<label>& compactPatchId
|
||||
) const;
|
||||
|
||||
|
||||
|
||||
@ -63,10 +63,10 @@ Foam::scalarListList Foam::VF::viewFactorHottel::calculate
|
||||
const labelListList& visibleFaceFaces,
|
||||
const pointField& compactCf,
|
||||
const vectorField& compactSf,
|
||||
const List<List<vector>>& compactFineSf,
|
||||
const List<List<point>>& compactFineCf,
|
||||
const DynamicList<List<point>>& compactPoints,
|
||||
const DynamicList<label>& compactPatchId
|
||||
const UList<List<vector>>& compactFineSf,
|
||||
const UList<List<point>>& compactFineCf,
|
||||
const UList<List<point>>& compactPoints,
|
||||
const UList<label>& compactPatchId
|
||||
) const
|
||||
{
|
||||
// Fill local view factor matrix
|
||||
|
||||
@ -103,10 +103,10 @@ protected:
|
||||
const labelListList& visibleFaceFaces,
|
||||
const pointField& compactCf,
|
||||
const vectorField& compactSf,
|
||||
const List<List<vector>>& compactFineSf,
|
||||
const List<List<point>>& compactFineCf,
|
||||
const DynamicList<List<point>>& compactPoints,
|
||||
const DynamicList<label>& compactPatchId
|
||||
const UList<List<vector>>& compactFineSf,
|
||||
const UList<List<point>>& compactFineCf,
|
||||
const UList<List<point>>& compactPoints,
|
||||
const UList<label>& compactPatchId
|
||||
) const;
|
||||
|
||||
|
||||
|
||||
@ -117,10 +117,10 @@ protected:
|
||||
const labelListList& visibleFaceFaces,
|
||||
const pointField& compactCoarseCf,
|
||||
const vectorField& compactCoarseSf,
|
||||
const List<List<vector>>& compactFineSf,
|
||||
const List<List<point>>& compactFineCf,
|
||||
const DynamicList<List<point>>& compactPoints,
|
||||
const DynamicList<label>& compactPatchId
|
||||
const UList<List<vector>>& compactFineSf,
|
||||
const UList<List<point>>& compactFineCf,
|
||||
const UList<List<point>>& compactPoints,
|
||||
const labelUList& compactPatchId
|
||||
) const = 0;
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user