Skip to content

Commit

Permalink
Remove eraly assemble
Browse files Browse the repository at this point in the history
  • Loading branch information
Ig-dolci committed Dec 18, 2024
1 parent bc89ae2 commit 33d1e2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gusto/diagnostics/diagnostics.py
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ def setup(self, domain, state_fields, space=None):

# Solve method must be declared in diagnostic's own setup routine
if self.method == 'interpolate':
self.evaluator = assemble(interpolate(self.expr, self.space))
self.evaluator = interpolate(self.expr, self.space)
elif self.method == 'project':
self.evaluator = Projector(self.expr, self.field)
elif self.method == 'assign':
Expand Down

0 comments on commit 33d1e2b

Please sign in to comment.