Skip to content

Commit 7d99553

Browse files
committed
revert unnecessary changes
1 parent baf4b9e commit 7d99553

File tree

2 files changed

+2
-161
lines changed

2 files changed

+2
-161
lines changed

experiments/abc.cpp

Lines changed: 0 additions & 158 deletions
This file was deleted.

experiments/aqfp_flow_date.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@
4747
#include <mockturtle/io/blif_reader.hpp>
4848
#include <mockturtle/io/verilog_reader.hpp>
4949
#include <mockturtle/io/write_blif.hpp>
50-
#include <mockturtle/io/write_verilog.hpp>
5150
#include <mockturtle/networks/aqfp.hpp>
5251
#include <mockturtle/networks/klut.hpp>
5352
#include <mockturtle/networks/mig.hpp>
@@ -115,10 +114,10 @@ bool has_better_level( Result& current, Result& previous )
115114
template<typename Ntk>
116115
mockturtle::klut_network lut_map_abc( Ntk const& ntk, uint32_t k = 4, std::string name = {} )
117116
{
118-
std::string tempfile1 = "temp1_" + name + ".v";
117+
std::string tempfile1 = "temp1_" + name + ".blif";
119118
std::string tempfile2 = "temp2_" + name + ".blif";
120119

121-
mockturtle::write_verilog( ntk, tempfile1 );
120+
mockturtle::write_blif( ntk, tempfile1 );
122121

123122
system( fmt::format( "abc -q \"{}; &get; &if -K {}; &put; write_blif {}\" >> /dev/null 2>&1", tempfile1, k, tempfile2 ).c_str() );
124123

0 commit comments

Comments
 (0)