mehemmedv / DB_Imp_Seminar

Seminar: Techniques for implementing main memory database systems
https://db.in.tum.de/teaching/ws1718/seminarHauptspeicherdbs/?lang=en
4 stars 2 forks source link

Use 64 bit #4

Closed jboettcher closed 7 years ago

jboettcher commented 7 years ago

https://github.com/mehemmedv/DB_Imp_Seminar/blob/836621698043aaebe149080a9ae018ee8af0775a/include/CSRGraph.h#L12

Real world graphs can be very large: thus, it would make sense to use 64 bit unsingned ints instead of signed ints.

We typically use uint64_t (#include )

mehemmedv commented 7 years ago

Resolved.