1 // Copyright (C) 2007-2010 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 // Lesser General Public License for more details.
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 // File: GEOMAlgo_Algo.cxx
24 // Created: Sat Dec 04 12:39:47 2004
25 // Author: Peter KURNEV
28 #include <GEOMAlgo_PassKey.ixx>
32 #include <TColStd_ListIteratorOfListOfInteger.hxx>
33 #include <TColStd_ListOfInteger.hxx>
36 #pragma warning( disable : 4101)
40 Standard_Integer NormalizedId(const Standard_Integer aId,
41 const Standard_Integer aDiv);
43 //=======================================================================
46 //=======================================================================
47 GEOMAlgo_PassKey::GEOMAlgo_PassKey()
51 //=======================================================================
54 //=======================================================================
55 GEOMAlgo_PassKey::GEOMAlgo_PassKey(const GEOMAlgo_PassKey& aOther)
57 myNbIds=aOther.myNbIds;
61 //=======================================================================
64 //=======================================================================
65 GEOMAlgo_PassKey& GEOMAlgo_PassKey::Assign(const GEOMAlgo_PassKey& aOther)
67 myNbIds=aOther.myNbIds;
72 //=======================================================================
75 //=======================================================================
76 GEOMAlgo_PassKey::~GEOMAlgo_PassKey()
79 //=======================================================================
82 //=======================================================================
83 void GEOMAlgo_PassKey::Clear()
89 //=======================================================================
92 //=======================================================================
93 void GEOMAlgo_PassKey::SetIds(const Standard_Integer aId1)
99 mySum=NormalizedId(aId1, myNbIds);
101 //=======================================================================
104 //=======================================================================
105 void GEOMAlgo_PassKey::SetIds(const Standard_Integer aId1,
106 const Standard_Integer aId2)
108 TColStd_ListOfInteger aLI;
114 //=======================================================================
117 //=======================================================================
118 void GEOMAlgo_PassKey::SetIds(const Standard_Integer aId1,
119 const Standard_Integer aId2,
120 const Standard_Integer aId3)
122 TColStd_ListOfInteger aLI;
129 //=======================================================================
132 //=======================================================================
133 void GEOMAlgo_PassKey::SetIds(const Standard_Integer aId1,
134 const Standard_Integer aId2,
135 const Standard_Integer aId3,
136 const Standard_Integer aId4)
138 TColStd_ListOfInteger aLI;
146 //=======================================================================
149 //=======================================================================
150 void GEOMAlgo_PassKey::SetIds(const TColStd_ListOfInteger& aLI)
152 Standard_Integer i, aId, aIdN;
153 TColStd_ListIteratorOfListOfInteger aIt;
157 for (; aIt.More(); aIt.Next()) {
161 myNbIds=myMap.Extent();
162 for(i=1; i<=myNbIds; ++i) {
164 aIdN=NormalizedId(aId, myNbIds);
168 //=======================================================================
171 //=======================================================================
172 Standard_Integer GEOMAlgo_PassKey::NbIds()const
176 //=======================================================================
179 //=======================================================================
180 Standard_Integer GEOMAlgo_PassKey::Id(const Standard_Integer aIndex) const
182 if (aIndex<1 || aIndex>myNbIds) {
185 return myMap(aIndex);
187 //=======================================================================
190 //=======================================================================
191 Standard_Boolean GEOMAlgo_PassKey::IsEqual(const GEOMAlgo_PassKey& aOther) const
193 Standard_Boolean bRet;
194 Standard_Integer i, aId;
198 if (myNbIds!=aOther.myNbIds) {
201 for (i=1; i<=myNbIds; ++i) {
203 if (!aOther.myMap.Contains(aId)) {
209 //=======================================================================
210 //function : HashCode
212 //=======================================================================
213 Standard_Integer GEOMAlgo_PassKey::HashCode(const Standard_Integer aUpper) const
215 return ::HashCode(mySum, aUpper);
217 //=======================================================================
220 //=======================================================================
221 void GEOMAlgo_PassKey::Dump(const Standard_Integer )const
224 //=======================================================================
225 // function: NormalizedId
227 //=======================================================================
228 Standard_Integer NormalizedId(const Standard_Integer aId,
229 const Standard_Integer aDiv)
231 Standard_Integer aMax, aTresh, aIdRet;
234 aMax=::IntegerLast();