12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- /*****************************************************************************
- *
- * MODULE: Grass PDE Numerical Library
- * AUTHOR(S): Soeren Gebbert, Berlin (GER) Dec 2006
- * soerengebbert <at> gmx <dot> de
- *
- * PURPOSE: heatflow tests
- *
- * COPYRIGHT: (C) 2000 by the GRASS Development Team
- *
- * This program is free software under the GNU General Public
- * License (>=v2). Read the file COPYING that comes with GRASS
- * for details.
- *
- *****************************************************************************/
- #include <grass/gis.h>
- #include <grass/glocale.h>
- #include <grass/N_pde.h>
- //#include <grass/N_heatflow.h>
- #include "test_gpde_lib.h"
- static int integration_test_heatflow(void);
- /* *************************************************************** */
- /* Performe the heat flow integration tests ********************** */
- /* *************************************************************** */
- int integration_test_heatflow(void)
- {
- int sum = 0;
- G_message(_("\n++ Running heat flow integration tests ++"));
- G_message(_("\t 1. testing 2d heat flow"));
- G_message(_("\t 2. testing 3d heat flow"));
- if (sum > 0)
- G_warning(_("\n-- heat flow integration tests failure --"));
- else
- G_message(_("\n-- heat flow integration tests finished successfully --"));
- return sum;
- }
|