We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 284ebda + b5ef662 commit b7a55deCopy full SHA for b7a55de
regression/verilog/enums/enum1.aig.desc
@@ -0,0 +1,11 @@
1
+CORE
2
+enum1.sv
3
+--bound 3 --numbered-trace --aig
4
+^EXIT=10$
5
+^SIGNAL=0$
6
+^\[main\.p1\] always main\.my_light != main.YELLOW2: REFUTED$
7
+^main\.my_light@0 = main\.RED$
8
+^main\.my_light@1 = main\.YELLOW1$
9
+^main\.my_light@2 = main\.GREEN$
10
+^main\.my_light@3 = main\.YELLOW2$
11
+--
src/trans-netlist/trans_to_netlist.cpp
@@ -207,6 +207,8 @@ void convert_trans_to_netlistt::map_vars(
207
else if (symbol.type.id() == ID_module ||
208
symbol.type.id() == ID_module_instance)
209
return; // ignore modules
210
+ else if(symbol.is_type)
211
+ return; // ignore types
212
else if (symbol.is_input)
213
vartype = var_mapt::vart::vartypet::INPUT;
214
else if (symbol.is_state_var)
0 commit comments