Logo
Finite Element Embedded Library and Language in C++
Feel++ Feel++ on Github Feel++ on Travis-CI Feel++ on Twitter Feel++ on YouTube Feel++ community
 All Classes Files Functions Variables Typedefs Pages
dar.cpp File Reference
#include <feel/feel.hpp>

Classes

class  Feel::DAR< Dim >
 

Functions

int main (int argc, char **argv)
 
po::options_description Feel::makeOptions ()
 

Detailed Description

Function Documentation

int main ( int  argc,
char **  argv 
)

main function: entry point of the program

Initialize Feel++ Environment

create an application

1  */
2 Application app;
3 
4 /**

register the simgets

1  */
2 app.add( new DAR<2>() );
3 /**

run the application

1  */
2 app.run();
3 /**