]> www.ginac.de Git - ginac.git/blob - ginac/factor.h
- Added options argument to factor(). Added flag factor_options::all that lets
[ginac.git] / ginac / factor.h
1 /** @file factor.h
2  *
3  *  Polynomial factorization code.
4  */
5
6 /*
7  *  GiNaC Copyright (C) 1999-2008 Johannes Gutenberg University Mainz, Germany
8  *
9  *  This program is free software; you can redistribute it and/or modify
10  *  it under the terms of the GNU General Public License as published by
11  *  the Free Software Foundation; either version 2 of the License, or
12  *  (at your option) any later version.
13  *
14  *  This program is distributed in the hope that it will be useful,
15  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  *  GNU General Public License for more details.
18  *
19  *  You should have received a copy of the GNU General Public License
20  *  along with this program; if not, write to the Free Software
21  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
22  */
23
24 #ifndef __GINAC_FACTOR_H__
25 #define __GINAC_FACTOR_H__
26
27 namespace GiNaC {
28
29 class ex;
30
31 extern ex factor(const ex& poly, unsigned options = 0);
32
33 } // namespace GiNaC
34
35 #endif // ndef __GINAC_FACTOR_H__