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.
Files changed (688) hide show
  1. aigverse-0.0.1/.clang-format +89 -0
  2. aigverse-0.0.1/.clang-tidy +96 -0
  3. aigverse-0.0.1/.gitignore +162 -0
  4. aigverse-0.0.1/.gitmodules +6 -0
  5. aigverse-0.0.1/.pre-commit-config.yaml +53 -0
  6. aigverse-0.0.1/CMakeLists.txt +72 -0
  7. aigverse-0.0.1/LICENSE +21 -0
  8. aigverse-0.0.1/MANIFEST.in +30 -0
  9. aigverse-0.0.1/PKG-INFO +48 -0
  10. aigverse-0.0.1/README.md +1 -0
  11. aigverse-0.0.1/aigverse.egg-info/PKG-INFO +48 -0
  12. aigverse-0.0.1/aigverse.egg-info/SOURCES.txt +686 -0
  13. aigverse-0.0.1/aigverse.egg-info/dependency_links.txt +1 -0
  14. aigverse-0.0.1/aigverse.egg-info/not-zip-safe +1 -0
  15. aigverse-0.0.1/aigverse.egg-info/top_level.txt +1 -0
  16. aigverse-0.0.1/bindings/CMakeLists.txt +1 -0
  17. aigverse-0.0.1/bindings/__init__.py +0 -0
  18. aigverse-0.0.1/bindings/aigverse/CMakeLists.txt +5 -0
  19. aigverse-0.0.1/bindings/aigverse/__init__.py +0 -0
  20. aigverse-0.0.1/bindings/aigverse/aigverse.cpp +26 -0
  21. aigverse-0.0.1/bindings/aigverse/include/aigverse/io/read_aiger.hpp +56 -0
  22. aigverse-0.0.1/bindings/aigverse/include/aigverse/networks/logic_networks.hpp +158 -0
  23. aigverse-0.0.1/cmake/Cache.cmake +30 -0
  24. aigverse-0.0.1/cmake/CheckSubmodules.cmake +10 -0
  25. aigverse-0.0.1/cmake/CompilerWarnings.cmake +134 -0
  26. aigverse-0.0.1/cmake/Coverage.cmake +7 -0
  27. aigverse-0.0.1/cmake/Hardening.cmake +112 -0
  28. aigverse-0.0.1/cmake/InterproceduralOptimization.cmake +9 -0
  29. aigverse-0.0.1/cmake/PackageProject.cmake +210 -0
  30. aigverse-0.0.1/cmake/PreventInSourceBuilds.cmake +19 -0
  31. aigverse-0.0.1/cmake/ProjectOptions.cmake +140 -0
  32. aigverse-0.0.1/cmake/Sanitizers.cmake +97 -0
  33. aigverse-0.0.1/cmake/StandardProjectSettings.cmake +49 -0
  34. aigverse-0.0.1/cmake/SystemLink.cmake +65 -0
  35. aigverse-0.0.1/cmake/Utilities.cmake +101 -0
  36. aigverse-0.0.1/cmake/VCEnvironment.cmake +78 -0
  37. aigverse-0.0.1/libs/.dcignore +2 -0
  38. aigverse-0.0.1/libs/CMakeLists.txt +11 -0
  39. aigverse-0.0.1/libs/mockturtle/.clang-format +191 -0
  40. aigverse-0.0.1/libs/mockturtle/.codecov.yml +7 -0
  41. aigverse-0.0.1/libs/mockturtle/.git +1 -0
  42. aigverse-0.0.1/libs/mockturtle/.gitignore +10 -0
  43. aigverse-0.0.1/libs/mockturtle/.pre-commit-config.yaml +13 -0
  44. aigverse-0.0.1/libs/mockturtle/.ql/include.ql +19 -0
  45. aigverse-0.0.1/libs/mockturtle/.ql/qlpack.yml +4 -0
  46. aigverse-0.0.1/libs/mockturtle/.ql/queries.xml +1 -0
  47. aigverse-0.0.1/libs/mockturtle/.readthedocs.yml +15 -0
  48. aigverse-0.0.1/libs/mockturtle/CMakeLists.txt +62 -0
  49. aigverse-0.0.1/libs/mockturtle/Dockerfile +20 -0
  50. aigverse-0.0.1/libs/mockturtle/LICENSE +21 -0
  51. aigverse-0.0.1/libs/mockturtle/README.md +45 -0
  52. aigverse-0.0.1/libs/mockturtle/_typos.toml +15 -0
  53. aigverse-0.0.1/libs/mockturtle/docs/Doxyfile +2656 -0
  54. aigverse-0.0.1/libs/mockturtle/docs/Makefile +31 -0
  55. aigverse-0.0.1/libs/mockturtle/docs/_static/flow.svg +37 -0
  56. aigverse-0.0.1/libs/mockturtle/docs/acknowledgments.rst +7 -0
  57. aigverse-0.0.1/libs/mockturtle/docs/algorithms/aig_balancing.rst +15 -0
  58. aigverse-0.0.1/libs/mockturtle/docs/algorithms/akers_synthesis.rst +38 -0
  59. aigverse-0.0.1/libs/mockturtle/docs/algorithms/aqfp_resynthesis.rst +28 -0
  60. aigverse-0.0.1/libs/mockturtle/docs/algorithms/balancing.rst +33 -0
  61. aigverse-0.0.1/libs/mockturtle/docs/algorithms/bi_decomposition.rst +25 -0
  62. aigverse-0.0.1/libs/mockturtle/docs/algorithms/buffer_insertion.rst +43 -0
  63. aigverse-0.0.1/libs/mockturtle/docs/algorithms/circuit_validator.rst +92 -0
  64. aigverse-0.0.1/libs/mockturtle/docs/algorithms/cleanup.rst +8 -0
  65. aigverse-0.0.1/libs/mockturtle/docs/algorithms/cnf.rst +22 -0
  66. aigverse-0.0.1/libs/mockturtle/docs/algorithms/collapse_mapped.rst +19 -0
  67. aigverse-0.0.1/libs/mockturtle/docs/algorithms/cost_generic_resub.rst +31 -0
  68. aigverse-0.0.1/libs/mockturtle/docs/algorithms/cover_to_graph.rst +37 -0
  69. aigverse-0.0.1/libs/mockturtle/docs/algorithms/cut_enumeration.rst +112 -0
  70. aigverse-0.0.1/libs/mockturtle/docs/algorithms/cut_rewriting.rst +59 -0
  71. aigverse-0.0.1/libs/mockturtle/docs/algorithms/decomposition.rst +8 -0
  72. aigverse-0.0.1/libs/mockturtle/docs/algorithms/dont_cares.rst +7 -0
  73. aigverse-0.0.1/libs/mockturtle/docs/algorithms/dsd_decomposition.rst +49 -0
  74. aigverse-0.0.1/libs/mockturtle/docs/algorithms/equivalence_checking.rst +40 -0
  75. aigverse-0.0.1/libs/mockturtle/docs/algorithms/equivalence_classes.rst +11 -0
  76. aigverse-0.0.1/libs/mockturtle/docs/algorithms/extract_adders.rst +6 -0
  77. aigverse-0.0.1/libs/mockturtle/docs/algorithms/extract_linear.rst +23 -0
  78. aigverse-0.0.1/libs/mockturtle/docs/algorithms/functional_reduction.rst +30 -0
  79. aigverse-0.0.1/libs/mockturtle/docs/algorithms/gates_to_nodes.rst +10 -0
  80. aigverse-0.0.1/libs/mockturtle/docs/algorithms/index_decompositions.rst +9 -0
  81. aigverse-0.0.1/libs/mockturtle/docs/algorithms/index_information.rst +13 -0
  82. aigverse-0.0.1/libs/mockturtle/docs/algorithms/index_restructuring.rst +34 -0
  83. aigverse-0.0.1/libs/mockturtle/docs/algorithms/index_transformations.rst +17 -0
  84. aigverse-0.0.1/libs/mockturtle/docs/algorithms/index_validation.rst +10 -0
  85. aigverse-0.0.1/libs/mockturtle/docs/algorithms/klut_to_graph.rst +40 -0
  86. aigverse-0.0.1/libs/mockturtle/docs/algorithms/linear_resynthesis.rst +26 -0
  87. aigverse-0.0.1/libs/mockturtle/docs/algorithms/lut_mapping.rst +150 -0
  88. aigverse-0.0.1/libs/mockturtle/docs/algorithms/mapper.rst +223 -0
  89. aigverse-0.0.1/libs/mockturtle/docs/algorithms/mig_algebraic_rewriting.rst +15 -0
  90. aigverse-0.0.1/libs/mockturtle/docs/algorithms/miter.rst +6 -0
  91. aigverse-0.0.1/libs/mockturtle/docs/algorithms/node_resynthesis.rst +76 -0
  92. aigverse-0.0.1/libs/mockturtle/docs/algorithms/pattern_generation.rst +38 -0
  93. aigverse-0.0.1/libs/mockturtle/docs/algorithms/reconv_cut.rst +12 -0
  94. aigverse-0.0.1/libs/mockturtle/docs/algorithms/refactoring.rst +56 -0
  95. aigverse-0.0.1/libs/mockturtle/docs/algorithms/resubstitution.rst +109 -0
  96. aigverse-0.0.1/libs/mockturtle/docs/algorithms/resyn_engines.rst +22 -0
  97. aigverse-0.0.1/libs/mockturtle/docs/algorithms/retiming.rst +6 -0
  98. aigverse-0.0.1/libs/mockturtle/docs/algorithms/rewrite.rst +79 -0
  99. aigverse-0.0.1/libs/mockturtle/docs/algorithms/simulation.rst +115 -0
  100. aigverse-0.0.1/libs/mockturtle/docs/algorithms/xag_algebraic_rewriting.rst +15 -0
  101. aigverse-0.0.1/libs/mockturtle/docs/algorithms/xag_balancing.rst +15 -0
  102. aigverse-0.0.1/libs/mockturtle/docs/algorithms/xag_optimization.rst +9 -0
  103. aigverse-0.0.1/libs/mockturtle/docs/algorithms/xmg_optimization.rst +6 -0
  104. aigverse-0.0.1/libs/mockturtle/docs/changelog.rst +230 -0
  105. aigverse-0.0.1/libs/mockturtle/docs/conf.py +230 -0
  106. aigverse-0.0.1/libs/mockturtle/docs/debugging.rst +87 -0
  107. aigverse-0.0.1/libs/mockturtle/docs/events.rst +11 -0
  108. aigverse-0.0.1/libs/mockturtle/docs/generators/arithmetic.rst +15 -0
  109. aigverse-0.0.1/libs/mockturtle/docs/generators/control.rst +12 -0
  110. aigverse-0.0.1/libs/mockturtle/docs/generators/majority.rst +10 -0
  111. aigverse-0.0.1/libs/mockturtle/docs/generators/modular_arithmetic.rst +38 -0
  112. aigverse-0.0.1/libs/mockturtle/docs/getting_started.rst +88 -0
  113. aigverse-0.0.1/libs/mockturtle/docs/implementations.rst +386 -0
  114. aigverse-0.0.1/libs/mockturtle/docs/index.rst +61 -0
  115. aigverse-0.0.1/libs/mockturtle/docs/io/lorina_readers.rst +22 -0
  116. aigverse-0.0.1/libs/mockturtle/docs/io/writers.rst +84 -0
  117. aigverse-0.0.1/libs/mockturtle/docs/network.rst +207 -0
  118. aigverse-0.0.1/libs/mockturtle/docs/philosophy.rst +33 -0
  119. aigverse-0.0.1/libs/mockturtle/docs/properties.rst +39 -0
  120. aigverse-0.0.1/libs/mockturtle/docs/requirements.txt +3 -0
  121. aigverse-0.0.1/libs/mockturtle/docs/sequential.rst +37 -0
  122. aigverse-0.0.1/libs/mockturtle/docs/utils/util_data_structures.rst +221 -0
  123. aigverse-0.0.1/libs/mockturtle/docs/utils/util_functions.rst +22 -0
  124. aigverse-0.0.1/libs/mockturtle/docs/views.rst +159 -0
  125. aigverse-0.0.1/libs/mockturtle/include/CMakeLists.txt +13 -0
  126. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/aig_balancing.hpp +482 -0
  127. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/aig_resub.hpp +812 -0
  128. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/akers_synthesis.hpp +880 -0
  129. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/aqfp/aqfp_assumptions.hpp +138 -0
  130. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/aqfp/aqfp_cleanup.hpp +160 -0
  131. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/aqfp/aqfp_db.hpp +450 -0
  132. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/aqfp/aqfp_fanout_resyn.hpp +172 -0
  133. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/aqfp/aqfp_legalization.hpp +331 -0
  134. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/aqfp/aqfp_node_resyn.hpp +253 -0
  135. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/aqfp/aqfp_rebuild.hpp +280 -0
  136. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/aqfp/aqfp_resynthesis.hpp +378 -0
  137. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/aqfp/aqfp_retiming.hpp +681 -0
  138. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/aqfp/buffer_insertion.hpp +1980 -0
  139. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/aqfp/buffer_verification.hpp +292 -0
  140. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/aqfp/detail/dag.hpp +159 -0
  141. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/aqfp/detail/dag_cost.hpp +508 -0
  142. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/aqfp/detail/dag_gen.hpp +389 -0
  143. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/aqfp/detail/dag_util.hpp +316 -0
  144. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/aqfp/detail/db_builder.hpp +319 -0
  145. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/aqfp/detail/db_utils.hpp +278 -0
  146. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/aqfp/detail/npn_cache.hpp +89 -0
  147. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/aqfp/detail/partial_dag.hpp +243 -0
  148. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/aqfp/mig_algebraic_rewriting_splitters.hpp +407 -0
  149. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/aqfp/mig_resub_splitters.hpp +581 -0
  150. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/aqfp/optimal_buffer_insertion.hpp +563 -0
  151. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/balancing/esop_balancing.hpp +305 -0
  152. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/balancing/sop_balancing.hpp +201 -0
  153. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/balancing/utils.hpp +80 -0
  154. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/balancing.hpp +446 -0
  155. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/bi_decomposition.hpp +171 -0
  156. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/cell_window.hpp +509 -0
  157. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/circuit_validator.hpp +799 -0
  158. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/cleanup.hpp +657 -0
  159. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/cnf.hpp +507 -0
  160. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/collapse_mapped.hpp +463 -0
  161. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/cover_to_graph.hpp +306 -0
  162. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/cut_enumeration/cnf_cut.hpp +109 -0
  163. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/cut_enumeration/exact_map_cut.hpp +100 -0
  164. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/cut_enumeration/gia_cut.hpp +82 -0
  165. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/cut_enumeration/mf_cut.hpp +102 -0
  166. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/cut_enumeration/rewrite_cut.hpp +88 -0
  167. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/cut_enumeration/spectr_cut.hpp +197 -0
  168. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/cut_enumeration/tech_map_cut.hpp +100 -0
  169. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/cut_enumeration.hpp +1840 -0
  170. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/cut_rewriting.hpp +868 -0
  171. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/decomposition.hpp +301 -0
  172. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/detail/database_generator.hpp +96 -0
  173. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/detail/mffc_utils.hpp +135 -0
  174. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/detail/minmc_xags.hpp +198 -0
  175. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/detail/resub_utils.hpp +782 -0
  176. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/detail/switching_activity.hpp +70 -0
  177. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/dont_cares.hpp +358 -0
  178. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/dsd_decomposition.hpp +238 -0
  179. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/emap.hpp +5972 -0
  180. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/equivalence_checking.hpp +325 -0
  181. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/equivalence_classes.hpp +156 -0
  182. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/exact_mc_synthesis.hpp +638 -0
  183. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/exorcism.hpp +82 -0
  184. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/experimental/boolean_optimization.hpp +356 -0
  185. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/experimental/cost_generic_resub.hpp +426 -0
  186. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/experimental/cost_resyn.hpp +1289 -0
  187. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/experimental/decompose_multioutput.hpp +397 -0
  188. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/experimental/sim_resub.hpp +545 -0
  189. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/experimental/window_resub.hpp +834 -0
  190. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/explorer.hpp +996 -0
  191. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/extract_adders.hpp +971 -0
  192. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/extract_linear.hpp +208 -0
  193. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/functional_reduction.hpp +488 -0
  194. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/gates_to_nodes.hpp +174 -0
  195. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/klut_to_graph.hpp +131 -0
  196. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/linear_resynthesis.hpp +1008 -0
  197. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/lut_mapper.hpp +3015 -0
  198. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/lut_mapping.hpp +546 -0
  199. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/mapper.hpp +3483 -0
  200. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/mig_algebraic_rewriting.hpp +376 -0
  201. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/mig_inv_optimization.hpp +394 -0
  202. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/mig_inv_propagation.hpp +374 -0
  203. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/mig_resub.hpp +875 -0
  204. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/miter.hpp +113 -0
  205. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/network_fuzz_tester.hpp +260 -0
  206. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/node_resynthesis/akers.hpp +76 -0
  207. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/node_resynthesis/bidecomposition.hpp +82 -0
  208. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/node_resynthesis/cached.hpp +317 -0
  209. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/node_resynthesis/composed.hpp +83 -0
  210. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/node_resynthesis/davio.hpp +150 -0
  211. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/node_resynthesis/direct.hpp +264 -0
  212. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/node_resynthesis/dsd.hpp +147 -0
  213. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/node_resynthesis/exact.hpp +659 -0
  214. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/node_resynthesis/mig_npn.hpp +234 -0
  215. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/node_resynthesis/null.hpp +57 -0
  216. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/node_resynthesis/shannon.hpp +100 -0
  217. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/node_resynthesis/sop_factoring.hpp +453 -0
  218. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/node_resynthesis/traits.hpp +92 -0
  219. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/node_resynthesis/xag_minmc.hpp +472 -0
  220. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/node_resynthesis/xag_minmc2.hpp +172 -0
  221. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/node_resynthesis/xag_npn.hpp +691 -0
  222. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/node_resynthesis/xmg3_npn.hpp +347 -0
  223. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/node_resynthesis/xmg_npn.hpp +292 -0
  224. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/node_resynthesis.hpp +357 -0
  225. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/pattern_generation.hpp +603 -0
  226. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/reconv_cut.hpp +461 -0
  227. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/refactoring.hpp +420 -0
  228. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/resubstitution.hpp +859 -0
  229. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/resyn_engines/aig_enumerative.hpp +472 -0
  230. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/resyn_engines/dump_resyn.hpp +120 -0
  231. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/resyn_engines/mig_enumerative.hpp +284 -0
  232. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/resyn_engines/mig_resyn.hpp +1344 -0
  233. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/resyn_engines/mux_resyn.hpp +226 -0
  234. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/resyn_engines/xag_resyn.hpp +875 -0
  235. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/retiming.hpp +808 -0
  236. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/rewrite.hpp +953 -0
  237. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/satlut_mapping.hpp +480 -0
  238. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/sim_resub.hpp +432 -0
  239. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/simulation.hpp +982 -0
  240. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/testcase_minimizer.hpp +558 -0
  241. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/window_rewriting.hpp +799 -0
  242. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/xag_algebraic_rewriting.hpp +565 -0
  243. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/xag_balancing.hpp +729 -0
  244. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/xag_optimization.hpp +273 -0
  245. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/xag_resub_withDC.hpp +989 -0
  246. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/xmg_algebraic_rewriting.hpp +518 -0
  247. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/xmg_optimization.hpp +101 -0
  248. aigverse-0.0.1/libs/mockturtle/include/mockturtle/algorithms/xmg_resub.hpp +346 -0
  249. aigverse-0.0.1/libs/mockturtle/include/mockturtle/generators/arithmetic.hpp +411 -0
  250. aigverse-0.0.1/libs/mockturtle/include/mockturtle/generators/control.hpp +212 -0
  251. aigverse-0.0.1/libs/mockturtle/include/mockturtle/generators/legacy.hpp +209 -0
  252. aigverse-0.0.1/libs/mockturtle/include/mockturtle/generators/majority.hpp +136 -0
  253. aigverse-0.0.1/libs/mockturtle/include/mockturtle/generators/majority_n.hpp +90 -0
  254. aigverse-0.0.1/libs/mockturtle/include/mockturtle/generators/modular_arithmetic.hpp +796 -0
  255. aigverse-0.0.1/libs/mockturtle/include/mockturtle/generators/random_network.hpp +672 -0
  256. aigverse-0.0.1/libs/mockturtle/include/mockturtle/generators/self_dualize.hpp +129 -0
  257. aigverse-0.0.1/libs/mockturtle/include/mockturtle/generators/sorting.hpp +148 -0
  258. aigverse-0.0.1/libs/mockturtle/include/mockturtle/interface.hpp +768 -0
  259. aigverse-0.0.1/libs/mockturtle/include/mockturtle/io/aiger_reader.hpp +233 -0
  260. aigverse-0.0.1/libs/mockturtle/include/mockturtle/io/bench_reader.hpp +194 -0
  261. aigverse-0.0.1/libs/mockturtle/include/mockturtle/io/blif_reader.hpp +332 -0
  262. aigverse-0.0.1/libs/mockturtle/include/mockturtle/io/bristol_reader.hpp +149 -0
  263. aigverse-0.0.1/libs/mockturtle/include/mockturtle/io/dimacs_reader.hpp +113 -0
  264. aigverse-0.0.1/libs/mockturtle/include/mockturtle/io/genlib_reader.hpp +169 -0
  265. aigverse-0.0.1/libs/mockturtle/include/mockturtle/io/pla_reader.hpp +154 -0
  266. aigverse-0.0.1/libs/mockturtle/include/mockturtle/io/serialize.hpp +314 -0
  267. aigverse-0.0.1/libs/mockturtle/include/mockturtle/io/super_reader.hpp +103 -0
  268. aigverse-0.0.1/libs/mockturtle/include/mockturtle/io/verilog_reader.hpp +636 -0
  269. aigverse-0.0.1/libs/mockturtle/include/mockturtle/io/write_aiger.hpp +199 -0
  270. aigverse-0.0.1/libs/mockturtle/include/mockturtle/io/write_bench.hpp +164 -0
  271. aigverse-0.0.1/libs/mockturtle/include/mockturtle/io/write_blif.hpp +430 -0
  272. aigverse-0.0.1/libs/mockturtle/include/mockturtle/io/write_dimacs.hpp +126 -0
  273. aigverse-0.0.1/libs/mockturtle/include/mockturtle/io/write_dot.hpp +456 -0
  274. aigverse-0.0.1/libs/mockturtle/include/mockturtle/io/write_genlib.hpp +105 -0
  275. aigverse-0.0.1/libs/mockturtle/include/mockturtle/io/write_patterns.hpp +87 -0
  276. aigverse-0.0.1/libs/mockturtle/include/mockturtle/io/write_verilog.hpp +1315 -0
  277. aigverse-0.0.1/libs/mockturtle/include/mockturtle/mockturtle.hpp +218 -0
  278. aigverse-0.0.1/libs/mockturtle/include/mockturtle/networks/abstract_xag.hpp +892 -0
  279. aigverse-0.0.1/libs/mockturtle/include/mockturtle/networks/aig.hpp +1265 -0
  280. aigverse-0.0.1/libs/mockturtle/include/mockturtle/networks/aqfp.hpp +1121 -0
  281. aigverse-0.0.1/libs/mockturtle/include/mockturtle/networks/block.hpp +1078 -0
  282. aigverse-0.0.1/libs/mockturtle/include/mockturtle/networks/buffered.hpp +1030 -0
  283. aigverse-0.0.1/libs/mockturtle/include/mockturtle/networks/cover.hpp +808 -0
  284. aigverse-0.0.1/libs/mockturtle/include/mockturtle/networks/crossed.hpp +867 -0
  285. aigverse-0.0.1/libs/mockturtle/include/mockturtle/networks/detail/foreach.hpp +224 -0
  286. aigverse-0.0.1/libs/mockturtle/include/mockturtle/networks/events.hpp +134 -0
  287. aigverse-0.0.1/libs/mockturtle/include/mockturtle/networks/generic.hpp +1065 -0
  288. aigverse-0.0.1/libs/mockturtle/include/mockturtle/networks/gia.hpp +269 -0
  289. aigverse-0.0.1/libs/mockturtle/include/mockturtle/networks/klut.hpp +707 -0
  290. aigverse-0.0.1/libs/mockturtle/include/mockturtle/networks/mig.hpp +1249 -0
  291. aigverse-0.0.1/libs/mockturtle/include/mockturtle/networks/muxig.hpp +235 -0
  292. aigverse-0.0.1/libs/mockturtle/include/mockturtle/networks/sequential.hpp +925 -0
  293. aigverse-0.0.1/libs/mockturtle/include/mockturtle/networks/storage.hpp +259 -0
  294. aigverse-0.0.1/libs/mockturtle/include/mockturtle/networks/tig.hpp +1133 -0
  295. aigverse-0.0.1/libs/mockturtle/include/mockturtle/networks/xag.hpp +1288 -0
  296. aigverse-0.0.1/libs/mockturtle/include/mockturtle/networks/xmg.hpp +1493 -0
  297. aigverse-0.0.1/libs/mockturtle/include/mockturtle/properties/aqfpcost.hpp +237 -0
  298. aigverse-0.0.1/libs/mockturtle/include/mockturtle/properties/litcost.hpp +270 -0
  299. aigverse-0.0.1/libs/mockturtle/include/mockturtle/properties/mccost.hpp +301 -0
  300. aigverse-0.0.1/libs/mockturtle/include/mockturtle/properties/migcost.hpp +117 -0
  301. aigverse-0.0.1/libs/mockturtle/include/mockturtle/properties/xmgcost.hpp +129 -0
  302. aigverse-0.0.1/libs/mockturtle/include/mockturtle/traits.hpp +2674 -0
  303. aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/abc.hpp +118 -0
  304. aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/algorithm.hpp +230 -0
  305. aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/cost_functions.hpp +146 -0
  306. aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/cuts.hpp +591 -0
  307. aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/debugging_utils.hpp +551 -0
  308. aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/hash_functions.hpp +156 -0
  309. aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/include/percy.hpp +51 -0
  310. aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/include/supergate.hpp +92 -0
  311. aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/index_list.hpp +1067 -0
  312. aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/json_utils.hpp +53 -0
  313. aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/mixed_radix.hpp +113 -0
  314. aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/name_utils.hpp +159 -0
  315. aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/network_cache.hpp +173 -0
  316. aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/network_utils.hpp +237 -0
  317. aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/node_map.hpp +555 -0
  318. aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/null_utils.hpp +46 -0
  319. aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/progress_bar.hpp +178 -0
  320. aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/recursive_cost_functions.hpp +122 -0
  321. aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/sop_utils.hpp +594 -0
  322. aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/standard_cell.hpp +98 -0
  323. aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/stopwatch.hpp +180 -0
  324. aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/string_utils.hpp +63 -0
  325. aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/struct_library.hpp +1542 -0
  326. aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/super_utils.hpp +466 -0
  327. aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/tech_library.hpp +1649 -0
  328. aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/truth_table_cache.hpp +172 -0
  329. aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/truth_table_utils.hpp +63 -0
  330. aigverse-0.0.1/libs/mockturtle/include/mockturtle/utils/window_utils.hpp +1046 -0
  331. aigverse-0.0.1/libs/mockturtle/include/mockturtle/views/binding_view.hpp +261 -0
  332. aigverse-0.0.1/libs/mockturtle/include/mockturtle/views/cell_view.hpp +297 -0
  333. aigverse-0.0.1/libs/mockturtle/include/mockturtle/views/choice_view.hpp +592 -0
  334. aigverse-0.0.1/libs/mockturtle/include/mockturtle/views/cnf_view.hpp +691 -0
  335. aigverse-0.0.1/libs/mockturtle/include/mockturtle/views/color_view.hpp +244 -0
  336. aigverse-0.0.1/libs/mockturtle/include/mockturtle/views/cost_view.hpp +281 -0
  337. aigverse-0.0.1/libs/mockturtle/include/mockturtle/views/cut_view.hpp +232 -0
  338. aigverse-0.0.1/libs/mockturtle/include/mockturtle/views/depth_view.hpp +363 -0
  339. aigverse-0.0.1/libs/mockturtle/include/mockturtle/views/dont_care_view.hpp +481 -0
  340. aigverse-0.0.1/libs/mockturtle/include/mockturtle/views/dont_touch_view.hpp +142 -0
  341. aigverse-0.0.1/libs/mockturtle/include/mockturtle/views/fanout_limit_view.hpp +293 -0
  342. aigverse-0.0.1/libs/mockturtle/include/mockturtle/views/fanout_view.hpp +350 -0
  343. aigverse-0.0.1/libs/mockturtle/include/mockturtle/views/immutable_view.hpp +89 -0
  344. aigverse-0.0.1/libs/mockturtle/include/mockturtle/views/mapping_view.hpp +276 -0
  345. aigverse-0.0.1/libs/mockturtle/include/mockturtle/views/mffc_view.hpp +310 -0
  346. aigverse-0.0.1/libs/mockturtle/include/mockturtle/views/names_view.hpp +210 -0
  347. aigverse-0.0.1/libs/mockturtle/include/mockturtle/views/rank_view.hpp +384 -0
  348. aigverse-0.0.1/libs/mockturtle/include/mockturtle/views/topo_view.hpp +324 -0
  349. aigverse-0.0.1/libs/mockturtle/include/mockturtle/views/window_view.hpp +308 -0
  350. aigverse-0.0.1/libs/mockturtle/lib/CMakeLists.txt +91 -0
  351. aigverse-0.0.1/libs/mockturtle/lib/abcesop/CMakeLists.txt +29 -0
  352. aigverse-0.0.1/libs/mockturtle/lib/abcesop/eabc/abc_global.h +157 -0
  353. aigverse-0.0.1/libs/mockturtle/lib/abcesop/eabc/exor.h +188 -0
  354. aigverse-0.0.1/libs/mockturtle/lib/abcesop/eabc/vecInt.h +2070 -0
  355. aigverse-0.0.1/libs/mockturtle/lib/abcesop/eabc/vecPtr.h +1170 -0
  356. aigverse-0.0.1/libs/mockturtle/lib/abcesop/eabc/vecWec.h +739 -0
  357. aigverse-0.0.1/libs/mockturtle/lib/abcesop/exor.cpp +990 -0
  358. aigverse-0.0.1/libs/mockturtle/lib/abcesop/exorBits.cpp +425 -0
  359. aigverse-0.0.1/libs/mockturtle/lib/abcesop/exorCubes.cpp +190 -0
  360. aigverse-0.0.1/libs/mockturtle/lib/abcesop/exorLink.cpp +749 -0
  361. aigverse-0.0.1/libs/mockturtle/lib/abcesop/exorList.cpp +1156 -0
  362. aigverse-0.0.1/libs/mockturtle/lib/abcesop/exorUtil.cpp +228 -0
  363. aigverse-0.0.1/libs/mockturtle/lib/abcsat/AbcGlucose.cpp +596 -0
  364. aigverse-0.0.1/libs/mockturtle/lib/abcsat/CMakeLists.txt +23 -0
  365. aigverse-0.0.1/libs/mockturtle/lib/abcsat/Glucose.cpp +1499 -0
  366. aigverse-0.0.1/libs/mockturtle/lib/abcsat/SimpSolver.cpp +761 -0
  367. aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/AbcGlucose.h +107 -0
  368. aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/Alg.h +88 -0
  369. aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/Alloc.h +136 -0
  370. aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/BoundedQueue.h +114 -0
  371. aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/Constants.h +33 -0
  372. aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/Dimacs.h +85 -0
  373. aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/Heap.h +154 -0
  374. aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/IntTypes.h +49 -0
  375. aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/Map.h +197 -0
  376. aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/Queue.h +73 -0
  377. aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/SimpSolver.h +208 -0
  378. aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/Solver.h +493 -0
  379. aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/SolverTypes.h +437 -0
  380. aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/Sort.h +101 -0
  381. aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/Vec.h +135 -0
  382. aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/XAlloc.h +53 -0
  383. aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/abc_global.h +422 -0
  384. aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/abc_namespaces.h +74 -0
  385. aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/pstdint.h +919 -0
  386. aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/satClause.h +485 -0
  387. aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/satSolver.h +661 -0
  388. aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/satStore.h +158 -0
  389. aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/satVec.h +167 -0
  390. aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/system.h +68 -0
  391. aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/utilDouble.h +224 -0
  392. aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/vecInt.h +2087 -0
  393. aigverse-0.0.1/libs/mockturtle/lib/abcsat/abc/vecWec.h +724 -0
  394. aigverse-0.0.1/libs/mockturtle/lib/abcsat/satSolver.cpp +2498 -0
  395. aigverse-0.0.1/libs/mockturtle/lib/abcsat/satStore.cpp +469 -0
  396. aigverse-0.0.1/libs/mockturtle/lib/bill/bill/bill.hpp +24 -0
  397. aigverse-0.0.1/libs/mockturtle/lib/bill/bill/dd/cudd_zdd.hpp +493 -0
  398. aigverse-0.0.1/libs/mockturtle/lib/bill/bill/dd/zdd.hpp +928 -0
  399. aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/cardinality.hpp +37 -0
  400. aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/incremental_totalizer_cardinality.hpp +181 -0
  401. aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/interface/abc_bmcg.hpp +175 -0
  402. aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/interface/abc_bsat2.hpp +227 -0
  403. aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/interface/common.hpp +160 -0
  404. aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/interface/ghack.hpp +167 -0
  405. aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/interface/glucose.hpp +167 -0
  406. aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/interface/maple.hpp +169 -0
  407. aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/interface/types.hpp +146 -0
  408. aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/interface/z3.hpp +196 -0
  409. aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/AbcGlucose.h +107 -0
  410. aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/Alg.h +88 -0
  411. aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/Alloc.h +136 -0
  412. aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/BoundedQueue.h +114 -0
  413. aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/Constants.h +33 -0
  414. aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/Dimacs.h +85 -0
  415. aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/Heap.h +154 -0
  416. aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/IntTypes.h +49 -0
  417. aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/Map.h +197 -0
  418. aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/Queue.h +73 -0
  419. aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/SimpSolver.h +208 -0
  420. aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/Solver.h +493 -0
  421. aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/SolverTypes.h +442 -0
  422. aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/Sort.h +101 -0
  423. aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/Vec.h +135 -0
  424. aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/XAlloc.h +53 -0
  425. aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/abc_global.h +416 -0
  426. aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/abc_namespaces.h +74 -0
  427. aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/pstdint.h +919 -0
  428. aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/satClause.h +476 -0
  429. aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/satSolver.h +651 -0
  430. aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/satStore.h +158 -0
  431. aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/satVec.h +167 -0
  432. aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/system.h +67 -0
  433. aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/utilDouble.h +222 -0
  434. aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/vecInt.h +2078 -0
  435. aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc/vecWec.h +716 -0
  436. aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/abc.hpp +5927 -0
  437. aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/ghack.hpp +5086 -0
  438. aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/glucose.hpp +6178 -0
  439. aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver/maple.hpp +5839 -0
  440. aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/solver.hpp +12 -0
  441. aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/tseytin.hpp +120 -0
  442. aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/unsat_cores.hpp +73 -0
  443. aigverse-0.0.1/libs/mockturtle/lib/bill/bill/sat/xor_clauses.hpp +49 -0
  444. aigverse-0.0.1/libs/mockturtle/lib/bill/bill/utils/hash.hpp +48 -0
  445. aigverse-0.0.1/libs/mockturtle/lib/bill/bill/utils/platforms.hpp +9 -0
  446. aigverse-0.0.1/libs/mockturtle/lib/fmt/LICENSE.rst +23 -0
  447. aigverse-0.0.1/libs/mockturtle/lib/fmt/fmt/chrono.h +1119 -0
  448. aigverse-0.0.1/libs/mockturtle/lib/fmt/fmt/color.h +568 -0
  449. aigverse-0.0.1/libs/mockturtle/lib/fmt/fmt/compile.h +595 -0
  450. aigverse-0.0.1/libs/mockturtle/lib/fmt/fmt/core.h +1789 -0
  451. aigverse-0.0.1/libs/mockturtle/lib/fmt/fmt/format-inl.h +1403 -0
  452. aigverse-0.0.1/libs/mockturtle/lib/fmt/fmt/format.cc +176 -0
  453. aigverse-0.0.1/libs/mockturtle/lib/fmt/fmt/format.h +3648 -0
  454. aigverse-0.0.1/libs/mockturtle/lib/fmt/fmt/locale.h +78 -0
  455. aigverse-0.0.1/libs/mockturtle/lib/fmt/fmt/os.cc +316 -0
  456. aigverse-0.0.1/libs/mockturtle/lib/fmt/fmt/os.h +392 -0
  457. aigverse-0.0.1/libs/mockturtle/lib/fmt/fmt/ostream.h +143 -0
  458. aigverse-0.0.1/libs/mockturtle/lib/fmt/fmt/posix.h +2 -0
  459. aigverse-0.0.1/libs/mockturtle/lib/fmt/fmt/printf.h +721 -0
  460. aigverse-0.0.1/libs/mockturtle/lib/fmt/fmt/ranges.h +387 -0
  461. aigverse-0.0.1/libs/mockturtle/lib/json/nlohmann/json.hpp +25447 -0
  462. aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/affine.hpp +217 -0
  463. aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/algorithm.hpp +489 -0
  464. aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/bit_operations.hpp +570 -0
  465. aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/cnf.hpp +79 -0
  466. aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/constructors.hpp +1577 -0
  467. aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/cube.hpp +333 -0
  468. aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/decomposition.hpp +956 -0
  469. aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/detail/constants.hpp +196 -0
  470. aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/detail/linear_constants.hpp +51 -0
  471. aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/detail/mscfix.hpp +39 -0
  472. aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/detail/shift.hpp +1002 -0
  473. aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/detail/utils.hpp +85 -0
  474. aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/dynamic_truth_table.hpp +191 -0
  475. aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/enumeration.hpp +105 -0
  476. aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/esop.hpp +349 -0
  477. aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/hash.hpp +95 -0
  478. aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/implicant.hpp +244 -0
  479. aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/isop.hpp +130 -0
  480. aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/karnaugh_map.hpp +188 -0
  481. aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/kitty.hpp +70 -0
  482. aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/npn.hpp +1327 -0
  483. aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/operations.hpp +2428 -0
  484. aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/operators.hpp +507 -0
  485. aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/partial_truth_table.hpp +300 -0
  486. aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/permutation.hpp +286 -0
  487. aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/print.hpp +481 -0
  488. aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/properties.hpp +374 -0
  489. aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/quaternary_truth_table.hpp +265 -0
  490. aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/spectral.hpp +1204 -0
  491. aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/spp.hpp +156 -0
  492. aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/static_truth_table.hpp +290 -0
  493. aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/ternary_truth_table.hpp +262 -0
  494. aigverse-0.0.1/libs/mockturtle/lib/kitty/kitty/traits.hpp +55 -0
  495. aigverse-0.0.1/libs/mockturtle/lib/lorina/lorina/aiger.hpp +922 -0
  496. aigverse-0.0.1/libs/mockturtle/lib/lorina/lorina/bench.hpp +345 -0
  497. aigverse-0.0.1/libs/mockturtle/lib/lorina/lorina/blif.hpp +504 -0
  498. aigverse-0.0.1/libs/mockturtle/lib/lorina/lorina/bristol.hpp +217 -0
  499. aigverse-0.0.1/libs/mockturtle/lib/lorina/lorina/common.hpp +44 -0
  500. aigverse-0.0.1/libs/mockturtle/lib/lorina/lorina/detail/call_in_topological_order.hpp +408 -0
  501. aigverse-0.0.1/libs/mockturtle/lib/lorina/lorina/detail/tokenizer.hpp +148 -0
  502. aigverse-0.0.1/libs/mockturtle/lib/lorina/lorina/detail/utils.hpp +242 -0
  503. aigverse-0.0.1/libs/mockturtle/lib/lorina/lorina/diagnostics.hpp +322 -0
  504. aigverse-0.0.1/libs/mockturtle/lib/lorina/lorina/diagnostics.inc +91 -0
  505. aigverse-0.0.1/libs/mockturtle/lib/lorina/lorina/dimacs.hpp +221 -0
  506. aigverse-0.0.1/libs/mockturtle/lib/lorina/lorina/genlib.hpp +383 -0
  507. aigverse-0.0.1/libs/mockturtle/lib/lorina/lorina/lorina.hpp +42 -0
  508. aigverse-0.0.1/libs/mockturtle/lib/lorina/lorina/pla.hpp +360 -0
  509. aigverse-0.0.1/libs/mockturtle/lib/lorina/lorina/super.hpp +287 -0
  510. aigverse-0.0.1/libs/mockturtle/lib/lorina/lorina/verilog.hpp +1774 -0
  511. aigverse-0.0.1/libs/mockturtle/lib/lorina/lorina/verilog_regex.hpp +51 -0
  512. aigverse-0.0.1/libs/mockturtle/lib/matplot/matplot/matplotlibcpp.h +2554 -0
  513. aigverse-0.0.1/libs/mockturtle/lib/parallel_hashmap/parallel_hashmap/btree.h +4050 -0
  514. aigverse-0.0.1/libs/mockturtle/lib/parallel_hashmap/parallel_hashmap/conanfile.py +36 -0
  515. aigverse-0.0.1/libs/mockturtle/lib/parallel_hashmap/parallel_hashmap/meminfo.h +195 -0
  516. aigverse-0.0.1/libs/mockturtle/lib/parallel_hashmap/parallel_hashmap/phmap.h +4544 -0
  517. aigverse-0.0.1/libs/mockturtle/lib/parallel_hashmap/parallel_hashmap/phmap_base.h +5171 -0
  518. aigverse-0.0.1/libs/mockturtle/lib/parallel_hashmap/parallel_hashmap/phmap_bits.h +663 -0
  519. aigverse-0.0.1/libs/mockturtle/lib/parallel_hashmap/parallel_hashmap/phmap_config.h +764 -0
  520. aigverse-0.0.1/libs/mockturtle/lib/parallel_hashmap/parallel_hashmap/phmap_dump.h +227 -0
  521. aigverse-0.0.1/libs/mockturtle/lib/parallel_hashmap/parallel_hashmap/phmap_fwd_decl.h +154 -0
  522. aigverse-0.0.1/libs/mockturtle/lib/parallel_hashmap/parallel_hashmap/phmap_utils.h +376 -0
  523. aigverse-0.0.1/libs/mockturtle/lib/percy/percy/chain.hpp +861 -0
  524. aigverse-0.0.1/libs/mockturtle/lib/percy/percy/cnf.hpp +56 -0
  525. aigverse-0.0.1/libs/mockturtle/lib/percy/percy/concurrentqueue.h +3634 -0
  526. aigverse-0.0.1/libs/mockturtle/lib/percy/percy/dag.hpp +619 -0
  527. aigverse-0.0.1/libs/mockturtle/lib/percy/percy/dag_generation.hpp +1628 -0
  528. aigverse-0.0.1/libs/mockturtle/lib/percy/percy/encoders/aig_encoder.hpp +1696 -0
  529. aigverse-0.0.1/libs/mockturtle/lib/percy/percy/encoders/ditt_encoder.hpp +1205 -0
  530. aigverse-0.0.1/libs/mockturtle/lib/percy/percy/encoders/ditt_maj_encoder.hpp +779 -0
  531. aigverse-0.0.1/libs/mockturtle/lib/percy/percy/encoders/encoder.hpp +211 -0
  532. aigverse-0.0.1/libs/mockturtle/lib/percy/percy/encoders/maj_encoder.hpp +1941 -0
  533. aigverse-0.0.1/libs/mockturtle/lib/percy/percy/encoders/mig_encoder.hpp +1530 -0
  534. aigverse-0.0.1/libs/mockturtle/lib/percy/percy/encoders/msv_encoder.hpp +1203 -0
  535. aigverse-0.0.1/libs/mockturtle/lib/percy/percy/encoders/partial_dag_encoder.hpp +1145 -0
  536. aigverse-0.0.1/libs/mockturtle/lib/percy/percy/encoders/ssv_dag_encoder.hpp +301 -0
  537. aigverse-0.0.1/libs/mockturtle/lib/percy/percy/encoders/ssv_encoder.hpp +1427 -0
  538. aigverse-0.0.1/libs/mockturtle/lib/percy/percy/encoders/ssv_fence2_encoder.hpp +894 -0
  539. aigverse-0.0.1/libs/mockturtle/lib/percy/percy/encoders/ssv_fence_encoder.hpp +845 -0
  540. aigverse-0.0.1/libs/mockturtle/lib/percy/percy/encoders.hpp +12 -0
  541. aigverse-0.0.1/libs/mockturtle/lib/percy/percy/fence.hpp +658 -0
  542. aigverse-0.0.1/libs/mockturtle/lib/percy/percy/generators/partial_dag3_generator.hpp +675 -0
  543. aigverse-0.0.1/libs/mockturtle/lib/percy/percy/generators/partial_dag_generator.hpp +727 -0
  544. aigverse-0.0.1/libs/mockturtle/lib/percy/percy/io.hpp +49 -0
  545. aigverse-0.0.1/libs/mockturtle/lib/percy/percy/majority_chain.hpp +499 -0
  546. aigverse-0.0.1/libs/mockturtle/lib/percy/percy/mig.hpp +9 -0
  547. aigverse-0.0.1/libs/mockturtle/lib/percy/percy/misc.hpp +179 -0
  548. aigverse-0.0.1/libs/mockturtle/lib/percy/percy/partial_dag.hpp +648 -0
  549. aigverse-0.0.1/libs/mockturtle/lib/percy/percy/percy.hpp +1939 -0
  550. aigverse-0.0.1/libs/mockturtle/lib/percy/percy/printer.hpp +129 -0
  551. aigverse-0.0.1/libs/mockturtle/lib/percy/percy/sat_circuits.hpp +97 -0
  552. aigverse-0.0.1/libs/mockturtle/lib/percy/percy/solvers/bmcg_sat.hpp +99 -0
  553. aigverse-0.0.1/libs/mockturtle/lib/percy/percy/solvers/bsat2.hpp +146 -0
  554. aigverse-0.0.1/libs/mockturtle/lib/percy/percy/solvers/cmsat.hpp +131 -0
  555. aigverse-0.0.1/libs/mockturtle/lib/percy/percy/solvers/glucose.hpp +193 -0
  556. aigverse-0.0.1/libs/mockturtle/lib/percy/percy/solvers/satoko.hpp +190 -0
  557. aigverse-0.0.1/libs/mockturtle/lib/percy/percy/solvers/solver_wrapper.hpp +41 -0
  558. aigverse-0.0.1/libs/mockturtle/lib/percy/percy/solvers.hpp +13 -0
  559. aigverse-0.0.1/libs/mockturtle/lib/percy/percy/spec.hpp +403 -0
  560. aigverse-0.0.1/libs/mockturtle/lib/percy/percy/tt_utils.hpp +32 -0
  561. aigverse-0.0.1/libs/mockturtle/lib/rang/rang/rang.hpp +502 -0
  562. aigverse-0.0.1/libs/mockturtle/mockturtle.svg +107 -0
  563. aigverse-0.0.1/libs/mockturtle/tools/cleanup.py +197 -0
  564. aigverse-0.0.1/libs/pybind11/.appveyor.yml +35 -0
  565. aigverse-0.0.1/libs/pybind11/.clang-format +38 -0
  566. aigverse-0.0.1/libs/pybind11/.clang-tidy +79 -0
  567. aigverse-0.0.1/libs/pybind11/.cmake-format.yaml +73 -0
  568. aigverse-0.0.1/libs/pybind11/.codespell-ignore-lines +24 -0
  569. aigverse-0.0.1/libs/pybind11/.git +1 -0
  570. aigverse-0.0.1/libs/pybind11/.gitattributes +1 -0
  571. aigverse-0.0.1/libs/pybind11/.gitignore +46 -0
  572. aigverse-0.0.1/libs/pybind11/.pre-commit-config.yaml +156 -0
  573. aigverse-0.0.1/libs/pybind11/.readthedocs.yml +20 -0
  574. aigverse-0.0.1/libs/pybind11/CMakeLists.txt +341 -0
  575. aigverse-0.0.1/libs/pybind11/LICENSE +29 -0
  576. aigverse-0.0.1/libs/pybind11/MANIFEST.in +6 -0
  577. aigverse-0.0.1/libs/pybind11/README.rst +181 -0
  578. aigverse-0.0.1/libs/pybind11/SECURITY.md +13 -0
  579. aigverse-0.0.1/libs/pybind11/docs/Doxyfile +21 -0
  580. aigverse-0.0.1/libs/pybind11/docs/Makefile +192 -0
  581. aigverse-0.0.1/libs/pybind11/docs/advanced/cast/chrono.rst +81 -0
  582. aigverse-0.0.1/libs/pybind11/docs/advanced/cast/custom.rst +93 -0
  583. aigverse-0.0.1/libs/pybind11/docs/advanced/cast/eigen.rst +310 -0
  584. aigverse-0.0.1/libs/pybind11/docs/advanced/cast/functional.rst +109 -0
  585. aigverse-0.0.1/libs/pybind11/docs/advanced/cast/index.rst +43 -0
  586. aigverse-0.0.1/libs/pybind11/docs/advanced/cast/overview.rst +170 -0
  587. aigverse-0.0.1/libs/pybind11/docs/advanced/cast/stl.rst +249 -0
  588. aigverse-0.0.1/libs/pybind11/docs/advanced/cast/strings.rst +296 -0
  589. aigverse-0.0.1/libs/pybind11/docs/advanced/classes.rst +1334 -0
  590. aigverse-0.0.1/libs/pybind11/docs/advanced/embedding.rst +262 -0
  591. aigverse-0.0.1/libs/pybind11/docs/advanced/exceptions.rst +400 -0
  592. aigverse-0.0.1/libs/pybind11/docs/advanced/functions.rst +614 -0
  593. aigverse-0.0.1/libs/pybind11/docs/advanced/misc.rst +429 -0
  594. aigverse-0.0.1/libs/pybind11/docs/advanced/pycpp/index.rst +13 -0
  595. aigverse-0.0.1/libs/pybind11/docs/advanced/pycpp/numpy.rst +453 -0
  596. aigverse-0.0.1/libs/pybind11/docs/advanced/pycpp/object.rst +286 -0
  597. aigverse-0.0.1/libs/pybind11/docs/advanced/pycpp/utilities.rst +155 -0
  598. aigverse-0.0.1/libs/pybind11/docs/advanced/smart_ptrs.rst +174 -0
  599. aigverse-0.0.1/libs/pybind11/docs/basics.rst +314 -0
  600. aigverse-0.0.1/libs/pybind11/docs/benchmark.py +89 -0
  601. aigverse-0.0.1/libs/pybind11/docs/benchmark.rst +95 -0
  602. aigverse-0.0.1/libs/pybind11/docs/changelog.rst +3230 -0
  603. aigverse-0.0.1/libs/pybind11/docs/classes.rst +555 -0
  604. aigverse-0.0.1/libs/pybind11/docs/cmake/index.rst +8 -0
  605. aigverse-0.0.1/libs/pybind11/docs/compiling.rst +728 -0
  606. aigverse-0.0.1/libs/pybind11/docs/conf.py +369 -0
  607. aigverse-0.0.1/libs/pybind11/docs/faq.rst +352 -0
  608. aigverse-0.0.1/libs/pybind11/docs/index.rst +48 -0
  609. aigverse-0.0.1/libs/pybind11/docs/installing.rst +105 -0
  610. aigverse-0.0.1/libs/pybind11/docs/limitations.rst +68 -0
  611. aigverse-0.0.1/libs/pybind11/docs/pybind11-logo.png +0 -0
  612. aigverse-0.0.1/libs/pybind11/docs/pybind11_vs_boost_python1.png +0 -0
  613. aigverse-0.0.1/libs/pybind11/docs/pybind11_vs_boost_python1.svg +427 -0
  614. aigverse-0.0.1/libs/pybind11/docs/pybind11_vs_boost_python2.png +0 -0
  615. aigverse-0.0.1/libs/pybind11/docs/pybind11_vs_boost_python2.svg +427 -0
  616. aigverse-0.0.1/libs/pybind11/docs/reference.rst +130 -0
  617. aigverse-0.0.1/libs/pybind11/docs/release.rst +143 -0
  618. aigverse-0.0.1/libs/pybind11/docs/requirements.in +6 -0
  619. aigverse-0.0.1/libs/pybind11/docs/requirements.txt +275 -0
  620. aigverse-0.0.1/libs/pybind11/docs/upgrade.rst +594 -0
  621. aigverse-0.0.1/libs/pybind11/include/pybind11/attr.h +690 -0
  622. aigverse-0.0.1/libs/pybind11/include/pybind11/buffer_info.h +208 -0
  623. aigverse-0.0.1/libs/pybind11/include/pybind11/cast.h +1855 -0
  624. aigverse-0.0.1/libs/pybind11/include/pybind11/chrono.h +225 -0
  625. aigverse-0.0.1/libs/pybind11/include/pybind11/common.h +2 -0
  626. aigverse-0.0.1/libs/pybind11/include/pybind11/complex.h +74 -0
  627. aigverse-0.0.1/libs/pybind11/include/pybind11/detail/class.h +757 -0
  628. aigverse-0.0.1/libs/pybind11/include/pybind11/detail/common.h +1287 -0
  629. aigverse-0.0.1/libs/pybind11/include/pybind11/detail/descr.h +172 -0
  630. aigverse-0.0.1/libs/pybind11/include/pybind11/detail/exception_translation.h +71 -0
  631. aigverse-0.0.1/libs/pybind11/include/pybind11/detail/init.h +436 -0
  632. aigverse-0.0.1/libs/pybind11/include/pybind11/detail/internals.h +764 -0
  633. aigverse-0.0.1/libs/pybind11/include/pybind11/detail/type_caster_base.h +1155 -0
  634. aigverse-0.0.1/libs/pybind11/include/pybind11/detail/typeid.h +65 -0
  635. aigverse-0.0.1/libs/pybind11/include/pybind11/detail/value_and_holder.h +77 -0
  636. aigverse-0.0.1/libs/pybind11/include/pybind11/eigen/common.h +9 -0
  637. aigverse-0.0.1/libs/pybind11/include/pybind11/eigen/matrix.h +715 -0
  638. aigverse-0.0.1/libs/pybind11/include/pybind11/eigen/tensor.h +515 -0
  639. aigverse-0.0.1/libs/pybind11/include/pybind11/eigen.h +12 -0
  640. aigverse-0.0.1/libs/pybind11/include/pybind11/embed.h +303 -0
  641. aigverse-0.0.1/libs/pybind11/include/pybind11/eval.h +156 -0
  642. aigverse-0.0.1/libs/pybind11/include/pybind11/functional.h +149 -0
  643. aigverse-0.0.1/libs/pybind11/include/pybind11/gil.h +215 -0
  644. aigverse-0.0.1/libs/pybind11/include/pybind11/gil_safe_call_once.h +100 -0
  645. aigverse-0.0.1/libs/pybind11/include/pybind11/iostream.h +265 -0
  646. aigverse-0.0.1/libs/pybind11/include/pybind11/numpy.h +2139 -0
  647. aigverse-0.0.1/libs/pybind11/include/pybind11/operators.h +202 -0
  648. aigverse-0.0.1/libs/pybind11/include/pybind11/options.h +92 -0
  649. aigverse-0.0.1/libs/pybind11/include/pybind11/pybind11.h +2975 -0
  650. aigverse-0.0.1/libs/pybind11/include/pybind11/pytypes.h +2606 -0
  651. aigverse-0.0.1/libs/pybind11/include/pybind11/stl/filesystem.h +124 -0
  652. aigverse-0.0.1/libs/pybind11/include/pybind11/stl.h +648 -0
  653. aigverse-0.0.1/libs/pybind11/include/pybind11/stl_bind.h +822 -0
  654. aigverse-0.0.1/libs/pybind11/include/pybind11/type_caster_pyobject_ptr.h +61 -0
  655. aigverse-0.0.1/libs/pybind11/include/pybind11/typing.h +242 -0
  656. aigverse-0.0.1/libs/pybind11/include/pybind11/warnings.h +75 -0
  657. aigverse-0.0.1/libs/pybind11/noxfile.py +107 -0
  658. aigverse-0.0.1/libs/pybind11/pybind11/__init__.py +19 -0
  659. aigverse-0.0.1/libs/pybind11/pybind11/__main__.py +86 -0
  660. aigverse-0.0.1/libs/pybind11/pybind11/_version.py +12 -0
  661. aigverse-0.0.1/libs/pybind11/pybind11/commands.py +39 -0
  662. aigverse-0.0.1/libs/pybind11/pybind11/py.typed +0 -0
  663. aigverse-0.0.1/libs/pybind11/pybind11/setup_helpers.py +500 -0
  664. aigverse-0.0.1/libs/pybind11/pyproject.toml +87 -0
  665. aigverse-0.0.1/libs/pybind11/setup.cfg +42 -0
  666. aigverse-0.0.1/libs/pybind11/setup.py +149 -0
  667. aigverse-0.0.1/libs/pybind11/tools/FindCatch.cmake +76 -0
  668. aigverse-0.0.1/libs/pybind11/tools/FindEigen3.cmake +86 -0
  669. aigverse-0.0.1/libs/pybind11/tools/FindPythonLibsNew.cmake +310 -0
  670. aigverse-0.0.1/libs/pybind11/tools/JoinPaths.cmake +23 -0
  671. aigverse-0.0.1/libs/pybind11/tools/check-style.sh +44 -0
  672. aigverse-0.0.1/libs/pybind11/tools/cmake_uninstall.cmake.in +23 -0
  673. aigverse-0.0.1/libs/pybind11/tools/codespell_ignore_lines_from_errors.py +40 -0
  674. aigverse-0.0.1/libs/pybind11/tools/libsize.py +38 -0
  675. aigverse-0.0.1/libs/pybind11/tools/make_changelog.py +92 -0
  676. aigverse-0.0.1/libs/pybind11/tools/pybind11.pc.in +7 -0
  677. aigverse-0.0.1/libs/pybind11/tools/pybind11Common.cmake +416 -0
  678. aigverse-0.0.1/libs/pybind11/tools/pybind11Config.cmake.in +233 -0
  679. aigverse-0.0.1/libs/pybind11/tools/pybind11GuessPythonExtSuffix.cmake +86 -0
  680. aigverse-0.0.1/libs/pybind11/tools/pybind11NewTools.cmake +336 -0
  681. aigverse-0.0.1/libs/pybind11/tools/pybind11Tools.cmake +216 -0
  682. aigverse-0.0.1/libs/pybind11/tools/pyproject.toml +3 -0
  683. aigverse-0.0.1/libs/pybind11/tools/setup_global.py.in +63 -0
  684. aigverse-0.0.1/libs/pybind11/tools/setup_main.py.in +44 -0
  685. aigverse-0.0.1/libs/pybind11/tools/test-pybind11GuessPythonExtSuffix.cmake +161 -0
  686. aigverse-0.0.1/pyproject.toml +63 -0
  687. aigverse-0.0.1/setup.cfg +4 -0
  688. 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,6 @@
1
+ [submodule "libs/mockturtle"]
2
+ path = libs/mockturtle
3
+ url = https://github.com/marcelwa/mockturtle.git
4
+ [submodule "libs/pybind11"]
5
+ path = libs/pybind11
6
+ url = https://github.com/pybind/pybind11.git
@@ -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
@@ -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
@@ -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