We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3277e1b commit d3f4cb0Copy full SHA for d3f4cb0
LoopStructural/interpolators/_constant_norm.py
@@ -90,11 +90,12 @@ def solve_system(
90
bool
91
_description_
92
"""
93
+ success = True
94
for i in range(20):
95
if i > 0:
96
self.add_constant_norm(w=(0.1 * i) ** 2 + 0.01)
97
success = self.interpolator.solve_system(solver=solver, tol=tol, solver_kwargs=solver_kwargs)
- return True
98
+ return success
99
100
class ConstantNormP1Interpolator(P1Interpolator, ConstantNormInterpolator):
101
"""Constant norm interpolator using P1 base interpolator
0 commit comments