#include #include "nufi_solver.hpp" int main() { try { //Used in the past to test the basic poisson problem // // PoissonProblem poisson_problem(Parameters::FE_DEGREE, // Parameters::NV); // // poisson_problem.run(); NuFISolver solver; solver.run(); } catch (std::exception &exc) { std::cerr << std::endl << "Exception: " << std::endl << exc.what() << std::endl; return 1; } catch (...) { std::cerr << std::endl << "Unknown exception!" << std::endl; return 1; } return 0; }