https://github.com/ASchidler/coloring
Raw File
Tip revision: dd03517187447fd44cfd9f03db6ab7313a21a64a authored by Andre Schidler on 14 March 2022, 12:24:58 UTC
Initial commit
Tip revision: dd03517
planarity.h
//
// Createdhidler on 10/18/21.
//

#ifndef PLANARITY_PLANARITY_H
#define PLANARITY_PLANARITY_H
#include <cctype>
#include <stdint-gcc.h>

typedef uint32_t node_t;
typedef uint16_t color_t;

#define INVALID_NODE UINT32_MAX
#define INVALID_COLOR UINT16_MAX

#endif //PLANARITY_PLANARITY_H
back to top