reformat the source code

this was done semi-automatically. The line length has been set to 80
characters, but with a quite low penalty for crossing this limit.
This commit is contained in:
Andreas Lauser
2013-11-29 16:33:46 +01:00
parent d47687be5d
commit 98c5b8fba7
54 changed files with 1363 additions and 1148 deletions

View File

@@ -19,14 +19,17 @@
/*!
* \file
*
* \brief Main file of the tutorial for a fully coupled twophase VCVF discretization.
* \brief Main file of the tutorial for a fully coupled twophase VCVF
*discretization.
*/
#include "config.h" /*@\label{tutorial-coupled:include-begin}@*/
#include "config.h" /*@\label{tutorial-coupled:include-begin}@*/
#include <ewoms/common/start.hh> /*@\label{tutorial-coupled:include-end}@*/
#include "tutorial1problem.hh" /*@\label{tutorial-coupled:include-problem-header}@*/
#include "tutorial1problem.hh" /*@\label{tutorial-coupled:include-problem-header}@*/
int main(int argc, char** argv)
int main(int argc, char **argv)
{
typedef TTAG(TutorialProblemCoupled) TypeTag; /*@\label{tutorial-coupled:set-type-tag}@*/
return Ewoms::start<TypeTag>(argc, argv); /*@\label{tutorial-coupled:call-start}@*/
typedef TTAG(
TutorialProblemCoupled) TypeTag; /*@\label{tutorial-coupled:set-type-tag}@*/
return Ewoms::start<TypeTag>(argc,
argv); /*@\label{tutorial-coupled:call-start}@*/
}