]> ruin.nu Git - germs.git/blob - src/reverseaction.h
toString for actions
[germs.git] / src / reverseaction.h
1 /***************************************************************************
2  *   Copyright (C) 2006 by Michael Andreen                                 *
3  *   andreen@student.chalmers.se                                           *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) any later version.                                   *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA          *
19  ***************************************************************************/
20
21 #ifndef __REVERSEACTION_H__
22 #define __REVERSEACTION_H__
23
24 #include "sortaction.h"
25 #include "genealgorithms.h"
26
27 #include <algorithm>
28 #include <sstream>
29
30 /**
31  * Reverses an interval
32  *
33  * \author Michael Andreen
34  */
35 class ReverseAction : public SortAction{
36         public:
37
38                 /**
39                  * Creates a new reverse action for the interval [i,j]
40                  */
41                 ReverseAction(size_t i, size_t j): SortAction(0),_i(i),_j(j){
42                 }
43                 ReverseAction(Interval i): SortAction(0){
44                         _i = std::min(i.first,i.second);
45                         _j = std::max(i.first,i.second)-1;
46                 }
47
48                 /**
49                  * Applies the sort action on the gene order
50                  */
51                 virtual GeneOrder& operator()(GeneOrder& go) const{
52                         go.reverse(_i,_j);
53                         return go;
54                 }
55
56                 virtual bool operator==(const SortAction& sa) const{
57                         if (const ReverseAction* psa = dynamic_cast<const ReverseAction*>(&sa)){
58                                 if (_i == psa->_i && _j == psa->_j)
59                                         return true;
60                         }
61                         return false;
62                 }
63
64                 /**
65                  * Gives a string representation of the action, for output
66                  */
67                 virtual std::string toString() const{
68                         std::ostringstream os;
69                         os << "[" << _i << "," << _j << "]";
70                         return os.str();
71                 }
72         private:
73                 size_t _i;
74                 size_t _j;
75 };
76
77 #endif
78