Skip to content

Commit

Permalink
#25: rank/node memory bounds in batch mode
Browse files Browse the repository at this point in the history
  • Loading branch information
ppebay committed Nov 15, 2024
1 parent 483ddf1 commit 8a4a04e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ccm_milp_full.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,8 @@ def run_batch(file_name: str):
c_float.get("beta", DP.beta),
c_float.get("gamma", DP.gamma),
c_float.get("delta", DP.delta),
c_bool.get("bounded_memory", False),
c_float.get("rank_memory_bound", math.inf),
c_float.get("rank_memory_bound", DP.rank_memory_bound),
c_float.get("node_memory_bound", DP.node_memory_bound),
c_bool.get("preserve_clusters", False),
file_stem
]
Expand Down

0 comments on commit 8a4a04e

Please sign in to comment.