Skip to content

Commit

Permalink
Remove unused En vector
Browse files Browse the repository at this point in the history
  • Loading branch information
simlapointe committed Nov 19, 2024
1 parent db8c2a5 commit 1b0b6b2
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions palace/models/timeoperator.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class TimeOperator
{
private:
// Solution vector storage.
Vector E, B, sol, En;
Vector E, B, sol;

// Time integrator for the first order ODE system.
std::unique_ptr<mfem::ODESolver> ode;
Expand All @@ -37,9 +37,6 @@ class TimeOperator
double rel_tol, abs_tol;
bool use_mfem_integrator = false;

// Discrete curl for B-field time integration (not owned).
const Operator *Curl;

public:
TimeOperator(const IoData &iodata, SpaceOperator &space_op,
std::function<double(double)> &dJ_coef);
Expand Down

0 comments on commit 1b0b6b2

Please sign in to comment.