combptr.icc
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 namespace Gecode { namespace Int { namespace Distinct {
00023
00024 template <class T>
00025 forceinline
00026 CombPtrFlag<T>::CombPtrFlag(T* p1, T* p2)
00027 : cpf(reinterpret_cast<ptrdiff_t>(p1) ^ reinterpret_cast<ptrdiff_t>(p2)) {}
00028
00029 template <class T>
00030 forceinline T*
00031 CombPtrFlag<T>::ptr(T* p) const {
00032 return reinterpret_cast<T*>((cpf&~1) ^ reinterpret_cast<ptrdiff_t>(p));
00033 }
00034
00035 template <class T>
00036 forceinline int
00037 CombPtrFlag<T>::is_set(void) const {
00038 return static_cast<int>(cpf&1);
00039 }
00040
00041 template <class T>
00042 forceinline void
00043 CombPtrFlag<T>::set(void) {
00044 cpf |= 1;
00045 }
00046
00047 template <class T>
00048 forceinline void
00049 CombPtrFlag<T>::unset(void) {
00050 cpf &= ~1;
00051 }
00052
00053 template <class T>
00054 forceinline void
00055 CombPtrFlag<T>::init(T* p1, T* p2) {
00056 cpf = reinterpret_cast<ptrdiff_t>(p1) ^ reinterpret_cast<ptrdiff_t>(p2);
00057 }
00058
00059 }}}
00060
00061
00062