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 df2e89d commit 236df49Copy full SHA for 236df49
src/pyclaw/sharpclaw/solver.py
@@ -205,7 +205,8 @@ def setup(self,solution):
205
self.num_ghost = (self.weno_order+1)/2
206
207
if self.lim_type == 2 and self.weno_order != 5 and self.kernel_language == 'Python':
208
- raise Exception('Only 5th-order WENO reconstruction is implemented in Python kernels. Use Fortran for higher-order WENO.')
+ raise Exception('Only 5th-order WENO reconstruction is implemented in Python kernels. \
209
+ Use Fortran for higher-order WENO.')
210
# This is a hack to deal with the fact that petsc4py
211
# doesn't allow us to change the stencil_width (num_ghost)
212
state = solution.state
0 commit comments