aigverse 0.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- aigverse-0.0.1/.clang-format +89 -0
- aigverse-0.0.1/.clang-tidy +96 -0
- aigverse-0.0.1/.gitignore +162 -0
- aigverse-0.0.1/.gitmodules +6 -0
- aigverse-0.0.1/.pre-commit-config.yaml +53 -0
- aigverse-0.0.1/CMakeLists.txt +72 -0
- aigverse-0.0.1/LICENSE +21 -0
- aigverse-0.0.1/MANIFEST.in +30 -0
- aigverse-0.0.1/PKG-INFO +48 -0
- aigverse-0.0.1/README.md +1 -0
- aigverse-0.0.1/aigverse.egg-info/PKG-INFO +48 -0
- aigverse-0.0.1/aigverse.egg-info/SOURCES.txt +686 -0
- aigverse-0.0.1/aigverse.egg-info/dependency_links.txt +1 -0
- aigverse-0.0.1/aigverse.egg-info/not-zip-safe +1 -0
- aigverse-0.0.1/aigverse.egg-info/top_level.txt +1 -0
- aigverse-0.0.1/bindings/CMakeLists.txt +1 -0
- aigverse-0.0.1/bindings/__init__.py +0 -0
- aigverse-0.0.1/bindings/aigverse/CMakeLists.txt +5 -0
- aigverse-0.0.1/bindings/aigverse/__init__.py +0 -0
- aigverse-0.0.1/bindings/aigverse/aigverse.cpp +26 -0
- aigverse-0.0.1/bindings/aigverse/include/aigverse/io/read_aiger.hpp +56 -0
- aigverse-0.0.1/bindings/aigverse/include/aigverse/networks/logic_networks.hpp +158 -0
- aigverse-0.0.1/cmake/Cache.cmake +30 -0
- aigverse-0.0.1/cmake/CheckSubmodules.cmake +10 -0
- aigverse-0.0.1/cmake/CompilerWarnings.cmake +134 -0
- aigverse-0.0.1/cmake/Coverage.cmake +7 -0
- aigverse-0.0.1/cmake/Hardening.cmake +112 -0
- aigverse-0.0.1/cmake/InterproceduralOptimization.cmake +9 -0
- aigverse-0.0.1/cmake/PackageProject.cmake +210 -0
- aigverse-0.0.1/cmake/PreventInSourceBuilds.cmake +19 -0
- aigverse-0.0.1/cmake/ProjectOptions.cmake +140 -0
- aigverse-0.0.1/cmake/Sanitizers.cmake +97 -0
- aigverse-0.0.1/cmake/StandardProjectSettings.cmake +49 -0
- aigverse-0.0.1/cmake/SystemLink.cmake +65 -0
- aigverse-0.0.1/cmake/Utilities.cmake +101 -0
- aigverse-0.0.1/cmake/VCEnvironment.cmake +78 -0
- aigverse-0.0.1/libs/.dcignore +2 -0
- aigverse-0.0.1/libs/CMakeLists.txt +11 -0
- aigverse-0.0.1/libs/mockturtle/.clang-format +191 -0
- aigverse-0.0.1/libs/mockturtle/.codecov.yml +7 -0
- aigverse-0.0.1/libs/mockturtle/.git +1 -0
- aigverse-0.0.1/libs/mockturtle/.gitignore +10 -0
- aigverse-0.0.1/libs/mockturtle/.pre-commit-config.yaml +13 -0
- aigverse-0.0.1/libs/mockturtle/.ql/include.ql +19 -0
- aigverse-0.0.1/libs/mockturtle/.ql/qlpack.yml +4 -0
- aigverse-0.0.1/libs/mockturtle/.ql/queries.xml +1 -0
- aigverse-0.0.1/libs/mockturtle/.readthedocs.yml +15 -0
- aigverse-0.0.1/libs/mockturtle/CMakeLists.txt +62 -0
- aigverse-0.0.1/libs/mockturtle/Dockerfile +20 -0
- aigverse-0.0.1/libs/mockturtle/LICENSE +21 -0
- aigverse-0.0.1/libs/mockturtle/README.md +45 -0
- aigverse-0.0.1/libs/mockturtle/_typos.toml +15 -0
- aigverse-0.0.1/libs/mockturtle/docs/Doxyfile +2656 -0
- aigverse-0.0.1/libs/mockturtle/docs/Makefile +31 -0
- aigverse-0.0.1/libs/mockturtle/docs/_static/flow.svg +37 -0
- aigverse-0.0.1/libs/mockturtle/docs/acknowledgments.rst +7 -0
- aigverse-0.0.1/libs/mockturtle/docs/algorithms/aig_balancing.rst +15 -0
- aigverse-0.0.1/libs/mockturtle/docs/algorithms/akers_synthesis.rst +38 -0
- aigverse-0.0.1/libs/mockturtle/docs/algorithms/aqfp_resynthesis.rst +28 -0
- aigverse-0.0.1/libs/mockturtle/docs/algorithms/balancing.rst +33 -0
- aigverse-0.0.1/libs/mockturtle/docs/algorithms/bi_decomposition.rst +25 -0
- aigverse-0.0.1/libs/mockturtle/docs/algorithms/buffer_insertion.rst +43 -0
- aigverse-0.0.1/libs/mockturtle/docs/algorithms/circuit_validator.rst +92 -0
- aigverse-0.0.1/libs/mockturtle/docs/algorithms/cleanup.rst +8 -0
- aigverse-0.0.1/libs/mockturtle/docs/algorithms/cnf.rst +22 -0
- aigverse-0.0.1/libs/mockturtle/docs/algorithms/collapse_mapped.rst +19 -0
- aigverse-0.0.1/libs/mockturtle/docs/algorithms/cost_generic_resub.rst +31 -0
- aigverse-0.0.1/libs/mockturtle/docs/algorithms/cover_to_graph.rst +37 -0
- aigverse-0.0.1/libs/mockturtle/docs/algorithms/cut_enumeration.rst +112 -0
- aigverse-0.0.1/libs/mockturtle/docs/algorithms/cut_rewriting.rst +59 -0
- aigverse-0.0.1/libs/mockturtle/docs/algorithms/decomposition.rst +8 -0
- aigverse-0.0.1/libs/mockturtle/docs/algorithms/dont_cares.rst +7 -0
- aigverse-0.0.1/libs/mockturtle/docs/algorithms/dsd_decomposition.rst +49 -0
- aigverse-0.0.1/libs/mockturtle/docs/algorithms/equivalence_checking.rst +40 -0
- aigverse-0.0.1/libs/mockturtle/docs/algorithms/equivalence_classes.rst +11 -0
- aigverse-0.0.1/libs/mockturtle/docs/algorithms/extract_adders.rst +6 -0
- aigverse-0.0.1/libs/mockturtle/docs/algorithms/extract_linear.rst +23 -0
- aigverse-0.0.1/libs/mockturtle/docs/algorithms/functional_reduction.rst +30 -0
- aigverse-0.0.1/libs/mockturtle/docs/algorithms/gates_to_nodes.rst +10 -0
- aigverse-0.0.1/libs/mockturtle/docs/algorithms/index_decompositions.rst +9 -0
- aigverse-0.0.1/libs/mockturtle/docs/algorithms/index_information.rst +13 -0
- aigverse-0.0.1/libs/mockturtle/docs/algorithms/index_restructuring.rst +34 -0
- aigverse-0.0.1/libs/mockturtle/docs/algorithms/index_transformations.rst +17 -0
- aigverse-0.0.1/libs/mockturtle/docs/algorithms/index_validation.rst +10 -0
- aigverse-0.0.1/libs/mockturtle/docs/algorithms/klut_to_graph.rst +40 -0
- aigverse-0.0.1/libs/mockturtle/docs/algorithms/linear_resynthesis.rst +26 -0
- aigverse-0.0.1/libs/mockturtle/docs/algorithms/lut_mapping.rst +150 -0
- aigverse-0.0.1/libs/mockturtle/docs/algorithms/mapper.rst +223 -0
- aigverse-0.0.1/libs/mockturtle/docs/algorithms/mig_algebraic_rewriting.rst +15 -0
- aigverse-0.0.1/libs/mockturtle/docs/algorithms/miter.rst +6 -0
- aigverse-0.0.1/libs/mockturtle/docs/algorithms/node_resynthesis.rst +76 -0
- aigverse-0.0.1/libs/mockturtle/docs/algorithms/pattern_generation.rst +38 -0
- aigverse-0.0.1/libs/mockturtle/docs/algorithms/reconv_cut.rst +12 -0
- aigverse-0.0.1/libs/mockturtle/docs/algorithms/refactoring.rst +56 -0
- aigverse-0.0.1/libs/mockturtle/docs/algorithms/resubstitution.rst +109 -0
- aigverse-0.0.1/libs/mockturtle/docs/algorithms/resyn_engines.rst +22 -0
- aigverse-0.0.1/libs/mockturtle/docs/algorithms/retiming.rst +6 -0
- aigverse-0.0.1/libs/mockturtle/docs/algorithms/rewrite.rst +79 -0
- aigverse-0.0.1/libs/mockturtle/docs/algorithms/simulation.rst +115 -0
- aigverse-0.0.1/libs/mockturtle/docs/algorithms/xag_algebraic_rewriting.rst +15 -0
- aigverse-0.0.1/libs/mockturtle/docs/algorithms/xag_balancing.rst +15 -0
- aigverse-0.0.1/libs/mockturtle/docs/algorithms/xag_optimization.rst +9 -0
- aigverse-0.0.1/libs/mockturtle/docs/algorithms/xmg_optimization.rst +6 -0
- aigverse-0.0.1/libs/mockturtle/docs/changelog.rst +230 -0
- aigverse-0.0.1/libs/mockturtle/docs/conf.py +230 -0
- aigverse-0.0.1/libs/mockturtle/docs/debugging.rst +87 -0
- aigverse-0.0.1/libs/mockturtle/docs/events.rst +11 -0
- aigverse-0.0.1/libs/mockturtle/docs/generators/arithmetic.rst +15 -0
- aigverse-0.0.1/libs/mockturtle/docs/generators/control.rst +12 -0
- aigverse-0.0.1/libs/mockturtle/docs/generators/majority.rst +10 -0
- aigverse-0.0.1/libs/mockturtle/docs/generators/modular_arithmetic.rst +38 -0
- aigverse-0.0.1/libs/mockturtle/docs/getting_started.rst +88 -0
- aigverse-0.0.1/libs/mockturtle/docs/implementations.rst +386 -0
- aigverse-0.0.1/libs/mockturtle/docs/index.rst +61 -0
- aigverse-0.0.1/libs/mockturtle/docs/io/lorina_readers.rst +22 -0
- aigverse-0.0.1/libs/mockturtle/docs/io/writers.rst +84 -0
- aigverse-0.0.1/libs/mockturtle/docs/network.rst +207 -0
- aigverse-0.0.1/libs/mockturtle/docs/philosophy.rst +33 -0
- aigverse-0.0.1/libs/mockturtle/docs/properties.rst +39 -0
- aigverse-0.0.1/libs/mockturtle/docs/requirements.txt +3 -0
- aigverse-0.0.1/libs/mockturtle/docs/sequential.rst +37 -0
- aigverse-0.0.1/libs/mockturtle/docs/utils/util_data_structures.rst +221 -0
- aigverse-0.0.1/libs/mockturtle/docs/utils/util_functions.rst +22 -0
- aigverse-0.0.1/libs/mockturtle/docs/views.rst +159 -0
- aigverse-0.0.1/libs/mockturtle/include/CMakeLists.txt +13 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/aig_balancing.hpp +482 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/aig_resub.hpp +812 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/akers_synthesis.hpp +880 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/aqfp/aqfp_assumptions.hpp +138 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/aqfp/aqfp_cleanup.hpp +160 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/aqfp/aqfp_db.hpp +450 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/aqfp/aqfp_fanout_resyn.hpp +172 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/aqfp/aqfp_legalization.hpp +331 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/aqfp/aqfp_node_resyn.hpp +253 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/aqfp/aqfp_rebuild.hpp +280 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/aqfp/aqfp_resynthesis.hpp +378 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/aqfp/aqfp_retiming.hpp +681 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/aqfp/buffer_insertion.hpp +1980 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/aqfp/buffer_verification.hpp +292 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/aqfp/detail/dag.hpp +159 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/aqfp/detail/dag_cost.hpp +508 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/aqfp/detail/dag_gen.hpp +389 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/aqfp/detail/dag_util.hpp +316 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/aqfp/detail/db_builder.hpp +319 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/aqfp/detail/db_utils.hpp +278 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/aqfp/detail/npn_cache.hpp +89 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/aqfp/detail/partial_dag.hpp +243 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/aqfp/mig_algebraic_rewriting_splitters.hpp +407 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/aqfp/mig_resub_splitters.hpp +581 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/aqfp/optimal_buffer_insertion.hpp +563 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/balancing/esop_balancing.hpp +305 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/balancing/sop_balancing.hpp +201 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/balancing/utils.hpp +80 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/balancing.hpp +446 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/bi_decomposition.hpp +171 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/cell_window.hpp +509 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/circuit_validator.hpp +799 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/cleanup.hpp +657 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/cnf.hpp +507 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/collapse_mapped.hpp +463 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/cover_to_graph.hpp +306 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/cut_enumeration/cnf_cut.hpp +109 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/cut_enumeration/exact_map_cut.hpp +100 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/cut_enumeration/gia_cut.hpp +82 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/cut_enumeration/mf_cut.hpp +102 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/cut_enumeration/rewrite_cut.hpp +88 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/cut_enumeration/spectr_cut.hpp +197 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/cut_enumeration/tech_map_cut.hpp +100 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/cut_enumeration.hpp +1840 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/cut_rewriting.hpp +868 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/decomposition.hpp +301 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/detail/database_generator.hpp +96 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/detail/mffc_utils.hpp +135 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/detail/minmc_xags.hpp +198 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/detail/resub_utils.hpp +782 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/detail/switching_activity.hpp +70 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/dont_cares.hpp +358 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/dsd_decomposition.hpp +238 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/emap.hpp +5972 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/equivalence_checking.hpp +325 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/equivalence_classes.hpp +156 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/exact_mc_synthesis.hpp +638 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/exorcism.hpp +82 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/experimental/boolean_optimization.hpp +356 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/experimental/cost_generic_resub.hpp +426 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/experimental/cost_resyn.hpp +1289 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/experimental/decompose_multioutput.hpp +397 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/experimental/sim_resub.hpp +545 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/experimental/window_resub.hpp +834 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/explorer.hpp +996 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/extract_adders.hpp +971 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/extract_linear.hpp +208 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/functional_reduction.hpp +488 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/gates_to_nodes.hpp +174 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/klut_to_graph.hpp +131 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/linear_resynthesis.hpp +1008 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/lut_mapper.hpp +3015 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/lut_mapping.hpp +546 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/mapper.hpp +3483 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/mig_algebraic_rewriting.hpp +376 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/mig_inv_optimization.hpp +394 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/mig_inv_propagation.hpp +374 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/mig_resub.hpp +875 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/miter.hpp +113 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/network_fuzz_tester.hpp +260 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/node_resynthesis/akers.hpp +76 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/node_resynthesis/bidecomposition.hpp +82 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/node_resynthesis/cached.hpp +317 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/node_resynthesis/composed.hpp +83 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/node_resynthesis/davio.hpp +150 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/node_resynthesis/direct.hpp +264 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/node_resynthesis/dsd.hpp +147 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/node_resynthesis/exact.hpp +659 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/node_resynthesis/mig_npn.hpp +234 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/node_resynthesis/null.hpp +57 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/node_resynthesis/shannon.hpp +100 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/node_resynthesis/sop_factoring.hpp +453 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/node_resynthesis/traits.hpp +92 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/node_resynthesis/xag_minmc.hpp +472 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/node_resynthesis/xag_minmc2.hpp +172 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/node_resynthesis/xag_npn.hpp +691 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/node_resynthesis/xmg3_npn.hpp +347 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/node_resynthesis/xmg_npn.hpp +292 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/node_resynthesis.hpp +357 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/pattern_generation.hpp +603 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/reconv_cut.hpp +461 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/refactoring.hpp +420 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/resubstitution.hpp +859 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/resyn_engines/aig_enumerative.hpp +472 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/resyn_engines/dump_resyn.hpp +120 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/resyn_engines/mig_enumerative.hpp +284 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/resyn_engines/mig_resyn.hpp +1344 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/resyn_engines/mux_resyn.hpp +226 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/resyn_engines/xag_resyn.hpp +875 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/retiming.hpp +808 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/rewrite.hpp +953 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/satlut_mapping.hpp +480 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/sim_resub.hpp +432 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/simulation.hpp +982 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/testcase_minimizer.hpp +558 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/window_rewriting.hpp +799 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/xag_algebraic_rewriting.hpp +565 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/xag_balancing.hpp +729 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/xag_optimization.hpp +273 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/xag_resub_withDC.hpp +989 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/xmg_algebraic_rewriting.hpp +518 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/xmg_optimization.hpp +101 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/xmg_resub.hpp +346 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/generators/arithmetic.hpp +411 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/generators/control.hpp +212 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/generators/legacy.hpp +209 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/generators/majority.hpp +136 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/generators/majority_n.hpp +90 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/generators/modular_arithmetic.hpp +796 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/generators/random_network.hpp +672 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/generators/self_dualize.hpp +129 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/generators/sorting.hpp +148 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/interface.hpp +768 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/io/aiger_reader.hpp +233 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/io/bench_reader.hpp +194 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/io/blif_reader.hpp +332 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/io/bristol_reader.hpp +149 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/io/dimacs_reader.hpp +113 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/io/genlib_reader.hpp +169 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/io/pla_reader.hpp +154 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/io/serialize.hpp +314 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/io/super_reader.hpp +103 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/io/verilog_reader.hpp +636 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/io/write_aiger.hpp +199 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/io/write_bench.hpp +164 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/io/write_blif.hpp +430 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/io/write_dimacs.hpp +126 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/io/write_dot.hpp +456 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/io/write_genlib.hpp +105 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/io/write_patterns.hpp +87 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/io/write_verilog.hpp +1315 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/mockturtle.hpp +218 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/networks/abstract_xag.hpp +892 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/networks/aig.hpp +1265 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/networks/aqfp.hpp +1121 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/networks/block.hpp +1078 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/networks/buffered.hpp +1030 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/networks/cover.hpp +808 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/networks/crossed.hpp +867 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/networks/detail/foreach.hpp +224 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/networks/events.hpp +134 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/networks/generic.hpp +1065 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/networks/gia.hpp +269 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/networks/klut.hpp +707 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/networks/mig.hpp +1249 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/networks/muxig.hpp +235 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/networks/sequential.hpp +925 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/networks/storage.hpp +259 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/networks/tig.hpp +1133 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/networks/xag.hpp +1288 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/networks/xmg.hpp +1493 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/properties/aqfpcost.hpp +237 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/properties/litcost.hpp +270 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/properties/mccost.hpp +301 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/properties/migcost.hpp +117 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/properties/xmgcost.hpp +129 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/traits.hpp +2674 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/abc.hpp +118 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/algorithm.hpp +230 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/cost_functions.hpp +146 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/cuts.hpp +591 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/debugging_utils.hpp +551 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/hash_functions.hpp +156 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/include/percy.hpp +51 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/include/supergate.hpp +92 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/index_list.hpp +1067 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/json_utils.hpp +53 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/mixed_radix.hpp +113 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/name_utils.hpp +159 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/network_cache.hpp +173 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/network_utils.hpp +237 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/node_map.hpp +555 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/null_utils.hpp +46 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/progress_bar.hpp +178 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/recursive_cost_functions.hpp +122 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/sop_utils.hpp +594 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/standard_cell.hpp +98 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/stopwatch.hpp +180 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/string_utils.hpp +63 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/struct_library.hpp +1542 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/super_utils.hpp +466 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/tech_library.hpp +1649 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/truth_table_cache.hpp +172 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/truth_table_utils.hpp +63 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/window_utils.hpp +1046 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/views/binding_view.hpp +261 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/views/cell_view.hpp +297 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/views/choice_view.hpp +592 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/views/cnf_view.hpp +691 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/views/color_view.hpp +244 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/views/cost_view.hpp +281 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/views/cut_view.hpp +232 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/views/depth_view.hpp +363 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/views/dont_care_view.hpp +481 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/views/dont_touch_view.hpp +142 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/views/fanout_limit_view.hpp +293 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/views/fanout_view.hpp +350 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/views/immutable_view.hpp +89 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/views/mapping_view.hpp +276 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/views/mffc_view.hpp +310 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/views/names_view.hpp +210 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/views/rank_view.hpp +384 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/views/topo_view.hpp +324 -0
- aigverse-0.0.1/libs/mockturtle/include/mockturtle/views/window_view.hpp +308 -0
- aigverse-0.0.1/libs/mockturtle/lib/CMakeLists.txt +91 -0
- aigverse-0.0.1/libs/mockturtle/lib/abcesop/CMakeLists.txt +29 -0
- aigverse-0.0.1/libs/mockturtle/lib/abcesop/eabc/abc_global.h +157 -0
- aigverse-0.0.1/libs/mockturtle/lib/abcesop/eabc/exor.h +188 -0
- aigverse-0.0.1/libs/mockturtle/lib/abcesop/eabc/vecInt.h +2070 -0
- aigverse-0.0.1/libs/mockturtle/lib/abcesop/eabc/vecPtr.h +1170 -0
- aigverse-0.0.1/libs/mockturtle/lib/abcesop/eabc/vecWec.h +739 -0
- aigverse-0.0.1/libs/mockturtle/lib/abcesop/exor.cpp +990 -0
- aigverse-0.0.1/libs/mockturtle/lib/abcesop/exorBits.cpp +425 -0
- aigverse-0.0.1/libs/mockturtle/lib/abcesop/exorCubes.cpp +190 -0
- aigverse-0.0.1/libs/mockturtle/lib/abcesop/exorLink.cpp +749 -0
- aigverse-0.0.1/libs/mockturtle/lib/abcesop/exorList.cpp +1156 -0
- aigverse-0.0.1/libs/mockturtle/lib/abcesop/exorUtil.cpp +228 -0
- aigverse-0.0.1/libs/mockturtle/lib/abcsat/AbcGlucose.cpp +596 -0
- aigverse-0.0.1/libs/mockturtle/lib/abcsat/CMakeLists.txt +23 -0
- aigverse-0.0.1/libs/mockturtle/lib/abcsat/Glucose.cpp +1499 -0
- aigverse-0.0.1/libs/mockturtle/lib/abcsat/SimpSolver.cpp +761 -0
- aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/AbcGlucose.h +107 -0
- aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/Alg.h +88 -0
- aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/Alloc.h +136 -0
- aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/BoundedQueue.h +114 -0
- aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/Constants.h +33 -0
- aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/Dimacs.h +85 -0
- aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/Heap.h +154 -0
- aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/IntTypes.h +49 -0
- aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/Map.h +197 -0
- aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/Queue.h +73 -0
- aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/SimpSolver.h +208 -0
- aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/Solver.h +493 -0
- aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/SolverTypes.h +437 -0
- aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/Sort.h +101 -0
- aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/Vec.h +135 -0
- aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/XAlloc.h +53 -0
- aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/abc_global.h +422 -0
- aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/abc_namespaces.h +74 -0
- aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/pstdint.h +919 -0
- aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/satClause.h +485 -0
- aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/satSolver.h +661 -0
- aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/satStore.h +158 -0
- aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/satVec.h +167 -0
- aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/system.h +68 -0
- aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/utilDouble.h +224 -0
- aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/vecInt.h +2087 -0
- aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/vecWec.h +724 -0
- aigverse-0.0.1/libs/mockturtle/lib/abcsat/satSolver.cpp +2498 -0
- aigverse-0.0.1/libs/mockturtle/lib/abcsat/satStore.cpp +469 -0
- aigverse-0.0.1/libs/mockturtle/lib/bill/bill/bill.hpp +24 -0
- aigverse-0.0.1/libs/mockturtle/lib/bill/bill/dd/cudd_zdd.hpp +493 -0
- aigverse-0.0.1/libs/mockturtle/lib/bill/bill/dd/zdd.hpp +928 -0
- aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/cardinality.hpp +37 -0
- aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/incremental_totalizer_cardinality.hpp +181 -0
- aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/interface/abc_bmcg.hpp +175 -0
- aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/interface/abc_bsat2.hpp +227 -0
- aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/interface/common.hpp +160 -0
- aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/interface/ghack.hpp +167 -0
- aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/interface/glucose.hpp +167 -0
- aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/interface/maple.hpp +169 -0
- aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/interface/types.hpp +146 -0
- aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/interface/z3.hpp +196 -0
- aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/AbcGlucose.h +107 -0
- aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/Alg.h +88 -0
- aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/Alloc.h +136 -0
- aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/BoundedQueue.h +114 -0
- aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/Constants.h +33 -0
- aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/Dimacs.h +85 -0
- aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/Heap.h +154 -0
- aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/IntTypes.h +49 -0
- aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/Map.h +197 -0
- aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/Queue.h +73 -0
- aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/SimpSolver.h +208 -0
- aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/Solver.h +493 -0
- aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/SolverTypes.h +442 -0
- aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/Sort.h +101 -0
- aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/Vec.h +135 -0
- aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/XAlloc.h +53 -0
- aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/abc_global.h +416 -0
- aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/abc_namespaces.h +74 -0
- aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/pstdint.h +919 -0
- aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/satClause.h +476 -0
- aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/satSolver.h +651 -0
- aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/satStore.h +158 -0
- aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/satVec.h +167 -0
- aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/system.h +67 -0
- aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/utilDouble.h +222 -0
- aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/vecInt.h +2078 -0
- aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/vecWec.h +716 -0
- aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc.hpp +5927 -0
- aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/ghack.hpp +5086 -0
- aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/glucose.hpp +6178 -0
- aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/maple.hpp +5839 -0
- aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver.hpp +12 -0
- aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/tseytin.hpp +120 -0
- aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/unsat_cores.hpp +73 -0
- aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/xor_clauses.hpp +49 -0
- aigverse-0.0.1/libs/mockturtle/lib/bill/bill/utils/hash.hpp +48 -0
- aigverse-0.0.1/libs/mockturtle/lib/bill/bill/utils/platforms.hpp +9 -0
- aigverse-0.0.1/libs/mockturtle/lib/fmt/LICENSE.rst +23 -0
- aigverse-0.0.1/libs/mockturtle/lib/fmt/fmt/chrono.h +1119 -0
- aigverse-0.0.1/libs/mockturtle/lib/fmt/fmt/color.h +568 -0
- aigverse-0.0.1/libs/mockturtle/lib/fmt/fmt/compile.h +595 -0
- aigverse-0.0.1/libs/mockturtle/lib/fmt/fmt/core.h +1789 -0
- aigverse-0.0.1/libs/mockturtle/lib/fmt/fmt/format-inl.h +1403 -0
- aigverse-0.0.1/libs/mockturtle/lib/fmt/fmt/format.cc +176 -0
- aigverse-0.0.1/libs/mockturtle/lib/fmt/fmt/format.h +3648 -0
- aigverse-0.0.1/libs/mockturtle/lib/fmt/fmt/locale.h +78 -0
- aigverse-0.0.1/libs/mockturtle/lib/fmt/fmt/os.cc +316 -0
- aigverse-0.0.1/libs/mockturtle/lib/fmt/fmt/os.h +392 -0
- aigverse-0.0.1/libs/mockturtle/lib/fmt/fmt/ostream.h +143 -0
- aigverse-0.0.1/libs/mockturtle/lib/fmt/fmt/posix.h +2 -0
- aigverse-0.0.1/libs/mockturtle/lib/fmt/fmt/printf.h +721 -0
- aigverse-0.0.1/libs/mockturtle/lib/fmt/fmt/ranges.h +387 -0
- aigverse-0.0.1/libs/mockturtle/lib/json/nlohmann/json.hpp +25447 -0
- aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/affine.hpp +217 -0
- aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/algorithm.hpp +489 -0
- aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/bit_operations.hpp +570 -0
- aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/cnf.hpp +79 -0
- aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/constructors.hpp +1577 -0
- aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/cube.hpp +333 -0
- aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/decomposition.hpp +956 -0
- aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/detail/constants.hpp +196 -0
- aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/detail/linear_constants.hpp +51 -0
- aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/detail/mscfix.hpp +39 -0
- aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/detail/shift.hpp +1002 -0
- aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/detail/utils.hpp +85 -0
- aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/dynamic_truth_table.hpp +191 -0
- aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/enumeration.hpp +105 -0
- aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/esop.hpp +349 -0
- aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/hash.hpp +95 -0
- aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/implicant.hpp +244 -0
- aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/isop.hpp +130 -0
- aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/karnaugh_map.hpp +188 -0
- aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/kitty.hpp +70 -0
- aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/npn.hpp +1327 -0
- aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/operations.hpp +2428 -0
- aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/operators.hpp +507 -0
- aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/partial_truth_table.hpp +300 -0
- aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/permutation.hpp +286 -0
- aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/print.hpp +481 -0
- aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/properties.hpp +374 -0
- aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/quaternary_truth_table.hpp +265 -0
- aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/spectral.hpp +1204 -0
- aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/spp.hpp +156 -0
- aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/static_truth_table.hpp +290 -0
- aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/ternary_truth_table.hpp +262 -0
- aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/traits.hpp +55 -0
- aigverse-0.0.1/libs/mockturtle/lib/lorina/lorina/aiger.hpp +922 -0
- aigverse-0.0.1/libs/mockturtle/lib/lorina/lorina/bench.hpp +345 -0
- aigverse-0.0.1/libs/mockturtle/lib/lorina/lorina/blif.hpp +504 -0
- aigverse-0.0.1/libs/mockturtle/lib/lorina/lorina/bristol.hpp +217 -0
- aigverse-0.0.1/libs/mockturtle/lib/lorina/lorina/common.hpp +44 -0
- aigverse-0.0.1/libs/mockturtle/lib/lorina/lorina/detail/call_in_topological_order.hpp +408 -0
- aigverse-0.0.1/libs/mockturtle/lib/lorina/lorina/detail/tokenizer.hpp +148 -0
- aigverse-0.0.1/libs/mockturtle/lib/lorina/lorina/detail/utils.hpp +242 -0
- aigverse-0.0.1/libs/mockturtle/lib/lorina/lorina/diagnostics.hpp +322 -0
- aigverse-0.0.1/libs/mockturtle/lib/lorina/lorina/diagnostics.inc +91 -0
- aigverse-0.0.1/libs/mockturtle/lib/lorina/lorina/dimacs.hpp +221 -0
- aigverse-0.0.1/libs/mockturtle/lib/lorina/lorina/genlib.hpp +383 -0
- aigverse-0.0.1/libs/mockturtle/lib/lorina/lorina/lorina.hpp +42 -0
- aigverse-0.0.1/libs/mockturtle/lib/lorina/lorina/pla.hpp +360 -0
- aigverse-0.0.1/libs/mockturtle/lib/lorina/lorina/super.hpp +287 -0
- aigverse-0.0.1/libs/mockturtle/lib/lorina/lorina/verilog.hpp +1774 -0
- aigverse-0.0.1/libs/mockturtle/lib/lorina/lorina/verilog_regex.hpp +51 -0
- aigverse-0.0.1/libs/mockturtle/lib/matplot/matplot/matplotlibcpp.h +2554 -0
- aigverse-0.0.1/libs/mockturtle/lib/parallel_hashmap/parallel_hashmap/btree.h +4050 -0
- aigverse-0.0.1/libs/mockturtle/lib/parallel_hashmap/parallel_hashmap/conanfile.py +36 -0
- aigverse-0.0.1/libs/mockturtle/lib/parallel_hashmap/parallel_hashmap/meminfo.h +195 -0
- aigverse-0.0.1/libs/mockturtle/lib/parallel_hashmap/parallel_hashmap/phmap.h +4544 -0
- aigverse-0.0.1/libs/mockturtle/lib/parallel_hashmap/parallel_hashmap/phmap_base.h +5171 -0
- aigverse-0.0.1/libs/mockturtle/lib/parallel_hashmap/parallel_hashmap/phmap_bits.h +663 -0
- aigverse-0.0.1/libs/mockturtle/lib/parallel_hashmap/parallel_hashmap/phmap_config.h +764 -0
- aigverse-0.0.1/libs/mockturtle/lib/parallel_hashmap/parallel_hashmap/phmap_dump.h +227 -0
- aigverse-0.0.1/libs/mockturtle/lib/parallel_hashmap/parallel_hashmap/phmap_fwd_decl.h +154 -0
- aigverse-0.0.1/libs/mockturtle/lib/parallel_hashmap/parallel_hashmap/phmap_utils.h +376 -0
- aigverse-0.0.1/libs/mockturtle/lib/percy/percy/chain.hpp +861 -0
- aigverse-0.0.1/libs/mockturtle/lib/percy/percy/cnf.hpp +56 -0
- aigverse-0.0.1/libs/mockturtle/lib/percy/percy/concurrentqueue.h +3634 -0
- aigverse-0.0.1/libs/mockturtle/lib/percy/percy/dag.hpp +619 -0
- aigverse-0.0.1/libs/mockturtle/lib/percy/percy/dag_generation.hpp +1628 -0
- aigverse-0.0.1/libs/mockturtle/lib/percy/percy/encoders/aig_encoder.hpp +1696 -0
- aigverse-0.0.1/libs/mockturtle/lib/percy/percy/encoders/ditt_encoder.hpp +1205 -0
- aigverse-0.0.1/libs/mockturtle/lib/percy/percy/encoders/ditt_maj_encoder.hpp +779 -0
- aigverse-0.0.1/libs/mockturtle/lib/percy/percy/encoders/encoder.hpp +211 -0
- aigverse-0.0.1/libs/mockturtle/lib/percy/percy/encoders/maj_encoder.hpp +1941 -0
- aigverse-0.0.1/libs/mockturtle/lib/percy/percy/encoders/mig_encoder.hpp +1530 -0
- aigverse-0.0.1/libs/mockturtle/lib/percy/percy/encoders/msv_encoder.hpp +1203 -0
- aigverse-0.0.1/libs/mockturtle/lib/percy/percy/encoders/partial_dag_encoder.hpp +1145 -0
- aigverse-0.0.1/libs/mockturtle/lib/percy/percy/encoders/ssv_dag_encoder.hpp +301 -0
- aigverse-0.0.1/libs/mockturtle/lib/percy/percy/encoders/ssv_encoder.hpp +1427 -0
- aigverse-0.0.1/libs/mockturtle/lib/percy/percy/encoders/ssv_fence2_encoder.hpp +894 -0
- aigverse-0.0.1/libs/mockturtle/lib/percy/percy/encoders/ssv_fence_encoder.hpp +845 -0
- aigverse-0.0.1/libs/mockturtle/lib/percy/percy/encoders.hpp +12 -0
- aigverse-0.0.1/libs/mockturtle/lib/percy/percy/fence.hpp +658 -0
- aigverse-0.0.1/libs/mockturtle/lib/percy/percy/generators/partial_dag3_generator.hpp +675 -0
- aigverse-0.0.1/libs/mockturtle/lib/percy/percy/generators/partial_dag_generator.hpp +727 -0
- aigverse-0.0.1/libs/mockturtle/lib/percy/percy/io.hpp +49 -0
- aigverse-0.0.1/libs/mockturtle/lib/percy/percy/majority_chain.hpp +499 -0
- aigverse-0.0.1/libs/mockturtle/lib/percy/percy/mig.hpp +9 -0
- aigverse-0.0.1/libs/mockturtle/lib/percy/percy/misc.hpp +179 -0
- aigverse-0.0.1/libs/mockturtle/lib/percy/percy/partial_dag.hpp +648 -0
- aigverse-0.0.1/libs/mockturtle/lib/percy/percy/percy.hpp +1939 -0
- aigverse-0.0.1/libs/mockturtle/lib/percy/percy/printer.hpp +129 -0
- aigverse-0.0.1/libs/mockturtle/lib/percy/percy/sat_circuits.hpp +97 -0
- aigverse-0.0.1/libs/mockturtle/lib/percy/percy/solvers/bmcg_sat.hpp +99 -0
- aigverse-0.0.1/libs/mockturtle/lib/percy/percy/solvers/bsat2.hpp +146 -0
- aigverse-0.0.1/libs/mockturtle/lib/percy/percy/solvers/cmsat.hpp +131 -0
- aigverse-0.0.1/libs/mockturtle/lib/percy/percy/solvers/glucose.hpp +193 -0
- aigverse-0.0.1/libs/mockturtle/lib/percy/percy/solvers/satoko.hpp +190 -0
- aigverse-0.0.1/libs/mockturtle/lib/percy/percy/solvers/solver_wrapper.hpp +41 -0
- aigverse-0.0.1/libs/mockturtle/lib/percy/percy/solvers.hpp +13 -0
- aigverse-0.0.1/libs/mockturtle/lib/percy/percy/spec.hpp +403 -0
- aigverse-0.0.1/libs/mockturtle/lib/percy/percy/tt_utils.hpp +32 -0
- aigverse-0.0.1/libs/mockturtle/lib/rang/rang/rang.hpp +502 -0
- aigverse-0.0.1/libs/mockturtle/mockturtle.svg +107 -0
- aigverse-0.0.1/libs/mockturtle/tools/cleanup.py +197 -0
- aigverse-0.0.1/libs/pybind11/.appveyor.yml +35 -0
- aigverse-0.0.1/libs/pybind11/.clang-format +38 -0
- aigverse-0.0.1/libs/pybind11/.clang-tidy +79 -0
- aigverse-0.0.1/libs/pybind11/.cmake-format.yaml +73 -0
- aigverse-0.0.1/libs/pybind11/.codespell-ignore-lines +24 -0
- aigverse-0.0.1/libs/pybind11/.git +1 -0
- aigverse-0.0.1/libs/pybind11/.gitattributes +1 -0
- aigverse-0.0.1/libs/pybind11/.gitignore +46 -0
- aigverse-0.0.1/libs/pybind11/.pre-commit-config.yaml +156 -0
- aigverse-0.0.1/libs/pybind11/.readthedocs.yml +20 -0
- aigverse-0.0.1/libs/pybind11/CMakeLists.txt +341 -0
- aigverse-0.0.1/libs/pybind11/LICENSE +29 -0
- aigverse-0.0.1/libs/pybind11/MANIFEST.in +6 -0
- aigverse-0.0.1/libs/pybind11/README.rst +181 -0
- aigverse-0.0.1/libs/pybind11/SECURITY.md +13 -0
- aigverse-0.0.1/libs/pybind11/docs/Doxyfile +21 -0
- aigverse-0.0.1/libs/pybind11/docs/Makefile +192 -0
- aigverse-0.0.1/libs/pybind11/docs/advanced/cast/chrono.rst +81 -0
- aigverse-0.0.1/libs/pybind11/docs/advanced/cast/custom.rst +93 -0
- aigverse-0.0.1/libs/pybind11/docs/advanced/cast/eigen.rst +310 -0
- aigverse-0.0.1/libs/pybind11/docs/advanced/cast/functional.rst +109 -0
- aigverse-0.0.1/libs/pybind11/docs/advanced/cast/index.rst +43 -0
- aigverse-0.0.1/libs/pybind11/docs/advanced/cast/overview.rst +170 -0
- aigverse-0.0.1/libs/pybind11/docs/advanced/cast/stl.rst +249 -0
- aigverse-0.0.1/libs/pybind11/docs/advanced/cast/strings.rst +296 -0
- aigverse-0.0.1/libs/pybind11/docs/advanced/classes.rst +1334 -0
- aigverse-0.0.1/libs/pybind11/docs/advanced/embedding.rst +262 -0
- aigverse-0.0.1/libs/pybind11/docs/advanced/exceptions.rst +400 -0
- aigverse-0.0.1/libs/pybind11/docs/advanced/functions.rst +614 -0
- aigverse-0.0.1/libs/pybind11/docs/advanced/misc.rst +429 -0
- aigverse-0.0.1/libs/pybind11/docs/advanced/pycpp/index.rst +13 -0
- aigverse-0.0.1/libs/pybind11/docs/advanced/pycpp/numpy.rst +453 -0
- aigverse-0.0.1/libs/pybind11/docs/advanced/pycpp/object.rst +286 -0
- aigverse-0.0.1/libs/pybind11/docs/advanced/pycpp/utilities.rst +155 -0
- aigverse-0.0.1/libs/pybind11/docs/advanced/smart_ptrs.rst +174 -0
- aigverse-0.0.1/libs/pybind11/docs/basics.rst +314 -0
- aigverse-0.0.1/libs/pybind11/docs/benchmark.py +89 -0
- aigverse-0.0.1/libs/pybind11/docs/benchmark.rst +95 -0
- aigverse-0.0.1/libs/pybind11/docs/changelog.rst +3230 -0
- aigverse-0.0.1/libs/pybind11/docs/classes.rst +555 -0
- aigverse-0.0.1/libs/pybind11/docs/cmake/index.rst +8 -0
- aigverse-0.0.1/libs/pybind11/docs/compiling.rst +728 -0
- aigverse-0.0.1/libs/pybind11/docs/conf.py +369 -0
- aigverse-0.0.1/libs/pybind11/docs/faq.rst +352 -0
- aigverse-0.0.1/libs/pybind11/docs/index.rst +48 -0
- aigverse-0.0.1/libs/pybind11/docs/installing.rst +105 -0
- aigverse-0.0.1/libs/pybind11/docs/limitations.rst +68 -0
- aigverse-0.0.1/libs/pybind11/docs/pybind11-logo.png +0 -0
- aigverse-0.0.1/libs/pybind11/docs/pybind11_vs_boost_python1.png +0 -0
- aigverse-0.0.1/libs/pybind11/docs/pybind11_vs_boost_python1.svg +427 -0
- aigverse-0.0.1/libs/pybind11/docs/pybind11_vs_boost_python2.png +0 -0
- aigverse-0.0.1/libs/pybind11/docs/pybind11_vs_boost_python2.svg +427 -0
- aigverse-0.0.1/libs/pybind11/docs/reference.rst +130 -0
- aigverse-0.0.1/libs/pybind11/docs/release.rst +143 -0
- aigverse-0.0.1/libs/pybind11/docs/requirements.in +6 -0
- aigverse-0.0.1/libs/pybind11/docs/requirements.txt +275 -0
- aigverse-0.0.1/libs/pybind11/docs/upgrade.rst +594 -0
- aigverse-0.0.1/libs/pybind11/include/pybind11/attr.h +690 -0
- aigverse-0.0.1/libs/pybind11/include/pybind11/buffer_info.h +208 -0
- aigverse-0.0.1/libs/pybind11/include/pybind11/cast.h +1855 -0
- aigverse-0.0.1/libs/pybind11/include/pybind11/chrono.h +225 -0
- aigverse-0.0.1/libs/pybind11/include/pybind11/common.h +2 -0
- aigverse-0.0.1/libs/pybind11/include/pybind11/complex.h +74 -0
- aigverse-0.0.1/libs/pybind11/include/pybind11/detail/class.h +757 -0
- aigverse-0.0.1/libs/pybind11/include/pybind11/detail/common.h +1287 -0
- aigverse-0.0.1/libs/pybind11/include/pybind11/detail/descr.h +172 -0
- aigverse-0.0.1/libs/pybind11/include/pybind11/detail/exception_translation.h +71 -0
- aigverse-0.0.1/libs/pybind11/include/pybind11/detail/init.h +436 -0
- aigverse-0.0.1/libs/pybind11/include/pybind11/detail/internals.h +764 -0
- aigverse-0.0.1/libs/pybind11/include/pybind11/detail/type_caster_base.h +1155 -0
- aigverse-0.0.1/libs/pybind11/include/pybind11/detail/typeid.h +65 -0
- aigverse-0.0.1/libs/pybind11/include/pybind11/detail/value_and_holder.h +77 -0
- aigverse-0.0.1/libs/pybind11/include/pybind11/eigen/common.h +9 -0
- aigverse-0.0.1/libs/pybind11/include/pybind11/eigen/matrix.h +715 -0
- aigverse-0.0.1/libs/pybind11/include/pybind11/eigen/tensor.h +515 -0
- aigverse-0.0.1/libs/pybind11/include/pybind11/eigen.h +12 -0
- aigverse-0.0.1/libs/pybind11/include/pybind11/embed.h +303 -0
- aigverse-0.0.1/libs/pybind11/include/pybind11/eval.h +156 -0
- aigverse-0.0.1/libs/pybind11/include/pybind11/functional.h +149 -0
- aigverse-0.0.1/libs/pybind11/include/pybind11/gil.h +215 -0
- aigverse-0.0.1/libs/pybind11/include/pybind11/gil_safe_call_once.h +100 -0
- aigverse-0.0.1/libs/pybind11/include/pybind11/iostream.h +265 -0
- aigverse-0.0.1/libs/pybind11/include/pybind11/numpy.h +2139 -0
- aigverse-0.0.1/libs/pybind11/include/pybind11/operators.h +202 -0
- aigverse-0.0.1/libs/pybind11/include/pybind11/options.h +92 -0
- aigverse-0.0.1/libs/pybind11/include/pybind11/pybind11.h +2975 -0
- aigverse-0.0.1/libs/pybind11/include/pybind11/pytypes.h +2606 -0
- aigverse-0.0.1/libs/pybind11/include/pybind11/stl/filesystem.h +124 -0
- aigverse-0.0.1/libs/pybind11/include/pybind11/stl.h +648 -0
- aigverse-0.0.1/libs/pybind11/include/pybind11/stl_bind.h +822 -0
- aigverse-0.0.1/libs/pybind11/include/pybind11/type_caster_pyobject_ptr.h +61 -0
- aigverse-0.0.1/libs/pybind11/include/pybind11/typing.h +242 -0
- aigverse-0.0.1/libs/pybind11/include/pybind11/warnings.h +75 -0
- aigverse-0.0.1/libs/pybind11/noxfile.py +107 -0
- aigverse-0.0.1/libs/pybind11/pybind11/__init__.py +19 -0
- aigverse-0.0.1/libs/pybind11/pybind11/__main__.py +86 -0
- aigverse-0.0.1/libs/pybind11/pybind11/_version.py +12 -0
- aigverse-0.0.1/libs/pybind11/pybind11/commands.py +39 -0
- aigverse-0.0.1/libs/pybind11/pybind11/py.typed +0 -0
- aigverse-0.0.1/libs/pybind11/pybind11/setup_helpers.py +500 -0
- aigverse-0.0.1/libs/pybind11/pyproject.toml +87 -0
- aigverse-0.0.1/libs/pybind11/setup.cfg +42 -0
- aigverse-0.0.1/libs/pybind11/setup.py +149 -0
- aigverse-0.0.1/libs/pybind11/tools/FindCatch.cmake +76 -0
- aigverse-0.0.1/libs/pybind11/tools/FindEigen3.cmake +86 -0
- aigverse-0.0.1/libs/pybind11/tools/FindPythonLibsNew.cmake +310 -0
- aigverse-0.0.1/libs/pybind11/tools/JoinPaths.cmake +23 -0
- aigverse-0.0.1/libs/pybind11/tools/check-style.sh +44 -0
- aigverse-0.0.1/libs/pybind11/tools/cmake_uninstall.cmake.in +23 -0
- aigverse-0.0.1/libs/pybind11/tools/codespell_ignore_lines_from_errors.py +40 -0
- aigverse-0.0.1/libs/pybind11/tools/libsize.py +38 -0
- aigverse-0.0.1/libs/pybind11/tools/make_changelog.py +92 -0
- aigverse-0.0.1/libs/pybind11/tools/pybind11.pc.in +7 -0
- aigverse-0.0.1/libs/pybind11/tools/pybind11Common.cmake +416 -0
- aigverse-0.0.1/libs/pybind11/tools/pybind11Config.cmake.in +233 -0
- aigverse-0.0.1/libs/pybind11/tools/pybind11GuessPythonExtSuffix.cmake +86 -0
- aigverse-0.0.1/libs/pybind11/tools/pybind11NewTools.cmake +336 -0
- aigverse-0.0.1/libs/pybind11/tools/pybind11Tools.cmake +216 -0
- aigverse-0.0.1/libs/pybind11/tools/pyproject.toml +3 -0
- aigverse-0.0.1/libs/pybind11/tools/setup_global.py.in +63 -0
- aigverse-0.0.1/libs/pybind11/tools/setup_main.py.in +44 -0
- aigverse-0.0.1/libs/pybind11/tools/test-pybind11GuessPythonExtSuffix.cmake +161 -0
- aigverse-0.0.1/pyproject.toml +63 -0
- aigverse-0.0.1/setup.cfg +4 -0
- aigverse-0.0.1/setup.py +117 -0
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
---
|
|
2
|
+
AlignAfterOpenBracket: Align
|
|
3
|
+
AlignConsecutiveAssignments: Consecutive
|
|
4
|
+
AlignConsecutiveDeclarations: Consecutive
|
|
5
|
+
AlignConsecutiveBitFields: Consecutive
|
|
6
|
+
AlignConsecutiveMacros: Consecutive
|
|
7
|
+
AlignEscapedNewlines: Left
|
|
8
|
+
AlignOperands: Align
|
|
9
|
+
AlignTrailingComments: true
|
|
10
|
+
AllowAllArgumentsOnNextLine: false
|
|
11
|
+
AllowAllParametersOfDeclarationOnNextLine: false
|
|
12
|
+
AllowAllConstructorInitializersOnNextLine: false
|
|
13
|
+
ConstructorInitializerAllOnOneLineOrOnePerLine: true
|
|
14
|
+
AllowShortBlocksOnASingleLine: Empty
|
|
15
|
+
AllowShortCaseLabelsOnASingleLine: true
|
|
16
|
+
AllowShortFunctionsOnASingleLine: Empty
|
|
17
|
+
AllowShortIfStatementsOnASingleLine: Never
|
|
18
|
+
AllowShortLambdasOnASingleLine: All
|
|
19
|
+
AllowShortLoopsOnASingleLine: true
|
|
20
|
+
AlwaysBreakTemplateDeclarations: Yes
|
|
21
|
+
BreakBeforeBraces: Custom
|
|
22
|
+
BraceWrapping:
|
|
23
|
+
AfterCaseLabel: true
|
|
24
|
+
AfterClass: true
|
|
25
|
+
AfterControlStatement: Always
|
|
26
|
+
AfterEnum: true
|
|
27
|
+
AfterFunction: true
|
|
28
|
+
AfterNamespace: true
|
|
29
|
+
AfterObjCDeclaration: true
|
|
30
|
+
AfterStruct: true
|
|
31
|
+
AfterUnion: true
|
|
32
|
+
AfterExternBlock: true
|
|
33
|
+
BeforeCatch: true
|
|
34
|
+
BeforeElse: true
|
|
35
|
+
BeforeLambdaBody: true
|
|
36
|
+
BeforeWhile: false
|
|
37
|
+
IndentBraces: false
|
|
38
|
+
SplitEmptyFunction: false
|
|
39
|
+
SplitEmptyRecord: false
|
|
40
|
+
SplitEmptyNamespace: false
|
|
41
|
+
BreakBeforeTernaryOperators: false
|
|
42
|
+
PointerAlignment: Left
|
|
43
|
+
BreakConstructorInitializers: AfterColon
|
|
44
|
+
BreakInheritanceList: BeforeColon
|
|
45
|
+
ColumnLimit: 120
|
|
46
|
+
ConstructorInitializerIndentWidth: 8
|
|
47
|
+
Cpp11BracedListStyle: true
|
|
48
|
+
DisableFormat: false
|
|
49
|
+
FixNamespaceComments: true
|
|
50
|
+
IncludeBlocks: Regroup
|
|
51
|
+
IncludeCategories:
|
|
52
|
+
- Regex: '<catch2\/[a-zA-Z0-9_]+.+>$'
|
|
53
|
+
Priority: 1
|
|
54
|
+
- Regex: '"[a-zA-Z0-9_\.]+.+"$'
|
|
55
|
+
Priority: 2
|
|
56
|
+
- Regex: '<fiction\/[a-zA-Z0-9_]+.+>$'
|
|
57
|
+
Priority: 3
|
|
58
|
+
- Regex: '<(alice|lorina|mockturtle|kitty|bill|nlohmann|fmt|z3|phmap|btree|tinyxml2|pybind11)(\/[a-zA-Z0-9_])*.+>$'
|
|
59
|
+
Priority: 4
|
|
60
|
+
- Regex: '<z3[a-zA-Z0-9_\+]+.+>$'
|
|
61
|
+
Priority: 5
|
|
62
|
+
- Regex: '<[a-zA-Z0-9_]+>$'
|
|
63
|
+
Priority: 6
|
|
64
|
+
IndentCaseLabels: true
|
|
65
|
+
IndentWidth: 4
|
|
66
|
+
Language: Cpp
|
|
67
|
+
ReflowComments: true
|
|
68
|
+
SortIncludes: CaseSensitive
|
|
69
|
+
SortUsingDeclarations: true
|
|
70
|
+
SpaceAfterLogicalNot: false
|
|
71
|
+
SpaceAfterTemplateKeyword: true
|
|
72
|
+
SpaceBeforeAssignmentOperators: true
|
|
73
|
+
SpaceBeforeCpp11BracedList: false
|
|
74
|
+
SpaceBeforeCtorInitializerColon: true
|
|
75
|
+
SpaceBeforeInheritanceColon: true
|
|
76
|
+
SpaceBeforeParens: ControlStatements
|
|
77
|
+
SpaceBeforeRangeBasedForLoopColon: true
|
|
78
|
+
SpaceInEmptyParentheses: false
|
|
79
|
+
SpacesBeforeTrailingComments: 2
|
|
80
|
+
SpacesInAngles: false
|
|
81
|
+
SpacesInCStyleCastParentheses: false
|
|
82
|
+
SpacesInContainerLiterals: false
|
|
83
|
+
SpacesInParentheses: false
|
|
84
|
+
SpacesInSquareBrackets: false
|
|
85
|
+
Standard: c++17
|
|
86
|
+
UseTab: Never
|
|
87
|
+
LineEnding: LF
|
|
88
|
+
|
|
89
|
+
...
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
FormatStyle: file
|
|
2
|
+
|
|
3
|
+
Checks: |
|
|
4
|
+
clang-diagnostic-*,
|
|
5
|
+
clang-analyzer-*,
|
|
6
|
+
bugprone-*,
|
|
7
|
+
-bugprone-easily-swappable-parameters,
|
|
8
|
+
cert-*,
|
|
9
|
+
-cert-dcl16-c,
|
|
10
|
+
-cert-dcl21-cpp,
|
|
11
|
+
-cert-dcl58-cpp,
|
|
12
|
+
-cert-err58-cpp,
|
|
13
|
+
concurrency-*,
|
|
14
|
+
cppcoreguidelines-*,
|
|
15
|
+
-cppcoreguidelines-avoid-magic-numbers,
|
|
16
|
+
-cppcoreguidelines-non-private-member-variables-in-classes,
|
|
17
|
+
-cppcoreguidelines-pro-type-union-access,
|
|
18
|
+
google-*,
|
|
19
|
+
-google-readability-todo,
|
|
20
|
+
-google-build-using-namespace,
|
|
21
|
+
hicpp-*,
|
|
22
|
+
-hicpp-named-parameter,
|
|
23
|
+
-hicpp-uppercase-literal-suffix,
|
|
24
|
+
misc-*,
|
|
25
|
+
-misc-no-recursion,
|
|
26
|
+
-misc-non-private-member-variables-in-classes,
|
|
27
|
+
-misc-use-anonymous-namespace,
|
|
28
|
+
modernize-*,
|
|
29
|
+
-modernize-use-trailing-return-type,
|
|
30
|
+
performance-*,
|
|
31
|
+
portability-*,
|
|
32
|
+
readability-*,
|
|
33
|
+
-readability-function-cognitive-complexity,
|
|
34
|
+
-readability-identifier-length,
|
|
35
|
+
-readability-isolate-declaration,
|
|
36
|
+
-readability-magic-numbers,
|
|
37
|
+
-readability-named-parameter,
|
|
38
|
+
-readability-uppercase-literal-suffix
|
|
39
|
+
|
|
40
|
+
CheckOptions:
|
|
41
|
+
- key: cppcoreguidelines-avoid-do-while.IgnoreMacros
|
|
42
|
+
value: "true"
|
|
43
|
+
- key: readability-identifier-naming.NamespaceCase
|
|
44
|
+
value: lower_case
|
|
45
|
+
- key: readability-identifier-naming.ClassCase
|
|
46
|
+
value: lower_case
|
|
47
|
+
- key: readability-identifier-naming.StructCase
|
|
48
|
+
value: lower_case
|
|
49
|
+
- key: readability-identifier-naming.MethodCase
|
|
50
|
+
value: lower_case
|
|
51
|
+
- key: readability-identifier-naming.MemberCase
|
|
52
|
+
value: lower_case
|
|
53
|
+
- key: readability-identifier-naming.FunctionCase
|
|
54
|
+
value: lower_case
|
|
55
|
+
- key: readability-identifier-naming.ParameterCase
|
|
56
|
+
value: lower_case
|
|
57
|
+
- key: readability-identifier-naming.ConstantParameterCase
|
|
58
|
+
value: lower_case
|
|
59
|
+
- key: readability-identifier-naming.TemplateParameterCase
|
|
60
|
+
value: CamelCase
|
|
61
|
+
- key: readability-identifier-naming.TypeTemplateParameterCase
|
|
62
|
+
value: CamelCase
|
|
63
|
+
- key: readability-identifier-naming.ValueTemplateParameterCase
|
|
64
|
+
value: aNy_CasE
|
|
65
|
+
- key: readability-identifier-naming.VariableCase
|
|
66
|
+
value: lower_case
|
|
67
|
+
- key: readability-identifier-naming.LocalVariableCase
|
|
68
|
+
value: lower_case
|
|
69
|
+
- key: readability-identifier-naming.StaticVariableCase
|
|
70
|
+
value: lower_case
|
|
71
|
+
- key: readability-identifier-naming.EnumCase
|
|
72
|
+
value: lower_case
|
|
73
|
+
- key: readability-identifier-naming.EnumConstantCase
|
|
74
|
+
value: UPPER_CASE
|
|
75
|
+
- key: readability-identifier-naming.ScopedEnumConstantCase
|
|
76
|
+
value: UPPER_CASE
|
|
77
|
+
- key: readability-identifier-naming.GlobalConstantCase
|
|
78
|
+
value: UPPER_CASE
|
|
79
|
+
- key: readability-identifier-naming.GlobalConstantIgnoredRegexp
|
|
80
|
+
value: "^has_.*_v$|^is_.*_v$|^.*_name$"
|
|
81
|
+
- key: readability-identifier-naming.LocalConstantCase
|
|
82
|
+
value: lower_case
|
|
83
|
+
- key: readability-identifier-naming.StaticConstantCase
|
|
84
|
+
value: lower_case
|
|
85
|
+
- key: readability-identifier-naming.TypeAliasCase
|
|
86
|
+
value: lower_case
|
|
87
|
+
- key: readability-identifier-naming.TypeAliasIgnoredRegexp
|
|
88
|
+
value: ".*Ntk.*|.*Lyt.*|.*Network.*|.*Layout.*"
|
|
89
|
+
- key: readability-identifier-naming.TypedefCase
|
|
90
|
+
value: lower_case
|
|
91
|
+
- key: readability-identifier-naming.UnionCase
|
|
92
|
+
value: lower_case
|
|
93
|
+
- key: readability-identifier-naming.MacroDefinitionCase
|
|
94
|
+
value: UPPER_CASE
|
|
95
|
+
- key: readability-identifier-naming.IgnoreMainLikeFunctions
|
|
96
|
+
value: "true"
|
|
@@ -0,0 +1,162 @@
|
|
|
1
|
+
# Byte-compiled / optimized / DLL files
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*$py.class
|
|
5
|
+
|
|
6
|
+
# C extensions
|
|
7
|
+
*.so
|
|
8
|
+
|
|
9
|
+
# Distribution / packaging
|
|
10
|
+
.Python
|
|
11
|
+
build/
|
|
12
|
+
develop-eggs/
|
|
13
|
+
dist/
|
|
14
|
+
downloads/
|
|
15
|
+
eggs/
|
|
16
|
+
.eggs/
|
|
17
|
+
lib/
|
|
18
|
+
lib64/
|
|
19
|
+
parts/
|
|
20
|
+
sdist/
|
|
21
|
+
var/
|
|
22
|
+
wheels/
|
|
23
|
+
share/python-wheels/
|
|
24
|
+
*.egg-info/
|
|
25
|
+
.installed.cfg
|
|
26
|
+
*.egg
|
|
27
|
+
MANIFEST
|
|
28
|
+
|
|
29
|
+
# PyInstaller
|
|
30
|
+
# Usually these files are written by a python script from a template
|
|
31
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
32
|
+
*.manifest
|
|
33
|
+
*.spec
|
|
34
|
+
|
|
35
|
+
# Installer logs
|
|
36
|
+
pip-log.txt
|
|
37
|
+
pip-delete-this-directory.txt
|
|
38
|
+
|
|
39
|
+
# Unit test / coverage reports
|
|
40
|
+
htmlcov/
|
|
41
|
+
.tox/
|
|
42
|
+
.nox/
|
|
43
|
+
.coverage
|
|
44
|
+
.coverage.*
|
|
45
|
+
.cache
|
|
46
|
+
nosetests.xml
|
|
47
|
+
coverage.xml
|
|
48
|
+
*.cover
|
|
49
|
+
*.py,cover
|
|
50
|
+
.hypothesis/
|
|
51
|
+
.pytest_cache/
|
|
52
|
+
cover/
|
|
53
|
+
|
|
54
|
+
# Translations
|
|
55
|
+
*.mo
|
|
56
|
+
*.pot
|
|
57
|
+
|
|
58
|
+
# Django stuff:
|
|
59
|
+
*.log
|
|
60
|
+
local_settings.py
|
|
61
|
+
db.sqlite3
|
|
62
|
+
db.sqlite3-journal
|
|
63
|
+
|
|
64
|
+
# Flask stuff:
|
|
65
|
+
instance/
|
|
66
|
+
.webassets-cache
|
|
67
|
+
|
|
68
|
+
# Scrapy stuff:
|
|
69
|
+
.scrapy
|
|
70
|
+
|
|
71
|
+
# Sphinx documentation
|
|
72
|
+
docs/_build/
|
|
73
|
+
|
|
74
|
+
# PyBuilder
|
|
75
|
+
.pybuilder/
|
|
76
|
+
target/
|
|
77
|
+
|
|
78
|
+
# Jupyter Notebook
|
|
79
|
+
.ipynb_checkpoints
|
|
80
|
+
|
|
81
|
+
# IPython
|
|
82
|
+
profile_default/
|
|
83
|
+
ipython_config.py
|
|
84
|
+
|
|
85
|
+
# pyenv
|
|
86
|
+
# For a library or package, you might want to ignore these files since the code is
|
|
87
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
88
|
+
# .python-version
|
|
89
|
+
|
|
90
|
+
# pipenv
|
|
91
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
92
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
93
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
94
|
+
# install all needed dependencies.
|
|
95
|
+
#Pipfile.lock
|
|
96
|
+
|
|
97
|
+
# poetry
|
|
98
|
+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
|
99
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
100
|
+
# commonly ignored for libraries.
|
|
101
|
+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
|
102
|
+
#poetry.lock
|
|
103
|
+
|
|
104
|
+
# pdm
|
|
105
|
+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
|
106
|
+
#pdm.lock
|
|
107
|
+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
|
|
108
|
+
# in version control.
|
|
109
|
+
# https://pdm.fming.dev/latest/usage/project/#working-with-version-control
|
|
110
|
+
.pdm.toml
|
|
111
|
+
.pdm-python
|
|
112
|
+
.pdm-build/
|
|
113
|
+
|
|
114
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
|
115
|
+
__pypackages__/
|
|
116
|
+
|
|
117
|
+
# Celery stuff
|
|
118
|
+
celerybeat-schedule
|
|
119
|
+
celerybeat.pid
|
|
120
|
+
|
|
121
|
+
# SageMath parsed files
|
|
122
|
+
*.sage.py
|
|
123
|
+
|
|
124
|
+
# Environments
|
|
125
|
+
.env
|
|
126
|
+
.venv
|
|
127
|
+
env/
|
|
128
|
+
venv/
|
|
129
|
+
ENV/
|
|
130
|
+
env.bak/
|
|
131
|
+
venv.bak/
|
|
132
|
+
|
|
133
|
+
# Spyder project settings
|
|
134
|
+
.spyderproject
|
|
135
|
+
.spyproject
|
|
136
|
+
|
|
137
|
+
# Rope project settings
|
|
138
|
+
.ropeproject
|
|
139
|
+
|
|
140
|
+
# mkdocs documentation
|
|
141
|
+
/site
|
|
142
|
+
|
|
143
|
+
# mypy
|
|
144
|
+
.mypy_cache/
|
|
145
|
+
.dmypy.json
|
|
146
|
+
dmypy.json
|
|
147
|
+
|
|
148
|
+
# Pyre type checker
|
|
149
|
+
.pyre/
|
|
150
|
+
|
|
151
|
+
# pytype static type analyzer
|
|
152
|
+
.pytype/
|
|
153
|
+
|
|
154
|
+
# Cython debug symbols
|
|
155
|
+
cython_debug/
|
|
156
|
+
|
|
157
|
+
# PyCharm
|
|
158
|
+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
|
159
|
+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
|
160
|
+
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
|
161
|
+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
|
162
|
+
#.idea/
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
# To run all pre-commit checks, use:
|
|
2
|
+
#
|
|
3
|
+
# pre-commit run -a
|
|
4
|
+
#
|
|
5
|
+
# To install pre-commit hooks that run every time you commit:
|
|
6
|
+
#
|
|
7
|
+
# pre-commit install
|
|
8
|
+
#
|
|
9
|
+
|
|
10
|
+
ci:
|
|
11
|
+
autoupdate_commit_msg: "⬆️ Bump pre-commit hooks"
|
|
12
|
+
autofix_commit_msg: "🎨 Incorporated pre-commit fixes"
|
|
13
|
+
|
|
14
|
+
exclude: "^libs/|^benchmarks/|bindings/aigverse/include/aigverse/pybind11_mkdoc_docstrings.hpp"
|
|
15
|
+
|
|
16
|
+
repos:
|
|
17
|
+
# Standard hooks
|
|
18
|
+
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
19
|
+
rev: v4.6.0
|
|
20
|
+
hooks:
|
|
21
|
+
- id: check-added-large-files
|
|
22
|
+
- id: check-case-conflict
|
|
23
|
+
- id: check-docstring-first
|
|
24
|
+
- id: check-merge-conflict
|
|
25
|
+
- id: check-toml
|
|
26
|
+
- id: check-yaml
|
|
27
|
+
- id: debug-statements
|
|
28
|
+
- id: end-of-file-fixer
|
|
29
|
+
- id: mixed-line-ending
|
|
30
|
+
- id: trailing-whitespace
|
|
31
|
+
|
|
32
|
+
# Handle unwanted unicode characters
|
|
33
|
+
- repo: https://github.com/sirosen/texthooks
|
|
34
|
+
rev: 0.6.7
|
|
35
|
+
hooks:
|
|
36
|
+
- id: fix-ligatures
|
|
37
|
+
- id: fix-smartquotes
|
|
38
|
+
|
|
39
|
+
# Check for common RST mistakes
|
|
40
|
+
- repo: https://github.com/pre-commit/pygrep-hooks
|
|
41
|
+
rev: v1.10.0
|
|
42
|
+
hooks:
|
|
43
|
+
- id: rst-backticks
|
|
44
|
+
- id: rst-directive-colons
|
|
45
|
+
- id: rst-inline-touching-normal
|
|
46
|
+
|
|
47
|
+
# clang-format the C++ part of the code base
|
|
48
|
+
- repo: https://github.com/pre-commit/mirrors-clang-format
|
|
49
|
+
rev: v18.1.8
|
|
50
|
+
hooks:
|
|
51
|
+
- id: clang-format
|
|
52
|
+
types_or: [ c++, c ]
|
|
53
|
+
args: [ "-style=file" ]
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
# Large parts of this build system are based on Jason Turner's C++ Starter
|
|
2
|
+
# Project (https://github.com/lefticus/cpp_starter_project) and CMake Template
|
|
3
|
+
# (https://github.com/cpp-best-practices/cmake_template)
|
|
4
|
+
|
|
5
|
+
cmake_minimum_required(VERSION 3.21)
|
|
6
|
+
|
|
7
|
+
# Only set the CMAKE_CXX_STANDARD if it is not set by someone else
|
|
8
|
+
if(NOT DEFINED CMAKE_CXX_STANDARD)
|
|
9
|
+
# Set C++ standard; at least C++17 is required
|
|
10
|
+
set(CMAKE_CXX_STANDARD 17)
|
|
11
|
+
endif()
|
|
12
|
+
|
|
13
|
+
# strongly encouraged to enable this globally to avoid conflicts between
|
|
14
|
+
# -Wpedantic being enabled and -std=c++20 and -std=gnu++20 for example when
|
|
15
|
+
# compiling with PCH enabled
|
|
16
|
+
set(CMAKE_CXX_EXTENSIONS OFF)
|
|
17
|
+
|
|
18
|
+
# Set the project name and version
|
|
19
|
+
project(
|
|
20
|
+
aigverse
|
|
21
|
+
VERSION 0.0.1
|
|
22
|
+
DESCRIPTION
|
|
23
|
+
"A Python library for working with logic networks, synthesis, and optimization."
|
|
24
|
+
HOMEPAGE_URL "https://github.com/marcelwa/aigverse"
|
|
25
|
+
LANGUAGES CXX C)
|
|
26
|
+
|
|
27
|
+
include(cmake/PreventInSourceBuilds.cmake)
|
|
28
|
+
include(cmake/ProjectOptions.cmake)
|
|
29
|
+
include(cmake/Utilities.cmake)
|
|
30
|
+
|
|
31
|
+
aigverse_setup_options()
|
|
32
|
+
aigverse_global_options()
|
|
33
|
+
aigverse_local_options()
|
|
34
|
+
|
|
35
|
+
# don't know if this should be set globally from here or not...
|
|
36
|
+
set(CMAKE_CXX_VISIBILITY_PRESET hidden)
|
|
37
|
+
|
|
38
|
+
set(GIT_SHA
|
|
39
|
+
"Unknown"
|
|
40
|
+
CACHE STRING "SHA this build was generated from")
|
|
41
|
+
string(SUBSTRING "${GIT_SHA}" 0 8 GIT_SHORT_SHA)
|
|
42
|
+
|
|
43
|
+
target_compile_features(aigverse_options INTERFACE cxx_std_${CMAKE_CXX_STANDARD})
|
|
44
|
+
|
|
45
|
+
# Alias for the options target
|
|
46
|
+
add_library(aigverse::aigverse_options ALIAS aigverse_options)
|
|
47
|
+
# Alias for the warnings target
|
|
48
|
+
add_library(aigverse::aigverse_warnings ALIAS aigverse_warnings)
|
|
49
|
+
|
|
50
|
+
# Include libraries
|
|
51
|
+
add_subdirectory(libs)
|
|
52
|
+
|
|
53
|
+
# Python bindings
|
|
54
|
+
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/bindings/)
|
|
55
|
+
|
|
56
|
+
# If MSVC is being used, and ASAN is enabled, we need to set the debugger
|
|
57
|
+
# environment so that it behaves well with MSVC's debugger, and we can run the
|
|
58
|
+
# target from visual studio
|
|
59
|
+
if(MSVC)
|
|
60
|
+
get_all_installable_targets(all_targets)
|
|
61
|
+
message("all_targets=${all_targets}")
|
|
62
|
+
set_target_properties(
|
|
63
|
+
${all_targets} PROPERTIES VS_DEBUGGER_ENVIRONMENT
|
|
64
|
+
"PATH=$(VC_ExecutablePath_x64);%PATH%")
|
|
65
|
+
endif()
|
|
66
|
+
|
|
67
|
+
# set the startup project for the "play" button in MSVC
|
|
68
|
+
set_property(DIRECTORY PROPERTY VS_STARTUP_PROJECT intro)
|
|
69
|
+
|
|
70
|
+
if(CMAKE_SKIP_INSTALL_RULES)
|
|
71
|
+
return()
|
|
72
|
+
endif()
|
aigverse-0.0.1/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024 Marcel Walter
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
prune bib
|
|
2
|
+
|
|
3
|
+
graft docs/_static/
|
|
4
|
+
|
|
5
|
+
graft libs/
|
|
6
|
+
prune libs/mockturtle/lib/nauty/**
|
|
7
|
+
|
|
8
|
+
prune **/.git
|
|
9
|
+
prune **/.github
|
|
10
|
+
prune **/app
|
|
11
|
+
prune **/apps
|
|
12
|
+
prune **/doc
|
|
13
|
+
prune **/plots
|
|
14
|
+
prune **/css
|
|
15
|
+
prune **/html
|
|
16
|
+
prune **/test
|
|
17
|
+
prune **/tests
|
|
18
|
+
prune **/benchmark
|
|
19
|
+
prune **/benchmarks
|
|
20
|
+
prune **/experiment
|
|
21
|
+
prune **/experiments
|
|
22
|
+
prune **/examples
|
|
23
|
+
|
|
24
|
+
prune **cmake-build-**
|
|
25
|
+
|
|
26
|
+
exclude **.pdf
|
|
27
|
+
exclude **.ans
|
|
28
|
+
exclude **.out
|
|
29
|
+
exclude **.log
|
|
30
|
+
exclude **.xml
|
aigverse-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: aigverse
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: A Python library for working with logic networks, synthesis, and optimization.
|
|
5
|
+
Home-page: https://github.com/marcelwa/aigverse
|
|
6
|
+
Author: Marcel Walter
|
|
7
|
+
Author-email: Marcel Walter <marcel.walter@tum.de>
|
|
8
|
+
License: MIT License
|
|
9
|
+
|
|
10
|
+
Copyright (c) 2024 Marcel Walter
|
|
11
|
+
|
|
12
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
13
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
14
|
+
in the Software without restriction, including without limitation the rights
|
|
15
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
16
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
17
|
+
furnished to do so, subject to the following conditions:
|
|
18
|
+
|
|
19
|
+
The above copyright notice and this permission notice shall be included in all
|
|
20
|
+
copies or substantial portions of the Software.
|
|
21
|
+
|
|
22
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
23
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
24
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
25
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
26
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
27
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
28
|
+
SOFTWARE.
|
|
29
|
+
|
|
30
|
+
Project-URL: Source, https://github.com/marcelwa/aigverse
|
|
31
|
+
Project-URL: Tracker, https://github.com/marcelwa/aigverse/issues
|
|
32
|
+
Keywords: aigverse,logic,synthesis,AIG,optimization
|
|
33
|
+
Classifier: Development Status :: 4 - Beta
|
|
34
|
+
Classifier: Programming Language :: Python :: 3
|
|
35
|
+
Classifier: Programming Language :: C++
|
|
36
|
+
Classifier: Environment :: Console
|
|
37
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
38
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
39
|
+
Classifier: Operating System :: MacOS
|
|
40
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
41
|
+
Classifier: Intended Audience :: Science/Research
|
|
42
|
+
Classifier: Natural Language :: English
|
|
43
|
+
Classifier: Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)
|
|
44
|
+
Requires-Python: >=3.8
|
|
45
|
+
Description-Content-Type: text/markdown
|
|
46
|
+
License-File: LICENSE
|
|
47
|
+
|
|
48
|
+
# aigverse
|
aigverse-0.0.1/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# aigverse
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: aigverse
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: A Python library for working with logic networks, synthesis, and optimization.
|
|
5
|
+
Home-page: https://github.com/marcelwa/aigverse
|
|
6
|
+
Author: Marcel Walter
|
|
7
|
+
Author-email: Marcel Walter <marcel.walter@tum.de>
|
|
8
|
+
License: MIT License
|
|
9
|
+
|
|
10
|
+
Copyright (c) 2024 Marcel Walter
|
|
11
|
+
|
|
12
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
13
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
14
|
+
in the Software without restriction, including without limitation the rights
|
|
15
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
16
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
17
|
+
furnished to do so, subject to the following conditions:
|
|
18
|
+
|
|
19
|
+
The above copyright notice and this permission notice shall be included in all
|
|
20
|
+
copies or substantial portions of the Software.
|
|
21
|
+
|
|
22
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
23
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
24
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
25
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
26
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
27
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
28
|
+
SOFTWARE.
|
|
29
|
+
|
|
30
|
+
Project-URL: Source, https://github.com/marcelwa/aigverse
|
|
31
|
+
Project-URL: Tracker, https://github.com/marcelwa/aigverse/issues
|
|
32
|
+
Keywords: aigverse,logic,synthesis,AIG,optimization
|
|
33
|
+
Classifier: Development Status :: 4 - Beta
|
|
34
|
+
Classifier: Programming Language :: Python :: 3
|
|
35
|
+
Classifier: Programming Language :: C++
|
|
36
|
+
Classifier: Environment :: Console
|
|
37
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
38
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
39
|
+
Classifier: Operating System :: MacOS
|
|
40
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
41
|
+
Classifier: Intended Audience :: Science/Research
|
|
42
|
+
Classifier: Natural Language :: English
|
|
43
|
+
Classifier: Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)
|
|
44
|
+
Requires-Python: >=3.8
|
|
45
|
+
Description-Content-Type: text/markdown
|
|
46
|
+
License-File: LICENSE
|
|
47
|
+
|
|
48
|
+
# aigverse
|