source: git/factory/cf_cyclo.h @ 7b4793

spielwiese
Last change on this file since 7b4793 was 7b4793, checked in by Martin Lee <martinlee84@…>, 10 years ago
chg: even more changes to docu
  • Property mode set to 100644
File size: 617 bytes
Line 
1// -*- c++ -*-
2//*****************************************************************************
3/** @file cf_cyclo.h
4 *
5 * Compute cyclotomic polynomials and factorize integers by brute force
6 *
7 * @par Copyright:
8 *   (c) by The SINGULAR Team, see LICENSE file
9 *
10 * @author Martin Lee
11**/
12//*****************************************************************************
13
14#ifndef CF_CYCLO_H
15#define CF_CYCLO_H
16
17// #include "config.h"
18
19int* integerFactorizer (const long integer, int& length, bool& fail);
20CanonicalForm cyclotomicPoly (int n, bool& fail);
21bool isPrimitive (const Variable& alpha, bool& fail);
22
23#endif
24
Note: See TracBrowser for help on using the repository browser.