Skip to content

Commit

Permalink
Comment fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
hadjimy committed Nov 22, 2015
1 parent df2e89d commit 236df49
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pyclaw/sharpclaw/solver.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,8 @@ def setup(self,solution):
self.num_ghost = (self.weno_order+1)/2

if self.lim_type == 2 and self.weno_order != 5 and self.kernel_language == 'Python':
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. \
Use Fortran for higher-order WENO.')
# This is a hack to deal with the fact that petsc4py
# doesn't allow us to change the stencil_width (num_ghost)
state = solution.state
Expand Down

0 comments on commit 236df49

Please sign in to comment.