]> www.ginac.de Git - ginac.git/blob - check/lsolve_onedim.cpp
- "make clean" works better
[ginac.git] / check / lsolve_onedim.cpp
1 /** @file lsolve_onedim.cpp
2  *
3  * This test routine does some simple checks on solving a polynomial for a
4  * variable.
5  *
6  *  GiNaC Copyright (C) 1999 Johannes Gutenberg University Mainz, Germany
7  *
8  *  This program is free software; you can redistribute it and/or modify
9  *  it under the terms of the GNU General Public License as published by
10  *  the Free Software Foundation; either version 2 of the License, or
11  *  (at your option) any later version.
12  *
13  *  This program is distributed in the hope that it will be useful,
14  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *  GNU General Public License for more details.
17  *
18  *  You should have received a copy of the GNU General Public License
19  *  along with this program; if not, write to the Free Software
20  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  */
22
23 #include <ginac/ginac.h>
24
25 unsigned lsolve_onedim(void)
26 {
27     unsigned result = 0;
28     symbol x("x");
29     ex eq, aux;
30     
31     cout << "checking linear solve..." << flush;
32     clog << "---------linear solve:" << endl;
33     
34     eq = (3*x+5 == numeric(8));
35     aux = lsolve(eq,x);
36     if (aux != 1) {
37         result++;
38         clog << "solution of 3*x+5==8 erroneously returned "
39              << aux << endl;
40     }
41     
42     if (! result) {
43         cout << " passed ";
44         clog << "(no output)" << endl;
45     } else {
46         cout << " failed ";
47     }
48     
49     return result;
50 }