chore: remove deprecated flow_boundary and update docs to match new architecture
This commit is contained in:
@@ -549,6 +549,7 @@ impl PyNewtonConfig {
|
||||
initial_state: self.initial_state.clone(),
|
||||
convergence_criteria: self.convergence_criteria.as_ref().map(|cc| cc.inner.clone()),
|
||||
jacobian_freezing: self.jacobian_freezing.as_ref().map(|jf| jf.inner.clone()),
|
||||
verbose_config: Default::default(),
|
||||
};
|
||||
|
||||
// Catch any Rust panic to prevent it from reaching Python (Task 5.4)
|
||||
@@ -739,6 +740,7 @@ impl PyFallbackConfig {
|
||||
initial_state: self.newton.initial_state.clone(),
|
||||
convergence_criteria: self.newton.convergence_criteria.as_ref().map(|cc| cc.inner.clone()),
|
||||
jacobian_freezing: self.newton.jacobian_freezing.as_ref().map(|jf| jf.inner.clone()),
|
||||
verbose_config: Default::default(),
|
||||
};
|
||||
let picard_config = entropyk_solver::PicardConfig {
|
||||
max_iterations: self.picard.max_iterations,
|
||||
@@ -982,6 +984,7 @@ impl PySolverStrategy {
|
||||
initial_state: py_config.initial_state.clone(),
|
||||
convergence_criteria: py_config.convergence_criteria.as_ref().map(|cc| cc.inner.clone()),
|
||||
jacobian_freezing: py_config.jacobian_freezing.as_ref().map(|jf| jf.inner.clone()),
|
||||
verbose_config: Default::default(),
|
||||
};
|
||||
Ok(PySolverStrategy {
|
||||
inner: entropyk_solver::SolverStrategy::NewtonRaphson(config),
|
||||
|
||||
Reference in New Issue
Block a user