This might be the "right way" to fix the issue - mark our exported classes as
[kdeedu-porting.git] / kalzium / src / solver / main.c
blobd8e5e1bc92261633eab76a4c7fe7dfc04e84913b
1 /***************************************************************************
2 * Copyright (C) 2004 by Thomas Nagy *
3 * tnagy2^8@yahoo.fr *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
19 ***************************************************************************/
21 #include <stdio.h>
22 #include <stdlib.h>
24 int main(int argc, char ** argv)
26 caml_startup(argv);
28 char * eq = " a CH3(CH2)3COOH + b O2 -> c H2O + d CO2";
29 char * eq2= " a CH3(CH2)3COOH + b O2 -> c H2O + d CO";
30 char * result = solve_equation(eq);
31 char * result2 = solve_equation(eq2);
33 printf("solution : %s\n", result);
35 printf("solution : %s\n", result2);
36 free(result2);
38 result2 = solve_equation(eq);
39 printf("solution : %s\n", result2);
41 free(result);
42 free(result2);
44 return 0;