umons-dept-comp-sci / PhoegRustGraph

Graph library specialized for small graphs.
3 stars 2 forks source link

Change GraphNauty from using 64 bits words to a more flexible format. #15

Open GauvainD opened 1 year ago

GauvainD commented 1 year ago

Right now, the GraphNauty format uses u64 to store the graphs in bitsets. This makes it incompatible with any 32 bits systems such as wasm. Ideally, we should be able to use other wordsizes and, maybe, allow it to be detected at compile time.