source: git/ntl/src/CharPolyTest.c @ 6ce030f

fieker-DuValspielwiese
Last change on this file since 6ce030f was 2cfffe, checked in by Hans Schönemann <hannes@…>, 22 years ago
This commit was generated by cvs2svn to compensate for changes in r6316, which included commits to RCS files with non-trunk default branches. git-svn-id: file:///usr/local/Singular/svn/trunk@6317 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 213 bytes
Line 
1
2#include <NTL/ZZX.h>
3
4NTL_CLIENT
5
6int main()
7{
8   ZZX a, f, g;
9
10   cin >> a;
11   cin >> f;
12
13   double t = GetTime();;
14   CharPolyMod(g, a, f);
15   cerr << GetTime()-t << "\n";
16
17   cout << g << "\n";
18   return 0;
19}
Note: See TracBrowser for help on using the repository browser.