Skip to content
Snippets Groups Projects
Commit 6efb054a authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[PL] Unify function parameter names in decl/def

parent e3f20ff3
No related branches found
No related tags found
No related merge requests found
...@@ -46,14 +46,14 @@ public: ...@@ -46,14 +46,14 @@ public:
//! is called several times and the Jacobian is built from finite //! is called several times and the Jacobian is built from finite
//! differences. //! differences.
//! The number of calls of the assemble() method is \f$2N+1\f$ if \f$N\f$ is //! The number of calls of the assemble() method is \f$2N+1\f$ if \f$N\f$ is
//! the size of \c local_x. //! the size of \c local_x_data.
//! //!
//! \attention It is assumed that the local vectors and matrices are ordered //! \attention It is assumed that the local vectors and matrices are ordered
//! by component. //! by component.
void assembleWithJacobian(LocalAssemblerInterface& local_assembler, void assembleWithJacobian(LocalAssemblerInterface& local_assembler,
double const t, double const dt, double const t, double const dt,
std::vector<double> const& local_x, std::vector<double> const& local_x_data,
std::vector<double> const& local_xdot, std::vector<double> const& local_xdot_data,
std::vector<double>& local_M_data, std::vector<double>& local_M_data,
std::vector<double>& local_K_data, std::vector<double>& local_K_data,
std::vector<double>& local_b_data, std::vector<double>& local_b_data,
......
...@@ -45,8 +45,8 @@ public: ...@@ -45,8 +45,8 @@ public:
//! by component. //! by component.
void assembleWithJacobian(LocalAssemblerInterface& local_assembler, void assembleWithJacobian(LocalAssemblerInterface& local_assembler,
double const t, double const dt, double const t, double const dt,
std::vector<double> const& local_x, std::vector<double> const& local_x_data,
std::vector<double> const& local_xdot, std::vector<double> const& local_xdot_data,
std::vector<double>& local_M_data, std::vector<double>& local_M_data,
std::vector<double>& local_K_data, std::vector<double>& local_K_data,
std::vector<double>& local_b_data, std::vector<double>& local_b_data,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment