Skip to content

Commit

Permalink
Removed extraneous semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
drreynolds committed Apr 27, 2021
1 parent 8aee556 commit b8be1c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BoundaryValue/nonlinear_fd_driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def phi(u):
def Jphi(u):
return (6.0*numpy.diag((Dx@u)/u)@Dx - 3.0*numpy.diag(((Dx@u)/u)**2))
E = numpy.zeros((n-1,n+1),dtype=float)
E[:,1:-1] = numpy.eye(n-1);
E[:,1:-1] = numpy.eye(n-1)
def f(u):
res = numpy.zeros(n+1)
res[0] = u[0]-alpha
Expand Down

0 comments on commit b8be1c1

Please sign in to comment.