pelib  2.0.0
include/pelib/RawSet.hpp
Go to the documentation of this file.
00001 /*
00002  Copyright 2015 Nicolas Melot
00003 
00004  This file is part of Pelib.
00005 
00006  Pelib is free software: you can redistribute it and/or modify
00007  it under the terms of the GNU General Public License as published by
00008  the Free Software Foundation, either version 3 of the License, or
00009  (at your option) any later version.
00010 
00011  Pelib is distributed in the hope that it will be useful,
00012  but WITHOUT ANY WARRANTY; without even the implied warranty of
00013  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
00014  GNU General Public License for more details.
00015 
00016  You should have received a copy of the GNU General Public License
00017  along with Pelib. If not, see <http://www.gnu.org/licenses/>.
00018 */
00019 
00020 
00021 #include <set>
00022 
00023 #include <pelib/RawData.hpp>
00024 #include <pelib/Set.hpp>
00025 #include <pelib/Scalar.hpp>
00026 #include <pelib/CastException.hpp>
00027 
00028 #ifndef PELIB_RAWSET
00029 #define PELIB_RAWSET
00030 
00031 namespace pelib
00032 {
00033         /*** AMPL Output format parser and output class for pelib::Set class instances ***/
00034         template <class Value, class Key = size_t>
00035         class RawSet: public RawData
00036         {
00037                 /*** Internal format of data collection handled ***/
00038                 typedef std::set<Value, std::less<Value>, std::allocator<Value> > SetType;
00039                 
00040                 public:
00042                         virtual
00043                         RawSet*
00044                         clone() const
00045                         {
00046                                 return new RawSet();
00047                         }
00048 
00049                         virtual
00050                         void
00051                         dump(std::ostream &o, const AlgebraData *data) const
00052                         {                               
00053                                 const Set<Value, Key> *set = dynamic_cast<const Set<Value>*>(data);
00054                                 if(set == NULL) throw CastException("parameter \"data\" was not of type \"Set<Value>\".");                              
00055                                 
00056                                 for(typename Set<Value, Key>::SetOfSetsType::const_iterator i = set->getSubsets().begin(); i != set->getSubsets().end(); i++)
00057                                 {
00058                                         SetType values = i->second;
00059                                         for(typename std::set<Value>::const_iterator iter = values.begin(); iter != values.end(); iter++)
00060                                         {
00061                                                 o << *iter << " ";
00062                                         }
00063 
00064                                         o << std::endl;
00065                                 }
00066                         }
00067 
00068                 protected:
00069                 private:        
00070         };
00071 }
00072 
00073 #endif