Skip to content
This repository has been archived by the owner on Dec 10, 2024. It is now read-only.

Commit

Permalink
higher heuristic tuning
Browse files Browse the repository at this point in the history
  • Loading branch information
iopapamanoglou committed Nov 12, 2024
1 parent bae262e commit c7608e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/faebryk/core/pathfinder.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@

MAX_PATHS = ConfigFlagInt("MAX_PATHS", default=int(1e6), descr="Max paths to search")
MAX_PATHS_NO_NEW_WEAK = ConfigFlagInt(
"MAX_PATHS_NO_NEW_WEAK", default=int(1e3), descr="Max paths with no new weak"
"MAX_PATHS_NO_NEW_WEAK", default=int(1e4), descr="Max paths with no new weak"
)
MAX_PATHS_NO_WEAK = ConfigFlagInt(
"MAX_PATHS_NO_WEAK", default=int(1e4), descr="Max paths with no weak"
"MAX_PATHS_NO_WEAK", default=int(1e5), descr="Max paths with no weak"
)
set_max_paths(int(MAX_PATHS), int(MAX_PATHS_NO_NEW_WEAK), int(MAX_PATHS_NO_WEAK))

Expand Down

0 comments on commit c7608e8

Please sign in to comment.