typo in linear problem example

This commit is contained in:
Rowan Cockett
2014-11-03 21:54:34 -07:00
parent de264a251f
commit 273464b3f1
+2 -2
View File
@@ -9,8 +9,8 @@ class LinearProblem(Problem.BaseProblem):
surveyPair = LinearSurvey
def __init__(self, model, G, **kwargs):
Problem.BaseProblem.__init__(self, model, **kwargs)
def __init__(self, mesh, G, **kwargs):
Problem.BaseProblem.__init__(self, mesh, **kwargs)
self.G = G
def fields(self, m, u=None):