mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Remove/replace deprecated functions and classes
This commit is contained in:
@ -98,12 +98,6 @@ const Foam::coordinateSystems& Foam::coordinateSystems::New
|
||||
|
||||
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
||||
|
||||
Foam::label Foam::coordinateSystems::find(const keyType& key) const
|
||||
{
|
||||
return findIndex(key);
|
||||
}
|
||||
|
||||
|
||||
Foam::labelList Foam::coordinateSystems::findIndices(const keyType& key) const
|
||||
{
|
||||
labelList indices;
|
||||
|
||||
@ -122,10 +122,6 @@ public:
|
||||
//- Find and return index for the first match, return -1 if not found
|
||||
label findIndex(const keyType& key) const;
|
||||
|
||||
//- Find and return index for the first match, returns -1 if not found
|
||||
// \deprecated use findIndex() instead (deprecated Jul 2010)
|
||||
label find(const keyType& key) const;
|
||||
|
||||
//- Search for given key
|
||||
bool found(const keyType& key) const;
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -113,11 +113,10 @@ public:
|
||||
// Access
|
||||
|
||||
//- Demand driven construction of octree for each region.
|
||||
// @todo Currently creates a tree for each region; could optimise
|
||||
// by only constructing trees when they are in regionIndices
|
||||
// Currently creates a tree for each region; could optimise
|
||||
// by only constructing trees when they are in regionIndices
|
||||
const PtrList<treeType>& treeByRegion() const;
|
||||
|
||||
|
||||
// Query
|
||||
|
||||
//- Find the nearest point on the surface out of the regions
|
||||
|
||||
Reference in New Issue
Block a user