Skip to content

Commit

Permalink
changing some experimental solver configs to default as false
Browse files Browse the repository at this point in the history
  • Loading branch information
justinlaughlin committed Feb 6, 2023
1 parent 28851ff commit 7bae5b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stubs/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,14 +95,14 @@ class SolverConfig(BaseConfig):

final_t: Optional[float] = None
use_snes: bool = True
snes_preassemble_linear_system: bool = True
snes_preassemble_linear_system: bool = False #: .. warning:: FIXME Currently untested
initial_dt: Optional[float] = None
adjust_dt: Optional[Tuple[float, float]] = None
time_precision: int = 6
print_assembly: bool = True
dt_decrease_factor: float = 1.0 #: .. warning:: FIXME Currently unused parameter
dt_increase_factor: float = 1.0 #: .. warning:: FIXME Currently unused parameter
attempt_timestep_restart_on_divergence: bool = False
attempt_timestep_restart_on_divergence: bool = False #: .. warning:: FIXME Currently untested


@dataclass
Expand Down

0 comments on commit 7bae5b5

Please sign in to comment.