blob: 2287f33831d69e24c86a6d004d3a49d9d3a67e37 [file] [log] [blame]
#ifndef VTR_LOGIC_H
#define VTR_LOGIC_H
namespace vtr {
enum class LogicValue {
FALSE = 0,
TRUE = 1,
DONT_CARE = 2,
UNKOWN = 3
};
} // namespace vtr
#endif