-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathmain.cpp
More file actions
39 lines (33 loc) · 1.1 KB
/
main.cpp
File metadata and controls
39 lines (33 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// #include "fem/fem.hpp"
#include "flatset/flatset.hpp"
// #include "filesystem/filesystem.hpp"
// #include "yamlParser/yamlParser.hpp"
#include <iostream>
int main(int argc, char *argv[])
{
std::cout << "Let's fight with CMake, Docker, and some dependencies!" << std::endl
<< std::endl;
// std::cout << "Solve Poisson problem with FEM using deal.II" << std::endl;
// Fem fem;
// fem.run();
// std::cout << std::endl;
std::cout << "Modify a flat set using boost container" << std::endl;
modifyAndPrintSets();
std::cout << std::endl;
// std::cout << "Inspect the current directory using boost filesystem" << std::endl;
// inspectDirectory();
// std::cout << std::endl;
// if ( argc == 2 )
//{
// const std::string yamlFile( argv[1] );
// std::cout << "Parse some yaml file with yaml-cpp" << std::endl;
// std::cout << " " << yamlFile << std::endl;
// parseConfig( yamlFile );
// }
// else
//{
// std::cout << "To parse a yaml file please specify file on command line" << std::endl;
// std::cout << " ./main YAMLFILE" << std::endl;
// }
return 0;
}