Skip to content

Commit

Permalink
update mockturtle
Browse files Browse the repository at this point in the history
  • Loading branch information
zfchu committed Oct 28, 2020
1 parent 0580098 commit 8a792cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/mockturtle
Submodule mockturtle updated 60 files
+1 −0 CMakeLists.txt
+1 −1 docs/algorithms/balancing.rst
+2 −1 docs/algorithms/cleanup.rst
+2 −1 docs/algorithms/cnf.rst
+3 −1 docs/algorithms/collapse_mapped.rst
+1 −0 docs/algorithms/decomposition.rst
+2 −2 docs/algorithms/dont_cares.rst
+2 −2 docs/algorithms/extract_linear.rst
+30 −0 docs/algorithms/functional_reduction.rst
+2 −2 docs/algorithms/lut_mapping.rst
+4 −2 docs/algorithms/node_resynthesis.rst
+2 −2 docs/algorithms/pattern_generation.rst
+6 −2 docs/algorithms/reconv_cut.rst
+8 −8 docs/algorithms/refactoring.rst
+0 −0 docs/algorithms/xmg_optimization.rst
+7 −1 docs/changelog.rst
+14 −0 docs/implementations.rst
+9 −7 docs/index.rst
+1 −1 docs/io/writers.rst
+0 −1 docs/requirements.txt
+11 −0 docs/views.rst
+3 −0 experiments/CMakeLists.txt
+67 −0 experiments/functional_reduction.cpp
+372 −0 experiments/functional_reduction.json
+13 −11 experiments/mig_resubstitution.cpp
+3 −3 include/mockturtle/algorithms/circuit_validator.hpp
+7 −2 include/mockturtle/algorithms/dont_cares.hpp
+467 −0 include/mockturtle/algorithms/functional_reduction.hpp
+44 −10 include/mockturtle/algorithms/mig_resub.hpp
+11 −2 include/mockturtle/algorithms/node_resynthesis/xag_minmc2.hpp
+2 −2 include/mockturtle/algorithms/node_resynthesis/xag_npn.hpp
+2 −2 include/mockturtle/algorithms/pattern_generation.hpp
+1 −2 include/mockturtle/algorithms/resubstitution.hpp
+1 −1 include/mockturtle/algorithms/simulation.hpp
+58 −6 include/mockturtle/interface.hpp
+0 −224 include/mockturtle/io/index_list.hpp
+2 −1 include/mockturtle/mockturtle.hpp
+41 −0 include/mockturtle/networks/xmg.hpp
+105 −0 include/mockturtle/traits.hpp
+869 −0 include/mockturtle/utils/index_list.hpp
+952 −0 include/mockturtle/utils/window_utils.hpp
+244 −0 include/mockturtle/views/color_view.hpp
+170 −158 include/mockturtle/views/window_view.hpp
+7 −0 lib/CMakeLists.txt
+2 −0 lib/abcesop/exor.cpp
+4 −2 lib/bill/bill/sat/interface/abc_bsat2.hpp
+4 −2 lib/bill/bill/sat/interface/z3.hpp
+73 −0 lib/kitty/kitty/npn.hpp
+2 −2 lib/kitty/kitty/print.hpp
+2,554 −0 lib/matplot/matplot/matplotlibcpp.h
+8 −3 test/algorithms/equivalence_classes.cpp
+131 −0 test/algorithms/functional_reduction.cpp
+8 −25 test/algorithms/minmc_xags.cpp
+44 −0 test/algorithms/quality.cpp
+46 −1 test/networks/xmg.cpp
+125 −0 test/utils/index_list.cpp
+250 −0 test/utils/window_utils.cpp
+195 −0 test/views/color_view.cpp
+4 −0 test/views/fanout_view.cpp
+226 −21 test/views/window_view.cpp

0 comments on commit 8a792cc

Please sign in to comment.