]> www.ginac.de Git - ginac.git/blob - check/exam_archive.cpp
- string -> const char * (compiles about 100 times faster)
[ginac.git] / check / exam_archive.cpp
1 /** @file exam_archive.cpp
2  *
3  *  Here we test GiNaC's archiving system. */
4
5 /*
6  *  GiNaC Copyright (C) 1999-2003 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 "exams.h"
24
25 #include <fstream>
26
27 unsigned exam_archive()
28 {
29         unsigned result = 0;
30         
31         cout << "examining archiving system" << flush;
32         clog << "----------archiving system:" << endl;
33
34         symbol x("x"), y("y"), mu("mu"), dim("dim", "\\Delta");
35         ex e, f;
36
37         // This expression is complete nonsense but it contains every type of
38         // GiNaC object
39         e = -42 * x * pow(y, sin(y*Catalan)) * dirac_ONE()
40             * epsilon_tensor(idx(fail(), 3), idx(0, 3), idx(y/2, 3))
41           + lorentz_g(
42               varidx(lst(x, -11*y, acos(2*x).series(x==3-5*I, 3)) * color_ONE()
43                 * metric_tensor(varidx(log(cos(128.0/(x*y))), 5), varidx(2, 5)), zeta(3)),
44               varidx(diag_matrix(lst(-1, Euler, atan(x/y==-15*I/17)))
45                 * delta_tensor(idx(x, 2), idx(wild(7), 3)), zeta(3), true),
46               true
47             )
48           + dirac_gamma(varidx(mu, dim)) * dirac_gamma(varidx(mu, 4-dim, true))
49             * color_T(idx(x, 8), 1) * color_h(idx(x, 8), idx(y, 8), idx(2, 8))
50             * indexed(x, sy_anti(), idx(2*y+1, x), varidx(-mu, 5))
51           - 2.4275 * spinor_metric(spinidx(0, 2, false, true), spinidx(y))
52           + abs(x).series(x == y, 4);
53
54         archive ar;
55         ar.archive_ex(e, "expr 1");
56         {
57                 std::ofstream fout("exam.gar");
58                 fout << ar;
59         }
60         ar.clear();
61         {
62                 std::ifstream fin("exam.gar");
63                 fin >> ar;
64         }
65         f = ar.unarchive_ex(lst(x, y, mu, dim), "expr 1");
66
67         if (!f.is_equal(e)) {
68                 clog << "archiving/unarchiving " << e << endl
69                      << "erroneously returned " << f << endl;
70                 ++result;
71         }
72
73         cout << '.' << flush;
74         
75         if (!result) {
76                 cout << " passed " << endl;
77                 clog << "(no output)" << endl;
78         } else {
79                 cout << " failed " << endl;
80         }
81         
82         return result;
83 }