arithm.hpp
Go to the documentation of this file.
1 
9 #ifndef _ARITHM_H_
10 #define _ARITHM_H_
11 
12 // iostream should be included before gmp
13 #include <iostream>
14 
15 // These classes all use gmp intensively
16 #include <gmpxx.h>
17 #include <gmp.h>
18 
19 // We need integers of known size
20 #include <cstdint>
21 
22 // These are always useful
23 #include <vector>
24 
25 // The files we are actually interested in.
26 #include "group/group.hpp"
27 #include "group/elmt.hpp"
28 #include "field/field.hpp"
29 #include "group/arrayofelmts.hpp"
30 #include "field/modfield.hpp"
31 #include "psubgroup/psubgroup.hpp"
32 #include "psubgroup/modpgrp.hpp"
33 
34 
35 
52 namespace arithm
53 {
54 }
55 
56 #endif