Skip to content

Commit 50edd12

Browse files
committed
SMV netlist: use IVAR
The SMV netlist output now uses IVAR for input variables.
1 parent 2be0696 commit 50edd12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/trans-netlist/smv_netlist.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ void smv_netlist(const netlistt &netlist, std::ostream &out)
157157
{
158158
if(var.is_input())
159159
{
160-
out << "VAR " << id2smv(var_it.first);
160+
out << "IVAR " << id2smv(var_it.first);
161161
if(var.bits.size() != 1)
162162
out << "[" << i << "]";
163163
out << ": boolean;" << '\n';

0 commit comments

Comments
 (0)