| 1 |
|
/*========================================================================= |
| 2 |
|
|
| 3 |
|
Program: Insight Segmentation & Registration Toolkit |
| 4 |
|
Module: $RCSfile: itk_hashtable.cxx.html,v $ |
| 5 |
|
Language: C++ |
| 6 |
|
Date: $Date: 2006/01/17 19:15:46 $ |
| 7 |
|
Version: $Revision: 1.4 $ |
| 8 |
|
|
| 9 |
|
Copyright (c) Insight Software Consortium. All rights reserved. |
| 10 |
|
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details. |
| 11 |
|
|
| 12 |
|
This software is distributed WITHOUT ANY WARRANTY; without even |
| 13 |
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 14 |
|
PURPOSE. See the above copyright notices for more information. |
| 15 |
|
|
| 16 |
DEF |
=========================================================================*/ |
| 17 |
|
#include <vcl_compiler.h> |
| 18 |
|
#include "itk_hashtable.h" |
| 19 |
|
namespace itk |
| 20 |
|
{ |
| 21 |
|
|
| 22 |
|
#if ( __STL_STATIC_TEMPLATE_DATA > 0 ) && ! defined (VCL_WIN32) |
| 23 |
|
|
| 24 |
|
|
| 25 |
|
const unsigned long prime<false>::list_[] = |
| 26 |
|
{ |
| 27 |
|
53, 97, 193, 389, 769, |
| 28 |
|
1543, 3079, 6151, 12289, 24593, |
| 29 |
|
49157, 98317, 196613, 393241, 786433, |
| 30 |
|
1572869, 3145739, 6291469, 12582917, 25165843, |
| 31 |
|
50331653, 100663319, 201326611, 402653189, 805306457, |
| 32 |
|
1610612741, 3221225473U, 4294967291U |
| 33 |
|
}; |
| 34 |
|
|
| 35 |
|
|
| 36 |
|
#endif |
| 37 |
|
|
| 38 |
|
}// end namespace itk |
| 39 |
|
|
| 40 |
EOF |
|