blob: bab170d122b990c91335a3fab47568c0872aa240 [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
#endif