replace tabs and remove trailing whitespace in lib folder with updated script

This commit is contained in:
Axel Kohlmeyer
2021-08-22 20:45:24 -04:00
parent 30821b37e5
commit 92b5b159e5
311 changed files with 9176 additions and 9176 deletions

View File

@ -12,19 +12,19 @@ namespace ATC{
* @class WeakEquationDiffusion
* @brief species diffusion
* c q,t = div q -->
* int M c q,t = int B q
* int M c q,t = int B q
*/
class WeakEquationDiffusion : public WeakEquation {
public:
// constructor
// constructor
WeakEquationDiffusion();
// destructor
virtual ~WeakEquationDiffusion();
/** density that used to form the mass matrix */
virtual bool has_M_integrand(void) const {return true;}
virtual void M_integrand(const FIELD_MATS &fields,
@ -43,7 +43,7 @@ class WeakEquationDiffusion : public WeakEquation {
{
std::set<std::string> needs;
return needs;
}
}
};
};