Skip to content

Commit

Permalink
⬆️ Bump libs/mockturtle from f2f9030 to 2130e72 (#232)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] committed Jun 7, 2023
1 parent 782f29e commit a62d975
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/mockturtle
Submodule mockturtle updated 41 files
+15 −15 .github/workflows/linux.yml
+10 −10 .github/workflows/macos.yml
+1 −1 README.md
+1 −1 docs/algorithms/aig_balancing.rst
+1 −0 docs/algorithms/index_restructuring.rst
+40 −1 docs/algorithms/mapper.rst
+63 −0 docs/algorithms/rewrite.rst
+7 −0 docs/changelog.rst
+9 −0 docs/io/writers.rst
+2 −0 docs/utils/util_data_structures.rst
+80 −0 experiments/refactoring.cpp
+78 −0 experiments/rewrite.cpp
+4 −4 include/mockturtle/algorithms/aig_balancing.hpp
+491 −9 include/mockturtle/algorithms/cut_enumeration.hpp
+88 −0 include/mockturtle/algorithms/cut_enumeration/rewrite_cut.hpp
+22 −21 include/mockturtle/algorithms/lut_mapper.hpp
+242 −53 include/mockturtle/algorithms/mapper.hpp
+355 −0 include/mockturtle/algorithms/mig_inv_optimization.hpp
+293 −0 include/mockturtle/algorithms/mig_inv_propagation.hpp
+100 −33 include/mockturtle/algorithms/refactoring.hpp
+705 −0 include/mockturtle/algorithms/rewrite.hpp
+138 −44 include/mockturtle/io/write_blif.hpp
+105 −0 include/mockturtle/io/write_genlib.hpp
+4 −4 include/mockturtle/networks/aig.hpp
+11 −5 include/mockturtle/networks/mig.hpp
+2 −2 include/mockturtle/networks/sequential.hpp
+11 −10 include/mockturtle/networks/xag.hpp
+14 −11 include/mockturtle/networks/xmg.hpp
+5 −5 include/mockturtle/views/mffc_view.hpp
+51 −0 test/algorithms/lut_mapper.cpp
+74 −1 test/algorithms/mapper.cpp
+207 −0 test/algorithms/mig_inv_optimization.cpp
+187 −0 test/algorithms/mig_inv_propagation.cpp
+6 −3 test/algorithms/quality.cpp
+217 −0 test/algorithms/rewrite.cpp
+282 −20 test/io/write_blif.cpp
+85 −0 test/io/write_genlib.cpp
+2 −2 test/networks/aig.cpp
+2 −2 test/networks/mig.cpp
+6 −4 test/networks/xag.cpp
+20 −20 test/networks/xmg.cpp

0 comments on commit a62d975

Please sign in to comment.