mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
230 lines
5.3 KiB
C++
230 lines
5.3 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
License
|
|
This file is part of OpenFOAM.
|
|
|
|
OpenFOAM is free software: you can redistribute it and/or modify it
|
|
under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
Class
|
|
Foam::Pair
|
|
|
|
Description
|
|
An ordered pair of two objects of type \<T\> with first() and second()
|
|
elements.
|
|
|
|
See also
|
|
Foam::Tuple2 for storing two objects of dissimilar types.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef Pair_H
|
|
#define Pair_H
|
|
|
|
#include "FixedList.H"
|
|
#include "Istream.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
/*---------------------------------------------------------------------------*\
|
|
Class Pair Declaration
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
template<class Type>
|
|
class Pair
|
|
:
|
|
public FixedList<Type, 2>
|
|
{
|
|
|
|
public:
|
|
|
|
// Constructors
|
|
|
|
//- Null constructor
|
|
inline Pair()
|
|
{}
|
|
|
|
//- Construct from components
|
|
inline Pair(const Type& f, const Type& s)
|
|
{
|
|
first() = f;
|
|
second() = s;
|
|
}
|
|
|
|
//- Construct from FixedList
|
|
inline Pair(const FixedList<Type, 2>& lst)
|
|
:
|
|
FixedList<Type, 2>(lst)
|
|
{}
|
|
|
|
//- Construct from Istream
|
|
inline Pair(Istream& is)
|
|
:
|
|
FixedList<Type, 2>(is)
|
|
{}
|
|
|
|
|
|
// Member Functions
|
|
|
|
//- Return first
|
|
inline const Type& first() const
|
|
{
|
|
return this->operator[](0);
|
|
}
|
|
|
|
//- Return first
|
|
inline Type& first()
|
|
{
|
|
return this->operator[](0);
|
|
}
|
|
|
|
//- Return second
|
|
inline const Type& second() const
|
|
{
|
|
return this->operator[](1);
|
|
}
|
|
|
|
//- Return second
|
|
inline Type& second()
|
|
{
|
|
return this->operator[](1);
|
|
}
|
|
|
|
//- Return other
|
|
inline const Type& other(const Type& a) const
|
|
{
|
|
if (first() == second())
|
|
{
|
|
FatalErrorInFunction
|
|
<< "Call to other only valid for Pair with differing"
|
|
<< " elements:" << *this << abort(FatalError);
|
|
}
|
|
else if (first() == a)
|
|
{
|
|
return second();
|
|
}
|
|
else
|
|
{
|
|
if (second() != a)
|
|
{
|
|
FatalErrorInFunction
|
|
<< "Pair " << *this
|
|
<< " does not contain " << a << abort(FatalError);
|
|
}
|
|
return first();
|
|
}
|
|
}
|
|
|
|
|
|
// Comparison
|
|
|
|
//- Compare Pairs
|
|
// Returns:
|
|
// - 0: different
|
|
// - +1: identical values and order used
|
|
// - -1: identical values, but in reversed order
|
|
static inline int compare(const Pair<Type>& a, const Pair<Type>& b)
|
|
{
|
|
if (a[0] == b[0] && a[1] == b[1])
|
|
{
|
|
return 1;
|
|
}
|
|
else if (a[0] == b[1] && a[1] == b[0])
|
|
{
|
|
return -1;
|
|
}
|
|
else
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
};
|
|
|
|
|
|
// * * * * * * * * * * * * * * Global Operators * * * * * * * * * * * * * * //
|
|
|
|
template<class Type>
|
|
Pair<Type> reverse(const Pair<Type>& p)
|
|
{
|
|
return Pair<Type>(p.second(), p.first());
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
bool operator==(const Pair<Type>& a, const Pair<Type>& b)
|
|
{
|
|
return Pair<Type>::compare(a,b) != 0;
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
bool operator!=(const Pair<Type>& a, const Pair<Type>& b)
|
|
{
|
|
return Pair<Type>::compare(a,b) == 0;
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
bool operator<(const Pair<Type>& a, const Pair<Type>& b)
|
|
{
|
|
return
|
|
(
|
|
a.first() < b.first()
|
|
||
|
|
(
|
|
!(b.first() < a.first())
|
|
&& a.second() < b.second()
|
|
)
|
|
);
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
bool operator<=(const Pair<Type>& a, const Pair<Type>& b)
|
|
{
|
|
return !(b < a);
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
bool operator>(const Pair<Type>& a, const Pair<Type>& b)
|
|
{
|
|
return (b < a);
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
bool operator>=(const Pair<Type>& a, const Pair<Type>& b)
|
|
{
|
|
return !(a < b);
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|