containers.h
Go to the documentation of this file.00001
00002
00003
00004 #ifndef CONTAINERS_IS_INCLUDED
00005 #define CONTAINERS_IS_INCLUDED
00006
00007 #include <string>
00008 #include <vector>
00009 #include <list>
00010 #include <set>
00011 #include <map>
00012
00013 #include <ginac/ginac.h>
00014
00015 namespace SyFi
00016 {
00017
00018
00019 typedef std::pair<GiNaC::symbol, GiNaC::ex> symexpair;
00020 typedef std::list< std::pair<GiNaC::symbol, GiNaC::ex> > symexlist;
00021
00022
00023 typedef std::list<GiNaC::ex> exlist;
00024 typedef std::set<GiNaC::ex, GiNaC::ex_is_less> exset;
00025
00026 typedef std::map<GiNaC::ex, int, GiNaC::ex_is_less> ex_int_map;
00027
00028 }
00029 #endif