00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #ifndef KL_FWD_H
00015 #define KL_FWD_H
00016
00017 #include <set>
00018 #include <vector>
00019
00020 #include "polynomials_fwd.h"
00021 #include "blocks_fwd.h"
00022
00023 namespace atlas {
00024
00025
00026
00027 namespace kl {
00028
00029 class KLContext;
00030
00031
00032
00033
00034
00035
00036
00037 typedef unsigned int KLCoeff;
00038
00039
00040
00041
00042 typedef polynomials::Polynomial<KLCoeff> KLPol;
00043
00044 typedef unsigned int KLIndex;
00045
00046
00047 typedef KLCoeff MuCoeff;
00048
00049
00050 typedef std::pair<std::vector<blocks::BlockElt>,std::vector<MuCoeff> > MuRow;
00051
00052 }
00053
00054 }
00055
00056 #endif