Path: blob/main/tutorials/general/t8_tutorial_build_cmesh.h
903 views
/*1This file is part of t8code.2t8code is a C library to manage a collection (a forest) of multiple3connected adaptive space-trees of general element classes in parallel.45Copyright (C) 2015 the developers67t8code is free software; you can redistribute it and/or modify8it under the terms of the GNU General Public License as published by9the Free Software Foundation; either version 2 of the License, or10(at your option) any later version.1112t8code is distributed in the hope that it will be useful,13but WITHOUT ANY WARRANTY; without even the implied warranty of14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the15GNU General Public License for more details.1617You should have received a copy of the GNU General Public License18along with t8code; if not, write to the Free Software Foundation, Inc.,1951 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.20*/2122/** file t8_tutorial_build_cmesh.h23*/2425#ifndef T8_TUTORIAL_BUILD_CMESH_H26#define T8_TUTORIAL_BUILD_CMESH_H2728#include <t8.h>2930T8_EXTERN_C_BEGIN ();3132/** This is the main program of this example.33*/34int35t8_tutorial_build_cmesh_main (int argc, char **argv);3637T8_EXTERN_C_END ();3839#endif /* !T8_TUTORIAL_BUILD_CMESH_H */404142