include/meltpooldg/linear_algebra/predictor_linear.hpp Source File

Developer Documentation: include/meltpooldg/linear_algebra/predictor_linear.hpp Source File
Developer Documentation
predictor_linear.hpp
Go to the documentation of this file.
1#pragma once
2
3namespace MeltPoolDG
4{
20 template <typename VectorType, typename number>
21 void
22 compute_linear_predictor(const VectorType &old_vec,
23 const VectorType &old_old_vec,
24 VectorType &predictor,
25 const number current_time_increment,
26 const number old_time_increment);
27} // namespace MeltPoolDG
Interface for a general preconditioner.
Definition boundary_condition_functions.hpp:17
void compute_linear_predictor(const VectorType &old_vec, const VectorType &old_old_vec, VectorType &predictor, const number current_time_increment, const number old_time_increment)
Definition predictor_linear.cpp:76