comb-ptr-flag.hpp /usr/include/gecode/int/view-val-graph.hh Gecode Gecode::Int Gecode::Int::ViewValGraph /*-*-mode:C++;c-basic-offset:2;indent-tabs-mode:nil-*-*/ /* *Mainauthors: *ChristianSchulte<schulte@gecode.org> * *Copyright: *ChristianSchulte,2003 * *Lastmodified: *$Date:2011-08-1721:42:11+0200(Wed,17Aug2011)$by$Author:schulte$ *$Revision:12306$ * *ThisfileispartofGecode,thegenericconstraint *developmentenvironment: *http://www.gecode.org * *Permissionisherebygranted,freeofcharge,toanypersonobtaining *acopyofthissoftwareandassociateddocumentationfiles(the *"Software"),todealintheSoftwarewithoutrestriction,including *withoutlimitationtherightstouse,copy,modify,merge,publish, *distribute,sublicense,and/orsellcopiesoftheSoftware,andto *permitpersonstowhomtheSoftwareisfurnishedtodoso,subjectto *thefollowingconditions: * *Theabovecopyrightnoticeandthispermissionnoticeshallbe *includedinallcopiesorsubstantialportionsoftheSoftware. * *THESOFTWAREISPROVIDED"ASIS",WITHOUTWARRANTYOFANYKIND, *EXPRESSORIMPLIED,INCLUDINGBUTNOTLIMITEDTOTHEWARRANTIESOF *MERCHANTABILITY,FITNESSFORAPARTICULARPURPOSEAND *NONINFRINGEMENT.INNOEVENTSHALLTHEAUTHORSORCOPYRIGHTHOLDERSBE *LIABLEFORANYCLAIM,DAMAGESOROTHERLIABILITY,WHETHERINANACTION *OFCONTRACT,TORTOROTHERWISE,ARISINGFROM,OUTOFORINCONNECTION *WITHTHESOFTWAREORTHEUSEOROTHERDEALINGSINTHESOFTWARE. * */ namespaceGecode{namespaceInt{namespaceViewValGraph{ template<classT> forceinline CombPtrFlag<T>::CombPtrFlag(T*p1,T*p2) :cpf(reinterpret_cast<ptrdiff_t>(p1)^reinterpret_cast<ptrdiff_t>(p2)){} template<classT> forceinlineT* CombPtrFlag<T>::ptr(T*p)const{ returnreinterpret_cast<T*>((cpf&~1)^reinterpret_cast<ptrdiff_t>(p)); } template<classT> forceinlineint CombPtrFlag<T>::is_set(void)const{ returnstatic_cast<int>(cpf&1); } template<classT> forceinlinevoid CombPtrFlag<T>::set(void){ cpf|=1; } template<classT> forceinlinevoid CombPtrFlag<T>::unset(void){ cpf&=~1; } template<classT> forceinlinevoid CombPtrFlag<T>::init(T*p1,T*p2){ cpf=reinterpret_cast<ptrdiff_t>(p1)^reinterpret_cast<ptrdiff_t>(p2); } }}} //STATISTICS:int-prop