Skip to content

Commit

Permalink
Update classdesc ref.
Browse files Browse the repository at this point in the history
  • Loading branch information
highperformancecoder committed Nov 8, 2024
1 parent 4f8e1aa commit 5694761
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 13 deletions.
2 changes: 1 addition & 1 deletion classdesc
Submodule classdesc updated 1 files
+0 −10 signature.h
5 changes: 0 additions & 5 deletions include/nauty.h
Original file line number Diff line number Diff line change
Expand Up @@ -377,15 +377,10 @@ typedef unsigned long setword;
typedef unsigned int setword;
#define SETWORD_INT
#else
#if SIZEOF_LONG>=8
typedef unsigned long setword;
#define SETWORD_LONG
#else
typedef unsigned long long setword;
#define SETWORD_LONGLONG
#endif
#endif
#endif

#endif /* NAUTY_IN_MAGMA else */

Expand Down
9 changes: 2 additions & 7 deletions include/netcomplexity.h
Original file line number Diff line number Diff line change
Expand Up @@ -74,20 +74,15 @@ namespace ecolab
#if SIZEOF_INT>=8
typedef unsigned int setword;
#define SETWORD_INT
#else
#if SIZEOF_LONG>=8
typedef unsigned long setword;
#define SETWORD_LONG
#else
typedef unsigned long long setword;
#define SETWORD_LONGLONG
#endif
#endif
#endif

#if (WORDSIZE==64)
const setword MSK64=0xFFFFFFFFFFFFFFFFUL;
const setword MSK63C=0x7FFFFFFFFFFFFFFFUL;
const setword MSK64=0xFFFFFFFFFFFFFFFFULL;
const setword MSK63C=0x7FFFFFFFFFFFFFFFULL;
const setword ALLBITS=MSK64;
inline unsigned SETWD(unsigned pos) {return pos>>6;}
inline unsigned SETBT(unsigned pos) {return pos&0x3F;}
Expand Down

0 comments on commit 5694761

Please sign in to comment.