Skip to content

Commit

Permalink
Update default para. of dd
Browse files Browse the repository at this point in the history
  • Loading branch information
Jinerhal committed Aug 5, 2024
1 parent 35bfda5 commit 8d83901
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion spateo/digitization/grid.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def digitize(
spatial_key: str = "spatial",
dgl_layer_key: str = "digital_layer",
dgl_column_key: str = "digital_column",
max_itr: int = 1e5,
max_itr: int = 1e6,
lh: float = 1,
hh: float = 100,
) -> None:
Expand Down
6 changes: 3 additions & 3 deletions spateo/digitization/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -469,8 +469,8 @@ def domain_heat_eqn_solver(
edge_line_b: np.ndarray,
field_border: np.ndarray,
field_mask: np.ndarray,
max_err: float = 1e-5,
max_itr: float = 1e5,
max_err: float = 1e-20,
max_itr: float = 1e6,
lh: float = 1,
hh: float = 100,
) -> np.ndarray:
Expand Down Expand Up @@ -529,7 +529,7 @@ def digitize_general(
adj_mtx: np.ndarray,
boundary_lower: np.ndarray,
boundary_upper: np.ndarray,
max_itr: int = 1e5,
max_itr: int = 1e6,
lh: float = 1,
hh: float = 100,
) -> np.ndarray:
Expand Down

0 comments on commit 8d83901

Please sign in to comment.