cpp-pd-code-simplify-interface 0.1.15__tar.gz → 0.1.16__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 (12) hide show
  1. {cpp_pd_code_simplify_interface-0.1.15 → cpp_pd_code_simplify_interface-0.1.16}/PKG-INFO +1 -1
  2. {cpp_pd_code_simplify_interface-0.1.15 → cpp_pd_code_simplify_interface-0.1.16}/cpp_pd_code_simplify_interface/data/src/pdcode_simplify.cpp +1 -2
  3. {cpp_pd_code_simplify_interface-0.1.15 → cpp_pd_code_simplify_interface-0.1.16}/pyproject.toml +1 -1
  4. {cpp_pd_code_simplify_interface-0.1.15 → cpp_pd_code_simplify_interface-0.1.16}/README.md +0 -0
  5. {cpp_pd_code_simplify_interface-0.1.15 → cpp_pd_code_simplify_interface-0.1.16}/build_backend/cpp_pd_code_simplify_interface_build_backend.py +0 -0
  6. {cpp_pd_code_simplify_interface-0.1.15 → cpp_pd_code_simplify_interface-0.1.16}/cpp_pd_code_simplify_interface/__init__.py +0 -0
  7. {cpp_pd_code_simplify_interface-0.1.15 → cpp_pd_code_simplify_interface-0.1.16}/cpp_pd_code_simplify_interface/__main__.py +0 -0
  8. {cpp_pd_code_simplify_interface-0.1.15 → cpp_pd_code_simplify_interface-0.1.16}/cpp_pd_code_simplify_interface/_worker.py +0 -0
  9. {cpp_pd_code_simplify_interface-0.1.15 → cpp_pd_code_simplify_interface-0.1.16}/cpp_pd_code_simplify_interface/data/include/pdcode_simplify/pdcode_simplify.hpp +0 -0
  10. {cpp_pd_code_simplify_interface-0.1.15 → cpp_pd_code_simplify_interface-0.1.16}/cpp_pd_code_simplify_interface/data/src/native_interface.cpp +0 -0
  11. {cpp_pd_code_simplify_interface-0.1.15 → cpp_pd_code_simplify_interface-0.1.16}/cpp_pd_code_simplify_interface/main.py +0 -0
  12. {cpp_pd_code_simplify_interface-0.1.15 → cpp_pd_code_simplify_interface-0.1.16}/cpp_pd_code_simplify_interface/py.typed +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cpp-pd-code-simplify-interface
3
- Version: 0.1.15
3
+ Version: 0.1.16
4
4
  Summary: Python interface for cpp-pd-code-simplify with runtime C++ compilation.
5
5
  License-Expression: MIT
6
6
  Author: GGN_2015
@@ -2598,8 +2598,7 @@ ReductionResult reduce_pd_code(
2598
2598
  emit_progress(run_options, message.str());
2599
2599
  }
2600
2600
 
2601
- if (!search.found && reduction_round < 0 &&
2602
- run_options.max_paths == -1 && !run_options.ban_heuristic) {
2601
+ if (!search.found && run_options.max_paths == -1 && !run_options.ban_heuristic) {
2603
2602
  SimplifierOptions brute_options = run_options;
2604
2603
  brute_options.max_paths = -1;
2605
2604
  brute_options.ban_heuristic = true;
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "cpp-pd-code-simplify-interface"
3
- version = "0.1.15"
3
+ version = "0.1.16"
4
4
  description = "Python interface for cpp-pd-code-simplify with runtime C++ compilation."
5
5
  authors = [
6
6
  {name = "GGN_2015", email = "neko@jlulug.org"}